@charset "UTF-8";

/* 共通設定 */
body {
  min-width: calc(1200px + 30px * 2);
  margin: 0 auto;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic Pro", "Hiragino Sans", Meiryo, Osaka, Arial, "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.6;
}

body *,
body *:before,
body *:after {
  box-sizing: border-box;
}

section {
  scroll-margin-top: 100px;
}

a {
  background-color: transparent;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

a:hover {
  color: #0070bd;
  text-decoration: none;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

h1 {
  margin: 0.67em 0;
  font-size: 2em;
}

.link-blank {
  font-size: 14px;
  color: #000;
  text-decoration: none;
}

.link-blank::after {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
  width: 14px;
  height: 11px;
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
  top: -2px;
  margin-left: 4px;
}

.header-modal-layout__button .header-modal-layout__button__type--blank:after {
  display: inline-block;
  position: relative;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
}

/* ヘッダー */
.Header {
  min-width: 1260px;
  height: 116px;
  box-shadow: 0px 0px 10px 0px rgba(0, 29, 59, 0.2);
  z-index: 999;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}

.header__sub {
  width: 100%;
  height: 36px;
  background: #f9f9f9;
  display: flex;
  align-items: center;
  justify-content: right;
}

.header__sub__contents {
  display: flex;
  width: 100%;
  max-width: 1440px;
  justify-content: right;
  margin: auto;
  padding: 0 30px;
}

.header__sub__contents .link-blank {
  font-size: 14px;
}

.header__sub__contents .link-blank:first-child {
  margin-right: 16px;
}

.Header__inner {
  width: 100%;
  max-width: 1440px;
  height: 80px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: flex-end;
  position: relative;
  gap: 80px;
}

.header-logo {
  position: absolute;
  top: 0;
  left: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin-top: 4px;
  gap: 2px;
  width: 163px;
  text-decoration: none;
}

.header-logo:hover {
  opacity: 0.8;
}

.header-logo-text {
  color: #0070bd;
  font-size: 16px;
  font-weight: 700;
}

.header-gnav {
  height: 100%;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.header-utility__text-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-gnav__list {
  list-style: none;
  display: flex;
  align-items: center;
  height: 100%;
}

.header-gnav__list > li {
  display: flex;
  position: relative;
  align-items: center;
  height: 100%;
  padding: 0 24px;
}

.header-gnav__list > li:before {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #0070bd;
  content: "";
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.header-gnav__list > li > [class*="__type"] {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.75;
  text-decoration: none;
  color: #000;
}

.header-gnav__list > li > [class*="__type"]:hover {
  color: #0070bd;
  text-decoration: underline;
}

.header-gnav__list > li.is-current:before {
  opacity: 1;
}

.header-utility {
  height: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
}

.header-utility__button {
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  position: relative;
  border-radius: 17px;
  background-image: linear-gradient(to right, #ffe000 0%, #ffc600 100%);
  color: #000;
  text-decoration: none;
  padding: 6px 10px;
  height: 34px;
}

.header-utility__button:hover {
  color: #000;
}

.header-utility__button:hover:after {
  opacity: 1;
}

.header-utility__image {
  z-index: 1;
}

.header-utility__text {
  z-index: 1;
  font-size: 14px;
  font-weight: 700;
}

.header-utility__button:after {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 17px;
  background-color: #fff660;
  content: "";
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

[class*="modal--"].modaal-wrapper .modaal-container {
  box-shadow: none;
  padding: 61px;
}

[class*="modal--"].modaal-wrapper .modaal-content-container {
  padding: 0;
}

[class*="modal--"].modaal-wrapper .modaal-content-container > *:first-child {
  margin-top: 0;
}

.header-modal-layout__heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: #000;
  line-height: 1.4;
  text-align: center;
}

.header-modal-layout__body {
  margin-top: 30px;
}

.header-modal-layout__column {
  display: flex;
  flex-wrap: wrap;
}

.header-modal-layout__body > *:first-child {
  margin-top: 0;
}

.header-modal-layout__column__item {
  display: flex;
  flex-direction: column;
  width: calc((100% - 36px) / 2);
}

.header-modal-layout__column__item__head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.header-modal-layout__column__item > *:first-child {
  margin-top: 0;
}

.header-modal-layout__text {
  margin: 0;
  color: #000;
  line-height: 1.4;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
}

.header-modal-layout__column__item__body {
  flex-shrink: 0;
  margin-top: 0.5em;
}

.header-modal-layout__button {
  width: 100%;
}

.header-modal-layout__button .header-modal-layout__button__type--blank {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to right, #ffe000 0%, #ffc600 100%);
  line-height: 1.4;
  text-align: center;
  text-decoration: none;
  padding: 0.8em 22px;
  padding-right: 2.3em;
  padding-left: 1.1em;
  border-radius: 10px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  font-size: 1.3rem;
  font-weight: 700;
  color: #000;
}

.header-modal-layout__button .header-modal-layout__button__type--blank:before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff660;
  content: "";
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.header-modal-layout__button__label {
  display: inline-block;
  z-index: 2;
  position: relative;
}

.header-modal-layout__button .header-modal-layout__button__type--blank:after {
  position: absolute;
  top: 50%;
  margin-top: -7px;
  z-index: 2;
  width: 14px;
  height: 15px;
  right: 22px;
}

.header-modal-layout__column__item:nth-child(even) {
  margin-left: 36px;
}

.header-modal-layout__button .header-modal-layout__button__type--blank:hover:before {
  opacity: 1;
}

.header-modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 1000;
  padding: 0 30px;
}

.header-modal.active {
  display: flex;
}

.header-modal-layout {
  position: relative;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  max-width: 876px;
  width: 90%;
}

.modaal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background-color: #0070bd;
  border: 2px solid #0070bd;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background-color 0.3s ease;
}

.modaal-close .close-icon {
  position: relative;
  width: 1.2rem;
  height: 1.2rem;
  display: inline-block;
}

.modaal-close .close-icon::before,
.modaal-close .close-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background-color: #fff;
  transform-origin: center;
}

.modaal-close .close-icon::before {
  transform: rotate(45deg) translateX(-50%);
}

.modaal-close .close-icon::after {
  transform: rotate(-45deg) translateX(0);
}

.modaal-close:hover {
  background: #fff;
}

.modaal-close:hover .close-icon::before {
  background: #0070bd;
}

.modaal-close:hover .close-icon::after {
  background: #0070bd;
}

.Header__foot {
  display: none;
}

/* KV title */

.heading1--center {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 136px;
  background-color: #e5f0f8;
  text-align: center;
}

.heading1__inner {
  width: 100%;
  max-width: calc(1200px + 30px * 2);
  margin: 0 auto;
  padding: 0 30px;
}

.heading1__title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: auto;
  line-height: 1.4;
  font-size: 28px;
  font-weight: 700;
}

.heading1__title span {
  font-size: 20px;
}

/* main */

.Main__content {
  margin: 40px auto 0;
}

/* パンくず */
.Main__guide {
  display: block;
  width: 100%;
  padding-bottom: 30px;
  margin-top: 60px;
}

.main-breadcrumb {
  display: flex;
  list-style: none;
  flex-flow: row wrap;
  width: calc(1200px + 30px * 2);
  margin: 0 auto;
  padding: 0 30px 8px;
}

.main-breadcrumb > li {
  position: relative;
  padding-left: 30px;
}

.main-breadcrumb > li:first-child {
  padding-left: 0;
}

.main-breadcrumb > li:first-child:before {
  content: none;
}

.main-breadcrumb > li:before {
  display: block;
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  color: #bbb;
  content: "\03e";
  left: 10px;
  font-size: 0.9rem;
}

.main-breadcrumb [class*="main-breadcrumb__type"] {
  font-size: 14px;
  color: #000;
}

.main-breadcrumb a:hover {
  color: #0070bd;
  text-decoration: none;
}

.main-breadcrumb span > span {
  font-weight: 700;
}

/* フッター */

.Footer__body {
  background-color: #e5f0f8;
}

.Footer__body__inner {
  display: flex;
  align-items: center;
  width: 1260px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px 30px;
}

.footer-sitemap {
  width: 100%;
}

.footer-sitemap__list {
  display: flex;
  flex-flow: wrap;
  margin: 0;
  padding: 0;
}

.footer-sitemap__list__item {
  list-style: none;
  width: calc((100% - (30px * 2)) / 3);
}

.footer-sitemap__list__item > [class*="__link"] {
  color: #000;
  line-height: 1.6;
  font-size: 1rem;
  text-decoration: none;
}

.footer-sitemap__list__link:after {
  -webkit-backface-visibility: hidden;
  display: inline-block;
  position: relative;
  border-top: 2px solid #0070bd;
  border-right: 2px solid #0070bd;
  vertical-align: middle;
  content: "";
  transform: rotate(45deg);
  margin-left: 7px;
  top: -1px;
  width: 8px;
  height: 8px;
}

.footer-sitemap__list__item > [class*="__link"]:hover {
  color: #0070bd;
  text-decoration: underline;
}

.footer-card-wrap {
  flex-shrink: 0;
  width: 407px;
  margin-left: 2px;
  padding-left: 30px;
  border-left: 1px solid #ccc;
}

.footer-card {
  width: calc((100% - 20px) / 2);
}

.footer-card__link {
  display: flex;
  z-index: 1;
  position: relative;
  flex-direction: column;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
}

.footer-card__link:hover .footer-card__image {
  opacity: 0.7;
}

.footer-card__link:hover .footer-card__title {
  color: #0070bd;
  text-decoration: underline;
}

.footer-card__head {
  flex-shrink: 0;
}

.footer-card__image {
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.footer-card__image img {
  width: 100%;
  height: auto;
}

.footer-card__body {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-top: 10px;
}

.footer-card__title {
  color: #000;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.4;
}

/* 上部へ戻るボタン */

.Footer__guide .footer-pagetop {
  visibility: hidden;
  opacity: 0;
  z-index: 900;
  position: fixed;
  right: 8px;
  bottom: 30px;
  transition: all 0.6s;
}

.footer-pagetop.banner {
  bottom: 42px;
}

.footer-pagetop.banner.active {
  bottom: 176px;
}

.Footer__guide .footer-pagetop.visible {
  visibility: visible;
  opacity: 1;
}

.Footer__guide .footer-pagetop > a {
  display: block;
  position: relative;
  overflow: hidden;
  border: 2px solid #0070bd;
  background-color: #fff;
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.05);
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  width: 52px;
  height: 52px;
  border-radius: 52px;
}

.Footer__guide .footer-pagetop > a:after {
  -webkit-backface-visibility: hidden;
  display: inline-block;
  position: relative;
  border-top: 2px solid #0070bd;
  border-right: 2px solid #0070bd;
  vertical-align: middle;
  content: "";
  transform: rotate(-45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  width: 13px;
  height: 13px;
  margin: -3px 0 0 -7px;
  border-top-width: 3px;
  border-right-width: 3px;
}

/* フッター */

.footer-card__link .footer-card__title:after {
  -webkit-backface-visibility: hidden;
  display: inline-block;
  position: relative;
  border-top: 2px solid #0070bd;
  border-right: 2px solid #0070bd;
  vertical-align: middle;
  content: "";
  transform: rotate(45deg);
  margin-left: 7px;
  width: 8px;
  height: 8px;
  top: 0;
}

.Footer__foot__inner {
  display: flex;
  align-items: center;
  width: 1260px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  padding: 30px 30px 25px;
  gap: 30px;
}

.footer-company {
  display: flex;
  align-items: center;
  width: 100%;
}

.footer-company__logo-wrap {
  flex-shrink: 0;
  width: 120px;
  height: 52px;
}

.footer-company__list-wrap {
  margin-left: 24px;
}

.footer-company__list {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  gap: 0 20px;
}

.footer-company__list__item {
  position: relative;
  list-style: none;
  font-size: 1.4rem;
  line-height: 22px;
}

.footer-company__list__item > [class*="__link"] {
  display: inline-block;
  position: relative;
  color: #666;
  font-size: 14px;
  text-decoration: none;
}

.footer-company__list__item + .footer-company__list__item:before {
  display: inline-block;
  position: relative;
  top: 0;
  left: 0;
  width: 1px;
  height: 13px;
  margin-right: 19px;
  background-color: #e4e4e4;
  content: "";
}

.footer-company__list__link--blank:after {
  top: -2px;
  margin-left: 4px;
  width: 14px;
  height: 11px;
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
  display: inline-block;
  position: relative;
  overflow: hidden;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
}

.footer-company__list__item > [class*="__link"]:hover {
  color: #0070bd;
  text-decoration: underline;
}

.footer-x {
  display: flex;
  align-items: center;
  width: 350px;
  flex-wrap: nowrap;
}

.footer-x-text {
  color: #666;
  font-size: 0.9rem;
  margin-top: 0.3em;
  text-wrap-mode: nowrap;
}

.footer-x a {
  display: flex;
  align-items: center;
}

.footer-x-icon {
  margin-left: 1rem;
  width: 25px;
}

.footer-copyright {
  flex-shrink: 0;
  width: 350px;
  text-align: right;
}

.footer-copyright__label {
  color: #666;
  font-size: 0.9rem;
}

.floating-banner {
  z-index: 900;
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #ffffffcc;
  border-top: 3px solid #0070bd;
  transform: translateY(100%);
  transition: all 0.6s;
}

.floating-banner__inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 16px;
  width: 100%;
  max-width: 1308px;
  margin: auto;
}

.floating-banner__title {
  font-size: 18px;
  font-weight: 700;
  color: #0070bd;
}

.floating-banner__toggle {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  width: 46px;
  height: 37px;
  margin-right: 8px;
  padding: 8px 8px 11px;
  cursor: pointer;
  justify-content: space-between;
  top: -37px;
  right: 0;
  background-color: #0070bd;
  border-radius: 8px 8px 0 0;
}

.floating-banner__toggle:hover {
  background-color: #007fd7;
}

.floating-banner__toggle-bar {
  transition: all 0.6s;
  position: relative;
}

.floating-banner__toggle-bar::after {
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: all 0.6s;
  content: "";
  position: absolute;
}

.floating-banner .floating-banner__toggle-bar {
  transform: none;
  opacity: 1;
}

.floating-banner.active .floating-banner__toggle-bar:nth-of-type(1) {
  transform: translate3d(1px, 9px, 0px) rotate(45deg);
}

.floating-banner.active .floating-banner__toggle-bar:nth-of-type(2) {
  opacity: 0;
}

.floating-banner.active .floating-banner__toggle-bar:nth-of-type(3) {
  transform: translate3d(-1px, -9px, 0px) rotate(-45deg);
}

.floating-banner.active {
  transform: translateY(0%);
}

.floating-banner__button-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 32px;
}

.floating-banner__button-item {
  width: 100%;
  max-width: 358px;
}

.floating-banner__button__type--blank {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to right, #ffe000 0%, #ffc600 100%);
  line-height: 1.4;
  text-align: center;
  min-height: 63px;
  border-radius: 10px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.floating-banner__button .floating-banner__button__type--blank:before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff660;
  content: "";
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.floating-banner__button__type--blank:hover:before {
  opacity: 1;
}

.floating-banner__button__icon {
  display: inline-block;
  flex-shrink: 0;
  z-index: 2;
  position: absolute;
  width: 34px;
  left: 48px;
}

.floating-banner__button__label {
  z-index: 2;
  color: #000;
}

.floating-banner__button__type--blank:after {
  display: inline-block;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  z-index: 2;
  width: 14px;
  height: 15px;
  right: 32px;
}

.floating-banner__button-v2__type--blank {
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #0070bd;
  line-height: 1.4;
  text-align: center;
  min-height: 63px;
  border: 2px solid #0070bd;
  border-radius: 10px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
}

.floating-banner__button-v2__icon {
  display: flex;
  flex-shrink: 0;
  z-index: 2;
  position: absolute;
  width: 34px;
  left: 24px;
}

.floating-banner__button-v2__label {
  z-index: 2;
  display: flex;
  line-height: 1.4;
  color: #fff;
}

.floating-banner__button-v2__type--blank:hover {
  background: #fff;
}

.floating-banner__button-v2__type--blank:hover .floating-banner__button-v2__label {
  color: #0070bd;
}

.floating-banner__button-v2__type--blank:after {
  display: inline-block;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  z-index: 2;
  width: 14px;
  height: 15px;
  right: 32px;
}

.order-banner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-banner__inner {
  width: 100%;
  max-width: 900px;
  position: relative;
  border: 1px solid #0070bd;
}

.order-banner__head {
  width: 100%;
  height: 90px;
  background-color: #e5f0f8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.order-banner__head__text {
  font-size: 24px;
  font-weight: 700;
  color: #0070bd;
}

.order-banner__body {
  width: 100%;
  display: flex;
  gap: 40px;
  background-color: #fff;
  padding: 40px 16px;
  justify-content: center;
  align-items: flex-start;
}

.order-banner__button {
  width: 375px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.order-banner__button__link {
  width: 375px;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(to right, #ffe000 0%, #ffc600 100%);
  line-height: 1.4;
  text-align: center;
  min-height: 63px;
  border-radius: 10px;
  box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
  text-decoration: none;
  max-width: 375px;
  width: 100%;
}

.order-banner__button__link:before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  background-color: #fff660;
  content: "";
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) 0s;
}

.order-banner__button__link:hover:before {
  opacity: 1;
}

.order-banner__button__link:after {
  display: inline-block;
  overflow: hidden;
  background: no-repeat center;
  background-size: contain;
  text-indent: 100%;
  vertical-align: middle;
  white-space: nowrap;
  content: "";
  background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
  position: absolute;
  top: 50%;
  margin-top: -7px;
  z-index: 2;
  width: 14px;
  height: 15px;
  right: 32px;
}

.order-banner__button__image {
  position: absolute;
  left: 48px;
  z-index: 2;
}

.order-banner__button__label-box {
  display: flex;
  flex-direction: column;
  color: #000;
  z-index: 2;
}

.order-banner__button__label {
  font-size: 16px;
  font-weight: 700;
}

.order-banner__button__label-sub {
  font-size: 14px;
  font-weight: 500;
}

.order-banner__button_caution {
  font-size: 16px;
  font-weight: 700;
  color: #dc441b;
}

.order-banner__close {
  position: absolute;
  display: flex;
  flex-direction: column;
  z-index: 1000;
  width: 46px;
  height: 46px;
  padding: 8px 8px 11px;
  cursor: pointer;
  justify-content: space-between;
  top: -20px;
  right: -20px;
  background-color: #0070bd;
  border-radius: 8px;
}

.order-banner__close:hover {
  background-color: #007fd7;
}

.order-banner__close-bar {
  position: relative;
}

.order-banner__close-bar::after {
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: all 0.6s;
  content: "";
  position: absolute;
}

.order-banner__close-bar:first-child {
  transform: translate3d(1px, 14px, 0px) rotate(45deg);
}

.order-banner__close-bar:last-child {
  transform: translate3d(-1px, -13px, 0px) rotate(-45deg);
}

@media screen and (max-height: 1000px) {
  .modaal-inner-wrapper {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media only screen and (max-width: 767.98px) {
  body {
    min-width: initial;
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.6;
  }

  section {
    scroll-margin-top: 60px;
  }

  .util-sp-hidden {
    display: none;
  }

  /* ヘッダー */
  .header__sub {
    display: none;
  }

  .Header {
    min-width: initial;
    height: 67px;
  }

  .Header__inner {
    min-width: initial;
    height: 67px;
    margin: 0;
    padding: 0 10px;
    justify-content: flex-end;
  }

  .Header__inner.is-menu-open {
    background-color: #e5f0f8;
  }

  .header-logo {
    width: 110px;
    gap: 0;
    left: 10px;
    top: 0;
    bottom: 0;
    margin: auto 0;
  }

  .header-logo-text {
    font-size: 12px;
  }

  .header-gnav {
    display: none;
  }

  .header-utility {
    display: flex;
    gap: 0;
    margin-right: 60px;
  }

  .header-utility__button {
    min-width: 54px;
    flex-direction: column;
    height: 100%;
    padding: 10px 0;
    line-height: 1.2;
    text-align: center;
    background-image: none;
  }

  .header-utility__button:after {
    display: none;
  }

  .header-utility__image {
    display: block;
  }

  .header-utility__text-box {
    flex-direction: column;
    height: 50%;
  }

  .header-utility__text {
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
  }

  [class*="modal--"].modaal-wrapper .modaal-inner-wrapper {
    padding-right: 14px;
    padding-left: 14px;
  }

  .header-modal--inline.modaal-inline.modaal-wrapper .modaal-inner-wrapper {
    padding-right: 15px;
    padding-left: 15px;
  }

  [class*="modal--"].modaal-wrapper .modaal-container {
    padding: 19.5px;
  }

  .header-modal--inline.modaal-inline.modaal-wrapper .modaal-container {
    padding-top: 21px;
  }

  .header-modal-layout__heading {
    font-size: 1.3rem;
    font-weight: 700;
  }

  .header-modal-layout__body {
    margin-top: 13px;
  }

  .header-modal-layout__column__item {
    margin-top: 11px;
  }

  .header-modal-layout__text {
    font-size: 0.9rem;
    font-weight: 400;
  }

  .header-modal-layout__button .header-modal-layout__button__type--blank {
    padding: 0.93em 19.5px;
    padding-right: 2.85em;
    padding-left: 1.1em;
    border-radius: 5px;
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    font-size: 1rem;
    font-weight: 700;
  }

  .header-modal-layout {
    padding: 1em;
  }

  .header-modal-layout__column {
    display: block;
  }

  .header-modal-layout__column__item {
    width: 100%;
  }

  .header-modal-layout__column__item:nth-child(even) {
    margin-left: 0;
  }

  .header-modal {
    padding: 0;
  }

  .modaal-close {
    top: -58px;
    right: 0;
  }

  /* SPハンバーガーメニュー */
  .is-active-menu .Header {
    background-color: #e5f0f8;
  }

  .Header__foot {
    display: block;
    position: absolute;
    right: 0;
  }

  .header-menu-button {
    z-index: 1;
    width: 60px;
    height: 67px;
    position: relative;
  }

  .header-menu-button__item {
    display: inline-block;
    position: relative;
    text-align: center;
    width: 100%;
    height: 100%;
    padding-top: 30px;
    background-color: #0070bd;
    text-decoration: none;
  }

  .header-menu-button__item:before {
    top: 11px;
  }

  .header-menu-button__item:after {
    top: 18px;
  }

  .header-menu-button__item:before,
  .header-menu-button__item:after {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #fff;
    content: "";
    top: 23px;
    width: 30px;
    height: 3px;
  }

  .header-menu-button__item:after {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #fff;
    content: "";
    top: 15px;
    width: 30px;
    height: 3px;
  }

  .header-menu-button__label {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
  }

  .header-menu-button__label:before {
    position: absolute;
    right: 0;
    left: 0;
    margin: 0 auto;
    background-color: #fff;
    content: "";
    top: 31px;
    width: 30px;
    height: 3px;
  }

  .header-modal-layout__button .header-modal-layout__button__type--blank:after {
    right: 19.5px;
  }

  /* ハンバーガーメニューopen */

  .header-menu-button__item.is-open::before {
    top: 18px;
    transform: rotate(45deg);
  }

  .header-menu-button__item.is-open::after {
    top: 18px;
    transform: rotate(-45deg);
  }

  .header-menu-button__item.is-open .header-menu-button__label::before {
    content: none;
  }

  .header-menu-wrap {
    opacity: 0;
    position: absolute;
    right: 0;
    width: 100vw;
    height: 100vh;
    background-color: #e5f0f8;
    top: 67px;
    overflow-y: auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }

  .header-menu-wrap.active {
    max-height: 100vh;
    opacity: 1;
  }

  .header-menu-wrap__inner {
    padding: 20px 15px 118px;
  }
  .header-menu-layout {
    margin-top: 20px;
  }
  .header-menu-sitemap__list {
    margin: 0;
    border-radius: 10px;
    background-color: #fff;
    list-style: none;
    padding: 10px;
  }

  .header-menu-sitemap__list__block + .header-menu-sitemap__list__block {
    border-top: 1px solid #ddd;
  }

  .header-menu-sitemap__list__block > [class*="__type"] {
    color: #000;
    line-height: 1.4;
    display: block;
    position: relative;
    padding: 0.9em 20px 0.7em 12.6px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
  }
  .header-menu-sitemap__list__type:after {
    display: inline-block;
    border-top: 2px solid #0070bd;
    border-right: 2px solid #0070bd;
    vertical-align: middle;
    content: "";
    transform: rotate(45deg);
    margin-left: 7px;
    width: 8px;
    height: 8px;
    position: absolute;
    top: 50%;
    right: 25px;
    margin-top: -3px;
  }

  .header-menu-other {
    margin: 24px 0 0 15px;
  }

  .header-menu-other__list__type {
    color: #000;
    text-decoration: none;
    font-size: 0.8rem;
  }

  .header-menu-other__list__type::after {
    display: inline-block;
    position: relative;
    overflow: hidden;
    background: no-repeat center;
    background-size: contain;
    text-indent: 100%;
    vertical-align: middle;
    white-space: nowrap;
    content: "";
    width: 14px;
    height: 10px;
    background-image: url(/app-files/img/sprite/icon.svg#blank-usage);
    top: -2px;
    margin-left: 10px;
  }

  /* KV title */
  .heading1--center {
    height: 91px;
  }

  .heading1__title {
    font-size: 20px;
  }

  .heading1__title span {
    font-size: 16px;
  }

  .Main__content {
    width: 100%;
    margin: 24px 0;
  }

  /* パンくず */

  .Main__guide {
    padding: 0 20px;
  }

  .main-breadcrumb {
    width: 100%;
    flex-flow: initial;
    padding: 0;
    margin-bottom: 10px;
    overflow-x: auto;
  }

  .main-breadcrumb > li {
    flex-shrink: 0;
    margin-right: 9px;
    margin-bottom: 5px;
  }

  /* 上部へ戻るボタン */
  .Footer__guide .footer-pagetop {
    right: 16px;
    bottom: 16px;
  }

  .footer-pagetop.banner {
    bottom: 61px;
  }

  .footer-pagetop.banner.active {
    bottom: 128px;
  }

  .Footer__guide .footer-pagetop > a {
    width: 41px;
    height: 41px;
    border-radius: 41px;
  }

  .Footer__guide .footer-pagetop > a:after {
    width: 10px;
    height: 10px;
    margin: -2px 0 0 -6px;
    border-top-width: 2px;
    border-right-width: 2px;
  }

  /* フッター */
  .Footer__body__inner {
    width: 100%;
    flex-direction: column-reverse;
    padding: 20px 15px 18px;
  }

  .footer-sitemap__list {
    justify-content: space-between;
  }

  .footer-sitemap__list__item {
    width: calc((100% - (15px * 1)) / 2);
  }

  .footer-sitemap__list__item > [class*="__link"] {
    font-size: 13px;
  }

  .footer-card-wrap {
    width: 100%;
    margin-left: 0;
    margin-bottom: 20px;
    padding-left: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
    border-left: initial;
  }

  .footer-card {
    width: calc((100% - 15px) / 2);
  }

  .footer-card__body {
    margin-top: 8px;
  }

  .footer-card__title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
  }

  .Footer__foot__inner {
    display: block;
    width: 100%;
    padding: 22px 15px 20px;
  }

  .footer-company {
    align-items: flex-start;
  }

  .footer-company__logo-wrap {
    width: calc((100% - 15px) / 2);
  }

  .footer-company__logo {
    width: 120px;
    height: 52px;
  }

  .footer-company__list-wrap {
    width: calc((100% - 15px) / 2);
    margin-left: 15px;
  }

  .footer-company__list {
    flex-direction: column;
    gap: 12px;
  }

  .footer-company__list__item {
    font-size: 12px;
    line-height: 1.5;
  }

  .footer-company__list__item > [class*="__link"] {
    font-size: 0.8rem;
  }

  .footer-company__list__link--blank:after {
    width: 14px;
    height: 15px;
    top: -1px;
    margin-left: 8px;
  }

  .footer-company__list__item + .footer-company__list__item:before {
    content: none;
  }

  .footer-x {
    display: flex;
  }

  .footer-x-text {
    font-size: 0.8rem;
    margin-top: 0.2em;
  }

  .footer-x-icon {
    width: 20px;
    margin-left: 1rem;
  }

  .footer-copyright {
    padding-left: 0;
    text-align: left;
    margin-top: 20px;
  }

  .footer-copyright__label {
    font-size: 0.8rem;
  }

  .floating-banner {
    border-top: 2px solid #0070bd;
  }

  .floating-banner__inner {
    padding: 8px;
  }

  .floating-banner__title {
    font-size: 12px;
  }

  .floating-banner__toggle {
    width: 40px;
    height: 40px;
    margin-right: 16px;
    padding: 12px 8px;
    top: -56px;
    border-radius: 8px;
    transition: all 0.6s;
  }

  .floating-banner__toggle-bar::after {
    height: 2px;
  }

  .floating-banner.active .floating-banner__toggle-bar:nth-of-type(1) {
    transform: translate3d(0px, 7px, 0px) rotate(45deg);
  }

  .floating-banner.active .floating-banner__toggle-bar:nth-of-type(2) {
    opacity: 0;
  }

  .floating-banner.active .floating-banner__toggle-bar:nth-of-type(3) {
    transform: translate3d(-1px, -9px, 0px) rotate(-45deg);
  }

  .floating-banner__button-wrap {
    gap: 8px;
  }

  .floating-banner__button-item:first-child {
    max-width: 263px;
  }

  .floating-banner__button-item:last-child {
    max-width: 113px;
  }

  .floating-banner__button-v2__icon {
    display: none;
  }

  .floating-banner__button__label {
    font-size: 16px;
  }

  .floating-banner__button-v2__label {
    flex-direction: column;
    font-size: 14px;
  }

  .floating-banner__button__type--blank,
  .floating-banner__button-v2__type--blank {
    min-height: 56px;
  }

  .floating-banner__button-v2__type--blank:after {
    content: none;
  }

  .floating-banner__button__icon {
    width: 31px;
    height: 27px;
    left: 24px;
  }

  .floating-banner__button .floating-banner__button__type--blank:after {
    right: 16px;
  }

  .floating-banner.active {
    transform: translateY(0%);
  }

  .floating-banner.active .floating-banner__toggle {
    top: -20px;
  }

  .order-banner__inner {
    width: 90%;
  }

  .order-banner__head {
    height: 64px;
  }

  .order-banner__head__text {
    font-size: 16px;
  }

  .order-banner__body {
    flex-direction: column;
    padding: 16px 24px;
    gap: 16px;
  }

  .order-banner__button {
    width: 100%;
  }

  .order-banner__button__image {
    left: 24px;
  }

  .order-banner__button_caution {
    font-size: 14px;
  }

  .order-banner__close {
    width: 40px;
    height: 40px;
    top: -8px;
    right: -8px;
  }

  .order-banner__close-bar {
    position: relative;
  }

  .order-banner__close-bar::after {
    height: 2px;
  }

  .order-banner__close-bar:first-child {
    transform: translate3d(0px, 11px, 0px) rotate(45deg);
  }

  .order-banner__close-bar:last-child {
    transform: translate3d(-1px, -10px, 0px) rotate(-45deg);
  }
}
