@charset "UTF-8";
/* css_name constants */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Antique&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.3.0/css/all.min.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.css");
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  tab-size: 4;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit; /* Correct border color in all Chrome, Edge, and Safari. */
  text-indent: 0; /* Remove text indentation in Chrome, Edge, and Safari */
}

iframe {
  border-style: none;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

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

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

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

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

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

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

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

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

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

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

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

/*
 * HTML
 * -------------------------------------------------------------------
 */
@-webkit-keyframes textUnderLine {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  51% {
    left: -100%;
  }
  to {
    left: 0;
  }
}
@keyframes textUnderLine {
  0% {
    left: 0;
  }
  50% {
    left: 100%;
  }
  51% {
    left: -100%;
  }
  to {
    left: 0;
  }
}
::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

* {
  box-sizing: border-box;
}

html {
  scrollbar-width: thin;
}

body {
  font-feature-settings: "palt";
  font-family: Noto Sans JP, Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
  letter-spacing: 0.06em;
  line-height: 1;
  font-weight: 400;
  overflow-x: hidden;
  color: #111;
  overscroll-behavior: none;
}

body.preload * {
  transition: none !important;
}

html,
body {
  background-color: #fff;
}

@media screen and (max-width: 820px) {
  html,
  body {
    overflow-x: hidden !important;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

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

li {
  list-style: none;
}

em {
  font-style: normal;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

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

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}

@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

label,
button,
select {
  cursor: pointer;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
  text-align: left;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
img,
picture {
  width: 100%;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 1000px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@keyframes menu-container-appeared {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
@keyframes menu-container-leaved {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes menu-overlay-appeared {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes menu-overlay-leaved {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes modal-photo-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes loop-x1 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop-x2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes loop-y1 {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(-100%);
  }
}
@keyframes loop-y2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-200%);
  }
}
/*
 * Mixin
 * -------------------------------------------------------------------
 */
/* ---sp--- */
/* ---percent--- */
/*
 * Module
 * -------------------------------------------------------------------
 */
.l-header {
  width: 100%;
  z-index: 999;
  height: 5rem;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media screen and (min-width: 64em) {
  .l-header {
    height: 7.5rem;
  }
}
.l-header.is-fixed {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  height: 5.5rem;
}
.l-header.is-fixed.is-main {
  background-color: #fff;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.l-header.is-fixed.is-main.is-show {
  pointer-events: auto;
  opacity: 1;
  box-shadow: 0 4px 24px rgba(11, 36, 77, 0.0784313725);
}
.l-header__inner {
  display: flex;
  align-items: center;
  height: 100%;
  padding-left: 2em;
}
@media screen and (min-width: 64em) {
  .l-header__inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.l-header__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  transition: height 0.3s ease;
}
@media screen and (min-width: 63.9375em) {
  .l-header__wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (min-width: 47.9375em) {
  .l-header__wrapper {
    padding-left: 6.333333%;
    padding-right: 4.666667%;
  }
}
.l-header__logo a {
  display: grid;
}
.l-header__logo img {
  display: grid;
  width: 185px;
  height: 23px;
}
@media screen and (min-width: 48em) {
  .l-header__logo img {
    width: 280px;
    height: 29px;
  }
}
.l-header__global {
  display: none;
}
@media screen and (min-width: 80em) {
  .l-header__global {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
}
.l-header__search {
  margin-left: 3.7593984962%;
}
@media screen and (min-width: 90em) {
  .l-header__search {
    margin-left: 40px;
  }
}
.l-header__contact {
  margin-left: 20px;
}
.l-headerLogo svg {
  width: 102px;
  height: 24px;
}
@media screen and (min-width: 64em) {
  .l-headerLogo svg {
    width: 121px;
    height: 28px;
  }
}
.l-headerLogo__text {
  fill: #7d7d7d;
  transition: fill 0.3s ease;
}
.l-headerNavigation {
  position: relative;
}
.l-headerNavigation__item {
  display: flex;
  align-items: center;
  column-gap: 32px;
}
.l-headerNavigationItem {
  position: relative;
}
.l-headerNavigationItem a {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-headerNavigationItem a:hover {
    color: #1eb8d4;
  }
}
.l-headerNavigationItem span {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
}
.l-headerNavigationItem svg {
  display: flex;
  width: 12px;
  height: 6px;
  color: #1eb8d4;
  position: absolute;
  bottom: -0.875rem;
  left: 50%;
  transform: translate(-50%);
}
.l-headerSearch {
  position: relative;
}
.l-headerSearch input[type=text] {
  width: 180px;
  height: 2.5rem;
  border-radius: 1.25rem;
  border: 1px solid #cccccc;
  padding: 0 40px 0 15px;
  background-color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
}
.l-headerSearch input[type=text]:focus {
  outline: none;
}
.l-headerSearch button[type=submit] {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  right: 14px;
  width: 15px;
  height: 15px;
}
@media (hover: hover) and (pointer: fine) {
  .l-headerSearch button[type=submit]:hover i {
    color: #1eb8d4;
  }
}
.l-headerSearch button[type=submit] i {
  font-size: 15px;
  width: 15px;
  height: 15px;
  color: #123d83;
  transition: color 0.3s ease;
}
.l-headerContact {
  display: grid;
  place-items: center;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .l-headerContact:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.l-headerContact:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-headerContact:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d6141c;
  z-index: 1;
}
.l-headerContact__icon {
  position: relative;
  z-index: 3;
}
.l-headerContact__icon i {
  width: 22px;
  height: 22px;
  font-size: 22px;
}

.l-navigation {
  position: fixed;
  opacity: 0;
  visibility: hidden;
  z-index: 1002;
  width: 100vw;
  height: 100%;
  color: #fff;
  top: 0;
  left: 0;
  background-color: #0e264c;
}
@media screen and (max-width: 47.9375em) {
  .l-navigation {
    overflow-x: hidden;
    overflow-y: scroll;
  }
}
.l-navigationMenu {
  width: 100%;
}
@media screen and (min-width: 47.9375em) {
  .l-navigationMenu {
    padding-top: 6.3125rem;
    padding-bottom: 5.75rem;
  }
}
@media screen and (min-width: 48em) {
  .l-navigationMenu {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 13.4831460674%;
  }
}
.l-navigationMenu__contact {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .l-navigationMenu__contact {
    display: none;
  }
}
.l-navigationMenu__search {
  border-bottom: 1px solid #fff;
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .l-navigationMenu__search {
    display: none;
  }
}
.l-navigationMenu__search form {
  display: flex;
  align-items: center;
}
.l-navigationMenu__search form input[type=text] {
  height: 4.25rem;
  width: calc(100% - 34px);
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.3928571429;
  font-weight: 500;
  padding-bottom: 1.5rem;
  padding-top: 1.5rem;
  color: #fff;
}
.l-navigationMenu__search form input[type=text]::placeholder {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.3928571429;
  font-weight: 500;
  opacity: 0.5;
  color: #fff;
}
.l-navigationMenu__search forminput[type=submit] {
  width: 34px;
  height: 34px;
  background-image: url(/assets/images/common/ico_searchWhite.svg);
  background-position: center;
  background-size: 18px 18px;
  background-repeat: no-repeat;
}
.l-navigationMenuItem {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem:not(:first-of-type) {
    margin-top: 3.25rem;
  }
}
.l-navigationMenuItem.has-child {
  position: relative;
}
.l-navigationMenuItem.has-child .l-navigationMenuItem__link:nth-child(1) {
  display: none;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem.has-child .l-navigationMenuItem__link:nth-child(1) {
    display: flex;
  }
}
.l-navigationMenuItem.has-child .l-navigationMenuItem__link:nth-child(2) {
  display: flex;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem.has-child .l-navigationMenuItem__link:nth-child(2) {
    display: none;
  }
}
@media screen and (max-width: 47.9375em) {
  .l-navigationMenuItem.has-child .l-navigationMenuItem__link {
    position: static;
  }
}
.l-navigationMenuItem__line {
  width: 100%;
  position: absolute;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
  bottom: 0;
  left: 0;
}
.l-navigationMenuItem__line:before {
  content: "";
  transform-origin: right;
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  left: 0;
  bottom: 0;
  background-color: #1eb8d4;
  transition: transform 0.6s ease;
}
.l-navigationMenuItem__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding-bottom: 1.5rem;
}
.l-navigationMenuItem__link.is-active .l-navigationMenuItem__accordion span:nth-of-type(1) {
  transform: rotate(0);
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationMenuItem__link:hover .l-navigationMenuItem__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
  .l-navigationMenuItem__link:hover .l-navigationMenuItem__line:before {
    transform: scale(1);
    transform-origin: left;
  }
}
@media screen and (max-width: 47.9375em) {
  .l-navigationMenuItem__link {
    padding-top: 1.5rem;
    padding-right: 6px;
    padding-left: 3px;
  }
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem__link {
    padding-bottom: 1.1875rem;
  }
}
.l-navigationMenuItem__link * {
  pointer-events: none;
}
.l-navigationMenuItem__icon {
  width: 16px;
  height: 16px;
  background-color: #d6141c;
  position: relative;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem__icon {
    width: 20px;
    height: 20px;
  }
}
.l-navigationMenuItem__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-navigationMenuItem__icon i {
  display: flex;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 26%;
  left: 38%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItem__icon i {
    width: 8px;
    height: 4px;
    font-size: 12px;
  }
}
.l-navigationMenuItem__accordion {
  display: grid;
  position: relative;
  place-items: center;
  right: 1px;
  width: 14px;
  height: 14px;
}
.l-navigationMenuItem__accordion span {
  display: block;
  background-color: #d6141c;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  grid-column: 1/2;
  grid-row: 1/2;
}
.l-navigationMenuItem__accordion span:nth-of-type(1) {
  transform: rotate(-90deg);
}
.l-navigationMenuItemTitle {
  display: flex;
  align-items: center;
}
.l-navigationMenuItemTitle__icon svg {
  width: 12px;
  height: 12px;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItemTitle__icon svg {
    width: 14px;
    height: 14px;
  }
}
.l-navigationMenuItemTitle__ja {
  color: #fff;
  margin-left: 11px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItemTitle__ja {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.l-navigationMenuItemTitle__en {
  font-family: Ubuntu, sans-serif;
  opacity: 0.5;
  margin-left: 18px;
  color: #fff;
  font-size: 0.6875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .l-navigationMenuItemTitle__en {
    margin-left: 20px;
    font-size: 0.75rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 500;
  }
}
.l-navigationMenuContact {
  position: relative;
  background: #2a3854;
  height: 4.5rem;
  border-radius: 2.25rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-navigationMenuContact__icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  color: #d6141c;
}
.l-navigationMenuContact__icon svg {
  display: flex;
  width: 17px;
  height: 13px;
}
.l-navigationMenuContactTitle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  top: -0.125rem;
}
.l-navigationMenuContactTitle__en {
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  opacity: 0.5;
}
.l-navigationMenuContactTitle__ja {
  margin-top: 0.25rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.25;
  font-weight: 700;
  color: #fff;
}
.l-navigationSearch__title p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.l-navigationSearch__form {
  margin-top: 0.5rem;
}
.l-navigationSearch__form form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
}
.l-navigationSearch__form form input[type=text] {
  height: 3.5rem;
  width: calc(100% - 3.5rem);
  background-color: #fff;
  padding-left: 12px;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (min-width: 48em) {
  .l-navigationSearch__form form input[type=text] {
    height: 2.5rem;
    width: calc(100% - 2.5rem);
  }
}
.l-navigationSearch__form form button[type=submit] {
  height: 3.5rem;
  width: 3.5rem;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .l-navigationSearch__form form button[type=submit] {
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationSearch__form form button[type=submit]:hover {
    color: #1eb8d4;
  }
}
.l-navigationSearch__form form button[type=submit] svg {
  display: flex;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 48em) {
  .l-navigationSearch__form form button[type=submit] svg {
    width: 15px;
    height: 15px;
  }
}
.l-navigationSearch__tag {
  margin-top: 0.875rem;
}
@media screen and (min-width: 48em) {
  .l-navigationSearch__tag {
    margin-top: 1rem;
  }
}
.l-navigationSearchTag__item {
  margin-top: 0.5625rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 4px;
  row-gap: 0.4375rem;
}
@media screen and (min-width: 48em) {
  .l-navigationSearchTag__item {
    margin-top: 0.625rem;
  }
}
.l-navigationSearchTag__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
  border-radius: 0.6875rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.125rem 5px;
  color: #123d83;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationSearchTag__item a:hover {
    background-color: #1eb8d4;
    color: #fff;
  }
}
@media screen and (max-width: 47.9375em) {
  .l-navigationLink {
    padding-bottom: 1.75rem;
  }
}
@media screen and (min-width: 64em) {
  .l-navigationLink {
    display: flex;
    column-gap: 6.3660477454%;
  }
}
@media screen and (min-width: 64em) {
  .l-navigationLink__content:nth-of-type(1) {
    width: 40.5835543767%;
  }
}
@media screen and (min-width: 64em) {
  .l-navigationLink__content:nth-of-type(2) {
    width: 53.050397878%;
  }
}
@media screen and (max-width: 63.9375em) {
  .l-navigationLink__content:nth-of-type(2) {
    margin-top: 1.5rem;
  }
}
.l-navigationLink__item {
  margin-top: 1rem;
}
@media screen and (max-width: 47.9375em) {
  .l-navigationLink__item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4.9469964664%;
  }
}
@media screen and (max-width: 47.9375em) {
  .l-navigationLink__item li {
    width: 47.5265017668%;
  }
}
@media screen and (min-width: 48em) {
  .l-navigationLink__item li:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .l-navigationLink__item li:nth-of-type(n + 3) {
    margin-top: 0.75rem;
  }
}
.l-navigationLink__item a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  transition: color 0.3s ease;
  padding-left: 14px;
  position: relative;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5019607843);
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationLink__item a:hover {
    color: #1eb8d4;
  }
  .l-navigationLink__item a:hover:before {
    background-color: #1eb8d4;
  }
}
.l-navigationLink__item a:before {
  content: "";
  position: absolute;
  display: block;
  width: 6px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  transition: background-color 0.3s ease;
  left: 0;
  top: 0.625rem;
}
.l-navigationLink__item__title:not(:first-of-type) {
  margin-top: 1.5rem;
}
.l-navigationLink__item__title a {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationLink__item__title a:hover {
    color: #1eb8d4;
  }
}
.l-navigationButton {
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
  top: 0.625rem;
  right: 2.6666666667%;
  position: fixed;
  width: 60px;
  height: 60px;
}
.l-navigationButton:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-navigationButton:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #123d83;
  z-index: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationButton:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 64em) {
  .l-navigationButton {
    position: absolute;
    top: 1.875rem;
    right: 40px;
  }
}
.l-navigationButton.is-fixed {
  position: fixed;
  pointer-events: none;
  opacity: 0;
  top: 0.875rem;
}
.l-navigationButton.is-fixed.is-main {
  transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
}
.l-navigationButton.is-fixed.is-main.is-show {
  pointer-events: auto;
  opacity: 1;
}
.l-navigationButton__wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  padding-top: 0.3125rem;
  position: relative;
  z-index: 3;
}
.l-navigationButton__line {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.l-navigationButton__line span {
  display: block;
  width: 26px;
  background-color: #fff;
  height: 2px;
  transition: transform 0.3s ease;
}
.l-navigationButton__text {
  margin-top: 0.1875rem;
}
.l-navigationButton__text p {
  font-family: Inter, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 600;
}
.l-navigationMail {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #d6141c;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.l-navigationMail:hover {
  opacity: 1;
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationMail:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.l-navigationMail:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-navigationMail i {
  font-size: 22px;
  width: 22px;
  height: 22px;
  position: relative;
  z-index: 3;
}
.l-navigationClose {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding-top: 0.5rem;
  cursor: pointer;
  position: relative;
  z-index: 11;
}
@media (hover: hover) and (pointer: fine) {
  .l-navigationClose:hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
  .l-navigationClose:hover .l-navigationClose__line span {
    background-color: #fff;
  }
  .l-navigationClose:hover .l-navigationClose__text {
    color: #fff;
  }
}
.l-navigationClose:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-navigationClose__line {
  position: relative;
  z-index: 2;
}
.l-navigationClose__line span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #123d83;
  transform-origin: center;
  transition: background-color 0.3s ease;
}
.l-navigationClose__line span:nth-of-type(1) {
  transform: rotate(-15deg) translateY(1px);
}
.l-navigationClose__line span:nth-of-type(2) {
  transform: rotate(15deg) translateY(-1px);
}
.l-navigationClose__text {
  font-family: Inter, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1.5;
  font-weight: 600;
  text-align: center;
  color: #123d83;
  margin-top: 0.1875rem;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}
.l-navigation__decoration {
  display: contents;
}
.l-navigation__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .l-navigation__inner {
    height: 100%;
    max-width: 970px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .l-navigation__inner {
    margin-top: 7em;
  }
}
.l-navigation__link {
  padding-left: 7.7611940299%;
}
@media screen and (max-width: 47.9375em) {
  .l-navigation__link {
    padding-right: 7.7611940299%;
  }
}
@media screen and (min-width: 48em) {
  .l-navigation__link {
    margin-top: 2.5rem;
    padding-left: 5px;
  }
}
.l-navigation__search {
  margin-top: 1.5rem;
}
.l-navigation__menu {
  display: grid;
  place-items: center;
  height: 100%;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 48em) {
  .l-navigation__menu {
    padding-top: 4.375rem;
  }
}
.l-navigation__logo {
  position: absolute;
  top: 2rem;
  left: 20px;
}
@media screen and (min-width: 48em) {
  .l-navigation__logo {
    top: 2.8125rem;
    left: 40px;
  }
}
.l-navigation__logo img {
  width: 172px;
  height: 23px;
}
@media screen and (min-width: 48em) {
  .l-navigation__logo img {
    width: 224px;
    height: 29px;
  }
}
.l-navigation__close {
  position: absolute;
  top: 0.625rem;
  right: 10px;
}
@media screen and (min-width: 48em) {
  .l-navigation__close {
    top: 1.875rem;
    right: 40px;
  }
}
.l-navigation__mail {
  display: none;
  position: absolute;
  right: 112px;
  top: 1.875rem;
}
@media screen and (min-width: 48em) {
  .l-navigation__mail {
    display: block;
  }
}
.l-navigationDecoration {
  position: fixed;
  opacity: 0.2;
}
@media screen and (min-width: 48em) {
  .l-navigationDecoration {
    opacity: 0.5;
  }
}
.l-navigationDecoration:nth-of-type(1) {
  top: 39.590443686%;
}
@media screen and (min-width: 48em) {
  .l-navigationDecoration:nth-of-type(1) {
    left: -21.25%;
    top: 26.5359477124%;
  }
}
.l-navigationDecoration:nth-of-type(1) svg {
  width: 285px;
  height: 200px;
}
@media screen and (min-width: 48em) {
  .l-navigationDecoration:nth-of-type(1) svg {
    width: 490px;
    height: 344px;
  }
}
.l-navigationDecoration:nth-of-type(2) {
  bottom: -2.9375rem;
}
@media screen and (max-width: 47.9375em) {
  .l-navigationDecoration:nth-of-type(2) {
    left: -12.5333333333%;
  }
}
@media screen and (min-width: 48em) {
  .l-navigationDecoration:nth-of-type(2) {
    right: 15.6944444444%;
    bottom: -5.3125rem;
  }
}
.l-navigationDecoration:nth-of-type(2) svg {
  width: 285px;
  height: 115px;
}
@media screen and (min-width: 48em) {
  .l-navigationDecoration:nth-of-type(2) svg {
    width: 490px;
    height: 198px;
  }
}
.l-navigationDecoration:nth-of-type(3) {
  top: -5.8125rem;
}
@media screen and (max-width: 47.9375em) {
  .l-navigationDecoration:nth-of-type(3) {
    left: -26.4%;
  }
}
.l-navigationDecoration:nth-of-type(3) svg {
  width: 251px;
  height: 197px;
}
.l-navigationDecoration svg {
  display: flex;
}

.kv {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 57rem;
  padding-bottom: 5%;
}
@media screen and (max-width: 48em) {
  .kv {
    height: 25rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .kv {
    height: 14rem;
  }
}
.kv__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.kv__slider {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 50rem;
  pointer-events: none;
}
@media screen and (max-width: 48em) {
  .kv__slider {
    height: 24rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .kv__slider {
    height: 14rem;
  }
}
.kv__slider_item {
  position: absolute;
}
.kv__slider_item--top {
  --mask-image: url("../images/top_mask.png");
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 29.5rem;
}
@media screen and (max-width: 48em) {
  .kv__slider_item--top {
    height: 13.5rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .kv__slider_item--top {
    height: 7rem;
  }
}
.kv__slider_item--top .kv__slider_item_mover_block {
  display: flex;
  flex-direction: column-reverse;
  height: 400px !important;
}
.kv__slider_item--bottom {
  --mask-image: url("../images/bottom_mask.png");
  --animation-deirection: reverse;
  right: 0;
  bottom: 12px;
  z-index: 1;
  width: 100%;
  height: 29.5rem;
}
@media screen and (max-width: 48em) {
  .kv__slider_item--bottom {
    height: 13.5rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .kv__slider_item--bottom {
    height: 7rem;
  }
}
.kv__slider_item_mover {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  -webkit-mask-image: var(--mask-image);
  mask-image: var(--mask-image);
  -webkit-mask-size: 100%;
  mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.kv__slider_item_mover_block {
  display: flex;
  flex-direction: column;
}
.kv__slider_item_mover_image {
  flex-shrink: 0;
  width: 100%;
  height: clamp(24rem, 2.6vw, 40rem);
}
@media screen and (max-width: 48em) {
  .kv__slider_item_mover_image {
    height: 24rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .kv__slider_item_mover_image {
    height: 12rem;
  }
}
.kv__slider_item_border {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
}

.block {
  display: block !important;
}

.grid {
  display: grid !important;
}

.none {
  display: none !important;
}

@media screen and (max-width: 1000px) {
  .tablet-block {
    display: block !important;
  }
}

@media screen and (max-width: 1000px) {
  .tablet-none {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .sp-block {
    display: block !important;
  }
  .sp-none {
    display: none !important;
  }
}
.only-pc {
  display: block !important;
}
@media screen and (max-width: 1000px) {
  .only-pc {
    display: none !important;
  }
}

.only-sp {
  display: none !important;
}
@media screen and (max-width: 1000px) {
  .only-sp {
    display: flex !important;
  }
}

@media screen and (max-width: 1000px) {
  .mb-22-sp {
    margin-bottom: 22px;
  }
}

.l-footer {
  background-color: #e6f0f7;
  padding-top: 3.75rem;
  padding-bottom: 3rem;
  position: relative;
}
@media screen and (min-width: 64em) {
  .l-footer {
    padding-top: 6.5rem;
    padding-bottom: 1.75rem;
  }
}
.l-footer__inner {
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .l-footer__inner {
    max-width: 1328px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 48em) {
  .l-footer__wrapper {
    display: flex;
    justify-content: space-between;
    column-gap: 40px;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__item {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .l-footer__item {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    column-gap: 64px;
    row-gap: 2.5rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .l-footer__item {
    margin-top: 2.5rem;
  }
}
.l-footer__heading {
  grid-column: 1/2;
  grid-row: 1/5;
}
@media screen and (min-width: 48em) {
  .l-footer__heading {
    padding-top: 0.5rem;
  }
}
.l-footer__logo {
  display: flex;
  width: 208px;
  height: 27px;
}
@media screen and (min-width: 64em) {
  .l-footer__logo {
    width: 256px;
    height: 33px;
  }
}
.l-footer__address {
  margin-top: 2.0625rem;
}
@media screen and (min-width: 64em) {
  .l-footer__address {
    margin-top: 3rem;
  }
}
.l-footer__address p {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 47.9375em) {
  .l-footer__address ul {
    margin-top: 0.8125rem;
    column-gap: 16px;
  }
}
@media screen and (min-width: 47.9375em) and (min-width: 48em) {
  .l-footer__address ul li {
    margin-top: 0.6875rem;
  }
}
.l-footer__address dl {
  font-family: Inter, sans-serif;
  display: flex;
  column-gap: 8px;
}
.l-footer__address dl dt {
  width: 31px;
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 500;
}
.l-footer__address dl dt:after {
  content: ":";
}
.l-footer__address dl dd {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .l-footer__address dl dd {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1;
    font-weight: 500;
  }
}
.l-footer__contact {
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .l-footer__contact {
    margin-top: 1.9375rem;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__navigation {
    border-top: 1px solid rgba(18, 61, 131, 0.2);
  }
}
@media screen and (min-width: 30em) {
  .l-footer__navigation {
    display: flex;
    flex-direction: column;
    row-gap: 2.125rem;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__navigation {
    width: 100%;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__menu {
    width: 100%;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__menu .l-footerNavigation {
    border-top: 1px solid rgba(18, 61, 131, 0.2);
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footer__menu .l-footerNavigation a:before {
    display: none;
  }
}
.l-footer__link {
  margin-top: 3rem;
}
@media screen and (min-width: 63.9375em) {
  .l-footer__link {
    display: flex;
    column-gap: 24px;
  }
}
@media screen and (min-width: 64em) {
  .l-footer__link {
    margin-top: 4rem;
  }
}
.l-footer__copyright {
  margin-top: 1.5rem;
}
@media screen and (min-width: 30em) {
  .l-footer__copyright {
    margin-top: 6.75rem;
  }
}
.l-footer__copyright span {
  font-size: 0.625rem;
  letter-spacing: 0.04em;
  line-height: 2.4;
  color: #969899;
}
.l-footer__return {
  position: absolute;
  bottom: 0;
  right: 0;
}
.l-footer__return a {
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #123d83;
  background-color: #fff;
  border-radius: 12px 0 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__return a:hover {
    color: #fff;
    background-color: #1eb8d4;
  }
}
@media screen and (min-width: 30em) {
  .l-footer__return a {
    width: 80px;
    height: 80px;
  }
}
.l-footer__return i {
  width: 20px;
  height: 20px;
  font-size: 23px;
}
.l-footerItem:nth-of-type(1) {
  display: flex;
  flex-wrap: wrap;
  column-gap: 48px;
  row-gap: 1.5rem;
}
@media screen and (max-width: 29.9375em) {
  .l-footerItem:nth-of-type(1) {
    flex-direction: column;
  }
}
@media screen and (min-width: 63.9375em) {
  .l-footerItem:nth-of-type(2) {
    margin-top: 2.5rem;
  }
}
.l-footerContact {
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .l-footerContact:hover .l-footerContact__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footerContact:hover .l-footerContact__text span {
    color: #1eb8d4;
  }
}
.l-footerContact__icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  background-color: #d6141c;
  position: relative;
}
.l-footerContact__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.l-footerContact__text span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4285714286;
  font-weight: 700;
  color: #d6141c;
  transition: color 0.3s ease;
}
.l-footerNavigation + .l-footerMenu {
  margin-top: 0;
}
@media screen and (min-width: 30em) {
  .l-footerNavigation + .l-footerMenu {
    margin-top: 2.125rem;
  }
}
.l-footerNavigation a {
  width: 100%;
  display: block;
  position: relative;
  padding-bottom: 1rem;
}
@media screen and (min-width: 29.9375em) {
  .l-footerNavigation a {
    padding-top: 1rem;
  }
}
@media screen and (min-width: 30em) {
  .l-footerNavigation a {
    padding-bottom: 0.5rem;
    width: 176px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footerNavigation a:hover:after {
    transform-origin: left;
    transform: scale(1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footerNavigation a:hover .l-footerNavigation__en,
  .l-footerNavigation a:hover .l-footerNavigation__ja {
    color: #1eb8d4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footerNavigation a:hover .l-footerNavigation__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.6s ease;
  }
}
.l-footerNavigation a:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(18, 61, 131, 0.2);
}
.l-footerNavigation a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #1eb8d4;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.6s ease;
}
.l-footerNavigation__en {
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0em;
  line-height: 1.1818181818;
  font-weight: 500;
  display: block;
  color: #123d83;
  opacity: 0.5;
  transition: color 0.3s ease;
}
.l-footerNavigation__ja {
  display: block;
  margin-top: 0.125rem;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
}
.l-footerNavigation__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  background-color: #123d83;
  position: absolute;
  top: 6px;
  right: 0;
}
@media screen and (min-width: 29.9375em) {
  .l-footerNavigation__icon {
    top: 50%;
    transform: translateY(-50%);
    right: 3px;
  }
}
@media screen and (min-width: 30em) {
  .l-footerNavigation__icon {
    bottom: 0.75rem;
    right: 0;
  }
}
.l-footerNavigation__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.4s ease;
}
.l-footerNavigation__icon i {
  width: 12px;
  height: 12px;
  font-size: 12px;
  position: relative;
  top: -2px;
  left: 2px;
  z-index: 2;
}
.l-footerMenu {
  margin-top: 1rem;
}
@media screen and (min-width: 30em) {
  .l-footerMenu {
    margin-top: 1.5rem;
  }
}
.l-footerMenu__title a {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.7142857143;
  font-weight: 500;
  color: #123d83;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footerMenu__title a:hover {
    color: #1eb8d4;
  }
}
.l-footerMenu__item {
  margin-top: 0.75rem;
}
@media screen and (min-width: 30em) {
  .l-footerMenu__item {
    padding-left: 2px;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footerMenu__item {
    display: flex;
    flex-wrap: wrap;
    row-gap: 0.75rem;
  }
}
@media screen and (min-width: 29.9375em) {
  .l-footerMenu__item li {
    width: 50%;
  }
}
@media screen and (min-width: 30em) {
  .l-footerMenu__item li:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}
.l-footerMenu__item a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footerMenu__item a:hover {
    color: #1eb8d4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-footerMenu__item a:hover:before {
    background-color: #1eb8d4;
  }
}
.l-footerMenu__item a:before {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background-color: #123d83;
  transition: background-color 0.3s ease;
}
.l-footerSearch__title {
  padding-left: 3px;
}
.l-footerSearch__title p {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1.2142857143;
  font-weight: 600;
  color: #123d83;
}
.l-footerSearch__form {
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .l-footerSearch__form {
    margin-top: 1.25rem;
  }
}
.l-footerSearch__form form {
  display: flex;
}
.l-footerSearch__form form input[type=text] {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
  background-color: #fff;
  width: calc(100% - 60px);
  height: 60px;
  padding: 0 20px;
  border-radius: 6px 0 0 6px;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
  color: #111;
}
@media screen and (min-width: 30em) {
  .l-footerSearch__form form input[type=text] {
    padding: 0 24px;
    width: 235px;
    height: 56px;
  }
}
.l-footerSearch__form form input[type=text]::placeholder {
  color: #969899;
}
.l-footerSearch__form form input[type=text]:focus {
  outline: none;
}
.l-footerSearch__form form input[type=submit] {
  background-color: #123d83;
  height: 60px;
  width: 60px;
  border-radius: 0 6px 6px 0;
  color: #fff;
  background-image: url(/assets/images/common/ico_searchWhite.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 18px 18px;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footerSearch__form form input[type=submit]:hover {
    background-color: #1eb8d4;
  }
}
@media screen and (min-width: 30em) {
  .l-footerSearch__form form input[type=submit] {
    background-size: 16px 16px;
    height: 56px;
    width: 56px;
  }
}
@media screen and (min-width: 64em) {
  .l-footerLink {
    text-align: right;
  }
}
@media screen and (min-width: 64em) {
  .l-footerLink:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}
.l-footerLink a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .l-footerLink a:hover {
    color: #1eb8d4;
  }
}
@media screen and (min-width: 30em) {
  .l-footerLink a {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}

/*
 * Fonts
 * -------------------------------------------------------------------
 */
/*
 * トップページ
 * -------------------------------------------------------------------
 */
#not-found .circles {
  background: #fff;
  text-align: center;
  position: relative;
  margin-top: -60px;
}
#not-found .circles:after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100px;
  background: #fff;
  position: absolute;
  top: -50px;
  left: 0;
  transform: skewY(-4deg);
  -webkit-transform: skewY(-4deg);
}
#not-found .circles p {
  font-size: 15rem;
  color: #fff;
  padding-top: 60px;
  position: relative;
  z-index: 9;
  line-height: 100%;
}
#not-found .circles p small {
  display: inline-block;
  font-size: 2rem;
  line-height: 2;
  vertical-align: top;
  margin-top: 2em;
}
#not-found .circles .circle.small {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: #48a9e6;
  position: absolute;
  z-index: 1;
  top: 80px;
  left: 50%;
  animation: 7s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  -webkit-animation: 7s smallmove infinite cubic-bezier(1, 0.22, 0.71, 0.98);
  animation-delay: 1.2s;
  -webkit-animation-delay: 1.2s;
}
#not-found .circles .circle.med {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #48a9e6;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 10%;
  animation: 7s medmove infinite cubic-bezier(0.32, 0.04, 0.15, 0.75);
  -webkit-animation: 7s medmove infinite cubic-bezier(0.32, 0.04, 0.15, 0.75);
  animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
}
#not-found .circles .circle.big {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: #48a9e6;
  position: absolute;
  z-index: 1;
  top: 200px;
  right: 0;
  animation: 8s bigmove infinite;
  -webkit-animation: 8s bigmove infinite;
  animation-delay: 3s;
  -webkit-animation-delay: 1s;
}

@-webkit-keyframes smallmove {
  0% {
    top: 10px;
    left: 45%;
    opacity: 1;
  }
  25% {
    top: 300px;
    left: 40%;
    opacity: 0.7;
  }
  50% {
    top: 240px;
    left: 55%;
    opacity: 0.4;
  }
  75% {
    top: 100px;
    left: 40%;
    opacity: 0.6;
  }
  100% {
    top: 10px;
    left: 45%;
    opacity: 1;
  }
}
@keyframes smallmove {
  0% {
    top: 10px;
    left: 45%;
    opacity: 1;
  }
  25% {
    top: 300px;
    left: 40%;
    opacity: 0.7;
  }
  50% {
    top: 240px;
    left: 55%;
    opacity: 0.4;
  }
  75% {
    top: 100px;
    left: 40%;
    opacity: 0.6;
  }
  100% {
    top: 10px;
    left: 45%;
    opacity: 1;
  }
}
@-webkit-keyframes medmove {
  0% {
    top: 0px;
    left: 20%;
    opacity: 1;
  }
  25% {
    top: 300px;
    left: 80%;
    opacity: 0.7;
  }
  50% {
    top: 240px;
    left: 55%;
    opacity: 0.4;
  }
  75% {
    top: 100px;
    left: 40%;
    opacity: 0.6;
  }
  100% {
    top: 0px;
    left: 20%;
    opacity: 1;
  }
}
@keyframes medmove {
  0% {
    top: 0px;
    left: 20%;
    opacity: 1;
  }
  25% {
    top: 300px;
    left: 80%;
    opacity: 0.7;
  }
  50% {
    top: 240px;
    left: 55%;
    opacity: 0.4;
  }
  75% {
    top: 100px;
    left: 40%;
    opacity: 0.6;
  }
  100% {
    top: 0px;
    left: 20%;
    opacity: 1;
  }
}
@-webkit-keyframes bigmove {
  0% {
    top: 0px;
    right: 4%;
    opacity: 0.5;
  }
  25% {
    top: 100px;
    right: 40%;
    opacity: 0.4;
  }
  50% {
    top: 240px;
    right: 45%;
    opacity: 0.8;
  }
  75% {
    top: 100px;
    right: 35%;
    opacity: 0.6;
  }
  100% {
    top: 0px;
    right: 4%;
    opacity: 0.5;
  }
}
@keyframes bigmove {
  0% {
    top: 0px;
    right: 4%;
    opacity: 0.5;
  }
  25% {
    top: 100px;
    right: 40%;
    opacity: 0.4;
  }
  50% {
    top: 240px;
    right: 45%;
    opacity: 0.8;
  }
  75% {
    top: 100px;
    right: 35%;
    opacity: 0.6;
  }
  100% {
    top: 0px;
    right: 4%;
    opacity: 0.5;
  }
}
body:where(:not(.top)) .l-main {
  padding-top: 5.875rem;
}
@media screen and (min-width: 48em) {
  body:where(:not(.top)) .l-main {
    padding-top: 8.5625rem;
  }
}

.fa-brands {
  color: #123d83;
}

.l-main {
  overflow: hidden;
}

.c-contact {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  background-color: #0e264c;
  overflow: hidden;
}
.c-contact__background {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  height: 390px;
}
@media screen and (min-width: 48em) {
  .c-contact__background {
    height: 428px;
  }
}
.c-contact__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-contact__inner {
  grid-column: 1/2;
  grid-row: 1/2;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 30em) {
  .c-contact__inner {
    max-width: 1266px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.c-contact__wrapper {
  padding-top: 4.5rem;
  color: #fff;
}
@media screen and (min-width: 48em) {
  .c-contact__wrapper {
    padding-top: 5rem;
    padding-bottom: 5.75rem;
  }
}
@media screen and (min-width: 48em) {
  .c-contact__title {
    margin-left: -2px;
  }
}
.c-contact__title span {
  font-family: Inter, sans-serif;
  font-size: 3rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-weight: 600;
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .c-contact__title span {
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  .c-contact__title span {
    font-size: 4rem;
    letter-spacing: 0.02em;
    line-height: 1.125;
    font-weight: 600;
  }
}
.c-contact__text {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48em) {
  .c-contact__text {
    margin-top: 1rem;
  }
}
.c-contact__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .c-contact__text p {
    text-align: center;
  }
}
@media screen and (min-width: 48em) {
  .c-contact__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.c-contact__button {
  margin-top: 1.75rem;
}
@media screen and (max-width: 47.9375em) {
  .c-contact__button {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 48em) {
  .c-contact__button {
    margin-top: 2.5rem;
  }
}
.c-contactButton {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  width: 265px;
  height: 3.25rem;
  border: 2px solid #fff;
  border-radius: 32px;
  padding-left: 12px;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0 ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-contactButton:hover {
    border-color: #123d83;
    background-color: #123d83;
    transition: border-color 0.3s ease, background-color 0.3s 0.3s ease;
  }
  .c-contactButton:hover .c-contactButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 48em) {
  .c-contactButton {
    width: 294px;
    height: 4rem;
    column-gap: 8px;
    padding-left: 4px;
  }
}
.c-contactButton:not(.is-active) .c-contactButton__background {
  left: -64px;
}
.c-contactButton.is-active .c-contactButton__background {
  right: -64px;
}
.c-contactButton * {
  pointer-events: none;
}
.c-contactButton__background {
  width: 64px;
  height: 64px;
  position: absolute;
  display: block;
  background-color: #123d83;
  border-radius: 32px;
}
.c-contactButton__text {
  position: relative;
  z-index: 2;
}
.c-contactButton__text span {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .c-contactButton__text span {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: 700;
  }
}
.c-contactButton__icon {
  width: 20px;
  height: 20px;
  color: #fff;
  background-color: #d6141c;
  border-radius: 50%;
  position: relative;
  z-index: 2;
}
.c-contactButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-contactButton__icon i {
  width: 14px;
  height: 14px;
  font-size: 10px;
  position: relative;
  top: -2px;
  left: 4px;
  z-index: 2;
}

.p-pageTitlePrimary h3 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1.0625rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-pageTitlePrimary h3 {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    padding-left: 28px;
    padding-bottom: 1.125rem;
  }
}
.p-pageTitlePrimary h3:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .p-pageTitlePrimary h3:before {
    top: 0.375rem;
    height: 2.25rem;
    height: calc(100% - 24px);
  }
}
.p-pageTitlePrimary h3:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
.p-pageIntroduction {
  margin-top: 4rem;
}
@media screen and (min-width: 48em) {
  .p-pageIntroduction {
    margin-top: 2.5rem;
  }
}
.p-pageIntroduction__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 89.9375em) {
  .p-pageIntroduction__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 90em) {
  .p-pageIntroduction__inner {
    padding-left: 132px;
  }
}
.p-pageIntroduction__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.p-pageSection:not(:first-of-type) {
  padding-top: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .p-pageSection:not(:first-of-type) {
    margin-top: 3.5rem;
    padding-top: 7.5rem;
  }
}
.p-pageSection:first-of-type {
  padding-top: 5rem;
  margin-top: -5rem;
}
.p-pageSection#section1 .p-pageSection__image svg {
  aspect-ratio: 480/337;
}
@media screen and (min-width: 48em) {
  .p-pageSection#section1 .p-pageSection__image svg {
    bottom: -47.619047619%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageSection#section1 .p-pageSection__image svg {
    bottom: -15rem;
  }
}
.p-pageSection#section2 .p-pageSection__image svg {
  aspect-ratio: 480/194;
}
@media screen and (min-width: 48em) {
  .p-pageSection#section2 .p-pageSection__image svg {
    bottom: -22.2222222222%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageSection#section2 .p-pageSection__image svg {
    bottom: -7rem;
  }
}
.p-pageSection#section3 .p-pageSection__image svg {
  aspect-ratio: 480/376;
}
@media screen and (min-width: 48em) {
  .p-pageSection#section3 .p-pageSection__image svg {
    bottom: -35.7142857143%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageSection#section3 .p-pageSection__image svg {
    bottom: -11.25rem;
  }
}
.p-pageSection__wrapper {
  position: relative;
}
.p-pageSection__heading {
  background: #50617f;
  border-radius: 6px 6px 6px 0;
  display: inline-flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  padding: 1.625rem 18px;
  position: absolute;
  top: -1.5rem;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .p-pageSection__heading {
    top: -2rem;
    column-gap: 28px;
    padding: 2.8125rem 40px 2.875rem;
  }
}
.p-pageSection__heading h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-pageSection__heading h3 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 0.6125;
    font-weight: 600;
  }
}
.p-pageSection__heading span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 14px;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .p-pageSection__heading span {
    column-gap: 28px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 3.2;
    font-weight: 600;
  }
}
.p-pageSection__heading span:before {
  content: "";
  width: 1px;
  height: 28px;
  background-color: #fff;
  opacity: 0.2;
}
@media screen and (min-width: 48em) {
  .p-pageSection__heading span:before {
    height: 38px;
  }
}
.p-pageSection__image {
  position: relative;
}
.p-pageSection__image svg {
  display: block;
  position: absolute;
  right: -49px;
  width: 216px;
  bottom: -2.5rem;
}
@media screen and (max-width: 768px) {
  .p-pageSection__image svg {
    display: none;
  }
}
@media screen and (min-width: 30em) {
  .p-pageSection__image svg {
    right: -69px;
    width: 64.4776119403%;
    bottom: -13.3333333333%;
  }
}
@media screen and (min-width: 48em) {
  .p-pageSection__image svg {
    right: -152px;
    width: 49.5867768595%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageSection__image svg {
    width: 480px;
  }
}
.p-pageSection__title {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-pageSection__title {
    margin-top: 4rem;
  }
}
.p-pageSection__title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .p-pageSection__title h4 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-pageSection__text {
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-pageSection__text {
    margin-top: 1.5rem;
    width: 640px;
  }
}
.p-pageSection__text p {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
.p-pageSection__relation {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-pageSection__relation {
    margin-top: 5rem;
  }
}
.p-pageSectionImage {
  overflow: hidden;
  border-radius: 0 0 0 12px;
  width: calc(100% + 20px);
}
@media screen and (min-width: 30em) {
  .p-pageSectionImage {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 64em) {
  .p-pageSectionImage {
    width: calc(100% + 50vw - 70.2702702703% - var(--bar) / 2);
  }
}
@media screen and (min-width: 90em) {
  .p-pageSectionImage {
    width: calc(100% + 50vw - 64.4628099174% - var(--bar) / 2);
  }
}
.p-pageSectionImage img {
  width: 100%;
  aspect-ratio: 355/300;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .p-pageSectionImage img {
    aspect-ratio: 1064/504;
  }
}
.p-pageDetailBody__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-pageDetailBody__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 960px;
  }
}
.p-pageDetailBody__editor h2 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h2 {
    padding-left: 28px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 3.5rem;
    padding-bottom: 1.125rem;
  }
}
.p-pageDetailBody__editor h2:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h2:not(:first-child) {
    margin-top: 7.5rem;
  }
}
.p-pageDetailBody__editor h2:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h2:before {
    top: 0.375rem;
    height: calc(100% - 24px);
  }
}
.p-pageDetailBody__editor h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (max-width: 47.9375em) {
  .p-pageDetailBody__editor h2 + h3 {
    margin-top: 3rem;
  }
}
.p-pageDetailBody__editor h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.125rem 18px 1.0625rem 37px;
  color: #123d83;
  background-color: #e6f0f7;
  border-radius: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h3 {
    padding: 1.25rem 23px 1.25rem 46px;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
.p-pageDetailBody__editor h3:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_circle.svg);
  width: 10px;
  height: 10px;
  top: 1.5625rem;
  left: 18px;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h3:before {
    width: 12px;
    height: 12px;
    top: 1.8125rem;
    left: 23px;
  }
}
.p-pageDetailBody__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
  margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .p-pageDetailBody__editor h4 {
    padding-left: 22px;
  }
}
@media screen and (max-width: 480px) {
  .p-pageDetailBody__editor h4 {
    font-size: 1.1rem;
    padding-left: 0;
  }
}
.p-pageDetailBody__editor h4:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_rhombus.svg);
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h4:before {
    width: 14px;
    height: 7px;
  }
}
.p-pageDetailBody__editor h4 + p {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor h4 + p {
    margin-top: 1.3125rem;
  }
}
.p-pageDetailBody__editor p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-pageDetailBody__editor p + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor p + p {
    margin-top: 1.5625rem;
  }
}
.p-pageDetailBody__editor figure {
  width: 100%;
  margin: 0;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor figure {
    margin-top: 4rem;
    width: 66.1157024793%;
  }
}
.p-pageDetailBody__editor figure.is-type-video {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
}
.p-pageDetailBody__editor figure iframe {
  width: 100%;
}
.p-pageDetailBody__editor figure iframe + p {
  margin-top: 2.5rem;
}
.p-pageDetailBody__editor img {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  overflow: hidden;
}
.p-pageDetailBody__editor video {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor .wp-block-columns {
    display: flex;
    margin-top: 4rem;
    column-gap: 6.6115702479%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-pageDetailBody__editor .wp-block-columns .wp-block-column:not(:first-of-type) {
    margin-top: 2.0625rem;
  }
}
.p-pageDetailBody__editor .wp-block-columns figure {
  width: 100%;
  margin-top: 0;
}
.p-pageDetailBody__editor .wp-block-columns img {
  border-radius: 8px;
}
.p-pageDetailBody__editor a:not(.wp-block-image a) {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .p-pageDetailBody__editor a:not(.wp-block-image a) {
    background-image: linear-gradient(#123d83, #123d83);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 100%;
    background-size: 100% 1px;
  }
}
@media screen and (min-width: 48em) {
  .p-pageDetailBody__editor a:not(.wp-block-image a):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #123d83;
    transition: background-color 0.3s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 47.9375em) {
  .p-pageDetailBody__editor a:not(.wp-block-image a):hover {
    background-size: 0% 1px;
    background-image: linear-gradient(#1eb8d4, #1eb8d4);
    transition: color 0.3s ease, background-size 0.3s ease, background-image 0.3s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 48em) {
  .p-pageDetailBody__editor a:not(.wp-block-image a):hover:after {
    animation: textUnderLine 0.4s linear;
    background-color: #1eb8d4;
  }
}
.p-pageDetailButton {
  margin-top: 4rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 48em) {
  .p-pageDetailButton {
    margin-top: 7.5rem;
    margin-bottom: 10rem;
  }
}
.p-pageDetailButton__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-pageDetailButton__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1180px;
  }
}
.p-pageDetailButton__item {
  display: flex;
  justify-content: center;
}
.p-pageDetailButtonItem {
  width: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  border: 2px solid #123d83;
  padding-top: 1rem;
  padding-bottom: 1.0625rem;
  border-radius: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0 ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-pageDetailButtonItem:hover {
    color: #fff;
    background-color: #123d83;
    transition: background-color 0.3s 0.3s ease;
  }
  .p-pageDetailButtonItem:hover .p-newsDetailButtonItem__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
  .p-pageDetailButtonItem:hover .p-pageDetailButtonItem__text {
    color: #fff;
  }
}
@media screen and (min-width: 48em) {
  .p-pageDetailButtonItem {
    padding-top: 1.1875rem;
    padding-bottom: 1.3125rem;
    border-radius: 2rem;
    width: 294px;
  }
}
.p-pageDetailButtonItem:not(.is-active) .p-newsDetailButtonItem__background {
  left: -66px;
}
.p-pageDetailButtonItem.is-active .p-newsDetailButtonItem__background {
  right: -66px;
}
.p-pageDetailButtonItem__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d6141c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}
.p-pageDetailButtonItem__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-pageDetailButtonItem__icon i {
  display: flex;
  width: 8px;
  height: 7px;
  font-size: 8px;
  position: relative;
  z-index: 2;
}
.p-pageDetailButtonItem__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-pageDetailButtonItem__text {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: 700;
  }
}

.works__table {
  margin-top: 2em;
}
.works__table dl {
  display: flex;
  align-items: center;
  border-top: 1px solid #b5b1b1;
  border-bottom: 1px solid #b5b1b1;
  padding: 1.5em 1em;
}
@media screen and (max-width: 768px) {
  .works__table dl {
    flex-wrap: wrap;
  }
}
.works__table dt {
  width: 15%;
}
@media screen and (max-width: 480px) {
  .works__table dt {
    width: 28%;
  }
}
.works__table dd:nth-child(2) {
  width: 25%;
}
@media screen and (max-width: 480px) {
  .works__table dd:nth-child(2) {
    width: 28%;
  }
}
.works__table dd:nth-child(3) {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .works__table dd:nth-child(3) {
    width: 100%;
    margin-top: 1em;
  }
}

.c-breadcrumb__inner {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-left: 24px;
  overflow: hidden;
}
@media screen and (min-width: 30em) {
  .c-breadcrumb__inner {
    padding-right: 95px;
    padding-left: 95px;
  }
}
.c-breadcrumb__item {
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  column-gap: 8px;
  border-top: 1px solid #e6e6e6;
  overflow: scroll;
  -ms-overflow-style: none;
}
@media screen and (min-width: 48em) {
  .c-breadcrumb__item {
    padding: 1.6875rem 0;
    justify-content: flex-end;
  }
}
.c-breadcrumb__item::-webkit-scrollbar {
  display: none;
}
.c-breadcrumbItem {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  white-space: nowrap;
}
.c-breadcrumbItem:not(:first-of-type) {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.c-breadcrumbItem:not(:first-of-type):before {
  content: "";
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #e6e6e6;
}
.c-breadcrumbItem a {
  color: #969899;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-breadcrumbItem a:hover {
    color: #1eb8d4;
  }
}
.c-breadcrumbItem span {
  color: #123d83;
}

.p-pageToc {
  margin-top: 2.25rem;
  margin-bottom: 5rem;
}
@media screen and (min-width: 48em) {
  .p-pageToc {
    margin-top: 2.5rem;
    margin-bottom: 5.375rem;
  }
}
.p-pageToc__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 89.9375em) {
  .p-pageToc__inner {
    max-width: 1272px;
  }
}
@media screen and (min-width: 30em) {
  .p-pageToc__inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}
.p-pageToc__item {
  display: flex;
  column-gap: 2.0895522388%;
  flex-wrap: wrap;
  row-gap: 0.75rem;
}
@media screen and (min-width: 30em) {
  .p-pageToc__item {
    column-gap: 16px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-pageToc__item li {
    width: 48.9552238806%;
  }
}
.p-pageTocItem {
  position: relative;
  display: flex;
  column-gap: 6px;
  height: 3rem;
  border-radius: 1.5rem;
  background-color: #e6f0f7;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (min-width: 30em) {
  .p-pageTocItem {
    padding-right: 24px;
    padding-left: 34px;
    height: 2.9375rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-pageTocItem:hover .p-pageTocItem__text {
    color: #fff;
  }
  .p-pageTocItem:hover .p-pageTocItem__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
}
.p-pageTocItem:not(.is-active) .p-pageTocItem__background {
  left: -48px;
}
.p-pageTocItem.is-active .p-pageTocItem__background {
  right: -48px;
}
.p-pageTocItem * {
  pointer-events: none;
}
.p-pageTocItem__text {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-pageTocItem__text {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-pageTocItem__icon {
  color: #fff;
  background-color: #123d83;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 29.9375em) {
  .p-pageTocItem__icon {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
  }
}
.p-pageTocItem__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-pageTocItem__icon i {
  width: 10px;
  height: 10px;
  font-size: 10px;
  position: relative;
  top: -4px;
  left: 4px;
  z-index: 2;
}

.sec-topFacade__filter {
  position: absolute;
  width: 300px;
  background: rgba(14, 38, 77, 0.8);
  backdrosec-filter: blur(25px);
  -webkit-backdrosec-filter: blur(25px);
  z-index: 2;
  aspect-ratio: 300/825;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__filter {
    width: 465px;
    aspect-ratio: 465/1091;
  }
}
.sec-topFacade__image {
  position: absolute;
  z-index: 1;
  width: 300px;
  aspect-ratio: 300/825;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__image {
    width: 465px;
    aspect-ratio: 465/1091;
  }
}
.sec-topFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-topFacade__wrapper {
  display: flex;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacade__wrapper {
    overflow: hidden;
  }
}
.sec-topFacade__navigation {
  width: 5.3333333333%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__navigation {
    width: 6.6666666667%;
  }
}
.sec-topFacade__navigation span {
  display: none;
}
@media screen and (min-width: 64em) {
  .sec-topFacade__navigation span {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    line-height: 1.25;
    font-weight: 500;
    writing-mode: vertical-rl;
    color: #fff;
    opacity: 0.5;
  }
}
.sec-topFacade__group {
  width: 94.6666666667%;
  background-color: #e6f0f7;
  position: relative;
  z-index: 3;
  padding: 5.9375rem 6.1333333333% 1.5rem;
  border-radius: 0 0 0 20px;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__group {
    max-width: 1344px;
    width: 93.3333333333%;
    padding: 11.6875rem 2.9761904762% 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacade__group {
    padding: 9vw 2.7777777778vw 2.7777777778vw;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacade__group {
    max-width: 100%;
    aspect-ratio: 1344/765;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacade__group:before {
    content: "";
    top: 0;
    display: block;
    height: 100%;
    left: 100%;
    background-color: #e6f0f7;
    position: absolute;
    width: calc((50vw - 53.5714285714% - var(--bar) / 2) * 2);
  }
}
.sec-topFacade__copy {
  position: relative;
  z-index: 1;
  padding-left: 0.6557377049%;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__copy {
    padding-left: 3.0674846626%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacade__copy {
    padding-left: 2.7777777778vw;
  }
}
.sec-topFacade__carousel {
  margin-top: -2.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .sec-topFacade__carousel {
    margin-top: 6.4583333333vw;
  }
}
.sec-topFacadeIcon {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sec-topFacadeIcon.is-active {
  opacity: 1;
  visibility: visible;
}
.sec-topFacadeIcon:nth-of-type(1) {
  width: 122.1122112211%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacadeIcon:nth-of-type(1) {
    margin-top: 2rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(1) {
    position: absolute;
    top: 9.8611111111vw;
    right: -11.9444444444vw;
    width: 63.8888888889vw;
  }
}
.sec-topFacadeIcon:nth-of-type(1) svg {
  width: 100%;
  aspect-ratio: 920/646;
}
.sec-topFacadeIcon:nth-of-type(2) {
  width: 112.2112211221%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacadeIcon:nth-of-type(2) {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(2) {
    position: absolute;
    top: 8.75vw;
    right: -7.3611111111vw;
    width: 59.0277777778vw;
  }
}
.sec-topFacadeIcon:nth-of-type(2) svg {
  width: 100%;
  aspect-ratio: 850/648;
}
.sec-topFacadeIcon:nth-of-type(3) {
  width: 131.3531353135%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacadeIcon:nth-of-type(3) {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(3) {
    position: absolute;
    top: 15.9722222222vw;
    right: -16.9444444444vw;
    width: 69.1666666667vw;
  }
}

.p-pageFacade {
  margin-bottom: 5rem;
}
@media screen and (min-width: 48em) {
  .p-pageFacade {
    margin-bottom: 4.5rem;
  }
}
.p-pageFacade__decoration {
  right: -6.7605633803%;
  bottom: -1.5625rem;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__decoration {
    right: 10.2941176471%;
    bottom: -3.375rem;
  }
}
.p-pageFacade__decoration svg {
  width: 160px;
  height: 77px;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__decoration svg {
    width: 301px;
    height: 144px;
  }
}
.p-pageFacade__inner {
  width: 94.6666666667%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__inner {
    width: 94.4444444444%;
  }
}
.p-pageFacade__heading {
  position: absolute;
  z-index: 10;
  left: 4.5070422535%;
  bottom: 9.2105263158%;
}
@media screen and (min-width: 64em) {
  .p-pageFacade__heading {
    bottom: 2.9375rem;
    left: 60px;
  }
}
.p-pageFacade__title {
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  padding: 0.8125rem 16px 0.0625rem 17px;
  border-radius: 0.375rem 0.375rem 0 0;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__title {
    padding: 1.1875rem 32px 0 28px;
    column-gap: 11px;
  }
}
.p-pageFacade__title i {
  color: #123d83;
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__title i {
    width: 16px;
    height: 16px;
  }
}
.p-pageFacade__title span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__title span {
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 500;
  }
}
.p-pageFacade__name {
  background-color: #fff;
  padding: 0.5rem 14px 0.625rem;
  border-radius: 0 0.375rem 0.375rem;
  margin-top: -0.4375rem;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__name {
    margin-top: -0.625rem;
    padding: 0.75rem 24px 0.8125rem;
  }
}
.p-pageFacade__name h2 {
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__name h2 {
    font-size: 2.75rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-pageFacade__image {
  border-radius: 12px;
  width: 100%;
  display: block;
  aspect-ratio: 355/304;
  overflow: hidden;
  opacity: 0;
}
@media screen and (min-width: 48em) {
  .p-pageFacade__image {
    aspect-ratio: 1360/376;
  }
}
.p-pageFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-pageFacade__decoration {
  position: absolute;
  z-index: 1;
}
.p-pageFacade__decoration svg {
  display: flex;
}
.p-pageFacade__decoration path {
  opacity: 0;
}
.p-pageFacadeCarousel {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  z-index: 1;
  aspect-ratio: 355/304;
}
@media screen and (min-width: 64em) {
  .p-pageFacadeCarousel {
    aspect-ratio: 1360/376;
  }
}
.p-pageFacadeCarousel__item {
  position: relative;
  z-index: 1;
  display: flex;
}
.p-pageFacadeCarousel__pagination {
  position: absolute;
  right: 5.9154929577%;
  z-index: 1;
}
@media screen and (min-width: 63.9375em) {
  .p-pageFacadeCarousel__pagination {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 64em) {
  .p-pageFacadeCarousel__pagination {
    bottom: 2.3125rem;
    right: 37px;
  }
}
.p-pageFacadeCarouselItem {
  display: block;
  flex-shrink: 0;
  aspect-ratio: 355/304;
}
@media screen and (min-width: 48em) {
  .p-pageFacadeCarouselItem {
    aspect-ratio: 1360/376;
  }
}
.p-pageFacadeCarouselItem img {
  width: 100%;
  object-fit: cover;
}
.p-pageFacadeCarouselPagination .swiper-pagination-circle {
  display: block;
  width: 6px;
  height: 6px;
  background-color: #fff;
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  transform: rotate(-90deg);
}
.p-pageFacadeCarouselPagination svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-topProduct {
  background-color: #e6f0f7;
  margin-top: 5rem;
  padding-bottom: 23.5rem;
}
@media screen and (max-width: 63.9375em) {
  .p-topProduct {
    padding-top: 4rem;
    overflow: hidden;
  }
}
@media screen and (min-width: 48em) {
  .p-topProduct {
    padding-bottom: 17.125rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topProduct {
    margin-top: 17.375rem;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-topProduct {
    padding-bottom: 5rem;
  }
}
.p-topProduct__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .p-topProduct__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.p-topProduct__wrapper {
  display: flex;
  position: relative;
}
.p-topProduct__decoration {
  position: absolute;
  top: -2rem;
}
@media screen and (max-width: 63.9375em) {
  .p-topProduct__decoration {
    right: -7.1641791045%;
  }
}
@media screen and (min-width: 64em) {
  .p-topProduct__decoration {
    left: 43.4545454545%;
    top: 77.581120944%;
  }
}
.p-topProduct__decoration svg {
  display: flex;
  width: 144px;
  height: 83px;
}
@media screen and (min-width: 64em) {
  .p-topProduct__decoration svg {
    position: absolute;
    top: -7.1875rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topProduct__title {
    position: absolute;
    top: -7.1875rem;
  }
}
.p-topProduct__group {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .p-topProduct__group {
    width: 53%;
  }
}
.p-topProduct__image {
  display: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .p-topProduct__image {
    width: 47%;
    margin-top: -8rem;
    display: grid;
    height: 100%;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topProduct__item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.436440678%;
    margin-top: 2.25rem;
    row-gap: 3.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-topProduct__item {
    column-gap: 6.8656716418%;
  }
}
@media screen and (min-width: 64em) {
  .p-topProduct__item {
    width: 85.4545454545%;
  }
}
.p-topProduct__button {
  margin-top: 3.5rem;
}
@media screen and (max-width: 63.9375em) {
  .p-topProduct__button {
    display: flex;
    justify-content: center;
  }
}
.p-topProduct__button .p-topButtonPrimary {
  background-color: #fff;
}
.p-topProductTitle__en {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-left: 4px;
}
.p-topProductTitle__en svg {
  display: flex;
  width: 16px;
  height: 16px;
}
.p-topProductTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.p-topProductTitle__ja {
  margin-top: 0.6875rem;
}
.p-topProductTitle__ja h2 {
  color: #123d83;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-topProductTitle__ja h2 {
    font-size: 2.125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-topProductItem {
  counter-increment: number;
  position: relative;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 64em) {
  .p-topProductItem:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #123d83;
    opacity: 0.2;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topProductItem {
    width: 31.6737288136%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-topProductItem {
    width: 46.5671641791%;
  }
}
@media screen and (min-width: 64em) {
  .p-topProductItem.is-active {
    background-color: #123d83;
  }
  .p-topProductItem.is-active .p-topProductItem__link:before,
  .p-topProductItem.is-active .p-topProductItem__link:after {
    background-color: #123d83;
  }
  .p-topProductItem.is-active .p-topProductItem__group:before {
    color: #fff;
  }
  .p-topProductItem.is-active .p-topProductItem__title h3 {
    color: #fff;
  }
  .p-topProductItem.is-active .p-topProductItem__text {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .p-topProductItem.is-active .p-topProductItem__icon {
    opacity: 1;
    visibility: visible;
  }
}
.p-topProductItem__link {
  display: block;
}
@media screen and (min-width: 64em) {
  .p-topProductItem__link {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
    padding-left: 49px;
  }
}
.p-topProductItem__link:hover {
  opacity: 1;
}
.p-topProductItem__link:before {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-topProductItem__link:before {
    content: "";
    display: block;
    height: 100%;
    width: calc(100% + 50vw - 50% - 5.5px);
    position: absolute;
    top: 0;
    right: 100%;
    transition: background-color 0.3s ease;
  }
}
.p-topProductItem__link:after {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-topProductItem__link:after {
    content: "";
    display: block;
    height: 100%;
    width: 17.0212765957%;
    position: absolute;
    top: 0;
    left: 100%;
    transition: background-color 0.3s ease;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-topProductItem__link:hover .p-topProductItem__icon {
    opacity: 1;
    visibility: visible;
  }
}
.p-topProductItem__image {
  display: block;
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-topProductItem__image {
    display: none;
  }
}
.p-topProductItem__image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 156/211;
  overflow: hidden;
  object-fit: cover;
}
@media screen and (max-width: 63.9375em) {
  .p-topProductItem__group {
    display: block;
    position: relative;
    margin-top: 0.875rem;
  }
}
.p-topProductItem__group:before {
  content: "0" counter(number) ".";
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .p-topProductItem__group:before {
    top: 0.6875rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topProductItem__group:before {
    position: absolute;
    left: 16px;
    top: 2.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
  }
}
.p-topProductItem__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  right: 0;
  z-index: 1;
  transition: width 0.3s ease, height 0.3s ease, right 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 63.9375em) {
  .p-topProductItem__icon {
    background-color: #123d83;
    top: 2.8125rem;
    margin-top: 135.2564102564%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-topProductItem__icon {
    top: 2.4375rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topProductItem__icon {
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
  }
}
.p-topProductItem__icon svg {
  display: flex;
  width: 9px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 64em) {
  .p-topProductItem__icon svg {
    width: 12px;
    height: 10px;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topProductItem__title {
    display: block;
    margin-top: 0.375rem;
    padding-right: 32px;
  }
}
.p-topProductItem__title h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .p-topProductItem__title h3 {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
    width: 90%;
  }
}
@media screen and (min-width: 64em) {
  .p-topProductItem__text {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
  }
}
.p-topProductItem__text p {
  margin-top: 0.375rem;
  opacity: 0.5;
  color: #123d83;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 64em) {
  .p-topProductItem__text p {
    color: #fff;
  }
}
.p-topProductImage {
  position: relative;
  opacity: 0;
  visibility: hidden;
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.p-topProductImage.is-active {
  opacity: 1;
  visibility: visible;
}
.p-topProductImageItem:nth-of-type(1) {
  width: 100%;
}
.p-topProductImageItem:nth-of-type(1) img {
  aspect-ratio: 550/742;
  border-radius: 8px;
}
.p-topProductImageItem:nth-of-type(2) {
  width: 45.4545454545%;
  position: absolute;
  right: -74px;
  bottom: -5rem;
}
.p-topProductImageItem:nth-of-type(2) img {
  aspect-ratio: 250/250;
  border-radius: 12px;
}
.p-topProductImageItem img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}

.c-productRelation {
  overflow: hidden;
  background-color: #e6f0f7;
  border-radius: 8px;
  padding: 2.25rem 7.1641791045% 3rem;
}
@media screen and (min-width: 48em) {
  .c-productRelation {
    padding: 3.5rem 8.2644628099% 4.5rem;
  }
}
.c-productRelation:not(.is-active) .c-productRelation__all {
  grid-column: 1/3;
}
@media screen and (min-width: 48em) {
  .c-productRelation:not(.is-active) .c-productRelation__all {
    justify-content: flex-end;
  }
}
.c-productRelation:not(.is-active) .c-productRelationCarouselItem {
  margin-right: 32px;
}
.c-productRelation__wrapper {
  position: relative;
}
@media screen and (max-width: 47.9375em) {
  .c-productRelation__wrapper {
    display: flex;
    flex-direction: column;
  }
}
.c-productRelation__heading {
  display: contents;
}
@media screen and (min-width: 48em) {
  .c-productRelation__heading {
    display: grid;
    grid-template-columns: calc(100% - 131px) 131px;
  }
}
.c-productRelation__title {
  grid-column: 1/2;
  grid-row: 1/2;
  display: block;
}
.c-productRelation__all {
  display: flex;
  justify-content: flex-end;
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 48em) {
  .c-productRelation__all {
    padding-bottom: 1.25rem;
    align-items: flex-end;
  }
}
.c-productRelation__all a {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  position: relative;
  transition: color 0.3s ease;
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.0625rem;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelation__all a:hover {
    color: #1eb8d4;
  }
  .c-productRelation__all a:hover:after {
    background-color: #1eb8d4;
    animation: textUnderLine 0.6s linear;
  }
}
.c-productRelation__all a:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #123d83;
  position: absolute;
  bottom: 0.125rem;
  left: 0;
  transition: background-color 0.6s ease;
}
.c-productRelation__carousel {
  margin-top: 1.3125rem;
}
@media screen and (min-width: 48em) {
  .c-productRelation__carousel {
    margin-top: 1.9375rem;
  }
}
.c-productRelationTitle__en {
  display: flex;
  align-items: center;
  column-gap: 6px;
  padding-left: 2px;
}
@media screen and (min-width: 48em) {
  .c-productRelationTitle__en {
    column-gap: 8px;
    padding-left: 4px;
  }
}
.c-productRelationTitle__en svg {
  width: 16px;
  height: 16px;
}
.c-productRelationTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
@media screen and (min-width: 48em) {
  .c-productRelationTitle__en span {
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 500;
  }
}
.c-productRelationTitle__ja {
  margin-top: 0.5625rem;
}
.c-productRelationTitle__ja h3 {
  color: #123d83;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .c-productRelationTitle__ja h3 {
    font-size: 1.6875rem;
    letter-spacing: 0em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.c-productRelationCarousel:not(.swiper-initialized) .c-productRelationCarousel__navigation {
  display: none;
}
.c-productRelationCarousel__navigation {
  display: none;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarousel__navigation {
    display: flex;
    position: absolute;
    top: 0.8125rem;
    right: 0;
    align-items: center;
    column-gap: 12px;
  }
}
.c-productRelationCarousel__item {
  display: flex;
}
.c-productRelationNavigation {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #123d83;
  color: #123d83;
  position: relative;
  z-index: 100;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.c-productRelationNavigation--prev {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #123d83;
  color: #123d83;
  position: relative;
  z-index: 100;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationNavigation--prev:not(.swiper-button-disabled):hover {
    color: #fff;
    border-color: #1eb8d4;
  }
}
.c-productRelationNavigation--prev:not(.swiper-button-disabled):hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
}
.c-productRelationNavigation--next {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 2px solid #123d83;
  color: #123d83;
  position: relative;
  z-index: 100;
  cursor: pointer;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.c-productRelationNavigation--next--prev {
  opacity: 0.2;
  cursor: auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationNavigation--next--prev:not(.swiper-button-disabled):hover {
    color: #fff;
    border-color: #1eb8d4;
  }
}
.c-productRelationNavigation--next--prev:not(.swiper-button-disabled):hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
}
.c-productRelationNavigation--next--next {
  opacity: 0.2;
  cursor: auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationNavigation--next--next:not(.swiper-button-disabled):hover {
    color: #fff;
    border-color: #1eb8d4;
  }
}
.c-productRelationNavigation--next--next:not(.swiper-button-disabled):hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationNavigation--next:not(.swiper-button-disabled):hover {
    color: #fff;
    border-color: #1eb8d4;
  }
}
.c-productRelationNavigation--next:not(.swiper-button-disabled):hover:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
}
.c-productRelationNavigation.swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
}
.c-productRelationNavigation.swiper-button-disabled--prev {
  opacity: 0.2;
  cursor: auto;
}
.c-productRelationNavigation.swiper-button-disabled--next {
  opacity: 0.2;
  cursor: auto;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationNavigation:not(.swiper-button-disabled):hover {
    color: #fff;
    border-color: #1eb8d4;
  }
}
.c-productRelationNavigation:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-productRelationNavigation--prev {
  transform: scaleX(-1);
}
.c-productRelationNavigation--prev:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-productRelationNavigation--prev svg {
  display: flex;
  width: 14px;
  height: 12px;
  position: relative;
  z-index: 2;
}
.c-productRelationNavigation--next:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-productRelationNavigation--next svg {
  display: flex;
  width: 14px;
  height: 12px;
  position: relative;
  z-index: 2;
}
.c-productRelationNavigation svg {
  display: flex;
  width: 14px;
  height: 12px;
  position: relative;
  z-index: 2;
}
.c-productRelationCarouselItem {
  width: 240px;
  flex-shrink: 0;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarouselItem {
    width: 250px;
  }
}
.c-productRelationCarouselItem__link {
  display: block;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationCarouselItem__link:hover .c-productRelationCarouselItem__title h4 {
    color: #1eb8d4;
  }
  .c-productRelationCarouselItem__link:hover .c-productRelationCarouselItem__image img {
    transform: scale(1.1);
  }
}
.c-productRelationCarouselItem__image {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
}
.c-productRelationCarouselItem__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 250/167;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.c-productRelationCarouselItem__title {
  display: block;
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarouselItem__title {
    margin-top: 1.25rem;
  }
}
.c-productRelationCarouselItem__title h4 {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
}
.c-productRelationCarouselItem__text {
  display: block;
  margin-top: 0.375rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarouselItem__text {
    margin-top: 0.5625rem;
  }
}
.c-productRelationCarouselItem__text p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarouselItem__text p {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.c-productRelationCarouselItem__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0.25rem;
  margin-top: 0.5rem;
}
@media screen and (min-width: 48em) {
  .c-productRelationCarouselItem__tag {
    margin-top: 0.75rem;
  }
}
.c-productRelationCarouselItem__tag a {
  color: #123d83;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-productRelationCarouselItem__tag a:hover {
    color: #1eb8d4;
  }
}

.sec-topProduct {
  background-color: #e6f0f7;
  margin-top: 5rem;
  padding-bottom: 23.5rem;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct {
    padding-top: 4rem;
    overflow: hidden;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProduct {
    padding-bottom: 17.125rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct {
    margin-top: 17.375rem;
  }
}
.sec-topProduct__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .sec-topProduct__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.sec-topProduct__wrapper {
  display: flex;
  position: relative;
}
.sec-topProduct__decoration {
  position: absolute;
  top: -2rem;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__decoration {
    right: -7.1641791045%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__decoration {
    left: 43.4545454545%;
    top: 77.581120944%;
  }
}
.sec-topProduct__decoration svg {
  display: flex;
  width: 144px;
  height: 83px;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__decoration svg {
    width: 288px;
    height: 166px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__title {
    position: absolute;
    top: -7.1875rem;
  }
}
.sec-topProduct__group {
  width: 100%;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__group {
    width: 53%;
  }
}
.sec-topProduct__image {
  display: none;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__image {
    display: grid;
    width: 47%;
    height: 100%;
    width: 47%;
    margin-top: -8rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__item {
    display: flex;
    flex-wrap: wrap;
    column-gap: 2.436440678%;
    margin-top: 2.25rem;
    row-gap: 3.5rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-topProduct__item {
    column-gap: 6.8656716418%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__item {
    width: 85.4545454545%;
  }
}
.sec-topProduct__button {
  margin-top: 3.5rem;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__button {
    display: flex;
    justify-content: center;
  }
}
.sec-topProduct__button .sec-topButtonPrimary {
  background-color: #fff;
}
.sec-topProduct__buttonTitle__en {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-left: 4px;
}
.sec-topProduct__buttonTitle__en svg {
  display: flex;
  width: 16px;
  height: 16px;
}
.sec-topProduct__buttonTitle__ja {
  margin-top: 0.6875rem;
}
.sec-topProduct__buttonTitle__ja h2 {
  color: #123d83;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonTitle__ja h2 {
    font-size: 2.125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topProduct__buttonItem {
  counter-increment: number;
  position: relative;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem:after {
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    height: 1px;
    background-color: #123d83;
    opacity: 0.2;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__buttonItem {
    width: 31.6737288136%;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-topProduct__buttonItem {
    width: 46.5671641791%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem.is-active {
    background-color: #123d83;
  }
  .sec-topProduct__buttonItem.is-active .sec-topProductItem__link:before,
  .sec-topProduct__buttonItem.is-active .sec-topProductItem.is-active .sec-topProductItem__link:after {
    background-color: #123d83;
  }
  .sec-topProduct__buttonItem.is-active .sec-topProductItem__group:before,
  .sec-topProduct__buttonItem.is-active .sec-topProductItem__title h3 {
    color: #fff;
  }
  .sec-topProduct__buttonItem.is-active .sec-topProductItem__text {
    opacity: 1;
    visibility: visible;
    height: auto;
  }
  .sec-topProduct__buttonItem.is-active .sec-topProductItem__icon {
    opacity: 1;
    visibility: visible;
  }
}
.sec-topProduct__buttonItem__link {
  display: block;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__link {
    padding-top: 1.75rem;
    padding-bottom: 2rem;
    padding-left: 49px;
  }
}
.sec-topProduct__buttonItem__link:before {
  display: none;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__link:before {
    content: "";
    display: block;
    height: 100%;
    width: calc(100% + 50vw - 50% - 5.5px);
    position: absolute;
    top: 0;
    right: 100%;
    transition: background-color 0.3s ease;
  }
}
.sec-topProduct__buttonItem__link:after {
  display: none;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__link:after {
    content: "";
    display: block;
    height: 100%;
    width: 17.0212765957%;
    position: absolute;
    top: 0;
    left: 100%;
    transition: background-color 0.3s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 64em) {
  .sec-topProduct__buttonItem__link:hover .sec-topProductItem__icon {
    opacity: 1;
    visibility: visible;
  }
}
.sec-topProduct__buttonItem__image {
  display: block;
  position: relative;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__image {
    display: none;
  }
}
.sec-topProduct__buttonItem__image img {
  width: 100%;
  border-radius: 8px;
  aspect-ratio: 156/211;
  overflow: hidden;
  object-fit: cover;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__buttonItem__group {
    display: block;
    position: relative;
    margin-top: 0.875rem;
  }
}
.sec-topProduct__buttonItem__group:before {
  content: "0" counter(number) ".";
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonItem__group:before {
    top: 0.6875rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__group:before {
    position: absolute;
    left: 16px;
    top: 2.25rem;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
  }
}
.sec-topProduct__buttonItem__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  position: absolute;
  right: 0;
  z-index: 1;
  transition: width 0.3s ease, height 0.3s ease, right 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__buttonItem__icon {
    background-color: #123d83;
    top: 2.8125rem;
    margin-top: 135.2564102564%;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-topProduct__buttonItem__icon {
    top: 2.4375rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__icon {
    border: 2px solid #fff;
    width: 40px;
    height: 40px;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    visibility: hidden;
  }
}
.sec-topProduct__buttonItem__icon svg {
  display: flex;
  width: 9px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__icon svg {
    width: 12px;
    height: 10px;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__buttonItem__title {
    display: block;
    margin-top: 0.375rem;
    padding-right: 32px;
  }
}
.sec-topProduct__buttonItem__title h3 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonItem__title h3 {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonItem__text {
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    height: 0;
  }
  .sec-topProduct__buttonItem__text p {
    margin-top: 0.375rem;
    opacity: 0.5;
    color: #123d83;
    font-size: 0.8125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
  }
}
@media screen and (min-width: 64em) and (min-width: 64em) {
  .sec-topProduct__buttonItem__text p {
    color: #fff;
  }
}
.sec-topProduct__buttonImage {
  position: relative;
  opacity: 0;
  visibility: hidden;
  grid-column: 1;
  grid-row: 1;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sec-topProduct__buttonImage.is-active {
  opacity: 1;
  visibility: visible;
}
.sec-topProduct__buttonImageItem:nth-of-type(1) {
  width: 100%;
}
.sec-topProduct__buttonImageItem:nth-of-type(1) img {
  aspect-ratio: 550/742;
  border-radius: 8px;
}
.sec-topProduct__buttonImageItem:nth-of-type(2) {
  width: 45.4545454545%;
  position: absolute;
  right: -74px;
  bottom: -5rem;
}
.sec-topProduct__buttonImageItem:nth-of-type(2) img {
  aspect-ratio: 250/250;
  border-radius: 12px;
}
.sec-topProduct__buttonImageItem img {
  width: 100%;
  object-fit: cover;
  overflow: hidden;
}
.sec-topProduct__buttonSearch {
  margin-top: -19.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch {
    margin-top: -12.125rem;
  }
}
.sec-topProduct__buttonSearch__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .sec-topProduct__buttonSearch__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.sec-topProduct__buttonSearch__wrapper {
  background-color: #0e264c;
  padding: 2.5rem 24px 3rem;
  border-radius: 12px;
}
@media screen and (min-width: 30em) {
  .sec-topProduct__buttonSearch__wrapper {
    padding: 4rem 64px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonSearch__wrapper {
    display: flex;
    column-gap: 10.8024691358%;
  }
}
.sec-topProduct__buttonSearch__form {
  width: 100%;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonSearch__form {
    width: 47.8395061728%;
  }
}
.sec-topProduct__buttonSearch__form form {
  margin-top: 1.25rem;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__form form {
    margin-top: 1.625rem;
  }
}
.sec-topProduct__buttonSearch__form form input[type=text] {
  background-color: #fff;
  width: calc(100% - 60px);
  height: 3.75rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 400;
  border-radius: 6px 0 0 6px;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__form form input[type=text] {
    padding-left: 32px;
    padding-right: 32px;
  }
}
.sec-topProduct__buttonSearch__form form input[type=text]::placeholder {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400;
  color: #969899;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__form form input[type=text]::placeholder {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 400;
  }
}
.sec-topProduct__buttonSearch__form form button[type=submit] {
  background-color: #e6f0f7;
  width: 60px;
  height: 3.75rem;
  border-radius: 0 6px 6px 0;
  transition: background-color 0.3s ease, color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #123d83;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProduct__buttonSearch__form form button[type=submit]:hover {
    background-color: #1eb8d4;
    color: #fff;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__form form button[type=submit] {
    width: 72px;
    height: 4.5rem;
  }
}
.sec-topProduct__buttonSearch__form form button[type=submit] svg {
  display: flex;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__form form button[type=submit] svg {
    width: 20px;
    height: 20px;
  }
}
.sec-topProduct__buttonSearch__title span {
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__title span {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
  }
}
.sec-topProduct__buttonSearch__title h3 {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearch__title h3 {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 0.75rem;
  }
}
.sec-topProduct__buttonSearch__keyword {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProduct__buttonSearch__keyword {
    margin-top: 2.25rem;
    padding-top: 2rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonSearch__keyword {
    width: 41.3580246914%;
  }
}
.sec-topProduct__buttonSearch__keyword :before {
  content: "";
  display: block;
  background-color: #fff;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
}
@media screen and (min-width: 64em) {
  .sec-topProduct__buttonSearch__keyword :before {
    width: 1px;
    height: 11.9375rem;
    transform: translateY(-50%);
    top: 50%;
    left: -12.9353233831%;
  }
}
.sec-topProduct__buttonSearchKeyword__title h4 {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
}
.sec-topProduct__buttonSearchKeyword__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 0.625rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearchKeyword__tag {
    margin-top: 1.5rem;
    column-gap: 8px;
    row-gap: 0.75rem;
  }
}
.sec-topProduct__buttonSearchKeyword__tag a {
  color: #123d83;
  background-color: #fff;
  padding: 0.25rem 8px;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  border-radius: 0.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProduct__buttonSearchKeyword__tag a:hover {
    color: #fff;
    background-color: #1eb8d4;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonSearchKeyword__tag a {
    padding: 0.25rem 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
  }
}
.sec-topProduct__buttonPickup {
  margin-top: 4.1875rem;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickup {
    margin-top: 6.25rem;
  }
}
.sec-topProduct__buttonPickup__inner {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 30em) {
  .sec-topProduct__buttonPickup__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.sec-topProduct__buttonPickup__carousel {
  margin-top: 2.25rem;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickup__carousel {
    margin-top: 2.5rem;
  }
}
.sec-topProduct__buttonPickupTitle__en {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-left: 4px;
}
.sec-topProduct__buttonPickupTitle__en svg {
  display: flex;
  width: 16px;
  height: 16px;
}
.sec-topProduct__buttonPickupTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.sec-topProduct__buttonPickupTitle__ja {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupTitle__ja {
    margin-top: 0.75rem;
  }
}
.sec-topProduct__buttonPickupTitle__ja h3 {
  color: #123d83;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupTitle__ja h3 {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topProduct__buttonPickupCarousel {
  position: relative;
}
.sec-topProduct__buttonPickupCarousel__item {
  display: flex;
}
.sec-topProduct__buttonPickupCarousel__navigation {
  display: none;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarousel__navigation {
    position: absolute;
    display: flex;
    column-gap: 12px;
    align-items: center;
    top: -5.5rem;
    right: -6.7272727273%;
  }
}
.sec-topProduct__buttonPickupCarouselItem {
  width: 264px;
  flex-shrink: 0;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarouselItem {
    width: 360px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProduct__buttonPickupCarouselItem__link:hover .sec-topProductPickupCarouselItem__title h4 {
    color: #1eb8d4;
  }
  .sec-topProduct__buttonPickupCarouselItem__link:hover .sec-topProductPickupCarouselItem__image img {
    transform: scale(1.1);
  }
}
.sec-topProduct__buttonPickupCarouselItem__image {
  width: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}
.sec-topProduct__buttonPickupCarouselItem__image.is-border {
  border: 1px solid #e6f0f7;
}
.sec-topProduct__buttonPickupCarouselItem__image img {
  object-fit: cover;
  width: 100%;
  aspect-ratio: 360/240;
  transition: transform 0.3s ease;
}
.sec-topProduct__buttonPickupCarouselItem__title {
  margin-top: 1.25rem;
  display: block;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarouselItem__title {
    margin-top: 1.5625rem;
  }
}
.sec-topProduct__buttonPickupCarouselItem__title h4 {
  font-size: 1.125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
}
.sec-topProduct__buttonPickupCarouselItem__text {
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarouselItem__text {
    margin-top: 0.75rem;
  }
}
.sec-topProduct__buttonPickupCarouselItem__text p {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarouselItem__text p {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.sec-topProduct__buttonPickupCarouselItem__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProduct__buttonPickupCarouselItem__tag {
    margin-top: 0.75rem;
  }
}
.sec-topProduct__buttonPickupCarouselItem__tag a {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.8;
  font-weight: 500;
  color: #123d83;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProduct__buttonPickupCarouselItem__tag a:hover {
    color: #1eb8d4;
  }
}
.sec-topProduct__buttonPickupCarouselNavigation {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #123d83;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #123d83;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProduct__buttonPickupCarouselNavigation:not(.swiper-button-disabled):hover {
    border-color: #1eb8d4;
    color: #fff;
  }
  .sec-topProduct__buttonPickupCarouselNavigation:not(.swiper-button-disabled):hover:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1.1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.sec-topProduct__buttonPickupCarouselNavigation .swiper-button-disabled {
  opacity: 0.2;
  cursor: auto;
}
.sec-topProduct__buttonPickupCarouselNavigation:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.sec-topProduct__buttonPickupCarouselNavigation--prev svg {
  transform: scaleX(-1);
}
.sec-topProduct__buttonPickupCarouselNavigation svg {
  display: flex;
  width: 14px;
  height: 12px;
  position: relative;
  z-index: 2;
}
.sec-topProductDetailFacade {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProductDetailFacade {
    margin-bottom: -5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailFacade {
    margin-bottom: 7.875rem;
  }
}
.sec-topProductDetailFacade__inner {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .sec-topProductDetailFacade__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1440px;
  }
}
.sec-topProductDetailFacade__wrapper {
  position: relative;
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailFacade__wrapper {
    display: grid;
    grid-template-columns: 5.8823529412% 41.1764705882% 52.9411764706%;
  }
}
.sec-topProductDetailFacade__heading {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailFacade__heading {
    padding-right: 40px;
    margin-top: 0.4375rem;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailFacade__title {
    margin-left: 0.3571428571%;
  }
}
.sec-topProductDetailFacade__title p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123d83;
  background-color: #e6f0f7;
  height: 1.375rem;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 0.6875rem;
}
.sec-topProductDetailFacade__name {
  margin-top: 0.25rem;
}
.sec-topProductDetailFacade__name h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailFacade__name h2 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topProductDetailFacade__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0.375rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailFacade__tag {
    margin-left: 0.7142857143%;
    margin-top: 1rem;
  }
}
.sec-topProductDetailFacade__tag a {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #969899;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProductDetailFacade__tag a:hover {
    color: #1eb8d4;
  }
}
.sec-topProductDetailFacade__image {
  grid-column: 2/3;
  grid-row: 1/2;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 720/480;
  background-color: #fff;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProductDetailFacade__image {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailFacade__image {
    grid-column: 3/4;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.sec-topProductDetailFacade__image.is-border {
  border: 1px solid #e6f0f7;
}
.sec-topProductDetailFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-topProductDetailFacade__maker {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailFacade__maker {
    margin-top: 2.375rem;
    margin-left: 0.7142857143%;
  }
}
.sec-topProductDetailFacade__maker dt,
.sec-topProductDetailFacade__maker dd {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.sec-topProductDetailFacade__maker dt {
  color: #1eb8d4;
}
.sec-topProductDetailFacade__maker dd {
  margin-left: 3px;
}
.sec-topProductDetailIntroduction {
  position: relative;
}
@media screen and (max-width: 63.9375em) {
  .sec-topProductDetailIntroduction:before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 40px;
    height: 100%;
    background-color: #e6f0f7;
  }
}
@media screen and (max-width: 29.9375em) {
  .sec-topProductDetailIntroduction:before {
    width: 20px;
  }
}
.sec-topProductDetailIntroduction:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 20px;
  height: 100%;
  background-color: #e6f0f7;
}
@media screen and (min-width: 30em) {
  .sec-topProductDetailIntroduction:after {
    width: 40px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailIntroduction:after {
    width: calc(50vw - 63.3502538071% - 5.5px);
  }
}
@media screen and (min-width: 90em) {
  .sec-topProductDetailIntroduction:after {
    width: calc(50vw - 58.5915492958% - 5.5px);
  }
}
.sec-topProductDetailIntroduction__text {
  grid-column: 2/3;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background-color: #e6f0f7;
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailIntroduction__text {
    padding-bottom: 6rem;
    padding-top: 26.2910798122%;
    padding-left: 9.014084507%;
    border-left: 1px solid #e6e6e6;
  }
}
@media screen and (min-width: 90em) {
  .sec-topProductDetailIntroduction__text {
    padding-top: 17.5rem;
  }
}
.sec-topProductDetailIntroduction__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailIntroduction__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.sec-topProductDetailIntroduction__link {
  margin-top: 1.5rem;
}
.sec-topProductDetailArticle {
  padding-top: 5rem;
}
@media screen and (min-width: 64em) {
  .sec-topProductDetailArticle {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.sec-topProductDetailArticle__editor h2 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h2 {
    padding-left: 28px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 3.5rem;
    padding-bottom: 1.125rem;
  }
}
.sec-topProductDetailArticle__editor h2:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h2:not(:first-child) {
    margin-top: 7.5rem;
  }
}
.sec-topProductDetailArticle__editor h2:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h2:before {
    top: 0.375rem;
    height: calc(100% - 24px);
  }
}
.sec-topProductDetailArticle__editor h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (max-width: 47.9375em) {
  .sec-topProductDetailArticle__editor h2 + h3 {
    margin-top: 3rem;
  }
}
.sec-topProductDetailArticle__editor h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.125rem 18px 1.0625rem 37px;
  color: #123d83;
  background-color: #e6f0f7;
  border-radius: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h3 {
    padding: 1.25rem 23px 1.25rem 46px;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h3:before {
    width: 12px;
    height: 12px;
    top: 1.8125rem;
    left: 23px;
  }
}
.sec-topProductDetailArticle__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h4 {
    padding-left: 22px;
  }
}
.sec-topProductDetailArticle__editor h4:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_rhombus.svg);
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h4:before {
    width: 14px;
    height: 7px;
  }
}
.sec-topProductDetailArticle__editor h4 + p {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor h4 + p {
    margin-top: 1.3125rem;
  }
}
.sec-topProductDetailArticle__editor p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor p {
    max-width: 880px;
  }
}
.sec-topProductDetailArticle__editor figure {
  width: 100%;
  margin: 0;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor figure {
    margin-top: 4rem;
    width: 66.1157024793%;
  }
}
.sec-topProductDetailArticle__editor figure.is-type-video {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
}
.sec-topProductDetailArticle__editor figure iframe {
  width: 100%;
  aspect-ratio: 640/361;
}
.sec-topProductDetailArticle__editor img {
  width: 100%;
  aspect-ratio: 640/427;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}
.sec-topProductDetailArticle__editor video {
  width: 100%;
  aspect-ratio: 640/361;
  border-radius: 8px;
  overflow: hidden;
}
.sec-topProductDetailArticle__editor .wsec-block-columns {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__editor .wsec-block-columns {
    display: flex;
    margin-top: 4rem;
    column-gap: 6.6115702479%;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-topProductDetailArticle__editor .wsec-block-columns .wsec-block-column:not(:first-of-type) {
    margin-top: 2.0625rem;
  }
}
.sec-topProductDetailArticle__editor .wsec-block-columns figure {
  width: 100%;
  margin-top: 0;
}
.sec-topProductDetailArticle__editor .wsec-block-columns img {
  aspect-ratio: 452/301;
  border-radius: 8px;
}
.sec-topProductDetailArticle__button {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__button {
    margin-top: 6rem;
  }
}
.sec-topProductDetailArticle__relation {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticle__relation {
    margin-top: 9rem;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard {
    display: flex;
    column-gap: 5.7851239669%;
  }
}
.sec-topProductDetailArticleCard:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard:not(:first-of-type) {
    margin-top: 4.5rem;
  }
}
.sec-topProductDetailArticleCard__image {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard__image {
    width: 33.6776859504%;
  }
}
.sec-topProductDetailArticleCard__image img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 326/218;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard__body {
    width: 60.5371900826%;
  }
}
.sec-topProductDetailArticleCard__title {
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard__title {
    margin-top: 0.25rem;
  }
}
.sec-topProductDetailArticleCard__text {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleCard__text {
    margin-top: 1.3125rem;
  }
}
.sec-topProductDetailArticleCard__link {
  margin-top: 1.5625rem;
}
.sec-topProductDetailArticleList__title {
  position: relative;
  padding-left: 14px;
}
.sec-topProductDetailArticleList__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #123d83;
  border-radius: 50%;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleList__title:before {
    top: 0.6875rem;
  }
}
.sec-topProductDetailArticleList__title p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.sec-topProductDetailArticleList__text {
  margin-top: 0.25rem;
  padding-left: 14px;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleList__text {
    margin-top: 0.375rem;
  }
}
.sec-topProductDetailArticleList + .sec-productDetailArticleList {
  margin-top: 1rem;
}
.sec-topProductDetailArticleListDownload {
  margin-top: 5rem;
  padding: 2.25rem 10.7462686567%;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownload {
    margin-top: 7.5rem;
    padding: 3rem 5rem 3.625rem;
  }
}
.sec-topProductDetailArticleListDownload__title {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.sec-topProductDetailArticleListDownload__title svg {
  width: 14px;
  height: 7px;
  color: #123d83;
}
.sec-topProductDetailArticleListDownload__title h4 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownload__title h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.sec-topProductDetailArticleListDownload__item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownload__item {
    margin-top: 1.8125rem;
  }
}
.sec-topProductDetailArticleListDownloadItem:not(:first-of-type) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.sec-topProductDetailArticleListDownloadItem a {
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProductDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__title span {
    color: #1eb8d4;
  }
  .sec-topProductDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__title span:before {
    background-color: #1eb8d4;
  }
  .sec-topProductDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__type {
    border-color: #1eb8d4;
    color: #1eb8d4;
  }
  .sec-topProductDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__icon {
    background-color: #1eb8d4;
  }
}
.sec-topProductDetailArticleListDownloadItem__title span {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__title span {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topProductDetailArticleListDownloadItem__title span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #123d83;
  transition: background-color 0.3s ease;
}
.sec-topProductDetailArticleListDownloadItem__type {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.125rem 6px;
  border: 2px solid #123d83;
  border-radius: 1.4375rem;
  color: #123d83;
  margin-left: 6px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__type {
    margin-left: 4px;
  }
}
.sec-topProductDetailArticleListDownloadItem__type span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__type span {
    font-size: 0.6875rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 700;
  }
}
.sec-topProductDetailArticleListDownloadItem__byte {
  display: flex;
  margin-left: 6px;
}
.sec-topProductDetailArticleListDownloadItem__byte span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1;
  color: #969899;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__byte span {
    font-size: 0.6875rem;
    letter-spacing: 0em;
    line-height: 1;
  }
}
.sec-topProductDetailArticleListDownloadItem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background-color: #d6141c;
  margin-left: 6px;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
}
.sec-topProductDetailArticleListDownloadItem__icon svg {
  display: flex;
  width: 7px;
  height: 6px;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItem__icon svg {
    width: 8px;
    height: 7px;
  }
}
.sec-topProductDetailArticleListDownloadItemButton {
  display: flex;
  align-items: center;
  column-gap: 8px;
  background-color: #123d83;
  padding: 0.875rem 22px 0.9375rem;
  border-radius: 2.5rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topProductDetailArticleListDownloadItemButton:hover .sec-productDetailArticleButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItemButton {
    padding: 1.8125rem 72px 1.8125rem 80px;
  }
}
.sec-topProductDetailArticleListDownloadItemButton:not(.is-active) .sec-productDetailArticleButton__background {
  left: -78px;
}
.sec-topProductDetailArticleListDownloadItemButton.is-active .sec-productDetailArticleButton__background {
  right: -78px;
}
.sec-topProductDetailArticleListDownloadItemButton__text {
  position: relative;
  z-index: 2;
}
.sec-topProductDetailArticleListDownloadItemButton__text span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItemButton__text span {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.1111111111;
    font-weight: 700;
  }
}
.sec-topProductDetailArticleListDownloadItemButton__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #d6141c;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItemButton__icon {
    width: 20px;
    height: 20px;
  }
}
.sec-topProductDetailArticleListDownloadItemButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #123d83;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.sec-topProductDetailArticleListDownloadItemButton__icon svg {
  display: flex;
  width: 8px;
  height: 7px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .sec-topProductDetailArticleListDownloadItemButton__icon svg {
    width: 10px;
    height: 9px;
  }
}
.sec-topProductDetailArticleListDownloadItemButton__background {
  width: 78px;
  height: 78px;
  position: absolute;
  display: block;
  background-color: #1eb8d4;
  border-radius: 34px;
}
.sec-topProductDetailAside__title {
  background-color: rgba(14, 38, 77, 0.7019607843);
  height: 4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.sec-topProductDetailAside__title p {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.sec-topProductDetailAside__title p:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.sec-topProductDetailAside__item {
  padding-right: 12px;
  padding-left: 12px;
}
.sec-topProductDetailAsideItem {
  position: relative;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e6f0f7;
}
.sec-topProductDetailAsideItem__title span {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.sec-topProductDetailAsideItem__icon {
  color: #d6141c;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.sec-topProductDetailAsideItem__icon svg {
  display: flex;
  width: 13px;
  height: 12px;
}
.sec-topProductDetailAsideSearch {
  margin-top: 1.3125rem;
  padding-bottom: 1.8125rem;
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.sec-topProductDetailAsideSearch__title p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.sec-topProductDetailAsideSearch form {
  margin-top: 0.625rem;
  position: relative;
}
.sec-topProductDetailAsideSearch form input[type=text] {
  background-color: #e6f0f7;
  border-radius: 6px;
  width: 100%;
  height: 2.5rem;
}
.sec-topProductDetailAsideSearch form input[type=text]:focus {
  outline: none;
}
.sec-topProductDetailAsideSearch form input[type=submit] {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/common/ico_search.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.sec-topProductDetailAsideSearch__tag {
  margin-top: 1.0625rem;
}
.sec-topProductDetailAsideItemIcon--line {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
}
.sec-topProductDetailAsideItemIcon--line span {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #d6141c;
  top: 50%;
  left: 50%;
}
.sec-topProductDetailAsideItemIcon--line span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.sec-topProductDetailAsideItemIcon--line span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sec-topProductDetailAsideSearchTag--title p {
  color: #123d83;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.sec-topProductDetailAsideSearchTag--item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 6px;
  margin-top: 0.5625rem;
}
.sec-topProductDetailAsideSearchTag--item li a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 5px;
  border-radius: 11px;
  background-color: #e6f0f7;
}

.single-products .l-main {
  padding-top: 8.375rem;
}
@media screen and (min-width: 48em) {
  .single-products .l-main {
    padding-top: 11.6875rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .single-products .sec-pageBody__aside {
    display: block;
  }
}

.sec-productDetailFacade {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 63.9375em) {
  .sec-productDetailFacade {
    margin-bottom: -5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-productDetailFacade {
    margin-bottom: 7.875rem;
  }
}
.sec-productDetailFacade__inner {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .sec-productDetailFacade__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1440px;
  }
}
.sec-productDetailFacade__wrapper {
  position: relative;
}
@media screen and (min-width: 64em) {
  .sec-productDetailFacade__wrapper {
    display: grid;
    grid-template-columns: 5.8823529412% 41.1764705882% 52.9411764706%;
  }
}
.sec-productDetailFacade__heading {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 64em) {
  .sec-productDetailFacade__heading {
    padding-right: 40px;
    margin-top: 0.4375rem;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 48em) {
  .sec-productDetailFacade__title {
    margin-left: 0.3571428571%;
  }
}
.sec-productDetailFacade__title p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123d83;
  background-color: #e6f0f7;
  height: 1.375rem;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 0.6875rem;
}
.sec-productDetailFacade__name {
  margin-top: 0.25rem;
}
.sec-productDetailFacade__name h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-productDetailFacade__name h2 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-productDetailFacade__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0.375rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailFacade__tag {
    margin-left: 0.7142857143%;
    margin-top: 1rem;
  }
}
.sec-productDetailFacade__tag a {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #969899;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-productDetailFacade__tag a:hover {
    color: #1eb8d4;
  }
}
.sec-productDetailFacade__image {
  grid-column: 2/3;
  grid-row: 1/2;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 720/480;
  background-color: #fff;
}
@media screen and (max-width: 63.9375em) {
  .sec-productDetailFacade__image {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-productDetailFacade__image {
    grid-column: 3/4;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.sec-productDetailFacade__image.is-border {
  border: 1px solid #e6f0f7;
}
.sec-productDetailFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-productDetailFacade__maker {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailFacade__maker {
    margin-top: 2.375rem;
    margin-left: 0.7142857143%;
  }
}
.sec-productDetailFacade__maker dt,
.sec-productDetailFacade__maker dd {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.sec-productDetailFacade__maker dt {
  color: #1eb8d4;
}
.sec-productDetailFacade__maker dd {
  margin-left: 3px;
}
.sec-productDetailIntroduction {
  position: relative;
}
@media screen and (max-width: 63.9375em) {
  .sec-productDetailIntroduction:before {
    content: "";
    position: absolute;
    top: 0;
    right: 100%;
    width: 40px;
    height: 100%;
    background-color: #e6f0f7;
  }
}
@media screen and (max-width: 29.9375em) {
  .sec-productDetailIntroduction:before {
    width: 20px;
  }
}
.sec-productDetailIntroduction:after {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 20px;
  height: 100%;
  background-color: #e6f0f7;
}
@media screen and (min-width: 30em) {
  .sec-productDetailIntroduction:after {
    width: 40px;
  }
}
@media screen and (min-width: 64em) {
  .sec-productDetailIntroduction:after {
    width: calc(50vw - 63.3502538071% - 5.5px);
  }
}
@media screen and (min-width: 90em) {
  .sec-productDetailIntroduction:after {
    width: calc(50vw - 58.5915492958% - 5.5px);
  }
}
.sec-productDetailIntroduction__text {
  grid-column: 2/3;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background-color: #e6f0f7;
}
@media screen and (min-width: 64em) {
  .sec-productDetailIntroduction__text {
    padding-bottom: 6rem;
    padding-top: 26.2910798122%;
    padding-left: 9.014084507%;
    border-left: 1px solid #e6e6e6;
  }
}
@media screen and (min-width: 90em) {
  .sec-productDetailIntroduction__text {
    padding-top: 17.5rem;
  }
}
.sec-productDetailIntroduction__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-productDetailIntroduction__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.sec-productDetailIntroduction__link {
  margin-top: 1.5rem;
}
.sec-productDetailArticle {
  padding-top: 5rem;
}
@media screen and (min-width: 64em) {
  .sec-productDetailArticle {
    padding-top: 4.375rem;
    padding-bottom: 4.375rem;
  }
}
.sec-productDetailArticle__editor h2 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h2 {
    padding-left: 28px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 3.5rem;
    padding-bottom: 1.125rem;
  }
}
.sec-productDetailArticle__editor h2:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h2:not(:first-child) {
    margin-top: 7.5rem;
  }
}
.sec-productDetailArticle__editor h2:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h2:before {
    top: 0.375rem;
    height: calc(100% - 24px);
  }
}
.sec-productDetailArticle__editor h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (max-width: 47.9375em) {
  .sec-productDetailArticle__editor h2 + h3 {
    margin-top: 3rem;
  }
}
.sec-productDetailArticle__editor h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.125rem 18px 1.0625rem 37px;
  color: #123d83;
  background-color: #e6f0f7;
  border-radius: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h3 {
    padding: 1.25rem 23px 1.25rem 46px;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h3:before {
    width: 12px;
    height: 12px;
    top: 1.8125rem;
    left: 23px;
  }
}
.sec-productDetailArticle__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h4 {
    padding-left: 22px;
  }
}
.sec-productDetailArticle__editor h4:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_rhombus.svg);
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h4:before {
    width: 14px;
    height: 7px;
  }
}
.sec-productDetailArticle__editor h4 + p {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor h4 + p {
    margin-top: 1.3125rem;
  }
}
.sec-productDetailArticle__editor p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor p {
    max-width: 880px;
  }
}
.sec-productDetailArticle__editor figure {
  width: 100%;
  margin: 0;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor figure {
    margin-top: 4rem;
    width: 66.1157024793%;
  }
}
.sec-productDetailArticle__editor figure.is-type-video {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
}
.sec-productDetailArticle__editor figure iframe {
  width: 100%;
  aspect-ratio: 640/361;
}
.sec-productDetailArticle__editor img {
  width: 100%;
  aspect-ratio: 640/427;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}
.sec-productDetailArticle__editor video {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 8px;
  overflow: hidden;
}
.sec-productDetailArticle__editor .wsec-block-columns {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__editor .wsec-block-columns {
    display: flex;
    margin-top: 4rem;
    column-gap: 6.6115702479%;
  }
}
@media screen and (max-width: 47.9375em) {
  .sec-productDetailArticle__editor .wsec-block-columns .wsec-block-column:not(:first-of-type) {
    margin-top: 2.0625rem;
  }
}
.sec-productDetailArticle__editor .wsec-block-columns figure {
  width: 100%;
  margin-top: 0;
}
.sec-productDetailArticle__editor .wsec-block-columns img {
  aspect-ratio: 452/301;
  border-radius: 8px;
}
.sec-productDetailArticle__button {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__button {
    margin-top: 6rem;
  }
}
.sec-productDetailArticle__relation {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticle__relation {
    margin-top: 9rem;
  }
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard {
    display: flex;
    column-gap: 5.7851239669%;
  }
}
.sec-productDetailArticleCard:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard:not(:first-of-type) {
    margin-top: 4.5rem;
  }
}
.sec-productDetailArticleCard__image {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard__image {
    width: 33.6776859504%;
  }
}
.sec-productDetailArticleCard__image img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 326/218;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard__body {
    width: 60.5371900826%;
  }
}
.sec-productDetailArticleCard__title {
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard__title {
    margin-top: 0.25rem;
  }
}
.sec-productDetailArticleCard__text {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleCard__text {
    margin-top: 1.3125rem;
  }
}
.sec-productDetailArticleCard__link {
  margin-top: 1.5625rem;
}
.sec-productDetailArticleList__title {
  position: relative;
  padding-left: 14px;
}
.sec-productDetailArticleList__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #123d83;
  border-radius: 50%;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleList__title:before {
    top: 0.6875rem;
  }
}
.sec-productDetailArticleList__title p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.sec-productDetailArticleList__text {
  margin-top: 0.25rem;
  padding-left: 14px;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleList__text {
    margin-top: 0.375rem;
  }
}
.sec-productDetailArticleList + .sec-productDetailArticleList {
  margin-top: 1rem;
}
.sec-productDetailArticleListDownload {
  margin-top: 5rem;
  padding: 2.25rem 10.7462686567%;
  background-color: #f5f5f5;
  border-radius: 0.5rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownload {
    margin-top: 7.5rem;
    padding: 3rem 5rem 3.625rem;
  }
}
.sec-productDetailArticleListDownload__title {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.sec-productDetailArticleListDownload__title svg {
  width: 14px;
  height: 7px;
  color: #123d83;
}
.sec-productDetailArticleListDownload__title h4 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownload__title h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.sec-productDetailArticleListDownload__item {
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownload__item {
    margin-top: 1.8125rem;
  }
}
.sec-productDetailArticleListDownloadItem:not(:first-of-type) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.sec-productDetailArticleListDownloadItem a {
  display: inline-flex;
  align-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .sec-productDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__title span {
    color: #1eb8d4;
  }
  .sec-productDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__title span:before {
    background-color: #1eb8d4;
  }
  .sec-productDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__type {
    border-color: #1eb8d4;
    color: #1eb8d4;
  }
  .sec-productDetailArticleListDownloadItem a:hover .sec-productDetailArticleDownloadItem__icon {
    background-color: #1eb8d4;
  }
}
.sec-productDetailArticleListDownloadItem__title span {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  position: relative;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__title span {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-productDetailArticleListDownloadItem__title span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #123d83;
  transition: background-color 0.3s ease;
}
.sec-productDetailArticleListDownloadItem__type {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.125rem 6px;
  border: 2px solid #123d83;
  border-radius: 1.4375rem;
  color: #123d83;
  margin-left: 6px;
  transition: border-color 0.3s ease, color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__type {
    margin-left: 4px;
  }
}
.sec-productDetailArticleListDownloadItem__type span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__type span {
    font-size: 0.6875rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 700;
  }
}
.sec-productDetailArticleListDownloadItem__byte {
  display: flex;
  margin-left: 6px;
}
.sec-productDetailArticleListDownloadItem__byte span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0em;
  line-height: 1;
  color: #969899;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__byte span {
    font-size: 0.6875rem;
    letter-spacing: 0em;
    line-height: 1;
  }
}
.sec-productDetailArticleListDownloadItem__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  color: #fff;
  background-color: #d6141c;
  margin-left: 6px;
  transition: background-color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__icon {
    width: 16px;
    height: 16px;
    margin-left: 5px;
  }
}
.sec-productDetailArticleListDownloadItem__icon svg {
  display: flex;
  width: 7px;
  height: 6px;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItem__icon svg {
    width: 8px;
    height: 7px;
  }
}
.sec-productDetailArticleListDownloadItemButton {
  display: flex;
  align-items: center;
  column-gap: 8px;
  background-color: #123d83;
  padding: 0.875rem 22px 0.9375rem;
  border-radius: 2.5rem;
  color: #fff;
  overflow: hidden;
  position: relative;
}
@media (hover: hover) and (pointer: fine) {
  .sec-productDetailArticleListDownloadItemButton:hover .sec-productDetailArticleButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItemButton {
    padding: 1.8125rem 72px 1.8125rem 80px;
  }
}
.sec-productDetailArticleListDownloadItemButton:not(.is-active) .sec-productDetailArticleButton__background {
  left: -78px;
}
.sec-productDetailArticleListDownloadItemButton.is-active .sec-productDetailArticleButton__background {
  right: -78px;
}
.sec-productDetailArticleListDownloadItemButton__text {
  position: relative;
  z-index: 2;
}
.sec-productDetailArticleListDownloadItemButton__text span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItemButton__text span {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.1111111111;
    font-weight: 700;
  }
}
.sec-productDetailArticleListDownloadItemButton__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #d6141c;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItemButton__icon {
    width: 20px;
    height: 20px;
  }
}
.sec-productDetailArticleListDownloadItemButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #123d83;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.sec-productDetailArticleListDownloadItemButton__icon svg {
  display: flex;
  width: 8px;
  height: 7px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .sec-productDetailArticleListDownloadItemButton__icon svg {
    width: 10px;
    height: 9px;
  }
}
.sec-productDetailArticleListDownloadItemButton__background {
  width: 78px;
  height: 78px;
  position: absolute;
  display: block;
  background-color: #1eb8d4;
  border-radius: 34px;
}
.sec-productDetailAside__title {
  background-color: rgba(14, 38, 77, 0.7019607843);
  height: 4rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  padding-left: 24px;
}
.sec-productDetailAside__title p {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.sec-productDetailAside__title p:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.sec-productDetailAside__item {
  padding-right: 12px;
  padding-left: 12px;
}
.sec-productDetailAsideItem {
  position: relative;
  padding-top: 1.375rem;
  padding-bottom: 1.375rem;
  display: flex;
  align-items: center;
  padding-left: 10px;
  border-bottom: 1px solid #e6f0f7;
}
.sec-productDetailAsideItem__title span {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.sec-productDetailAsideItem__icon {
  color: #d6141c;
  position: absolute;
  right: 6px;
  top: 50%;
  transform: translateY(-50%);
}
.sec-productDetailAsideItem__icon svg {
  display: flex;
  width: 13px;
  height: 12px;
}
.sec-productDetailAsideSearch {
  margin-top: 1.3125rem;
  padding-bottom: 1.8125rem;
  padding-right: 10px;
  padding-left: 10px;
  border-bottom: 1px solid #e6e6e6;
}
.sec-productDetailAsideSearch__title p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.sec-productDetailAsideSearch form {
  margin-top: 0.625rem;
  position: relative;
}
.sec-productDetailAsideSearch form input[type=text] {
  background-color: #e6f0f7;
  border-radius: 6px;
  width: 100%;
  height: 2.5rem;
}
.sec-productDetailAsideSearch form input[type=text]:focus {
  outline: none;
}
.sec-productDetailAsideSearch form input[type=submit] {
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url(/assets/images/common/ico_search.svg);
  background-position: center;
  background-repeat: no-repeat;
}
.sec-productDetailAsideSearch__tag {
  margin-top: 1.0625rem;
}
.sec-productDetailAsideItemIcon--line {
  display: block;
  position: relative;
  width: 12px;
  height: 12px;
}
.sec-productDetailAsideItemIcon--line span {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #d6141c;
  top: 50%;
  left: 50%;
}
.sec-productDetailAsideItemIcon--line span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.sec-productDetailAsideItemIcon--line span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.sec-productDetailAsideSearchTag--title p {
  color: #123d83;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.sec-productDetailAsideSearchTag--item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5px;
  row-gap: 6px;
  margin-top: 0.5625rem;
}
.sec-productDetailAsideSearchTag--item li a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.125rem 5px;
  border-radius: 11px;
  background-color: #e6f0f7;
}
.sec-productArchiveFacade {
  position: relative;
  z-index: 1;
  margin-bottom: 3.5rem;
}
@media screen and (max-width: 29.9375em) {
  .sec-productArchiveFacade .sec-productArchiveFacade__heading {
    width: calc(100% - 95px);
  }
  .sec-productArchiveFacade .sec-productArchiveFacade__decoration {
    width: 83px;
    padding-top: 2.4375rem;
  }
  .sec-productArchiveFacade .sec-productArchiveFacadeDecoration__text {
    width: 49px;
  }
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacade {
    margin-bottom: 5.375rem;
  }
}
.sec-productArchiveFacade__inner {
  margin-right: auto;
  margin-left: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 30em) {
  .sec-productArchiveFacade__inner {
    max-width: 1328px;
    padding-left: 40px;
    padding-right: 40px;
  }
}
.sec-productArchiveFacade__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 30em) {
  .sec-productArchiveFacade__wrapper {
    align-items: flex-end;
  }
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacade__wrapper {
    padding-left: 1.9230769231%;
  }
}
.sec-productArchiveFacade__heading {
  width: calc(100% - 120px);
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacade__heading {
    width: calc(100% - 150px);
  }
}
.sec-productArchiveFacade__title p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: inline-flex;
  color: #123d83;
  padding: 0.125rem 12px;
  background-color: #e6f0f7;
  border-radius: 0.6875rem;
}
.sec-productArchiveFacade__name {
  margin-top: 0.25rem;
}
.sec-productArchiveFacade__name h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacade__name h2 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-productArchiveFacade__decoration {
  display: flex;
  justify-content: flex-end;
  width: 120px;
}
@media screen and (min-width: 30em) {
  .sec-productArchiveFacade__decoration {
    padding-bottom: 0.4375rem;
  }
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacade__decoration {
    width: 150px;
    padding-bottom: 0.5rem;
  }
}
.sec-productArchiveFacadeDecoration {
  display: flex;
  column-gap: 6px;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacadeDecoration {
    column-gap: 8px;
  }
}
.sec-productArchiveFacadeDecoration__line {
  width: 28px;
  height: 1px;
  background-color: #123d83;
  position: relative;
  top: 9px;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacadeDecoration__line {
    width: 40px;
  }
}
.sec-productArchiveFacadeDecoration__text span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 600;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveFacadeDecoration__text span {
    font-size: 0.8125rem;
    letter-spacing: 0em;
    line-height: 1.2307692308;
    font-weight: 600;
  }
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticle {
    padding-bottom: 4.375rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-productArchiveArticle {
    min-height: 555px;
  }
}
.sec-productArchiveArticle__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 5.9701492537%;
  row-gap: 3.5rem;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticle__item {
    column-gap: 4.4421487603%;
    row-gap: 4.5rem;
  }
}
.sec-productArchiveArticle__pagination {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticle__pagination {
    margin-top: 7.5rem;
  }
}
.sec-productArchiveArticleItem {
  display: block;
  width: 47.0149253731%;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticleItem {
    width: 30.3719008264%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec-productArchiveArticleItem__link:hover .sec-productArchiveArticleItem__title h4 {
    color: #1eb8d4;
  }
  .sec-productArchiveArticleItem__link:hover .sec-productArchiveArticleItem__image img {
    transform: scale(1.1);
  }
}
.sec-productArchiveArticleItem__image {
  display: block;
  width: 100%;
  aspect-ratio: 294/196;
  overflow: hidden;
  border-radius: 8px;
}
.sec-productArchiveArticleItem__image.is-border {
  border: 1px solid #e6f0f7;
}
.sec-productArchiveArticleItem__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.sec-productArchiveArticleItem__title {
  display: block;
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticleItem__title {
    margin-top: 1.5rem;
  }
}
.sec-productArchiveArticleItem__title h4 {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticleItem__title h4 {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.sec-productArchiveArticleItem__text {
  display: block;
  margin-top: 0.5rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.sec-productArchiveArticleItem__text p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticleItem__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}
.sec-productArchiveArticleItem__tag {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0.25rem;
}
@media screen and (min-width: 48em) {
  .sec-productArchiveArticleItem__tag {
    margin-top: 1.5rem;
    row-gap: 0.375rem;
  }
}
.sec-productArchiveArticleItem__tag a {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  color: #123d83;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-productArchiveArticleItem__tag a:hover {
    color: #1eb8d4;
  }
}

@media screen and (max-width: 63.9375em) {
  .post-type-archive-products .sec-pageBody__aside,
  .tax-products_archive .sec-pageBody__aside,
  .tax-products_tag .sec-pageBody__aside,
  .tax-products_cat .sec-pageBody__aside,
  .tax-products_category .sec-pageBody__aside,
  .tax-products_maker .sec-pageBody__aside {
    display: block;
  }
}

.post-type-archive-products .l-main,
.tax-products_archive .l-main,
.tax-products_tag .l-main,
.tax-products_cat .l-main,
.tax-products_category .l-main,
.tax-products_maker .l-main {
  padding-top: 8.375rem;
}
@media screen and (min-width: 48em) {
  .post-type-archive-products .l-main,
  .tax-products_archive .l-main,
  .tax-products_tag .l-main,
  .tax-products_cat .l-main,
  .tax-products_category .l-main,
  .tax-products_maker .l-main {
    padding-top: 11.5rem;
  }
}

.p-productDetailFacade {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 63.9375em) {
  .p-productDetailFacade {
    margin-bottom: -5rem;
  }
}
@media screen and (min-width: 64em) {
  .p-productDetailFacade {
    margin-bottom: 7.875rem;
  }
}
.p-productDetailFacade__inner {
  padding-right: 20px;
  padding-left: 20px;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-productDetailFacade__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1440px;
  }
}
.p-productDetailFacade__wrapper {
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-productDetailFacade__wrapper {
    display: grid;
    grid-template-columns: 5.8823529412% 41.1764705882% 52.9411764706%;
  }
}
.p-productDetailFacade__heading {
  grid-column: 1/2;
  grid-row: 1/2;
}
@media screen and (min-width: 64em) {
  .p-productDetailFacade__heading {
    padding-right: 40px;
    margin-top: 0.4375rem;
    grid-column: 2/3;
  }
}
@media screen and (min-width: 48em) {
  .p-productDetailFacade__title {
    margin-left: 0.3571428571%;
  }
}
.p-productDetailFacade__title p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #123d83;
  background-color: #e6f0f7;
  height: 1.375rem;
  padding-right: 12px;
  padding-left: 12px;
  border-radius: 0.6875rem;
}
.p-productDetailFacade__name {
  margin-top: 0.25rem;
}
.p-productDetailFacade__name h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-productDetailFacade__name h2 {
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-productDetailFacade__tag {
  display: flex;
  flex-wrap: wrap;
  column-gap: 12px;
  row-gap: 0.375rem;
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailFacade__tag {
    margin-left: 0.7142857143%;
    margin-top: 1rem;
  }
}
.p-productDetailFacade__tag a {
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  color: #969899;
  transition: color 0.3s ease;
}
.p-productDetailFacade__image {
  grid-column: 2/3;
  grid-row: 1/2;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 720/480;
  background-color: #fff;
}
.p-productDetailFacade__image.is-border {
  border: 1px solid #e6f0f7;
}
@media screen and (max-width: 63.9375em) {
  .p-productDetailFacade__image {
    margin-top: 3.5rem;
  }
}
@media screen and (min-width: 64em) {
  .p-productDetailFacade__image {
    grid-column: 3/4;
    position: absolute;
    right: 0;
    top: 0;
  }
}
.p-productDetailFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-productDetailFacade__maker {
  display: flex;
  align-items: center;
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailFacade__maker {
    margin-top: 2.375rem;
    margin-left: 0.7142857143%;
  }
}
.p-productDetailFacade__maker dt,
.p-productDetailFacade__maker dd {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.p-productDetailFacade__maker dt {
  color: #1eb8d4;
}
.p-productDetailFacade__maker dd {
  margin-left: 3px;
}
.p-productAside {
  position: sticky;
  top: 0;
  width: 93.9163498099%;
}
@media screen and (max-width: 63.9375em) {
  .p-productAside {
    left: 0;
    position: fixed;
    z-index: 2000;
    width: 100%;
    height: 100%;
    background: rgba(17, 17, 17, 0.3);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    padding: 2rem 2.6666666667% 2.5rem;
    opacity: 0;
    visibility: hidden;
  }
}
@media screen and (min-width: 64em) {
  .p-productAside {
    top: 6.875rem;
  }
}
@media screen and (min-width: 90em) {
  .p-productAside {
    width: 247px;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-productAside.is-active {
    opacity: 1;
    visibility: visible;
  }
}
.p-productAside__title {
  height: 4rem;
  background-image: url(/assets/images/common/img_productsAsideBackground.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  padding-left: 9.5774647887%;
}
@media screen and (min-width: 64em) {
  .p-productAside__title {
    background-color: rgba(14, 38, 77, 0.7019607843);
    border-radius: 6px;
    padding-left: 24px;
  }
}
.p-productAside__title p {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.p-productAside__title p:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
}
.p-productAside__item {
  padding-right: 9.014084507%;
  padding-left: 9.014084507%;
  -ms-overflow-style: none;
}
@media screen and (max-width: 63.9375em) {
  .p-productAside__item {
    background-color: #fff;
    height: calc(100% - 4rem);
    border-radius: 0 0 12px 12px;
    overflow: scroll;
    padding-bottom: 3rem;
  }
}
@media screen and (min-width: 64em) {
  .p-productAside__item {
    padding-right: 12px;
    padding-left: 12px;
    height: 100%;
  }
}
.p-productAside__item::-webkit-scrollbar {
  display: none;
}
.p-productAside__close {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 64em) {
  .p-productAside__close {
    display: none;
  }
}
.p-productAside__button {
  pointer-events: none;
  position: fixed;
  display: flex;
  justify-content: center;
  width: 100%;
  left: 0;
  bottom: 1rem;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media screen and (min-width: 64em) {
  .p-productAside__button {
    display: none;
  }
}
.p-productAside__button.is-active {
  opacity: 1;
  visibility: visible;
}
.p-productAside__buttonItem {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonItem {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
    padding-left: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonItem:hover .p-productAsideItem__title span,
  .p-productAside__buttonItem:hover .p-productAsideItem:hover .p-productAsideItem__icon {
    color: #1eb8d4;
  }
}
.p-productAside__buttonItem__title span {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-productAside__buttonItem__icon {
  color: #d6141c;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonItem__icon {
    right: 6px;
  }
}
.p-productAside__buttonItem__icon svg {
  display: flex;
  width: 13px;
  height: 12px;
}
.p-productAside__buttonSearch {
  margin-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch {
    margin-top: 1.3125rem;
    padding-bottom: 1.8125rem;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-productAside__buttonSearch__title p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.p-productAside__buttonSearch form {
  margin-top: 0.5rem;
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch form {
    margin-top: 0.625rem;
  }
}
.p-productAside__buttonSearch form input[type=text] {
  background-color: #e6f0f7;
  border-radius: 6px;
  width: 100%;
  height: 3.5rem;
  padding-left: 12px;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 400;
  padding-right: 56px;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch form input[type=text] {
    height: 2.5rem;
    padding-right: 40px;
  }
}
.p-productAside__buttonSearch form button[type=submit] {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #123d83;
  transition: color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch form button[type=submit] {
    width: 15px;
    height: 15px;
    right: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonSearch form button[type=submit]:hover {
    color: #1eb8d4;
  }
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch form button[type=submit] svg {
    width: 15px;
    height: 15px;
  }
}
.p-productAside__buttonSearch__tag {
  margin-top: 0.875rem;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearch__tag {
    margin-top: 1.0625rem;
  }
}
.p-productAside__buttonSearchTag__title p {
  color: #123d83;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.p-productAside__buttonSearchTag__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearchTag__item {
    column-gap: 5px;
    margin-top: 0.5625rem;
  }
}
.p-productAside__buttonSearchTag__item li a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 8px;
  border-radius: 13px;
  background-color: #e6f0f7;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonSearchTag__item li a:hover {
    color: #fff;
    background-color: #1eb8d4;
  }
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonSearchTag__item li a {
    padding: 0.125rem 5px;
  }
}
.p-productAside__buttonAccordion {
  border-bottom: 1px solid #e6e6e6;
}
.p-productAside__buttonAccordion.is-active .p-productAsideAccordionTitle__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(0);
}
.p-productAside__buttonAccordion__title {
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonAccordion__title {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
    padding-left: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonAccordion__title:hover .p-productAsideAccordionTitle__text {
    color: #1eb8d4;
  }
  .p-productAside__buttonAccordion__title:hover .p-productAsideAccordionTitle__icon span {
    background-color: #1eb8d4;
  }
}
.p-productAside__buttonAccordion__item {
  overflow: hidden;
  transition: height 0.5s ease, opacity 0.5s ease;
  height: 0;
  opacity: 0;
}
.p-productAside__buttonAccordion__list {
  padding-left: 12px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonAccordion__list {
    padding-left: 18px;
    padding-bottom: 1.375rem;
  }
}
.p-productAside__buttonAccordion__list li:not(:first-of-type) {
  margin-top: 1.125rem;
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonAccordion__list li:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}
.p-productAside__buttonAccordion__list a {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.6153846154;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonAccordion__list a:hover {
    color: #1eb8d4;
  }
}
.p-productAside__buttonAccordion__maker {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.4482758621%;
  padding-bottom: 1.75rem;
}
.p-productAside__buttonAccordionTitle {
  display: flex;
  align-items: center;
  position: relative;
}
.p-productAside__buttonAccordionTitle__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-productAside__buttonAccordionTitle__icon {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 64em) {
  .p-productAside__buttonAccordionTitle__icon {
    right: 6px;
  }
}
.p-productAside__buttonAccordionTitle__icon span {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #d6141c;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s ease;
}
.p-productAside__buttonAccordionTitle__icon span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.p-productAside__buttonAccordionTitle__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.p-productAside__buttonAccordionMaker {
  width: 48.275862069%;
  background-color: #e6f0f7;
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonAccordionMaker:hover {
    background-color: #123d83;
  }
  .p-productAside__buttonAccordionMaker:hover .p-productAsideAccordionMaker__title p {
    color: #fff;
  }
}
@media screen and (min-width: 48em) {
  .p-productAside__buttonAccordionMaker {
    height: 2.5rem;
  }
}
.p-productAside__buttonAccordionMaker:nth-of-type(1) {
  order: 1;
}
.p-productAside__buttonAccordionMaker:nth-of-type(2) {
  order: 2;
}
.p-productAside__buttonAccordionMaker:nth-of-type(3) {
  order: 4;
}
.p-productAside__buttonAccordionMaker:nth-of-type(4) {
  order: 5;
}
.p-productAside__buttonAccordionMaker:nth-of-type(5) {
  order: 7;
}
.p-productAside__buttonAccordionMaker:nth-of-type(6) {
  order: 8;
}
.p-productAside__buttonAccordionMaker:nth-of-type(7) {
  order: 10;
}
.p-productAside__buttonAccordionMaker:nth-of-type(8) {
  order: 11;
}
.p-productAside__buttonAccordionMaker:nth-of-type(9) {
  order: 13;
}
.p-productAside__buttonAccordionMaker:nth-of-type(10) {
  order: 14;
}
.p-productAside__buttonAccordionMaker:nth-of-type(n + 3) {
  margin-top: 0.4375rem;
}
.p-productAside__buttonAccordionMaker.is-active {
  background-color: #123d83;
}
.p-productAside__buttonAccordionMaker.is-active .p-productAsideAccordionMaker__title p {
  color: #fff;
}
.p-productAside__buttonAccordionMaker__title p {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  color: #123d83;
  transition: color 0.3s ease;
}
.p-productAside__buttonAccordionMaker__item {
  width: 100%;
  height: 0;
  overflow: hidden;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(1) {
  order: 3;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(2) {
  order: 3;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(3) {
  order: 6;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(4) {
  order: 6;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(5) {
  order: 9;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(6) {
  order: 9;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(7) {
  order: 12;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(8) {
  order: 12;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(9) {
  order: 15;
}
.p-productAside__buttonAccordionMaker__item:nth-of-type(10) {
  order: 15;
}
.p-productAside__buttonAccordionMakerItem {
  padding-top: 0.4375rem;
}
.p-productAside__buttonAccordionMakerItem ul {
  border-radius: 0.375rem;
  background-color: #123d83;
  padding-top: 1.5rem;
  padding-left: 28px;
  padding-right: 28px;
  padding-bottom: 2rem;
}
.p-productAside__buttonAccordionMakerItem ul li:not(:first-of-type) {
  margin-top: 1rem;
}
.p-productAside__buttonAccordionMakerItem a {
  display: inline;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  position: relative;
  overflow: hidden;
  padding-bottom: 0.0625rem;
  background-image: linear-gradient(#fff, #fff);
  background-repeat: no-repeat;
  background-position-x: 100%;
  background-position-y: 100%;
  background-size: 100% 1px;
  transition: background-size 0.6s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAside__buttonAccordionMakerItem a:hover {
    background-size: 0% 1px;
  }
}
.p-productAsideClose {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 4px;
  background-image: url(/assets/images/common/img_productsAsideCloseBackground.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 152px;
  height: 3rem;
  border-radius: 1.5rem;
  cursor: pointer;
  padding-left: 11px;
}
.p-productAsideClose__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
}
.p-productAsideClose__icon {
  color: #3b5274;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background-color: #fff;
  position: relative;
}
.p-productAsideClose__icon svg {
  display: flex;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-productAsideItem {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 64em) {
  .p-productAsideItem {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
    padding-left: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAsideItem:hover .p-productAsideItem__title span,
  .p-productAsideItem:hover .p-productAsideItem:hover .p-productAsideItem__icon {
    color: #1eb8d4;
  }
}
.p-productAsideItem__title span {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-productAsideItem__icon {
  color: #d6141c;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.3s ease;
}
@media screen and (min-width: 64em) {
  .p-productAsideItem__icon {
    right: 6pxF;
  }
}
.p-productAsideButton {
  cursor: pointer;
  width: 152px;
  height: 3rem;
  background-image: url(.jpg);
  background-color: rgba(14, 38, 77, 0.7019607843);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 4px;
  border-radius: 1.5rem;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding-left: 13px;
}
.p-productAsideButton.is-active {
  opacity: 0;
  visibility: hidden;
}
.p-productAsideButton__text {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
}
.p-productAsideButton__icon {
  width: 14px;
  height: 14px;
  transform: rotate(-45deg);
  border-radius: 50%;
  background-color: #fff;
  color: #3b5274;
  position: relative;
}
.p-productAsideButton__icon svg {
  width: 8px;
  height: 8px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-productAsideSearch {
  margin-top: 1.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch {
    margin-top: 1.3125rem;
    padding-bottom: 1.8125rem;
    padding-right: 10px;
    padding-left: 10px;
  }
}
.p-productAsideSearch__title p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
}
.p-productAsideSearch form {
  margin-top: 0.5rem;
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch form {
    margin-top: 0.625rem;
  }
}
.p-productAsideSearch form input[type=text] {
  background-color: #e6f0f7;
  border-radius: 6px;
  width: 100%;
  height: 3.5rem;
  padding-left: 12px;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 400;
  padding-right: 56px;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch form input[type=text] {
    height: 2.5rem;
    padding-right: 40px;
  }
}
.p-productAsideSearch form input[type=text]:focus {
  outline: none;
}
.p-productAsideSearch form button[type=submit] {
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: #123d83;
  transition: color 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch form button[type=submit] {
    width: 15px;
    height: 15px;
    right: 12px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAsideSearch form button[type=submit]:hover {
    color: #1eb8d4;
  }
}
.p-productAsideSearch form button[type=submit] svg {
  display: flex;
  width: 18px;
  height: 18px;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch form button[type=submit] svg {
    width: 15px;
    height: 15px;
  }
}
.p-productAsideSearch__tag {
  margin-top: 0.875rem;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearch__tag {
    margin-top: 1.0625rem;
  }
}
.p-productAsideSearchTag__title p {
  color: #123d83;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.p-productAsideSearchTag__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
  row-gap: 6px;
  margin-top: 0.5rem;
}
@media screen and (min-width: 64em) {
  .p-productAsideSearchTag__item {
    column-gap: 5px;
    margin-top: 0.5625rem;
  }
}
.p-productAsideSearchTag__item li a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 8px;
  border-radius: 13px;
  background-color: #e6f0f7;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAsideSearchTag__item li a:hover {
    color: #fff;
    background-color: #1eb8d4;
  }
}
@media screen and (min-width: 64em) {
  .p-productAsideSearchTag__item li a {
    padding: 0.125rem 5px;
  }
}
.p-productAsideAccordion {
  border-bottom: 1px solid #e6e6e6;
}
.p-productAsideAccordion.is-active .p-productAsideAccordionTitle__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(0);
}
.p-productAsideAccordion__title {
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  cursor: pointer;
}
@media screen and (min-width: 64em) {
  .p-productAsideAccordion__title {
    padding-top: 1.375rem;
    padding-bottom: 1.375rem;
    padding-left: 10px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productAsideAccordion__title:hover .p-productAsideAccordionTitle__text {
    color: #1eb8d4;
  }
  .p-productAsideAccordion__title:hover .p-productAsideAccordionTitle__icon span {
    background-color: #1eb8d4;
  }
}
.p-productAsideAccordion__item {
  overflow: hidden;
  transition: height 1s ease, opacity 1s ease;
  height: 0;
  opacity: 0;
}
.p-productAsideAccordion__list {
  padding-left: 12px;
  padding-bottom: 1.25rem;
}
@media screen and (min-width: 64em) {
  .p-productAsideAccordion__list {
    padding-left: 18px;
    padding-bottom: 1.375rem;
  }
}
.p-productAsideAccordion__list li:not(:first-of-type) {
  margin-top: 1.125rem;
}
@media screen and (min-width: 64em) {
  .p-productAsideAccordion__list li:not(:first-of-type) {
    margin-top: 0.5rem;
  }
}
.p-productAsideAccordion__list a {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.6153846154;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-productAsideAccordion__list a:hover {
    color: #1eb8d4;
  }
}
.p-productAsideAccordion__maker {
  display: flex;
  flex-wrap: wrap;
  column-gap: 3.4482758621%;
  padding-bottom: 1.75rem;
}
.p-productAsideAccordionTitle {
  display: flex;
  align-items: center;
  position: relative;
}
.p-productAsideAccordionTitle__text {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-productAsideAccordionTitle__icon {
  position: absolute;
  display: block;
  width: 12px;
  height: 12px;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 64em) {
  .p-productAsideAccordionTitle__icon {
    right: 6px;
  }
}
.p-productAsideAccordionTitle__icon span {
  position: absolute;
  display: block;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  background-color: #d6141c;
  top: 50%;
  left: 50%;
  transition: background-color 0.3s ease;
}
.p-productAsideAccordionTitle__icon span:nth-of-type(1) {
  transform: translate(-50%, -50%);
}
.p-productAsideAccordionTitle__icon span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}
.p-productDetailArticle__editor h2 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1rem;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h2 {
    padding-left: 28px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 3.5rem;
    padding-bottom: 1.125rem;
  }
}
.p-productDetailArticle__editor h2:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h2:not(:first-child) {
    margin-top: 7.5rem;
  }
}
.p-productDetailArticle__editor h2:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h2:before {
    top: 0.375rem;
    height: calc(100% - 24px);
  }
}
.p-productDetailArticle__editor h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (max-width: 47.9375em) {
  .p-productDetailArticle__editor h2:after + h3 {
    margin-top: 3rem;
  }
}
.p-productDetailArticle__editor h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.125rem 18px 1.0625rem 37px;
  color: #123d83;
  background-color: #e6f0f7;
  border-radius: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h3 {
    padding: 1.25rem 23px 1.25rem 46px;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
.p-productDetailArticle__editor h3:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_circle.svg);
  width: 10px;
  height: 10px;
  top: 1.5625rem;
  left: 18px;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h3:before {
    width: 12px;
    height: 12px;
    top: 1.8125rem;
    left: 23px;
  }
}
.p-productDetailArticle__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h4 {
    padding-left: 22px;
  }
}
.p-productDetailArticle__editor h4:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_rhombus.svg);
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h4:before {
    width: 14px;
    height: 7px;
  }
}
.p-productDetailArticle__editor h4 + p {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor h4 + p {
    margin-top: 1.3125rem;
  }
}
.p-productDetailArticle__editor p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor p {
    max-width: 880px;
  }
}
.p-productDetailArticle__editor figure {
  width: 100%;
  margin: 0;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor figure {
    margin-top: 4rem;
    width: 66.1157024793%;
  }
}
.p-productDetailArticle__editor figure.is-type-video {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
}
.p-productDetailArticle__editor iframe {
  width: 100%;
  aspect-ratio: 640/361;
}
.p-productDetailArticle__editor img {
  width: 100%;
  aspect-ratio: 640/427;
  object-fit: cover;
  border-radius: 12px;
  overflow: hidden;
}
.p-productDetailArticle__editor video {
  width: 100%;
  aspect-ratio: 640/361;
  border-radius: 8px;
  overflow: hidden;
}
.p-productDetailArticle__editor .wp-block-columns {
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__editor .wp-block-columns {
    display: flex;
    margin-top: 4rem;
    column-gap: 6.6115702479%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-productDetailArticle__editor .wp-block-columns .wp-block-columns .wp-block-column:not(:first-of-type) {
    margin-top: 2.0625rem;
  }
}
.p-productDetailArticle__editor .wp-block-columns figure {
  width: 100%;
  margin-top: 0;
}
.p-productDetailArticle__editor .wp-block-columns img {
  aspect-ratio: 452/301;
  border-radius: 8px;
}
.p-productDetailArticle__button {
  display: flex;
  justify-content: center;
  margin-top: 4.5rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__button {
    margin-top: 6rem;
  }
}
.p-productDetailArticleButton {
  display: flex;
  align-items: center;
  column-gap: 8px;
  background-color: #123d83;
  padding: 0.875rem 22px 0.9375rem;
  border-radius: 2.5rem;
  color: #fff;
  overflow: hidden;
  position: relative;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.25s ease;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticleButton {
    padding: 1.8125rem 72px 1.8125rem 80px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-productDetailArticleButton:hover .p-productDetailArticleButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.p-productDetailArticleButton:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
.p-productDetailArticleButton::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #1eb8d4;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
}
.p-productDetailArticleButton:not(.is-active) .p-productDetailArticleButton__background {
  left: -78px;
}
.p-productDetailArticleButton.is-active .p-productDetailArticleButton__background {
  right: -78px;
}
.p-productDetailArticleButton__text {
  position: relative;
  z-index: 2;
}
.p-productDetailArticleButton__text span {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticleButton__text span {
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    line-height: 1.1111111111;
    font-weight: 700;
  }
}
.p-productDetailArticleButton__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  background-color: #d6141c;
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticleButton__icon {
    width: 20px;
    height: 20px;
  }
}
.p-productDetailArticleButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #123d83;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-productDetailArticleButton__icon i {
  display: flex;
  width: 8px;
  height: 7px;
  font-size: 8px;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticleButton__icon i {
    width: 10px;
    height: 9px;
    font-size: 10px;
  }
}
.p-productDetailArticle__relation {
  margin-top: 6rem;
}
@media screen and (min-width: 48em) {
  .p-productDetailArticle__relation {
    margin-top: 9rem;
  }
}
.p-productDetailIntroduction__text {
  grid-column: 2/3;
  padding-top: 8.5rem;
  padding-bottom: 4.5rem;
  background-color: #e6f0f7;
}
@media screen and (min-width: 64em) {
  .p-productDetailIntroduction__text {
    padding-bottom: 6rem;
    padding-top: 26.2910798122%;
    padding-left: 9.014084507%;
    border-left: 1px solid #e6e6e6;
  }
}
.p-productDetailIntroduction__text p {
  padding: 0 1rem;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .p-productDetailIntroduction__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
  }
}

.c-icon--blue {
  color: #123d83;
}
.c-icon--grayLine {
  color: #e6e6e6;
}
.c-icon--rhombus svg {
  width: 24px;
  height: 12px;
}

.c-pageRelation {
  border-radius: 12px;
  overflow: hidden;
  background-image: url(/assets/images/common/img_relationProductBackground.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-pageRelation__wrapper {
  padding: 1.5rem 7.1641791045% 2.5rem;
  background: #4A5F7E;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__wrapper {
    column-gap: 7.9207920792%;
    padding: 3.5rem 8.2644628099%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.c-pageRelation__image {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__image {
    width: 39.603960396%;
  }
}
.c-pageRelation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-pageRelation__body {
  color: #fff;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__body {
    margin-top: 1.5rem;
    padding-right: 4px;
    padding-left: 4px;
  }
}
@media screen and (min-width: 48em) {
  .c-pageRelation__body {
    width: 52.4752475248%;
  }
}
.c-pageRelation__title span {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  opacity: 0.5;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__title span {
    padding-left: 2px;
  }
}
.c-pageRelation__title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__title h4 {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 0.25rem;
  }
}
.c-pageRelation__text {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__text {
    margin-top: 0.75rem;
  }
}
.c-pageRelation__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.c-pageRelation__button {
  margin-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__button {
    display: flex;
    justify-content: center;
  }
}
.c-pageRelationButton {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  padding-left: 42px;
  padding-right: 30px;
  padding-top: 0.75rem;
  padding-bottom: 0.8125rem;
  border: 2px solid #fff;
  border-radius: 1.625rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0 ease;
}
@media screen and (min-width: 48em) {
  .c-pageRelationButton {
    padding-top: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 32px;
    padding-right: 22px;
    border-radius: 1.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-pageRelationButton:hover {
    border-color: #123d83;
    background-color: #123d83;
    transition: border-color 0.3s ease, background-color 0.3s 0.3s ease;
  }
  .c-pageRelationButton:hover .c-pageRelationButton__icon {
    color: #fff;
  }
  .c-pageRelationButton:hover .c-pageRelationButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.c-pageRelationButton * {
  pointer-events: none;
}
.c-pageRelationButton:not(.is-active) .c-pageRelationButton__background {
  left: -48px;
}
.c-pageRelationButton.is-active .c-pageRelationButton__background {
  right: -48px;
}
.c-pageRelationButton__icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  color: #4b607e;
  z-index: 2;
  transition: color 0.3s ease;
}
.c-pageRelationButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-pageRelationButton__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 8px;
  height: 7px;
  z-index: 2;
}
.c-pageRelationButton__background {
  width: 48px;
  height: 48px;
  position: absolute;
  display: block;
  background-color: #123d83;
  border-radius: 24px;
  z-index: 1;
}
.c-pageRelationButton__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.sec-topNews {
  margin-top: 6rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topNews {
    margin-top: 7.6875rem;
    margin-bottom: 10rem;
  }
}
.sec-topNews__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .sec-topNews__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topNews__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 64em) {
  .sec-topNews__wrapper {
    display: grid;
    grid-template-columns: 24.8181818182% 75.1818181818%;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topNews__category {
    display: contents;
  }
}
@media screen and (min-width: 64em) {
  .sec-topNews__category {
    grid-column: 1/2;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topNews__category ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 0.375rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topNews__category li:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}
.sec-topNews__category button {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.1875rem 7px 0.1875rem 8px;
  display: flex;
  border: none;
  background-color: #e6f0f7;
  border-radius: 0.75rem;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topNews__category button:hover {
    color: #fff;
    background-color: #123d83;
  }
}
.sec-topNews__category button.is-active {
  color: #fff;
  background-color: #123d83;
  padding: 0.1875rem 14px;
}
.sec-topNews__category__button {
  margin-top: 3.5rem;
}
@media screen and (min-width: 64em) {
  .sec-topNews__category__button {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .sec-topNews__category__button {
    order: 4;
    display: flex;
    justify-content: center;
  }
}
.sec-topNews__category__item {
  margin-top: 3rem;
}
@media screen and (min-width: 64em) {
  .sec-topNews__category__item {
    margin-top: 1.75rem;
    grid-column: 2/3;
  }
}
.sec-topNews__categoryTitle__en {
  display: flex;
  align-items: center;
  padding-left: 4px;
  column-gap: 11px;
}
.sec-topNews__categoryTitle__en svg {
  width: 16px;
  height: 16px;
}
.sec-topNews__categoryTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.sec-topNews__categoryTitle__ja {
  margin-top: 0.5625rem;
}
.sec-topNews__categoryTitle__ja h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-topNews__categoryTitle__ja h2 {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topNews__categoryItem {
  border-bottom: 1px solid #d9d9d9;
}
.sec-topNews__categoryItem:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.sec-topNews__categoryItem__link {
  display: block;
  padding-top: 1.5625rem;
  padding-bottom: 1.75rem;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topNews__categoryItem__link:hover .sec-topNewsItem__title h3 {
    color: #1eb8d4;
  }
}
@media screen and (min-width: 48em) {
  .sec-topNews__categoryItem__link {
    padding-top: 2rem;
    padding-bottom: 2.25rem;
  }
}
.sec-topNews__categoryItem__heading {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
@media screen and (min-width: 48em) {
  .sec-topNews__categoryItem__date {
    width: 71px;
  }
}
.sec-topNews__categoryItem__date time {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-weight: 600;
  color: #969899;
}
.sec-topNews__categoryItem__category p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
  border-radius: 0.75rem;
  padding: 0.1875rem 7px 0.1875rem 8px;
  width: 100px;
}
.sec-topNews__categoryItem__title {
  display: block;
  margin-top: 0.5rem;
}
.sec-topNews__categoryItem__title h3 {
  transition: color 0.3s ease;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  font-weight: 400;
}

.p-topNews {
  margin-top: 6rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 48em) {
  .p-topNews {
    margin-top: 7.6875rem;
    margin-bottom: 10rem;
  }
}
.p-topNews__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .p-topNews__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topNews__wrapper {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (min-width: 64em) {
  .p-topNews__wrapper {
    display: grid;
    grid-template-columns: 24.8181818182% 75.1818181818%;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topNews__heading {
    display: contents;
  }
}
@media screen and (min-width: 64em) {
  .p-topNews__heading {
    grid-column: 1/2;
  }
}
.p-topNews__category {
  margin-top: 1.25rem;
}
@media screen and (min-width: 64em) {
  .p-topNews__category {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topNews__category ul {
    display: flex;
    flex-wrap: wrap;
    column-gap: 6px;
    row-gap: 0.375rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topNews__category ul li:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}
.p-topNews__category button {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.1875rem 7px 0.1875rem 8px;
  display: flex;
  border: none;
  background-color: #e6f0f7;
  border-radius: 0.75rem;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-topNews__category button:hover {
    color: #fff;
    background-color: #123d83;
  }
}
.p-topNews__category button.is-active {
  color: #fff;
  background-color: #123d83;
  padding: 0.1875rem 14px;
}
.p-topNews__button {
  margin-top: 3.5rem;
}
@media screen and (min-width: 64em) {
  .p-topNews__button {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-topNews__button {
    order: 4;
    display: flex;
    justify-content: center;
  }
}
.p-topNews__item {
  margin-top: 3rem;
}
@media screen and (min-width: 64em) {
  .p-topNews__item {
    margin-top: 1.75rem;
    grid-column: 2/3;
  }
}
.p-topNewsTitle__en {
  display: flex;
  align-items: center;
  padding-left: 4px;
  column-gap: 11px;
}
.p-topNewsTitle__en i {
  width: 16px;
  height: 16px;
}
.p-topNewsTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.p-topNewsTitle__ja {
  margin-top: 0.5625rem;
}
.p-topNewsTitle__ja h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-topNewsTitle__ja h2 {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-topNewsItem {
  border-bottom: 1px solid #d9d9d9;
}
.p-topNewsItem:first-of-type {
  border-top: 1px solid #d9d9d9;
}
.p-topNewsItem__link {
  display: block;
  padding-top: 1.5625rem;
  padding-bottom: 1.75rem;
}
@media (hover: hover) and (pointer: fine) {
  .p-topNewsItem__link:hover .p-topNewsItem__title h3 {
    color: #1eb8d4;
  }
}
.p-topNewsItem__heading {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
@media screen and (min-width: 48em) {
  .p-topNewsItem__date {
    width: 71px;
  }
}
.p-topNewsItem__date time {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-weight: 600;
  color: #969899;
}
.p-topNewsItem__category p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
  border-radius: 0.75rem;
  padding: 0.1875rem 7px 0.1875rem 8px;
  width: 100px;
}
.p-topNewsItem__title {
  display: block;
  margin-top: 0.5rem;
}
.p-topNewsItem__title h3 {
  transition: color 0.3s ease;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.8666666667;
  font-weight: 400;
}

.p-newsArchiveFacade {
  position: relative;
  z-index: 1;
  margin-bottom: 2.25rem;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade {
    margin-bottom: 5.375rem;
  }
}
.p-newsArchiveFacade__inner {
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
}
@media screen and (min-width: 30em) {
  .p-newsArchiveFacade__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1328px;
  }
}
.p-newsArchiveFacade__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (min-width: 64em) {
  .p-newsArchiveFacade__wrapper {
    padding-left: 1.9230769231%;
  }
}
.p-newsArchiveFacade__title {
  display: flex;
  column-gap: 6px;
  padding-left: 3px;
  align-items: center;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade__title {
    column-gap: 12px;
    padding-left: 3px;
  }
}
.p-newsArchiveFacade__title i {
  display: flex;
  width: 14px;
  height: 14px;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade__title i {
    width: 16px;
    height: 16px;
  }
}
.p-newsArchiveFacade__title span {
  font-family: Ubuntu, sans-serif;
  font-size: 0.9375rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade__title span {
    font-size: 1rem;
    letter-spacing: 0em;
    line-height: 1;
    font-weight: 500;
  }
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade__name {
    margin-top: 0.0625rem;
  }
}
.p-newsArchiveFacade__name h2 {
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacade__name h2 {
    font-size: 2.75rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-newsArchiveFacade__decoration {
  padding-bottom: 0.3125rem;
}
.p-newsArchiveFacadeDecoration {
  display: flex;
  align-items: center;
  column-gap: 6px;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacadeDecoration {
    column-gap: 9px;
  }
}
.p-newsArchiveFacadeDecoration__text span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 600;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveFacadeDecoration__text span {
    font-size: 0.8125rem;
    letter-spacing: 0em;
    line-height: 1.2307692308;
    font-weight: 600;
  }
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticle {
    padding-bottom: 4.6875rem;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-newsArchiveArticle {
    margin-top: 3.5rem;
  }
}
.p-newsArchiveArticle__pagination {
  margin-top: 4rem;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticle__pagination {
    margin-top: 7.625rem;
  }
}
.p-newsArchiveArticleItem {
  padding-top: 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid #e6e6e6;
  display: block;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem {
    display: flex;
    padding-top: 2.0625rem;
    padding-bottom: 2.3125rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-newsArchiveArticleItem:hover .p-newsArchiveArticleItem__title h3 {
    color: #1eb8d4;
  }
}
.p-newsArchiveArticleItem:first-of-type {
  border-top: 1px solid #e6e6e6;
}
.p-newsArchiveArticleItem__heading {
  display: flex;
}
.p-newsArchiveArticleItem__group {
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .p-newsArchiveArticleItem__group {
    margin-top: 0.5rem;
  }
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem__group {
    width: calc(100% - 218px);
  }
}
.p-newsArchiveArticleItem__date {
  width: 83px;
}
.p-newsArchiveArticleItem__date time {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-weight: 600;
  color: #969899;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem__title {
    width: calc(100% - 87px);
    padding-right: 24px;
  }
}
.p-newsArchiveArticleItem__title h3 {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-newsArchiveArticleItem__category {
  width: 100px;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem__category {
    width: 135px;
  }
}
.p-newsArchiveArticleItem__category p {
  width: 100px;
  height: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  background-color: #e6f0f7;
}
.p-newsArchiveArticleItem__icon {
  display: none;
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem__icon {
    width: 87px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 8px;
    position: relative;
  }
}
@media screen and (min-width: 48em) {
  .p-newsArchiveArticleItem__icon:before {
    content: "";
    display: block;
    width: 1px;
    height: 64px;
    background-color: #e6e6e6;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
.p-newsArchiveArticleItemIcon {
  border-radius: 50%;
  background-color: #123d83;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  position: relative;
}
.p-newsArchiveArticleItemIcon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-newsArchiveArticleItemIcon i {
  display: flex;
  width: 9px;
  height: 9px;
  font-size: 11px;
  position: relative;
  z-index: 2;
}
.p-newsDetailFacade__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-newsDetailFacade__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1180px;
  }
}
.p-newsDetailFacade__wrapper {
  padding-bottom: 1.75rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 64em) {
  .p-newsDetailFacade__wrapper {
    padding-bottom: 3.5rem;
    margin-bottom: 5rem;
  }
}
.p-newsDetailFacade__heading {
  display: flex;
  align-items: center;
  column-gap: 12px;
  padding-left: 2px;
}
@media screen and (min-width: 48em) {
  .p-newsDetailFacade__heading {
    column-gap: 16px;
  }
}
.p-newsDetailFacade__date {
  display: flex;
  align-items: center;
}
.p-newsDetailFacade__date time {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  font-weight: 600;
  color: #969899;
}
@media screen and (min-width: 64em) {
  .p-newsDetailFacade__date time {
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 1.2142857143;
    font-weight: 600;
  }
}
.p-newsDetailFacade__category p {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  min-width: 100px;
  height: 1.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
}
@media screen and (min-width: 48em) {
  .p-newsDetailFacade__category p {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.2857142857;
    border-radius: 0.875rem;
    height: 1.75rem;
    padding-right: 23px;
    padding-left: 23px;
  }
}
.p-newsDetailFacade__title {
  margin-top: 0.75rem;
}
.p-newsDetailFacade__title h2 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 64em) {
  .p-newsDetailFacade__title h2 {
    font-size: 2.25rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-newsDetailBody__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-newsDetailBody__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 960px;
  }
}
.p-newsDetailBody__editor h2 {
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 22px;
  padding-bottom: 1rem;
  margin-bottom: 2.5rem;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h2 {
    padding-left: 28px;
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-bottom: 3.5rem;
    padding-bottom: 1.125rem;
  }
}
.p-newsDetailBody__editor h2:not(:first-child) {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h2:not(:first-child) {
    margin-top: 7.5rem;
  }
}
.p-newsDetailBody__editor h2:before {
  content: "";
  display: block;
  position: absolute;
  height: calc(100% - 20px);
  width: 4px;
  left: 0;
  top: 0.25rem;
  background-image: linear-gradient(#123d83 50%, #1eb8d4 50%);
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h2:before {
    top: 0.375rem;
    height: calc(100% - 24px);
  }
}
.p-newsDetailBody__editor h2:after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (max-width: 47.9375em) {
  .p-newsDetailBody__editor h2 + h3 {
    margin-top: 3rem;
  }
}
.p-newsDetailBody__editor h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  padding: 1.125rem 18px 1.0625rem 37px;
  color: #123d83;
  background-color: #e6f0f7;
  border-radius: 0.5rem;
  margin-top: 3.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h3 {
    padding: 1.25rem 23px 1.25rem 46px;
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 4.5rem;
    margin-bottom: 3.5rem;
  }
}
.p-newsDetailBody__editor h3:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_circle.svg);
  width: 10px;
  height: 10px;
  top: 1.5625rem;
  left: 18px;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h3:before {
    width: 12px;
    height: 12px;
    top: 1.8125rem;
    left: 23px;
  }
}
.p-newsDetailBody__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h4 {
    padding-left: 22px;
  }
}
.p-newsDetailBody__editor h4:before {
  content: "";
  display: block;
  position: absolute;
  background-image: url(/assets/images/common/ico_rhombus.svg);
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h4:before {
    width: 14px;
    height: 7px;
  }
}
.p-newsDetailBody__editor h4 + p {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor h4 + p {
    margin-top: 1.3125rem;
  }
}
.p-newsDetailBody__editor p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-newsDetailBody__editor p + p {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor p + p {
    margin-top: 1.5625rem;
  }
}
.p-newsDetailBody__editor figure {
  width: 100%;
  margin: 0;
  margin-top: 2.5rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor figure {
    margin-top: 4rem;
    width: 66.1157024793%;
  }
}
.p-newsDetailBody__editor figure.is-type-video {
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 8px;
}
.p-newsDetailBody__editor figure iframe {
  width: 100%;
}
.p-newsDetailBody__editor figure iframe + p {
  margin-top: 2.5rem;
}
.p-newsDetailBody__editor img {
  width: 100%;
  object-fit: contain;
  border-radius: 12px;
  overflow: hidden;
}
.p-newsDetailBody__editor video {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor .wp-block-columns {
    display: flex;
    margin-top: 4rem;
    column-gap: 6.6115702479%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-newsDetailBody__editor .wp-block-columns .wp-block-column:not(:first-of-type) {
    margin-top: 2.0625rem;
  }
}
.p-newsDetailBody__editor .wp-block-columns figure {
  width: 100%;
  margin-top: 0;
}
.p-newsDetailBody__editor .wp-block-columns img {
  border-radius: 8px;
}
.p-newsDetailBody__editor a:not(.wp-block-image a) {
  display: inline-block;
  position: relative;
  overflow: hidden;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (max-width: 47.9375em) {
  .p-newsDetailBody__editor a:not(.wp-block-image a) {
    background-image: linear-gradient(#123d83, #123d83);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 100%;
    background-size: 100% 1px;
  }
}
@media screen and (min-width: 48em) {
  .p-newsDetailBody__editor a:not(.wp-block-image a):after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #123d83;
    transition: background-color 0.3s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 47.9375em) {
  .p-newsDetailBody__editor a:not(.wp-block-image a):hover {
    background-size: 0% 1px;
    background-image: linear-gradient(#1eb8d4, #1eb8d4);
    transition: color 0.3s ease, background-size 0.3s ease, background-image 0.3s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 48em) {
  .p-newsDetailBody__editor a:not(.wp-block-image a):hover:after {
    animation: textUnderLine 0.4s linear;
    background-color: #1eb8d4;
  }
}
.p-newsDetailButton {
  margin-top: 4rem;
  margin-bottom: 7.5rem;
}
@media screen and (min-width: 48em) {
  .p-newsDetailButton {
    margin-top: 7.5rem;
    margin-bottom: 10rem;
  }
}
.p-newsDetailButton__inner {
  padding-right: 20px;
  padding-left: 20px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 30em) {
  .p-newsDetailButton__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1180px;
  }
}
.p-newsDetailButton__item {
  display: flex;
  justify-content: center;
}
.p-newsDetailButtonItem {
  width: 265px;
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  border: 2px solid #123d83;
  padding-top: 1rem;
  padding-bottom: 1.0625rem;
  border-radius: 1.75rem;
  position: relative;
  overflow: hidden;
  transition: background-color 0 ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-newsDetailButtonItem:hover {
    background-color: #123d83;
    transition: background-color 0.3s 0.3s ease;
  }
  .p-newsDetailButtonItem:hover .p-newsDetailButtonItem__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
  .p-newsDetailButtonItem:hover .p-newsDetailButtonItem__text {
    color: #fff;
  }
}
@media screen and (min-width: 48em) {
  .p-newsDetailButtonItem {
    padding-top: 1.1875rem;
    padding-bottom: 1.3125rem;
    border-radius: 2rem;
    width: 294px;
  }
}
.p-newsDetailButtonItem:not(.is-active) .p-newsDetailButtonItem__background {
  left: -66px;
}
.p-newsDetailButtonItem.is-active .p-newsDetailButtonItem__background {
  right: -66px;
}
.p-newsDetailButtonItem__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #d6141c;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scaleX(-1);
  transition: background-color 0.3s ease;
  position: relative;
  z-index: 2;
}
.p-newsDetailButtonItem__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-newsDetailButtonItem__icon i {
  display: flex;
  width: 8px;
  height: 7px;
  font-size: 8px;
  position: relative;
  z-index: 2;
}
.p-newsDetailButtonItem__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-newsDetailButtonItem__text {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.25;
    font-weight: 700;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-newsAside {
    margin-top: 2.25rem;
  }
}
@media screen and (min-width: 64em) {
  .p-newsAside {
    position: sticky;
    top: 8.75rem;
    width: 93.9163498099%;
  }
}
@media screen and (min-width: 90em) {
  .p-newsAside {
    width: 247px;
  }
}
.p-newsAside__title {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (min-width: 64em) {
  .p-newsAside__title {
    padding: 1.3125rem 0 1.3125rem 24px;
    background-color: rgba(14, 38, 77, 0.7019607843);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 6px;
  }
}
.p-newsAside__title:before {
  content: "";
  display: block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #123d83;
}
@media screen and (min-width: 64em) {
  .p-newsAside__title:before {
    background-color: #fff;
    width: 8px;
    height: 8px;
  }
}
.p-newsAside__title p {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
}
@media screen and (min-width: 64em) {
  .p-newsAside__title p {
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.4;
    font-weight: 700;
    color: #fff;
  }
}
.p-newsAside__item {
  margin-top: 1rem;
}
@media screen and (max-width: 63.9375em) {
  .p-newsAside__item {
    display: flex;
    column-gap: 6px;
    row-gap: 0.375rem;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 64em) {
  .p-newsAside__item {
    margin-top: 1.75rem;
    padding-left: 24px;
  }
}
.p-newsAsideItem.is-current a {
  background-color: #123d83;
  color: #fff;
}
@media screen and (min-width: 64em) {
  .p-newsAsideItem:not(:first-of-type) {
    margin-top: 0.75rem;
  }
}
.p-newsAsideItem:first-of-type a {
  padding: 0.1875rem 14px;
}
.p-newsAsideItem a {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  padding: 0.1875rem 7px 0.1875rem 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
  border-radius: 0.75rem;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-newsAsideItem a:hover {
    background-color: #123d83;
    color: #fff;
  }
}

.single-news.l-main {
  padding-top: 8.375rem;
}
@media screen and (min-width: 48em) {
  .single-news.l-main {
    padding-top: 5rem;
    padding-top: 12.5rem;
  }
}

.sec-topButtonPrimary {
  border: 2px solid #123d83;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  border-radius: 1.625rem;
  padding: 0.75rem 30px 0.8125rem 42px;
  overflow: hidden;
  transition: background-color 0s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topButtonPrimary:hover {
    border-color: #123d83 !important;
    background-color: #123d83 !important;
    transition: background-color 0.3s 0.4s ease;
    opacity: 1;
  }
}
.sec-topButtonPrimary:hover .sec-topButtonPrimary__text {
  color: #fff;
}
.sec-topButtonPrimary:hover .sec-topButtonPrimary__icon {
  color: #fff !important;
}
.sec-topButtonPrimary:hover .sec-topButtonPrimary__icon:before {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}
@media screen and (min-width: 48em) {
  .sec-topButtonPrimary {
    border-radius: 1.5rem;
    padding: 0.625rem 22px 0.6875rem 32px;
  }
}
.sec-topButtonPrimary:not(.is-active) .sec-topButtonPrimary__background {
  left: -48px;
}
.sec-topButtonPrimary.is-active .sec-topButtonPrimary__background {
  right: -48px;
}
.sec-topButtonPrimary * {
  pointer-events: none;
}
.sec-topButtonPrimary__background {
  width: 48px;
  height: 48px;
  position: absolute;
  display: block;
  background-color: #123d83;
  border-radius: 24px;
}
.sec-topButtonPrimary__text {
  color: #123d83;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  transition: color 0.3s ease;
  z-index: 2;
}
.sec-topButtonPrimary__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  z-index: 2;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.sec-topButtonPrimary__icon i {
  position: relative;
  font-size: 9.5px;
  color: #FFF;
  z-index: 3;
}
.sec-topButtonPrimary__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.sec-topButtonPrimary__icon:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d6141c;
  z-index: 1;
  transition: background-color 0.4s ease;
}
.sec-topButtonPrimary__icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  width: 8px;
  height: 7px;
  z-index: 3;
}

.p-topButtonPrimary {
  border: 2px solid #123d83;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  column-gap: 6px;
  border-radius: 1.625rem;
  padding: 0.75rem 30px 0.8125rem 42px;
  overflow: hidden;
  transition: background-color 0s ease, border-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-topButtonPrimary:hover {
    border-color: #123d83 !important;
    background-color: #123d83 !important;
    transition: background-color 0.3s 0.4s ease;
  }
  .p-topButtonPrimary:hover .p-topButtonPrimary__text {
    color: #fff;
  }
  .p-topButtonPrimary:hover .p-topButtonPrimary__icon {
    color: #fff !important;
  }
  .p-topButtonPrimary:hover .p-topButtonPrimary__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
  }
}
.p-topButtonPrimary__text {
  color: #123d83;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  transition: color 0.3s ease;
  z-index: 2;
}
.p-topButtonPrimary__icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  color: #fff;
  z-index: 2;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.p-topButtonPrimary__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}
.p-topButtonPrimary__icon:after {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #d6141c;
  z-index: 1;
  transition: background-color 0.4s ease;
}
.p-topButtonPrimary__icon i {
  width: 10px;
  height: 10px;
  font-size: 10px;
  position: relative;
  top: -3px;
  left: 3px;
  z-index: 2;
}

.sec-topService {
  margin-top: 5rem;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 64em) {
  .sec-topService {
    margin-top: 7.5rem;
  }
}
.sec-topService__inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 30em) {
  .sec-topService__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topService__wrapper {
    display: grid;
    grid-template-columns: 41.2727272727% 46.9090909091%;
    grid-template-rows: auto;
    column-gap: 11.8181818182%;
  }
}
.sec-topService__image {
  grid-column: 1/2;
  aspect-ratio: 454/614;
  display: grid;
  grid-template-columns: 11.2676056338% 33.8028169014% 54.9295774648%;
  grid-template-rows: 59.0792838875% 28.6445012788% 12.2762148338%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topService__image {
    width: 85.0746268657%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 64em) {
  .sec-topService__image {
    grid-template-columns: 11.8942731278% 32.1585903084% 55.9471365639%;
    grid-template-rows: 59.2833876221% 29.3159609121% 11.4006514658%;
  }
}
.sec-topService__group {
  margin-top: 3rem;
}
@media screen and (min-width: 64em) {
  .sec-topService__group {
    grid-column: 2/3;
    margin-top: 2.625rem;
  }
}
.sec-topService__text {
  margin-top: 1.5rem;
}
@media screen and (min-width: 64em) {
  .sec-topService__text {
    margin-top: 2rem;
  }
}
.sec-topService__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 2;
}
.sec-topService__text p:not(:first-of-type) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 64em) {
  .sec-topService__text p:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.sec-topService__button {
  margin-top: 2.25rem;
}
@media screen and (max-width: 63.9375em) {
  .sec-topService__button {
    display: flex;
    justify-content: center;
  }
}
@media screen and (min-width: 64em) {
  .sec-topService__button {
    margin-top: 2.5rem;
  }
}
.sec-topServiceImage:nth-of-type(1) {
  grid-column: 2/4;
  grid-row: 1/3;
}
.sec-topServiceImage:nth-of-type(1) img {
  aspect-ratio: 252/343;
}
@media screen and (min-width: 48em) {
  .sec-topServiceImage:nth-of-type(1) img {
    aspect-ratio: 400/544;
  }
}
.sec-topServiceImage:nth-of-type(2) {
  grid-column: 1/3;
  grid-row: 2/4;
}
.sec-topServiceImage:nth-of-type(2) img {
  aspect-ratio: 128/160;
}
@media screen and (min-width: 64em) {
  .sec-topServiceImage:nth-of-type(2) img {
    aspect-ratio: 200/250;
  }
}
.sec-topServiceImage img {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  object-fit: cover;
}
.sec-topServiceTitle__en {
  display: flex;
  column-gap: 12px;
  align-items: center;
  padding-left: 4px;
}
.sec-topServiceTitle__en svg {
  display: flex;
  width: 16px;
  height: 16px;
}
.sec-topServiceTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.sec-topServiceTitle__ja {
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .sec-topServiceTitle__ja {
    margin-top: 1rem;
  }
}
.sec-topServiceTitle__ja h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-topServiceTitle__ja h2 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 500;
  }
}

.p-serviceCard {
  margin-top: -5rem;
  padding-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-serviceCard {
    margin-top: -7.5rem;
    padding-top: 7.5rem;
  }
}
.p-serviceCard__item {
  display: flex;
  flex-wrap: wrap;
  column-gap: 6.8656716418%;
  row-gap: 3.5rem;
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-serviceCard__item {
    column-gap: 4.4421487603%;
    row-gap: 4.5rem;
    margin-top: 4.5rem;
  }
}
.p-serviceCardItem {
  width: 46.5671641791%;
}
@media screen and (min-width: 48em) {
  .p-serviceCardItem {
    width: 30.3719008264%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-serviceCardItem__link:hover .p-serviceCardItem__title h3 {
    color: #1eb8d4;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (max-width: 47.9375em) {
  .p-serviceCardItem__link:hover .p-serviceCardItem__title h3 {
    background-size: 0% 1px;
    background-image: linear-gradient(#1eb8d4, #1eb8d4);
    transition: color 0.4s ease, background-size 0.6s ease, background-image 0.6s ease;
  }
}
@media screen and (hover: hover) and (pointer: fine) and (min-width: 48em) {
  .p-serviceCardItem__link:hover .p-serviceCardItem__title h3:after {
    animation: textUnderLine 0.6s linear;
    background-color: #1eb8d4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-serviceCardItem__link:hover .p-serviceCardItem__image img {
    transform: scale(1.1);
  }
}
.p-serviceCardItem__image {
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.p-serviceCardItem__image img {
  width: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.p-serviceCardItem__group {
  width: 61.7910447761%;
}
@media screen and (max-width: 47.9375em) {
  .p-serviceCardItem__group {
    margin-top: 0.375rem;
  }
}
.p-serviceCardItem__title {
  display: inline-block;
  margin-top: 1rem;
  overflow: hidden;
  padding-bottom: 0.0625rem;
}
@media screen and (min-width: 48em) {
  .p-serviceCardItem__title {
    margin-top: 1.5625rem;
  }
}
.p-serviceCardItem__title h3 {
  color: #123d83;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  display: inline;
  transition: color 0.4s ease;
}
@media screen and (max-width: 47.9375em) {
  .p-serviceCardItem__title h3 {
    background-image: linear-gradient(#123d83, #123d83);
    background-repeat: no-repeat;
    background-position-x: 100%;
    background-position-y: 100%;
    background-size: 100% 1px;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceCardItem__title h3 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceCardItem__title h3:after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #123d83;
    transition: background-color 0.4s ease;
  }
}
.p-serviceCardItem__text {
  margin-top: 0.5rem;
  display: block;
}
.p-serviceCardItem__text p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .p-serviceCardItem__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-serviceSyllabary {
  margin-top: 0rem;
  padding-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary {
    margin-top: 0rem;
    padding-top: 7.5rem;
  }
}
.p-serviceSyllabary__wrapper {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 2.0895522388%;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__wrapper {
    margin-top: 4.125rem;
    column-gap: 1.2396694215%;
  }
}
.p-serviceSyllabary__toc {
  width: 48.9552238806%;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc {
    width: 19.0082644628%;
  }
}
.p-serviceSyllabary__toc:nth-of-type(1) {
  order: 1;
}
.p-serviceSyllabary__toc:nth-of-type(2) {
  order: 2;
}
.p-serviceSyllabary__toc:nth-of-type(3) {
  order: 4;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(3) {
    order: 3;
  }
}
.p-serviceSyllabary__toc:nth-of-type(4) {
  order: 5;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(4) {
    order: 4;
  }
}
.p-serviceSyllabary__toc:nth-of-type(5) {
  order: 7;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(5) {
    order: 5;
  }
}
.p-serviceSyllabary__toc:nth-of-type(6) {
  order: 8;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(6) {
    order: 6;
  }
}
.p-serviceSyllabary__toc:nth-of-type(7) {
  order: 10;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(7) {
    order: 7;
  }
}
.p-serviceSyllabary__toc:nth-of-type(8) {
  order: 11;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(8) {
    order: 8;
  }
}
.p-serviceSyllabary__toc:nth-of-type(9) {
  order: 13;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(9) {
    order: 9;
  }
}
.p-serviceSyllabary__toc:nth-of-type(10) {
  order: 14;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(10) {
    order: 10;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(n + 3) {
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__toc:nth-of-type(n + 6) {
    margin-top: 0.75rem;
  }
}
.p-serviceSyllabary__toc.is-active .p-serviceSyllabaryToc {
  background-color: #123d83;
  color: #fff;
}
.p-serviceSyllabary__content {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  width: 100%;
}
.p-serviceSyllabary__content:nth-of-type(1) {
  order: 3;
}
@media screen and (min-width: 48em) {
  .p-serviceSyllabary__content:nth-of-type(1) {
    order: 11;
  }
}
.p-serviceSearch {
  margin-top: 4rem;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch {
    margin-top: 5rem;
  }
}
.p-serviceSearch__wrapper {
  padding: 2.5rem 24px 3rem;
  border-radius: 12px;
  background-color: #0e264c;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__wrapper {
    padding: 4rem 64px;
  }
}
.p-serviceSearch__heading {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__heading {
    display: flex;
    justify-content: space-between;
  }
}
.p-serviceSearch__title span {
  font-family: Inter, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__title span {
    font-size: 1.75rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
  }
}
.p-serviceSearch__title h3 {
  margin-top: 0.5rem;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__title h3 {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
    margin-top: 0.75rem;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__form {
    width: 480px;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-serviceSearch__form {
    margin-top: 1.25rem;
  }
}
.p-serviceSearch__form form {
  display: flex;
  align-items: center;
  overflow: hidden;
  border-radius: 6px;
  white-space: 100%;
}
.p-serviceSearch__form form input[type=text] {
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400;
  width: calc(100% - 60px);
  height: 3.75rem;
  background-color: #fff;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__form form input[type=text] {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 400;
    width: 85%;
    height: 4.5rem;
    padding-left: 32px;
    padding-right: 32px;
  }
}
.p-serviceSearch__form form input[type=text]::placeholder {
  color: #969899;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 400;
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__form form input[type=text]::placeholder {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 400;
  }
}
.p-serviceSearch__form form button[type=submit] {
  height: 3.75rem;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e6f0f7;
  color: #123d83;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-serviceSearch__form form button[type=submit]:hover {
    background-color: #1eb8d4;
    color: #fff;
  }
}
@media screen and (min-width: 48em) {
  .p-serviceSearch__form form button[type=submit] {
    height: 4.5rem;
    width: 72px;
  }
}
.p-serviceSearch__form form button[type=submit] svg {
  width: 18px;
  height: 18px;
  display: flex;
}
.p-serviceSearch__keyword {
  margin-top: 2.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
}
@media screen and (min-width: 64em) {
  .p-serviceSearch__keyword {
    margin-top: 3rem;
    padding-top: 2.5rem;
  }
}
.p-serviceSearchKeyword__title h4 {
  color: #fff;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  .p-serviceSearchKeyword__title h4 {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
  }
}
.p-serviceSearchKeyword__tag {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 6px;
  row-gap: 0.625rem;
}
@media screen and (min-width: 64em) {
  .p-serviceSearchKeyword__tag {
    row-gap: 0.75rem;
  }
}
.p-serviceSearchKeyword__tag a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #123d83;
  padding: 0.25rem 8px;
  border-radius: 0.9375rem;
  font-size: 0.8125rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 500;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-serviceSearchKeyword__tag a:hover {
    background-color: #1eb8d4;
    color: #fff;
  }
}
@media screen and (min-width: 64em) {
  .p-serviceSearchKeyword__tag a {
    padding: 0.25rem 14px;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 500;
  }
}

.sec-topCompany {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompany {
    margin-top: 7.5rem;
  }
}
.sec-topCompany__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 64em) {
  .sec-topCompany__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.sec-topCompany__wrapper {
  padding-top: 4.1875rem;
  padding-bottom: 5rem;
  background-color: #e6f0f7;
  position: relative;
}
@media screen and (min-width: 48em) {
  .sec-topCompany__wrapper {
    padding-top: 6rem;
    padding-bottom: 7rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topCompany__wrapper {
    border-radius: 12px 0 0;
  }
}
.sec-topCompany__wrapper:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  background-color: #e6f0f7;
  width: calc(50vw - 25%);
  top: 0;
  left: 100%;
  z-index: 1;
}
@media screen and (max-width: 48em) {
  .sec-topCompany__wrapper:before {
    display: none;
  }
}
.sec-topCompany__body {
  padding-left: 8.7272727273%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 63.9375em) {
  .sec-topCompany__body {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .sec-topCompany__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sec-topCompany__decoration {
  position: absolute;
  top: 2.5rem;
  right: 1.1940298507%;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .sec-topCompany__decoration {
    top: 4.5rem;
    right: -178px;
  }
}
.sec-topCompany__decoration svg {
  display: flex;
  width: 144px;
  height: 83px;
}
.sec-topCompany__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompany__text {
    margin-top: 1.5rem;
  }
}
.sec-topCompany__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-topCompany__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.sec-topCompany__button {
  display: flex;
  justify-content: center;
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompany__button {
    margin-top: 4.5rem;
  }
}
.sec-topCompany__button .sec-topButtonPrimary {
  background-color: #fff;
}
.sec-topCompany__card {
  margin-top: 3rem;
  width: 100%;
  row-gap: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5.523255814%;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompany__card {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .sec-topCompany__card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 48em) {
  .sec-topCompany__card {
    margin-top: 5rem;
    column-gap: 3.5250463822%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topCompany__card {
    width: 107.3705179283%;
  }
}
.sec-topCompany__sdgs {
  margin-top: 3.0625rem;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompany__sdgs {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .sec-topCompany__sdgs {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 48em) {
  .sec-topCompany__sdgs {
    margin-top: 4.5rem;
  }
}
.sec-topCompanyTitle__en {
  display: flex;
  align-items: center;
  padding-left: 4px;
  column-gap: 12px;
}
.sec-topCompanyTitle__en svg {
  width: 16px;
  height: 16px;
}
.sec-topCompanyTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.sec-topCompanyTitle__ja {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompanyTitle__ja {
    margin-top: 0.75rem;
  }
}
.sec-topCompanyTitle__ja h2 {
  color: #123d83;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topCompanyTitle__ja h2 {
    font-size: 2.125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topCompanyCard {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .sec-topCompanyCard {
    width: 47.238372093%;
  }
}
@media screen and (min-width: 48em) {
  .sec-topCompanyCard {
    width: 30.9833024119%;
  }
}
.sec-topCompanyCard__image {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
.sec-topCompanyCard__image img {
  width: 100%;
  aspect-ratio: 334/223;
  object-fit: cover;
  transition: transform 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topCompanyCard__link:hover .sec-topCompanyCard__image img {
    transform: scale(1.1);
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec-topCompanyCard__link:hover .sec-topCompanyCardTitle h3 {
    color: #1eb8d4;
  }
  .sec-topCompanyCard__link:hover .sec-topCompanyCardTitle__icon {
    color: #123d83;
    border-color: #1eb8d4;
  }
  .sec-topCompanyCard__link:hover .sec-topCompanyCardTitle__icon :before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
  .sec-topCompanyCard__link:hover .sec-topCompanyCardTitle__icon i {
    color: #1eb8d4;
  }
}
.sec-topCompanyCard__title {
  display: block;
  margin-top: 0.75rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompanyCard__title {
    margin-top: 1rem;
  }
}
.sec-topCompanyCardTitle {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (min-width: 48em) {
  .sec-topCompanyCardTitle {
    column-gap: 7px;
  }
}
.sec-topCompanyCardTitle h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.3s ease;
}
.sec-topCompanyCardTitle__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 18px;
  height: 18px;
  position: relative;
  border: 2px solid #123d83;
  color: #123d83;
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.sec-topCompanyCardTitle__icon i {
  position: relative;
  font-size: 9.5px;
  color: #123d83;
  z-index: 3;
}
.sec-topCompanyCardTitle__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.sec-topCompanyCardTitle__icon svg {
  display: flex;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.sec-topCompanySdgs {
  width: 100%;
}
@media screen and (min-width: 64em) {
  .sec-topCompanySdgs {
    position: relative;
    left: 9.8605577689%;
    width: 87.6494023904%;
  }
}
.sec-topCompanySdgs__link {
  display: block;
  padding: 1.625rem 24px 2rem;
  background-color: #fff;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link {
    padding: 2rem 28px 1.5rem 40px;
    display: flex;
    column-gap: 8.8669950739%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .sec-topCompanySdgs__link:hover .sec-topCompanySdgs__image img {
    transform: scale(1.1);
  }
  .sec-topCompanySdgs__link:hover .sec-topCompanySdgsButton__text {
    color: #1eb8d4;
  }
  .sec-topCompanySdgs__link:hover .sec-topCompanySdgsButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.sec-topCompanySdgs__link:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(90deg, #e4011e 4.7727272727% 4.7727272727%, #d6a600 6.4772727273% 11.25%, #1b973a 6.4772727273% 17.7272727273%, #c50e28 6.4772727273% 24.2045454545%, #e83418 6.4772727273% 30.6818181818%, #00a6d9 6.4772727273% 37.1590909091%, #fabd00 6.4772727273% 43.6363636364%, #970a31 6.4772727273% 50.1136363636%, #ec6a06 6.4772727273% 56.5909090909%, #dc097b 6.4772727273% 63.0681818182%, #f5a20b 6.4772727273% 69.5454545455%, #d39206 6.4772727273% 76.0227272727%, #407936 6.4772727273% 82.5%, #0075ba 6.4772727273% 88.9772727273%, #28a838 6.4772727273% 95.4545454545%, #004c88 4.7727272727% 100%);
}
.sec-topCompanySdgs__link__image {
  display: flex;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link__image {
    width: 36.4532019704%;
  }
}
.sec-topCompanySdgs__link__image img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 296/196;
  transition: transform 0.3s ease;
}
.sec-topCompanySdgs__link__group {
  margin-top: 1.8125rem;
}
@media screen and (min-width: 64em) {
  .sec-topCompanySdgs__link__group {
    width: 54.6798029557%;
  }
}
.sec-topCompanySdgs__link__title {
  display: flex;
  align-items: center;
  column-gap: 6px;
  color: #1eb8d4;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompanySdgs__link__title {
    margin-top: 0.1875rem;
    padding-left: 4px;
  }
}
.sec-topCompanySdgs__link__title svg {
  display: flex;
  width: 14px;
  height: 7px;
}
.sec-topCompanySdgs__link__title h3 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4222222222;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link__title h3 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.sec-topCompanySdgs__link__decoration {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 600;
  opacity: 0.5;
  display: flex;
  align-items: center;
  column-gap: 4px;
  color: #123d83;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompanySdgs__link__decoration {
    margin-top: 1.0625rem;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link__decoration {
    font-size: 0.8125rem;
    letter-spacing: 0em;
    line-height: 1.2307692308;
    font-weight: 600;
    column-gap: 8px;
    position: absolute;
    right: 28px;
    top: 1.8125rem;
  }
}
.sec-topCompanySdgs__link__decoration:after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background-color: #123d83;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link__decoration:after {
    width: 40px;
  }
}
.sec-topCompanySdgs__link__text {
  display: block;
  font-size: 1.3125rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
  margin-top: 0.5rem;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompanySdgs__link__text {
    padding-left: 4px;
  }
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__link__text {
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 500;
    margin-top: 0.75rem;
  }
}
.sec-topCompanySdgs__link__button {
  display: block;
}
@media screen and (max-width: 47.9375em) {
  .sec-topCompanySdgs__link__button {
    padding-left: 4px;
  }
}
.sec-topCompanySdgs__linkButton {
  display: flex;
  column-gap: 8px;
  align-items: center;
  margin-top: 1.125rem;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__linkButton {
    justify-content: flex-end;
    margin-top: 1.9375rem;
  }
}
.sec-topCompanySdgs__linkButton__text {
  font-size: 0.9375rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 700;
  color: #123d83;
  transition: color 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topCompanySdgs__linkButton__text {
    font-size: 1rem;
    letter-spacing: 0.04em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.sec-topCompanySdgs__linkButton__icon {
  width: 16px;
  height: 16px;
  position: relative;
  border-radius: 50%;
  background-color: #123d83;
  color: #fff;
  transition: background-color 0.3s ease;
}
.sec-topCompanySdgs__linkButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 2;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.sec-topCompanySdgs__linkButton__icon svg {
  display: flex;
  width: 9px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.p-topCompany {
  margin-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-topCompany {
    margin-top: 7.5rem;
  }
}
.p-topCompany__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 64em) {
  .p-topCompany__inner {
    max-width: 1180px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.p-topCompany__wrapper {
  padding-top: 4.1875rem;
  padding-bottom: 5rem;
  background-color: #e6f0f7;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-topCompany__wrapper {
    padding-top: 6rem;
    padding-bottom: 15.3125rem;
  }
}
@media screen and (min-width: 64em) {
  .p-topCompany__wrapper {
    border-radius: 12px 0 0;
  }
}
.p-topCompany__wrapper:before {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  background-color: #e6f0f7;
  width: calc(50vw - 50% - var(0px) / 2);
  top: 0;
  left: 100%;
  z-index: 1;
}
.p-topCompany__body {
  padding-left: 8.7272727273%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 63.9375em) {
  .p-topCompany__body {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-topCompany__body {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-topCompany__decoration {
  position: absolute;
  top: 2.5rem;
  right: 1.1940298507%;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-topCompany__decoration {
    top: 4.5rem;
    right: -178px;
  }
}
.p-topCompany__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .p-topCompany__text {
    margin-top: 1.5rem;
  }
}
.p-topCompany__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .p-topCompany__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.p-topCompany__button {
  margin-top: 3.5rem;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 48em) {
  .p-topCompany__button {
    margin-top: 4.5rem;
  }
}
.p-topCompany__card {
  margin-top: 3rem;
  width: 100%;
  row-gap: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  column-gap: 5.523255814%;
}
@media screen and (max-width: 47.9375em) {
  .p-topCompany__card {
    padding-right: 40px;
    padding-left: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-topCompany__card {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (min-width: 48em) {
  .p-topCompany__card {
    margin-top: 5rem;
    column-gap: 3.5250463822%;
  }
}
.p-topCompanyTitle__en {
  display: flex;
  align-items: center;
  padding-left: 4px;
  column-gap: 12px;
}
.p-topCompanyTitle__en span {
  font-family: Ubuntu, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  color: #1eb8d4;
}
.p-topCompanyTitle__ja {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 48em) {
  .p-topCompanyTitle__ja {
    margin-top: 0.75rem;
  }
}
.p-topCompanyTitle__ja h2 {
  color: #123d83;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-topCompanyTitle__ja h2 {
    font-size: 2.125rem;
    letter-spacing: 0.05em;
    line-height: 1.5;
    font-weight: 700;
  }
}
.p-topCompanyCard {
  width: 100%;
}
@media screen and (min-width: 30em) {
  .p-topCompanyCard {
    width: 47.238372093%;
  }
}
@media screen and (min-width: 48em) {
  .p-topCompanyCard {
    width: 30.9833024119%;
  }
}
.p-topCompanyCard__image {
  width: 100%;
  display: block;
  overflow: hidden;
  border-radius: 8px;
}
@media (hover: hover) and (pointer: fine) {
  .p-topCompanyCard__link:hover .p-topCompanyCard__image img {
    transform: scale(1.1);
  }
  .p-topCompanyCard__link:hover .p-topCompanyCardTitle h3 {
    color: #1eb8d4;
  }
  .p-topCompanyCard__link:hover .p-topCompanyCardTitle__icon {
    color: #fff;
    border-color: #1eb8d4;
  }
  .p-topCompanyCard__link:hover .p-topCompanyCardTitle__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
.p-topCompanyCard__title {
  display: block;
}
@media screen and (min-width: 48em) {
  .p-topCompanyCard__title {
    margin-top: 1rem;
  }
}
.p-topCompanyCardTitle {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (min-width: 48em) {
  .p-topCompanyCardTitle {
    column-gap: 7px;
  }
}
.p-topCompanyCardTitle h3 {
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-topCompanyCardTitle__icon {
  width: 18px;
  height: 18px;
  position: relative;
  border: 2px solid #123d83;
  color: #123d83;
  border-radius: 50%;
  transition: color 0.3s ease, border-color 0.3s ease;
}
.p-topCompanyCardTitle__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.p-topCompanyCardTitle__icon i {
  display: flex;
  width: 8px;
  height: 7px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.p-companyGreetings {
  margin-top: -7.5rem;
  padding-top: 7.5rem;
}
.p-companyGreetings__wrapper {
  margin-top: 3rem;
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__wrapper {
    flex-direction: column-reverse;
  }
}
.p-companyGreetings__detail {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__detail {
    width: 55.3719008264%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__detail {
    margin-top: 2.5rem;
  }
}
.p-companyGreetings__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__text p:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.p-companyGreetings__name {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__name {
    margin-top: 2rem;
  }
}
.p-companyGreetings__name p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
}
.p-companyGreetings__image {
  width: 75.223880597%;
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__image {
    width: 100% !important;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__image {
    width: 37.1900826446%;
  }
}
.p-companyGreetings__image img {
  width: 100%;
  aspect-ratio: 360/486;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-companyGreetings__image img {
    aspect-ratio: 98/83 !important;
  }
}
.p-companyProfile {
  margin-top: 0rem;
  padding-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-companyProfile {
    margin-top: 0rem;
    padding-top: 7.5rem;
  }
}
.p-companyProfile__item {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-companyProfile__item {
    margin-top: 4.5rem;
  }
}
.p-companyProfileItem {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyProfileItem {
    display: flex;
    padding-bottom: 2rem;
  }
}
.p-companyProfileItem:not(:first-of-type) {
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyProfileItem:not(:first-of-type) {
    margin-top: 1.625rem;
  }
}
.p-companyProfileItem dt {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-companyProfileItem dt {
    width: 15.5991735537%;
  }
}
.p-companyProfileItem dd {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .p-companyProfileItem dd {
    margin-top: 0.5rem;
  }
}
.p-companyProfileItem dd .p-pageLinkSecondary__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-companyPhilosophy {
  margin-top: 0rem;
  padding-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophy {
    margin-top: 0rem;
    padding-top: 7.5rem;
  }
}
.p-companyPhilosophy__heading {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophy__heading {
    margin-top: 4.5rem;
  }
}
.p-companyPhilosophy__vision {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophy__vision {
    margin-top: 5rem;
  }
}
@media screen and (min-width: 64em) {
  .p-companyPhilosophy__wrapper {
    display: flex;
  }
}
@media screen and (min-width: 64em) {
  .p-companyPhilosophy__title {
    width: 25.6198347107%;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-companyPhilosophy__content {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 64em) {
  .p-companyPhilosophy__content {
    width: 74.3801652893%;
  }
}
.p-companyPhilosophy__values {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophy__values {
    margin-top: 5rem;
  }
}
.p-companyPhilosophyTitle {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyTitle {
    column-gap: 6px;
  }
}
.p-companyPhilosophyTitle i {
  display: flex;
  width: 20px;
  height: 13px;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyTitle i {
    width: 20px;
    height: 13px;
  }
}
.p-companyPhilosophyTitle i h4 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyTitle i h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.p-companyPhilosophyHeading {
  overflow: hidden;
  border-radius: 6px;
  position: relative;
  background-image: url(/assets/images/img_philosophyHeadingSP.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 30em) {
  .p-companyPhilosophyHeading {
    background-image: url(/assets/images/img_philosophyHeading.png);
  }
}
.p-companyPhilosophyHeading__wrapper {
  display: flex;
  justify-content: center;
  padding-top: 5.875rem;
  padding-bottom: 5.0625rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyHeading__wrapper {
    padding-top: 7.875rem;
    padding-bottom: 7.875rem;
  }
}
.p-companyPhilosophyHeading__title {
  display: flex;
  align-items: center;
  color: #fff;
  column-gap: 8px;
  position: absolute;
  top: 1.5rem;
  left: 7.1641791045%;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyHeading__title {
    top: 2rem;
    left: 4.132231405%;
    column-gap: 6px;
  }
}
@media screen and (max-width: 768px) {
  .p-companyPhilosophyHeading__title {
    color: #353434;
  }
}
.p-companyPhilosophyHeading__title i {
  display: flex;
  width: 12px;
  height: 6px;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyHeading__title i {
    width: 14px;
    height: 7px;
  }
}
.p-companyPhilosophyHeading__title h4 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyHeading__title h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .p-companyPhilosophyHeading__title h4 {
    margin-left: 0.5em;
  }
}
.p-companyPhilosophyHeading__copy {
  text-align: center;
}
.p-companyPhilosophyHeading__copy p {
  color: #fff;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyHeading__copy p {
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 2;
    font-weight: 700;
  }
}
@media screen and (max-width: 768px) {
  .p-companyPhilosophyHeading__copy p {
    color: #353434;
    text-align: left;
  }
}
.p-companyPhilosophyVision__title {
  text-align: center;
}
.p-companyPhilosophyVision__title span {
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  color: #fff;
  font-family: Inter, sans-serif;
  opacity: 0.5;
}
.p-companyPhilosophyVision__wrapper {
  background-color: #0e264c;
  border-radius: 6px;
  padding-top: 2.5rem;
  padding-bottom: 3.5rem;
}
@media screen and (max-width: 47.9375em) {
  .p-companyPhilosophyVision__wrapper {
    padding-right: 11.9402985075%;
    padding-left: 11.9402985075%;
  }
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyVision__wrapper {
    padding-bottom: 3.75rem;
  }
}
.p-companyPhilosophyVision__item {
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyVision__item {
    display: flex;
    margin-top: 1.4375rem;
  }
}
.p-companyPhilosophyVisionItem {
  text-align: center;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyVisionItem {
    width: 50%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyPhilosophyVisionItem:not(:first-of-type) {
    padding-top: 2rem;
    margin-top: 2rem;
  }
}
.p-companyPhilosophyVisionItem:not(:first-of-type):before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  opacity: 0.3;
  left: 0;
  top: 0;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyVisionItem:not(:first-of-type):before {
    width: 1px;
    height: 100%;
  }
}
.p-companyPhilosophyVisionItem p {
  color: #fff;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyVisionItem p {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 500;
  }
}
.p-companyPhilosophyValues__item {
  border-top: 1px solid #e6e6e6;
}
.p-companyPhilosophyValuesItem {
  counter-increment: number;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  padding-left: 26px;
  border-bottom: 1px solid #e6e6e6;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyValuesItem {
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 42px;
  }
}
.p-companyPhilosophyValuesItem__title {
  position: relative;
}
.p-companyPhilosophyValuesItem__title:before {
  font-family: Inter, sans-serif;
  position: absolute;
  top: 0.4375rem;
  left: -26px;
  content: "0" counter(number) ".";
  display: block;
  color: #123d83;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyValuesItem__title:before {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    line-height: 1;
    font-weight: 600;
    left: -33px;
    top: 0.625rem;
  }
}
.p-companyPhilosophyValuesItem__title h5 {
  color: #123d83;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyValuesItem__title h5 {
    font-size: 1.375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}
.p-companyPhilosophyValuesItem__title__text {
  margin-top: 0.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyValuesItem__title__text {
    margin-top: 1rem;
  }
}
.p-companyPhilosophyValuesItem__title__text p {
  color: #969899;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.3066666667;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyValuesItem__title__text p {
    font-size: 0.9375rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
  }
}
.p-companyPhilosophyWhat {
  margin-top: 4rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat {
    margin-top: 5rem;
  }
}
.p-companyPhilosophyWhat__wrapper {
  background-color: #e6f0f7;
  padding: 3rem 7.1641791045%;
  border-radius: 8px;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat__wrapper {
    padding: 4.0625rem 8.2644628099% 4.5rem;
    display: flex;
    column-gap: 7.9207920792%;
    border-radius: 12px;
  }
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat__group {
    width: 43.8118811881%;
  }
}
.p-companyPhilosophyWhat__title span {
  color: #123d83;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1.2142857143;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.p-companyPhilosophyWhat__title span:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #123d83;
}
.p-companyPhilosophyWhat__title h4 {
  margin-top: 0.75rem;
  font-size: 1.375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat__title h4 {
    margin-top: 0.6875rem;
    font-size: 1.6875rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
    font-weight: 500;
  }
}
.p-companyPhilosophyWhat__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat__text {
    margin-top: 1.5rem;
  }
}
.p-companyPhilosophyWhat__text p {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-companyPhilosophyWhat__image {
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .p-companyPhilosophyWhat__image {
    margin-top: 1.75rem;
    width: 48.2673267327%;
  }
}
.p-companyPhilosophyWhat__image img {
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
}
.p-companyMap {
  margin-top: 0rem;
  padding-top: 5rem;
}
@media screen and (min-width: 48em) {
  .p-companyMap {
    margin-top: 0rem;
    padding-top: 7.5rem;
  }
}
.p-companyMap__wrapper {
  margin-top: 3rem;
  overflow: hidden;
  border-radius: 8px;
  background-image: url(/assets/images/pages/company/img_mapSP.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 25.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyMap__wrapper {
    background-image: url(/assets/images/pages/company/img_map.jpg);
    margin-top: 3.9375rem;
    height: 34.0625rem;
  }
}
.p-companyMap__image {
  position: relative;
  width: 287px;
  aspect-ratio: 287/327.68;
}
@media screen and (min-width: 48em) {
  .p-companyMap__image {
    width: 400.05px;
    aspect-ratio: 400.05/456.75;
  }
}
.p-companyMap__image img {
  object-fit: contain;
  pointer-events: none;
}
.p-companyMap__search {
  margin-top: 2.75rem;
}
@media screen and (min-width: 48em) {
  .p-companyMap__search {
    margin-top: 3.5625rem;
  }
}
.p-companyMap__pin {
  display: contents;
}
.p-companyMapSearch__title {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
.p-companyMapSearch__title:after {
  content: "";
  width: 64px;
  height: 1px;
  background-color: #123d83;
  opacity: 0.2;
}
.p-companyMapSearch__title h4 {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 700;
  color: #123d83;
}
.p-companyMapSearch__toc {
  margin-top: 0.75rem;
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  position: relative;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearch__toc {
    border-radius: 6px;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearch__toc {
    width: calc(100% + 80px);
    margin-left: -40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-companyMapSearch__toc {
    width: calc(100% + 40px);
    margin-left: -20px;
  }
}
@media screen and (min-width: 48em) {
  .p-companyMapSearch__toc {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearch__toc:before {
    content: "";
    width: 40px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-companyMapSearch__toc:before {
    width: 20px;
  }
}
.p-companyMapSearch__toc ::-webkit-scrollbar {
  display: none;
}
.p-companyMapSearch__item {
  margin-top: 2.75rem;
  display: none;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearch__item {
    margin-top: 3.5rem;
  }
}
.p-companyMapSearch__item.is-active {
  display: block;
}
.p-companyMapSearchToc {
  display: flex;
  white-space: nowrap;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchToc {
    background-color: #123d83;
    width: 100%;
  }
}
.p-companyMapSearchToc__item {
  position: relative;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  padding-left: 32px;
  background-color: #123d83;
  padding-right: 1px;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchToc__item {
    padding-top: 1.5625rem;
    padding-bottom: 1.5625rem;
    padding-left: 40px;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchToc__item:first-of-type {
    border-radius: 6px 0 0 6px;
    margin-left: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-companyMapSearchToc__item:first-of-type {
    margin-left: 20px;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchToc__item:nth-last-child(2) {
    padding-right: 32px;
    border-radius: 0 6px 6px 0;
  }
}
.p-companyMapSearchToc__item:not(:first-child) {
  margin-left: -1px;
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchToc__item:not(:first-child) {
    display: block;
    padding-right: 40px;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchToc__blank {
    display: block;
    padding-right: 40px;
  }
}
@media screen and (max-width: 29.9375em) {
  .p-companyMapSearchToc__blank {
    padding-right: 20px;
  }
}
.p-companyMapSearchTocItem {
  position: relative;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .p-companyMapSearchTocItem:hover p {
    opacity: 1;
  }
}
.p-companyMapSearchTocItem.is-active:before {
  background-color: #1eb8d4;
}
.p-companyMapSearchTocItem.is-active p {
  opacity: 1;
}
.p-companyMapSearchTocItem:before {
  content: "";
  display: block;
  width: 100%;
  height: 4px;
  position: absolute;
  left: 0;
  bottom: -1.25rem;
  background-color: transparent;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchTocItem:before {
    bottom: -1.5625rem;
  }
}
.p-companyMapSearchTocItem p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  color: #fff;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchTocItem p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-companyMapSearchItem {
  padding-left: 2.3880597015%;
  padding-right: 2.3880597015%;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchItem {
    column-gap: 5.4054054054%;
    padding-left: 40px;
    padding-right: 40px;
    display: flex;
  }
}
.p-companyMapSearchItem:not(:first-of-type) {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchItem__group {
    width: 43.2432432432%;
  }
}
.p-companyMapSearchItem__title {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
.p-companyMapSearchItem__title i {
  color: #123d83;
  width: 14px;
  height: 7px;
}
.p-companyMapSearchItem__title h5 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
.p-companyMapSearchItem__address {
  margin-top: 1rem;
}
.p-companyMapSearchItem__address p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchItem__address .p-pageLinkSecondary__text {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-companyMapSearchItem__content {
  margin-top: 2.5rem;
  border-top: 1px solid #e6e6e6;
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchItem__content {
    margin-top: 3.125rem;
    width: 51.3513513514%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyMapSearchItem__image {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 48em) {
  .p-companyMapSearchItem__image {
    width: 40.5405405405%;
  }
}
.p-companyMapSearchItem__image img {
  border-radius: 6px;
  overflow: hidden;
  object-fit: cover;
}
.p-companyMapSearchItemContent {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e6e6e6;
}
.p-companyMapSearchItemContent.is-active .p-companyMapSearchItemContentTitle__icon span:nth-of-type(2) {
  transform: rotate(0);
}
.p-companyMapSearchItemContentTitle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-right: 8px;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .p-companyMapSearchItemContentTitle:hover p {
    color: #1eb8d4;
  }
  .p-companyMapSearchItemContentTitle:hover .p-companyMapSearchItemContentTitle__icon span {
    background-color: #1eb8d4;
  }
}
.p-companyMapSearchItemContentTitle p {
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  transition: color 0.3s ease;
}
.p-companyMapSearchItemContentTitle__icon {
  width: 12px;
  height: 12px;
  display: grid;
  place-items: center;
}
.p-companyMapSearchItemContentTitle__icon span {
  grid-column: 1/2;
  grid-row: 1/2;
  background-color: #d6141c;
  width: 12px;
  height: 2px;
  border-radius: 1px;
  transition: background-color 0.3s ease;
}
.p-companyMapSearchItemContentTitle__icon span:nth-of-type(2) {
  transform: rotate(-90deg);
}
.p-companyMapSearchItemContentText {
  padding-top: 0.75rem;
}
.p-companyMapSearchItemContentText p {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-companyMapSearchItemContentText a {
  color: #123d83;
  transition: color 0.3s ease;
  overflow: hidden;
  position: relative;
  display: inline-flex;
}
@media (hover: hover) and (pointer: fine) {
  .p-companyMapSearchItemContentText a:hover {
    color: #1eb8d4;
  }
  .p-companyMapSearchItemContentText a:hover:before {
    animation: textUnderLine 0.4s linear;
    background-color: #1eb8d4;
  }
}
.p-companyMapSearchItemContentText a:before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #123d83;
  transition: background-color 0.3s ease;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0.1875rem;
}
.p-companyMapSearchItemContentText ul li {
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  padding-left: 10px;
  position: relative;
}
.p-companyMapSearchItemContentText ul li:not(:first-of-type) {
  margin-top: 0.125rem;
}
.p-companyMapSearchItemContentText ul li:before {
  content: "";
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #123d83;
  top: 0.5625rem;
  left: 0;
}
.p-companyMapPin {
  position: absolute;
}
.p-companyMapPin[data-pin="751"] {
  top: 69.2073170732%;
  left: 8.0139372822%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="751"] {
    top: 72.5%;
    left: 10.5032822757%;
  }
}
.p-companyMapPin[data-pin="763"] {
  top: 72.5609756098%;
  left: 3.1358885017%;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="763"] {
    top: 75%;
    left: 4.3763676149%;
  }
}
.p-companyMapPin[data-pin="745"] {
  top: 63.4146341463%;
  left: 42.1602787456%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="745"] {
    top: 66.75%;
    left: 43.1072210066%;
  }
}
.p-companyMapPin[data-pin="737"] {
  top: 62.1951219512%;
  left: 60.9756097561%;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="737"] {
    top: 65%;
    left: 61.2691466083%;
  }
}
.p-companyMapPin[data-pin="753"] {
  top: 76.2195121951%;
  left: 8.7108013937%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="753"] {
    top: 78.5%;
    left: 9.409190372%;
  }
}
.p-companyMapPin[data-pin="726"] {
  top: 12.1951219512%;
  left: 66.8989547038%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="726"] {
    top: 15%;
    left: 67.8336980306%;
  }
}
.p-companyMapPin[data-pin="757"] {
  top: 60.0609756098%;
  left: 51.2195121951%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="757"] {
    top: 63%;
    left: 52.0787746171%;
  }
}
.p-companyMapPin[data-pin="749"] {
  top: 65.8536585366%;
  left: 29.6167247387%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="749"] {
    top: 68.25%;
    left: 29.5404814004%;
  }
}
.p-companyMapPin[data-pin="759"] {
  top: 59.4512195122%;
  left: 55.4006968641%;
  z-index: 2;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="759"] {
    top: 62.25%;
    left: 56.8927789934%;
  }
}
.p-companyMapPin[data-pin="755"] {
  top: 41.4634146341%;
  left: 65.8536585366%;
}
@media screen and (min-width: 48em) {
  .p-companyMapPin[data-pin="755"] {
    top: 44.5%;
    left: 66.9584245077%;
  }
}
.p-companyGreetings {
  margin-top: -7.5rem;
  padding-top: 7.5rem;
}
.p-companyGreetings__wrapper {
  margin-top: 3rem;
  display: flex;
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__wrapper {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__wrapper {
    margin-top: 4.5rem;
    column-gap: 7.4380165289%;
  }
}
.p-companyGreetings__detail {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__detail {
    width: 55.3719008264%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__detail {
    margin-top: 2.5rem;
  }
}
.p-companyGreetings__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
.p-companyGreetings__text p:not(:first-of-type) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__text p:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.p-companyGreetings__name {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__name {
    margin-top: 2rem;
  }
}
.p-companyGreetings__name p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
}
.p-companyGreetings__image {
  width: 75.223880597%;
}
@media screen and (max-width: 47.9375em) {
  .p-companyGreetings__image {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 48em) {
  .p-companyGreetings__image {
    width: 37.1900826446%;
  }
}
.p-companyGreetings__image img {
  width: 100%;
  aspect-ratio: 360/486;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
}

.p-aboutGreetings {
  margin-top: -7.5rem;
  padding-top: 7.5rem;
}
.p-aboutGreetings:not(:first-of-type) {
  padding-top: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings:not(:first-of-type) {
    margin-top: 0 !important;
    padding-top: 5.5rem !important;
  }
}
.p-aboutGreetings__wrapper {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 47.9375em) {
  .p-aboutGreetings__wrapper {
    flex-direction: column-reverse;
  }
}
.p-aboutGreetings__wrapper p {
  line-height: 1.5;
}
.p-aboutGreetings__wrapper p + p {
  margin-top: 1em;
}
.p-aboutGreetings__detail {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings__detail {
    width: 55.3719008264%;
  }
}
@media screen and (max-width: 47.9375em) {
  .p-aboutGreetings__detail {
    margin-top: 2.5rem;
  }
}
.p-aboutGreetings__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 1.6;
  }
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings__text p:not(:first-of-type) {
    margin-top: 1.5rem;
  }
}
.p-aboutGreetings__name {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings__name {
    margin-top: 2rem;
  }
}
.p-aboutGreetings__name p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 700;
}
.p-aboutGreetings__image {
  width: 75.223880597%;
}
@media screen and (max-width: 47.9375em) {
  .p-aboutGreetings__image {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 48em) {
  .p-aboutGreetings__image {
    width: 55.1900826446%;
  }
}
.p-aboutGreetings__image img {
  width: 100%;
  aspect-ratio: 486/300;
  object-fit: cover;
  overflow: hidden;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  .p-aboutGreetings__image img {
    aspect-ratio: 98/83 !important;
  }
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard {
    display: flex;
    column-gap: 5.7851239669%;
  }
}
.p-aboutDetailArticleCard:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard:not(:first-of-type) {
    margin-top: 4.5rem;
  }
}
.p-aboutDetailArticleCard__image {
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard__image {
    width: 53.6776859504%;
  }
}
.p-aboutDetailArticleCard__image img {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 326/218;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard__body {
    width: 60.5371900826%;
  }
}
.p-aboutDetailArticleCard__title {
  margin-top: 2rem;
  position: relative;
}
.p-aboutDetailArticleCard__title p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard__title {
    margin-top: 0.25rem;
  }
}
.p-aboutDetailArticleCard__title h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 23px;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard__title h4 {
    padding-left: 26px;
  }
}
.p-aboutDetailArticleCard__title h4:before {
  content: "\f23a";
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
  font-size: 17px;
  color: #123d83;
  display: inline-block;
  position: absolute;
  width: 17px;
  top: 0.2rem;
  left: -2px;
}
.p-aboutDetailArticleCard__link {
  margin-top: 1.5625rem;
}
.p-aboutDetailArticleCard__text {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleCard__text {
    margin-top: 1.3125rem;
  }
}
.p-aboutDetailArticleCard__text ul li {
  margin: 10px auto;
  font-size: 16px;
  line-height: 1.4;
  text-align: left;
  list-style: none;
  text-indent: -1em;
  padding-left: 1em;
}
.p-aboutDetailArticleCard__text ul li:before {
  content: "";
  width: 10px;
  height: 10px;
  display: inline-block;
  background-color: #114fa3;
  border-radius: 5px;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
.p-aboutDetailArticleList__title {
  position: relative;
  padding-left: 14px;
}
.p-aboutDetailArticleList__title:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.625rem;
  left: 0;
  width: 6px;
  height: 6px;
  background-color: #123d83;
  border-radius: 50%;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleList__title:before {
    top: 0.6875rem;
  }
}
.p-aboutDetailArticleList__title:before p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
.p-aboutDetailArticleList__text {
  margin-top: 0.25rem;
  padding-left: 14px;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticleList__text {
    margin-top: 0.375rem;
  }
}
.p-aboutDetailArticleList + .p-productDetailArticleList {
  margin-top: 1rem;
}
.p-aboutDetailArticle__editor h4 {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 48em) {
  .p-aboutDetailArticle__editor h4 {
    padding-left: 22px;
  }
}
.p-aboutDetailArticle__editor h4:before {
  content: "\f23a";
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  font-size: 10px;
  color: #123d83;
  display: inline-block;
  position: absolute;
  width: 12px;
  height: 6px;
  top: 0.6875rem;
  left: 2px;
}
@media screen and (min-width: 64em) {
  .p-aboutPhilosophy__wrapper {
    display: flex;
  }
}
@media screen and (min-width: 64em) {
  .p-aboutPhilosophy__title {
    width: 25.6198347107%;
  }
}
@media screen and (max-width: 63.9375em) {
  .p-aboutPhilosophy__content {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 64em) {
  .p-aboutPhilosophy__content {
    width: 74.3801652893%;
    line-height: 1.7;
  }
}
.p-aboutPhilosophy__values {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-aboutPhilosophy__values {
    margin-top: 5rem;
  }
}
.p-aboutPhilosophyTitle {
  display: flex;
  align-items: center;
  column-gap: 8px;
}
@media screen and (min-width: 48em) {
  .p-aboutPhilosophyTitle {
    column-gap: 6px;
  }
}
.p-aboutPhilosophyTitle i {
  display: flex;
  width: 20px;
  height: 13px;
  color: #123d83;
}
@media screen and (min-width: 48em) {
  .p-aboutPhilosophyTitle i {
    width: 20px;
    height: 13px;
  }
}
.p-aboutPhilosophyTitle i h4 {
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-aboutPhilosophyTitle i h4 {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
  }
}

.p-pageSection__wrapper h5 {
  font-size: 1.4rem;
  text-align: center;
  margin: 2em auto;
}

.flow_design03 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5em;
  margin-left: 20px;
}
.flow_design03 ul {
  padding: 0;
}
.flow_design03 li {
  list-style-type: none;
}
.flow_design03 dd {
  margin-left: 0;
  line-height: 1.5;
}

.flow03 {
  position: relative;
}
.flow03::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -129px;
  display: block;
  position: absolute;
  top: 0;
  left: 120px;
  border-radius: 20px;
}
.flow03 > li {
  position: relative;
}
.flow03 > li:not(:last-child) {
  margin-bottom: 60px;
}
.flow03 > li .icon03 {
  font-size: 0.8em;
  width: 2em;
  height: 2em;
  line-height: 2;
  text-align: center;
  font-weight: bold;
  border-radius: 100vh;
  color: #fff;
  background: #8eb83c;
  display: inline-block;
  margin-right: 0.3em;
}
.flow03 > li dl {
  padding-left: 70px;
  position: relative;
}
.flow03 > li dl::before, .flow03 > li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 15px;
}
.flow03 > li dl::before {
  width: 7px;
  height: 7px;
  margin-top: -3px;
  background: #8eb83c;
  border-radius: 50%;
  left: -4px;
}
.flow03 > li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
}
.flow03 > li dl dt {
  font-size: 1.3em;
  font-weight: 600;
  color: #8eb83c;
  margin-bottom: 0.5em;
  display: flex;
  align-items: center;
}
.flow03__inner {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 1em 0 0 !important;
}
.flow03__inner::before, .flow03__inner::after {
  content: none !important;
}
.flow03__inner dt {
  width: 30%;
  padding-bottom: 20px;
  margin-bottom: 10px !important;
  font-size: 1.2em !important;
  color: #000 !important;
}
@media screen and (max-width: 768px) {
  .flow03__inner dt {
    width: 100%;
  }
}
.flow03__inner dd {
  width: 70%;
  padding-bottom: 20px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .flow03__inner dd {
    width: 100%;
  }
}

.sec-topRecruit {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit {
    margin-top: -8.25rem;
  }
}
.sec-topRecruit__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  position: relative;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit__inner {
    max-width: 1340px;
    padding-right: 40px;
    padding-left: 40px;
  }
}
.sec-topRecruit__wrapper {
  position: relative;
  width: 100%;
  color: #fff;
  padding-top: 4rem;
  padding-bottom: 80.8%;
  z-index: 2;
  background-image: url(/assets/images/pages/top/img_recruit5.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit__wrapper {
    border-radius: 12px;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
.sec-topRecruit__text {
  margin-top: 1rem;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit__text {
    margin-top: 1.75rem;
  }
}
.sec-topRecruit__text p {
  text-align: center;
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit__text p {
    font-size: 1rem;
    letter-spacing: 0.05em;
    line-height: 2;
  }
}
.sec-topRecruit__button {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}
@media screen and (min-width: 48em) {
  .sec-topRecruit__button {
    margin-top: 2.875rem;
  }
}
.sec-topRecruit__button .sec-topButtonPrimary,
.sec-topRecruit__button .sec-topButtonPrimary__text {
  border-color: #fff;
}
.sec-topRecruit__button .sec-topButtonPrimary__icon {
  color: #3c9cb1;
}
.sec-topRecruit__button .sec-topButtonPrimary__icon:after {
  background-color: #fff;
}
.sec-topRecruit__image {
  display: contents;
}
.sec-topRecruitTitle__en {
  text-align: center;
}
.sec-topRecruitTitle__en span {
  font-family: Inter, sans-serif;
  font-size: 1rem;
  letter-spacing: 0em;
  line-height: 1.1875;
  font-weight: 600;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitTitle__en span {
    font-size: 1.125rem;
    letter-spacing: 0em;
    line-height: 1.2222222222;
    font-weight: 600;
  }
}
.sec-topRecruitTitle__ja {
  margin-top: 0.5rem;
  text-align: center;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitTitle__ja {
    margin-top: 0.75rem;
  }
}
.sec-topRecruitTitle__ja h2 {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitTitle__ja h2 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.3125;
    font-weight: 700;
  }
}
.sec-topRecruitImage {
  position: absolute;
}
.sec-topRecruitImage:nth-of-type(1) {
  left: 10.6666666667%;
  width: 34.1333333333%;
  top: 63.8736263736%;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitImage:nth-of-type(1) {
    top: -14.0969162996%;
    width: 16.0256410256%;
    left: 9.8557692308%;
  }
}
.sec-topRecruitImage:nth-of-type(1) img {
  aspect-ratio: 200/267;
}
.sec-topRecruitImage:nth-of-type(2) {
  left: 0;
  width: 25.0666666667%;
  top: 81.7307692308%;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitImage:nth-of-type(2) {
    width: 12.2596153846%;
    left: 2.7243589744%;
    top: 29.295154185%;
  }
}
.sec-topRecruitImage:nth-of-type(2) img {
  aspect-ratio: 153/153;
}
.sec-topRecruitImage:nth-of-type(3) {
  width: 38.4%;
  right: 0;
  top: 68.4065934066%;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitImage:nth-of-type(3) {
    right: 2.8044871795%;
    top: 32.8193832599%;
    width: 18.75%;
  }
}
.sec-topRecruitImage:nth-of-type(3) img {
  aspect-ratio: 234/152;
}
.sec-topRecruitImage:nth-of-type(4) {
  right: 15.7333333333%;
  width: 32%;
  top: 84.0659340659%;
}
@media screen and (min-width: 48em) {
  .sec-topRecruitImage:nth-of-type(4) {
    top: 57.0484581498%;
    right: 11.3782051282%;
    width: 15.625%;
  }
}
.sec-topRecruitImage:nth-of-type(4) img {
  aspect-ratio: 195/259;
}
.sec-topRecruitImage img {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
}

.sec-topFacade__filter {
  position: absolute;
  width: 300px;
  background: rgba(14, 38, 77, 0.8);
  backdrosec-filter: blur(25px);
  -webkit-backdrosec-filter: blur(25px);
  z-index: 2;
  aspect-ratio: 300/825;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__filter {
    width: 465px;
    aspect-ratio: 465/1091;
  }
}
.sec-topFacade__image {
  position: absolute;
  z-index: 1;
  width: 300px;
  aspect-ratio: 300/825;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__image {
    width: 465px;
    aspect-ratio: 465/1091;
  }
}
.sec-topFacade__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sec-topFacade__wrapper {
  display: flex;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacade__wrapper {
    overflow: hidden;
  }
}
.sec-topFacade__navigation {
  width: 5.3333333333%;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 4;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__navigation {
    width: 6.6666666667%;
  }
}
.sec-topFacade__navigation span {
  display: none;
}
@media screen and (min-width: 64em) {
  .sec-topFacade__navigation span {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    line-height: 1.25;
    font-weight: 500;
    writing-mode: vertical-rl;
    color: #fff;
    opacity: 0.5;
  }
}
.sec-topFacade__group {
  width: 94.6666666667%;
  background-color: #e6f0f7;
  position: relative;
  z-index: 3;
  padding: 5.9375rem 6.1333333333% 1.5rem;
  border-radius: 0 0 0 20px;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__group {
    max-width: 1344px;
    width: 93.3333333333%;
    padding: 11.6875rem 2.9761904762% 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacade__group {
    padding: 12.9861111111vw 2.7777777778vw 2.7777777778vw;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacade__group {
    max-width: 100%;
    aspect-ratio: 1344/765;
  }
  .sec-topFacade__group:before {
    content: "";
    top: 0;
    display: block;
    height: 100%;
    left: 100%;
    background-color: #e6f0f7;
    position: absolute;
    width: calc((50vw - 53.5714285714% - var(--bar) / 2) * 2);
  }
}
.sec-topFacade__copy {
  position: relative;
  z-index: 1;
  padding-left: 0.6557377049%;
}
@media screen and (min-width: 48em) {
  .sec-topFacade__copy {
    padding-left: 3.0674846626%;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacade__copy {
    padding-left: 2.7777777778vw;
  }
}
.sec-topFacade__carousel {
  margin-top: -2.9375rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 64em) {
  .sec-topFacade__carousel {
    margin-top: 6.4583333333vw;
  }
}
.sec-topFacade__icon {
  display: grid;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacade__icon {
    margin-left: 1.3029315961%;
  }
}
.sec-topFacadeIcon {
  grid-column: 1/2;
  grid-row: 1/2;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.sec-topFacadeIcon.is-active {
  opacity: 1;
  visibility: visible;
}
.sec-topFacadeIcon:nth-of-type(1) {
  width: 122.1122112211%;
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(1) {
    position: absolute;
    top: 9.8611111111vw;
    right: -11.9444444444vw;
    width: 63.8888888889vw;
  }
}
.sec-topFacadeIcon:nth-of-type(1) svg {
  width: 100%;
  aspect-ratio: 920/646;
}
.sec-topFacadeIcon:nth-of-type(2) {
  width: 112.2112211221%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacadeIcon:nth-of-type(2) {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(2) {
    position: absolute;
    top: 8.75vw;
    right: -7.3611111111vw;
    width: 59.0277777778vw;
  }
}
.sec-topFacadeIcon:nth-of-type(2) svg {
  width: 100%;
  aspect-ratio: 850/648;
}
.sec-topFacadeIcon:nth-of-type(3) {
  width: 131.3531353135%;
}
@media screen and (max-width: 63.9375em) {
  .sec-topFacadeIcon:nth-of-type(3) {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeIcon:nth-of-type(3) {
    position: absolute;
    top: 15.9722222222vw;
    right: -16.9444444444vw;
    width: 69.1666666667vw;
  }
}
.sec-topFacadeIcon:nth-of-type(3) svg {
  width: 100%;
  aspect-ratio: 996/396;
}
.sec-topFacadeIcon .icon0-st0,
.sec-topFacadeIcon .icon0-st1 {
  fill: none;
  stroke: #1eb8d4;
  stroke-width: 96;
  stroke-miterlimit: 10;
}
.sec-topFacadeIcon .icon0-st2,
.sec-topFacadeIcon .icon0-st3,
.sec-topFacadeIcon .icon0-st4 {
  fill: none;
  stroke: #123d83;
  stroke-width: 96;
  stroke-miterlimit: 10;
}
.sec-topFacadeIcon .icon1-st0,
.sec-topFacadeIcon .icon1-st1,
.sec-topFacadeIcon .icon1-st2,
.sec-topFacadeIcon .icon1-st3 {
  fill: none;
  stroke: #1eb8d4;
  stroke-width: 96;
  stroke-miterlimit: 10;
}
.sec-topFacadeIcon .icon1-st4,
.sec-topFacadeIcon .icon1-st5,
.sec-topFacadeIcon .icon1-st6,
.sec-topFacadeIcon .icon1-st7 {
  fill: none;
  stroke: #123d83;
  stroke-width: 96;
  stroke-miterlimit: 10;
}
.sec-topFacadeCopy__en {
  color: #123d83;
}
.sec-topFacadeCopy__ja {
  margin-top: 0.1875rem;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
@media screen and (max-width: 47.9375em) {
  .sec-topFacadeCopy__ja {
    margin-left: -0.6600660066%;
  }
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopy__ja {
    column-gap: 12px;
    margin-top: 0.4375rem;
    margin-left: -4px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopy__ja {
    column-gap: 0.8333333333vw;
    margin-top: 0.4861111111vw;
  }
}
.sec-topFacadeCopy__ja:after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #123d83;
  opacity: 0.2;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopy__ja:after {
    width: 64px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopy__ja:after {
    width: 4.4444444444vw;
  }
}
.sec-topFacadeCopy__ja img {
  width: 256px;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopy__ja img {
    width: 383px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopy__ja img {
    width: 26.5972222222vw;
  }
}
.sec-topFacadeCopyEn {
  font-family: Poppins, sans-serif;
  display: flex;
  column-gap: 11px;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopyEn {
    column-gap: 20px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopyEn {
    column-gap: 1.3888888889vw;
  }
}
.sec-topFacadeCopyEn span[data-size=s] {
  font-size: 3.200625rem;
  letter-spacing: 0.01em;
  line-height: 1.5036125757;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopyEn span[data-size=s] {
    font-size: 6rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-weight: 500;
  }
}
.sec-topFacadeCopyEn span[data-size=m] {
  font-size: 3.334375rem;
  letter-spacing: 0.01em;
  line-height: 1.4995313964;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopyEn span[data-size=m] {
    font-size: 6.25rem;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-weight: 500;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopyEn span[data-size=m] {
    font-size: 6.9444444444vw;
    letter-spacing: 0.01em;
    line-height: 1.5;
    font-weight: 500;
  }
}
.sec-topFacadeCopyEn:nth-of-type(2) {
  margin-top: -1.25rem;
  padding-left: 21px;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCopyEn:nth-of-type(2) {
    margin-top: -2.4375rem;
    padding-left: 50px;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCopyEn:nth-of-type(2) {
    margin-top: -2.7083333333vw;
    padding-left: 3.4722222222vw;
  }
}
.sec-topFacadeCarousel {
  width: 100%;
  max-height: 8.6875rem;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarousel {
    width: 404px;
  }
}
.sec-topFacadeCarousel__title {
  display: flex;
  align-items: center;
  column-gap: 6px;
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCarousel__title {
    column-gap: 8px;
    column-gap: 0.5555555556vw;
  }
}
.sec-topFacadeCarousel__title:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background-color: #123d83;
  border-radius: 50%;
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCarousel__title:before {
    width: 0.5555555556vw;
    height: 0.5555555556vw;
  }
}
.sec-topFacadeCarousel__title span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.4166666667;
  font-weight: 600;
  color: #123d83;
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCarousel__title span {
    font-size: 0.9722222222vw;
    letter-spacing: 0em;
    line-height: 1.2142857143;
    font-weight: 600;
  }
}
.sec-topFacadeCarousel__wrapper {
  margin-top: 0.375rem;
  background-color: #fff;
  border-radius: 8px;
  padding: 0.75rem 18px 0.75rem 0;
  display: flex;
  align-items: center;
  column-gap: 18px;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarousel__wrapper {
    column-gap: 20px;
    margin-top: 0.5rem;
    padding: 1.125rem 0;
  }
}
@media screen and (min-width: 64em) {
  .sec-topFacadeCarousel__wrapper {
    column-gap: 1.3888888889vw;
    margin-top: 0.5555555556vw;
    padding: 1.25vw 0;
  }
}
.sec-topFacadeCarousel__item {
  border-radius: 6px;
  overflow: hidden;
  width: 20.8469055375%;
  left: 18px;
  pointer-events: none;
  position: relative;
  z-index: 1;
  aspect-ratio: 64/64;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarousel__item {
    aspect-ratio: 120/80;
    width: 29.702970297%;
    left: 24px;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacadeCarousel__item {
    width: 8.3333333333vw;
    left: 1.6666666667vw;
  }
}
.sec-topFacadeCarousel__pagination {
  left: 18px;
  position: relative;
  width: 67.4267100977%;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarousel__pagination {
    left: 24px;
    width: 59.4059405941%;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacadeCarousel__pagination {
    left: 1.6666666667vw;
    width: 16.6666666667vw;
  }
}
.sec-topFacadeCarouselItem {
  display: flex;
  width: 100%;
}
.sec-topFacadeCarouselItem__slide {
  flex-shrink: 0;
  display: block;
}
.sec-topFacadeCarouselItem__slide img {
  width: 100%;
  aspect-ratio: 64/64;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselItem__slide img {
    aspect-ratio: 120/80;
  }
}
.sec-topFacadeCarouselPagination {
  display: flex;
  align-items: center;
  column-gap: 4px;
  color: #123d83;
  cursor: pointer;
  transition: color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .sec-topFacadeCarouselPagination:hover {
    color: #1eb8d4;
  }
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselPagination {
    column-gap: 7px;
  }
}
.sec-topFacadeCarouselPagination:not(:first-of-type) {
  margin-top: 0.5rem;
}
.sec-topFacadeCarouselPagination.is-current {
  color: #1eb8d4;
}
.sec-topFacadeCarouselPagination.is-current .sec-topFacadeCarouselPagination__number {
  column-gap: 8px;
}
.sec-topFacadeCarouselPagination__number {
  font-family: Inter, sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0em;
  line-height: 1.1818181818;
  font-weight: 500;
  display: flex;
  align-items: center;
  column-gap: 0;
  transition: column-gap 0.3s ease;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselPagination__number {
    font-size: 0.75rem;
    letter-spacing: 0em;
    line-height: 1.25;
    font-weight: 500;
  }
}
.sec-topFacadeCarouselPagination__number span {
  display: block;
  height: 1px;
  background-color: #1eb8d4;
  position: relative;
  top: -0.0625rem;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselPagination__number span {
    top: 0.0625rem;
    margin-bottom: 0.25rem;
  }
}
.sec-topFacadeCarouselPagination__text {
  display: flex;
  align-items: center;
  column-gap: 4px;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  line-height: 1.5272727273;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselPagination__text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    line-height: 1.2833333333;
    font-weight: 500;
    column-gap: 6px;
  }
}
@media screen and (min-width: 90em) {
  .sec-topFacadeCarouselPagination__text {
    font-size: 0.8333333333vw;
    letter-spacing: 0.05em;
    line-height: 1.2833333333;
    font-weight: 500;
    column-gap: 0.4166666667vw;
  }
}
.sec-topFacadeCarouselPagination__text:before {
  content: "/";
  display: inline-block;
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0em;
  line-height: 1.25;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .sec-topFacadeCarouselPagination__text:before {
    font-size: 0.875rem;
    letter-spacing: 0em;
    line-height: 1.2142857143;
    font-weight: 500;
  }
}

.sec-businessSection:not(:first-of-type) {
  padding-top: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .sec-businessSection:not(:first-of-type) {
    margin-top: 3.5rem;
    padding-top: 7.5rem;
  }
}
.sec-businessSection:first-of-type {
  padding-top: 5rem;
  margin-top: -5rem;
}
@media screen and (min-width: 48em) {
  .sec-businessSection:first-of-type {
    padding-top: 7.5rem;
    margin-top: -7.5rem;
  }
}
.sec-businessSection#section1 .sec-businessSection__image svg {
  aspect-ratio: 480/337;
}
@media screen and (min-width: 48em) {
  .sec-businessSection#section1 .sec-businessSection__image svg {
    bottom: -47.619047619%;
  }
}
@media screen and (min-width: 90em) {
  .sec-businessSection#section1 .sec-businessSection__image svg {
    bottom: -15rem;
  }
}
.sec-businessSection#section2 .sec-businessSection__image svg {
  aspect-ratio: 480/194;
}
@media screen and (min-width: 48em) {
  .sec-businessSection#section2 .sec-businessSection__image svg {
    bottom: -22.2222222222%;
  }
}
@media screen and (min-width: 90em) {
  .sec-businessSection#section2 .sec-businessSection__image svg {
    bottom: -7rem;
  }
}
.sec-businessSection#section3 .sec-businessSection__image svg {
  aspect-ratio: 480/376;
}
@media screen and (min-width: 48em) {
  .sec-businessSection#section3 .sec-businessSection__image svg {
    bottom: -35.7142857143%;
  }
}
@media screen and (min-width: 90em) {
  .sec-businessSection#section3 .sec-businessSection__image svg {
    bottom: -11.25rem;
  }
}
.sec-businessSection__wrapper {
  position: relative;
}
.sec-businessSection__heading {
  background-image: url(/assets/images/pages/business/img_sectionTitleBackground.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 6px 6px 0;
  display: inline-flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  padding: 1.625rem 18px;
  position: absolute;
  top: -1.5rem;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__heading {
    top: -2rem;
    column-gap: 28px;
    padding: 2.8125rem 40px 2.875rem;
  }
}
.sec-businessSection__heading h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__heading h3 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 0.6125;
    font-weight: 600;
  }
}
.sec-businessSection__heading span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 14px;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__heading span {
    column-gap: 28px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 3.2;
    font-weight: 600;
  }
}
.sec-businessSection__heading span:before {
  content: "";
  width: 1px;
  height: 28px;
  background-color: #fff;
  opacity: 0.2;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__heading span:before {
    height: 38px;
  }
}
.sec-businessSection__image {
  position: relative;
}
.sec-businessSection__image svg {
  display: block;
  position: absolute;
  right: -49px;
  width: 216px;
  bottom: -2.5rem;
}
@media screen and (min-width: 30em) {
  .sec-businessSection__image svg {
    right: -69px;
    width: 64.4776119403%;
    bottom: -13.3333333333%;
  }
}
@media screen and (min-width: 48em) {
  .sec-businessSection__image svg {
    right: -152px;
    width: 49.5867768595%;
  }
}
@media screen and (min-width: 90em) {
  .sec-businessSection__image svg {
    width: 480px;
  }
}
.sec-businessSection__title {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__title {
    margin-top: 4rem;
  }
}
.sec-businessSection__title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__title h4 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 500;
  }
}
.sec-businessSection__text {
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__text {
    margin-top: 1.5rem;
    width: 640px;
  }
}
.sec-businessSection__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.sec-businessSection__relation {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .sec-businessSection__relation {
    margin-top: 5rem;
  }
}
.sec-businessSectionImage {
  overflow: hidden;
  border-radius: 0 0 0 12px;
  width: calc(100% + 20px);
}
@media screen and (min-width: 30em) {
  .sec-businessSectionImage {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 64em) {
  .sec-businessSectionImage {
    width: calc(100% + 50vw - 70.2702702703% - var(--bar) / 2);
  }
}
@media screen and (min-width: 90em) {
  .sec-businessSectionImage {
    width: calc(100% + 50vw - 64.4628099174% - var(--bar) / 2);
  }
}
.sec-businessSectionImage img {
  width: 100%;
  aspect-ratio: 355/300;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .sec-businessSectionImage img {
    aspect-ratio: 1064/504;
  }
}

@media screen and (max-width: 47.9375em) {
  .business .l-main {
    overflow: hidden;
  }
}
.business .sec-pageFacade__decoration {
  right: 4.7887323944%;
  bottom: -2.25rem;
}
@media screen and (min-width: 48em) {
  .business .sec-pageFacade__decoration {
    right: 13.2352941176%;
    bottom: -4.0625rem;
  }
}
.business .sec-pageFacade__decoration svg {
  width: 92px;
  height: 116px;
}
@media screen and (min-width: 48em) {
  .business .sec-pageFacade__decoration svg {
    width: 172px;
    height: 218px;
  }
}

.sec-business__relation {
  margin-top: 6rem;
}
@media screen and (min-width: 64em) {
  .sec-business__relation {
    margin-top: 9.375rem;
    padding-bottom: 4.5rem;
  }
}

.p-businessSection:not(:first-of-type) {
  padding-top: 5rem;
  margin-top: 2.5rem;
}
@media screen and (min-width: 48em) {
  .p-businessSection:not(:first-of-type) {
    margin-top: 3.5rem;
    padding-top: 7.5rem;
  }
}
.p-businessSection:first-of-type {
  padding-top: 5rem;
  margin-top: -5rem;
}
@media screen and (min-width: 48em) {
  .p-businessSection:first-of-type {
    padding-top: 7.5rem;
    margin-top: -7.5rem;
  }
}
.p-businessSection#section1 .p-businessSection__image svg {
  aspect-ratio: 480/337;
}
@media screen and (min-width: 48em) {
  .p-businessSection#section1 .p-businessSection__image svg {
    bottom: -47.619047619%;
  }
}
@media screen and (min-width: 90em) {
  .p-businessSection#section1 .p-businessSection__image svg {
    bottom: -15rem;
  }
}
.p-businessSection#section2 .p-businessSection__image svg {
  aspect-ratio: 480/194;
}
@media screen and (min-width: 48em) {
  .p-businessSection#section2 .p-businessSection__image svg {
    bottom: -22.2222222222%;
  }
}
@media screen and (min-width: 90em) {
  .p-businessSection#section2 .p-businessSection__image svg {
    bottom: -7rem;
  }
}
.p-businessSection#section3 .p-businessSection__image svg {
  aspect-ratio: 480/376;
}
@media screen and (min-width: 48em) {
  .p-businessSection#section3 .p-businessSection__image svg {
    bottom: -35.7142857143%;
  }
}
@media screen and (min-width: 90em) {
  .p-businessSection#section3 .p-businessSection__image svg {
    bottom: -11.25rem;
  }
}
.p-businessSection__wrapper {
  position: relative;
}
.p-businessSection__heading {
  background-image: url(/assets/images/pages/business/img_sectionTitleBackground.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 6px 6px 6px 0;
  display: inline-flex;
  align-items: center;
  column-gap: 14px;
  color: #fff;
  padding: 1.625rem 18px;
  position: absolute;
  top: -1.5rem;
  z-index: 1;
}
@media screen and (min-width: 48em) {
  .p-businessSection__heading {
    top: -2rem;
    column-gap: 28px;
    padding: 2.8125rem 40px 2.875rem;
  }
}
.p-businessSection__heading h3 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .p-businessSection__heading h3 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 0.6125;
    font-weight: 600;
  }
}
.p-businessSection__heading span {
  font-family: Inter, sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.4;
  font-weight: 600;
  display: flex;
  align-items: center;
  column-gap: 14px;
  opacity: 0.5;
}
@media screen and (min-width: 48em) {
  .p-businessSection__heading span {
    column-gap: 28px;
    font-size: 0.875rem;
    letter-spacing: 0.02em;
    line-height: 3.2;
    font-weight: 600;
  }
}
.p-businessSection__heading span:before {
  content: "";
  width: 1px;
  height: 28px;
  background-color: #fff;
  opacity: 0.2;
}
@media screen and (min-width: 48em) {
  .p-businessSection__heading span:before {
    height: 38px;
  }
}
.p-businessSection__image {
  position: relative;
}
.p-businessSection__image svg {
  display: block;
  position: absolute;
  right: -49px;
  width: 216px;
  bottom: -2.5rem;
}
@media screen and (min-width: 30em) {
  .p-businessSection__image svg {
    right: -69px;
    width: 64.4776119403%;
    bottom: -13.3333333333%;
  }
}
@media screen and (min-width: 48em) {
  .p-businessSection__image svg {
    right: -152px;
    width: 49.5867768595%;
  }
}
@media screen and (min-width: 90em) {
  .p-businessSection__image svg {
    width: 480px;
  }
}
.p-businessSection__title {
  margin-top: 3rem;
}
@media screen and (min-width: 48em) {
  .p-businessSection__title {
    margin-top: 4rem;
  }
}
.p-businessSection__title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
  font-weight: 500;
}
@media screen and (min-width: 48em) {
  .p-businessSection__title h4 {
    font-size: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 500;
  }
}
.p-businessSection__text {
  margin-top: 1.25rem;
  width: 100%;
}
@media screen and (min-width: 48em) {
  .p-businessSection__text {
    margin-top: 1.5rem;
    width: 640px;
  }
}
.p-businessSection__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.p-businessSectionSectionImage {
  overflow: hidden;
  border-radius: 0 0 0 12px;
  width: calc(100% + 20px);
}
@media screen and (min-width: 30em) {
  .p-businessSectionSectionImage {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 64em) {
  .p-businessSectionSectionImage {
    width: calc(100% + 50vw - 70.2702702703% - var(--bar) / 2);
  }
}
@media screen and (min-width: 90em) {
  .p-businessSectionSectionImage {
    width: calc(100% + 50vw - 64.4628099174% - var(--bar) / 2);
  }
}
.p-businessSectionSectionImage img {
  width: 100%;
  aspect-ratio: 355/300;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .p-businessSectionSectionImage img {
    aspect-ratio: 1064/504;
  }
}
.p-business__relation {
  margin-top: 3.5rem;
}
@media screen and (min-width: 48em) {
  .p-business__relation {
    margin-top: 5rem;
  }
}
.p-businessSectionImage {
  overflow: hidden;
  border-radius: 0 0 0 12px;
  width: calc(100% + 20px);
}
@media screen and (min-width: 30em) {
  .p-businessSectionImage {
    width: calc(100% + 40px);
  }
}
@media screen and (min-width: 64em) {
  .p-businessSectionImage {
    width: calc(100% + 50vw - 70.2702702703% - var(--bar) / 2);
  }
}
@media screen and (min-width: 90em) {
  .p-businessSectionImage {
    width: calc(100% + 50vw - 64.4628099174% - var(--bar) / 2);
  }
}
.p-businessSectionImage img {
  width: 100%;
  aspect-ratio: 355/300;
  object-fit: cover;
}
@media screen and (min-width: 48em) {
  .p-businessSectionImage img {
    aspect-ratio: 1064/504;
  }
}

.p-pageBody__inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 30em) {
  .p-pageBody__inner {
    padding-right: 40px;
    padding-left: 40px;
    max-width: 1328px;
  }
}
.p-pageBody__wrapper {
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-pageBody__wrapper {
    display: grid;
    grid-template-columns: 25.4807692308% 74.5192307692%;
  }
}
@media screen and (min-width: 80em) {
  .p-pageBody__wrapper {
    grid-template-columns: 21.0737179487% 78.9262820513%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageBody__wrapper {
    grid-template-columns: 14.6634615385% 85.3365384615%;
  }
}
.p-pageBody__aside {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-pageBody__aside {
    padding-top: 3.3125rem;
    padding-bottom: 4.5rem;
    margin-bottom: 5.625rem;
    display: block;
    border-right: 1px solid #e6e6e6;
    position: relative;
  }
}
@media screen and (min-width: 90em) {
  .p-pageBody__aside {
    margin-left: -80px;
  }
}
.p-pageBody__aside .c-icon.--rhombus.--grayLine {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-pageBody__aside .c-icon.--rhombus.--grayLine {
    display: block;
    position: absolute;
    bottom: -0.4375rem;
    right: -12px;
  }
}
.p-pageBody__body {
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-pageBody__body {
    grid-column: 2/3;
  }
}
.p-pageBody__body .c-icon.--rhombus.--blue {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-pageBody__body .c-icon.--rhombus.--blue {
    display: block;
    position: absolute;
    top: -0.5625rem;
    left: -12px;
    z-index: 10;
  }
}
.p-pageBody__main {
  margin-bottom: 7.5rem;
  position: relative;
}
@media screen and (min-width: 64em) {
  .p-pageBody__main {
    margin-bottom: 5.625rem;
    padding-top: 3.3125rem;
    padding-left: 7.5268817204%;
  }
}
@media screen and (min-width: 80em) {
  .p-pageBody__main {
    padding-left: 9.7461928934%;
  }
}
@media screen and (min-width: 90em) {
  .p-pageBody__main {
    padding-left: 9.014084507%;
  }
}
.p-pageBody__main .c-icon.--rhombus.--grayLine {
  display: none;
}
@media screen and (min-width: 64em) {
  .p-pageBody__main .c-icon.--rhombus.--grayLine {
    display: block;
    position: absolute;
    bottom: -0.4375rem;
    left: -12px;
  }
}
.p-pageAside {
  position: sticky;
  top: 8.75rem;
  width: 83.2699619772%;
}
@media screen and (min-width: 90em) {
  .p-pageAside {
    width: 219px;
  }
}
.p-pageAside__title {
  background-color: #f4f4f4;
  padding: 1.0625rem 0 1.0625rem 20px;
  border-radius: 6px;
}
.p-pageAside__title span {
  display: block;
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  line-height: 1;
  font-weight: 600;
  color: #123d83;
}
.p-pageAside__item {
  margin-top: 1.75rem;
  padding-left: 20px;
}
.p-pageAsideItem a {
  color: #969899;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  line-height: 1.4;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  column-gap: 8px;
  transition: color 0.3s ease;
}
.p-pageAsideItem a:before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #f4f4f4;
  transition: background-color 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .p-pageAsideItem a:hover {
    color: #111;
  }
  .p-pageAsideItem a:hover:before {
    background-color: #1eb8d4;
  }
}
.p-pageAsideItem:not(:first-of-type) {
  margin-top: 1rem;
}
.p-pageAsideItem.is-current a {
  color: #111;
}
.p-pageAsideItem.is-current a:before {
  background-color: #1eb8d4;
}

.c-pageRelation {
  border-radius: 12px;
  overflow: hidden;
  background-image: url(/assets/images/common/img_relationProductBackground.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.c-pageRelation__wrapper {
  padding: 1.5rem 7.1641791045% 2.5rem;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__wrapper {
    column-gap: 7.9207920792%;
    padding: 3.5rem 8.2644628099%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
}
.c-pageRelation__image {
  width: 100%;
  border-radius: 6px;
  overflow: hidden;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__image {
    width: 39.603960396%;
  }
}
.c-pageRelation__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.c-pageRelation__body {
  color: #fff;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__body {
    margin-top: 1.5rem;
    padding-right: 4px;
    padding-left: 4px;
  }
}
@media screen and (min-width: 48em) {
  .c-pageRelation__body {
    width: 52.4752475248%;
  }
}
.c-pageRelation__title span {
  font-family: Inter, sans-serif;
  font-size: 0.875rem;
  letter-spacing: 0em;
  line-height: 1;
  font-weight: 500;
  opacity: 0.5;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__title span {
    padding-left: 2px;
  }
}
.c-pageRelation__title h4 {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-weight: 700;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__title h4 {
    font-size: 1.875rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    font-weight: 700;
    margin-top: 0.25rem;
  }
}
.c-pageRelation__text {
  margin-top: 0.5625rem;
}
@media screen and (min-width: 48em) {
  .c-pageRelation__text {
    margin-top: 0.75rem;
  }
}
.c-pageRelation__text p {
  font-size: 1rem;
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.c-pageRelation__button {
  margin-top: 1.5rem;
}
@media screen and (max-width: 47.9375em) {
  .c-pageRelation__button {
    display: flex;
    justify-content: center;
  }
}
.c-pageRelationButton {
  display: inline-flex;
  align-items: center;
  column-gap: 6px;
  padding-left: 42px;
  padding-right: 30px;
  padding-top: 0.75rem;
  padding-bottom: 0.8125rem;
  border: 2px solid #fff;
  border-radius: 1.625rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background-color 0 ease;
}
@media (hover: hover) and (pointer: fine) {
  .c-pageRelationButton:hover {
    border-color: #123d83;
    background-color: #123d83;
    transition: border-color 0.3s ease, background-color 0.3s 0.3s ease;
  }
  .c-pageRelationButton:hover .c-pageRelationButton__icon {
    color: #fff;
  }
  .c-pageRelationButton:hover .c-pageRelationButton__icon:before {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 0.05s ease, visibility 0.05s ease, transform 0.3s ease;
  }
}
@media screen and (min-width: 48em) {
  .c-pageRelationButton {
    padding-top: 0.625rem;
    padding-bottom: 0.6875rem;
    padding-left: 32px;
    padding-right: 22px;
    border-radius: 1.5rem;
  }
}
.c-pageRelationButton * {
  pointer-events: none;
}
.c-pageRelationButton:not(.is-active) .c-pageRelationButton__background {
  left: -48px;
}
.c-pageRelationButton.is-active .c-pageRelationButton__background {
  right: -48px;
}
.c-pageRelationButton__icon {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #fff;
  color: #4b607e;
  z-index: 2;
  transition: color 0.3s ease;
}
.c-pageRelationButton__icon:before {
  content: "";
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background-color: #1eb8d4;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s 0.1s ease, visibility 0.2s 0.1s ease, transform 0.3s ease;
}
.c-pageRelationButton__icon i {
  position: absolute;
  top: 4px;
  left: 4px;
  transform: translate(-50%, -50%);
  display: flex;
  width: 8px;
  height: 7px;
  z-index: 2;
}
.c-pageRelationButton__background {
  width: 48px;
  height: 48px;
  position: absolute;
  display: block;
  background-color: #123d83;
  border-radius: 24px;
  z-index: 1;
}
.c-pageRelationButton__text {
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
  line-height: 1.5;
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.section--title {
  color: #05173f;
  font-size: 6rem;
  letter-spacing: 4px;
  line-height: 120%;
  font-weight: 400;
  text-align: center;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .section--title {
    font-size: 5rem;
  }
}
@media screen and (max-width: 480px) {
  .section--title {
    font-size: 2.1rem;
  }
}
.section--title .en {
  font-weight: 500;
  display: block;
  line-height: 120%;
  padding: 5px 0;
}
.section--title span.section--title__ja {
  display: block;
  font-size: 2rem;
  letter-spacing: 0;
  font-weight: 400;
  line-height: 120%;
}
@media screen and (max-width: 480px) {
  .section--title span.section--title__ja {
    font-size: 1.5rem;
  }
}

.custom__screen_2 {
  width: 100%;
  box-sizing: border-box;
  padding: 50px 10px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .custom__screen_2 {
    padding: 20px 0 7em;
  }
}
@media screen and (max-width: 767px) {
  .custom__screen_2 {
    width: 100%;
  }
}
.custom__screen_2 p {
  font-size: 14px;
  color: #767676;
  margin-top: 12px;
  width: 100%;
}
.custom__screen_2 h3 {
  color: #2e2e2e !important;
}
@media screen and (max-width: 767px) {
  .custom__screen_2 .sc__btn {
    width: 100% !important;
  }
}
@media screen and (max-width: 767px) {
  .custom__screen_2 .sc__input_group_2 input[type=email].email_placeholder1,
  .custom__screen_2 .sc__input_group_2 input[type=email].email_placeholder2 {
    width: 45% !important;
  }
}
@media screen and (max-width: 767px) {
  .custom__screen_2 .sc__input_group_2 input[type=tel] {
    width: 100% !important;
  }
}

/*入力フォームタイトル */
.required {
  margin-left: 8px;
  padding: 2px 5px;
  font-size: 10px;
  letter-spacing: 0.06em;
  font-weight: bold;
  line-height: 38px;
  color: #fff;
  background: #de3c3c;
  border-radius: 4px;
}

.any {
  margin-left: 8px;
  padding: 2px 5px;
  font-size: 10px;
  font-weight: bold;
  line-height: 1;
  color: #fff;
  background: #2dbe97;
  border-radius: 5px;
}

.sc__custom_form_2 .sc__input_group_2 label {
  display: inline-block;
}
.sc__custom_form_2 .sc__input_group_2 .sc__input_group_2__title {
  margin-bottom: 15px;
  width: 100%;
}

.sc__input_group_2__title label {
  color: #1d1d1d;
  font-weight: bold;
}

.small_text {
  font-size: 12px;
}

/* ボタン ==========*/
.sc__custom_form_2 .sc__btn {
  color: #fff;
  border-style: none;
  border-radius: 4px;
  width: 450px;
  height: 50px;
  box-sizing: border-box;
  padding: 15px 10px;
  cursor: pointer;
  display: block;
  margin: 0 auto;
}

button.sc__btn {
  background-color: #333;
  margin: 0;
}
button.register {
  color: #fff;
  font-weight: bold;
  font-size: 16px;
}
button.cancel {
  background: #fff;
  color: #aaa;
  border: 1px solid #dcdcdc;
  font-weight: bold;
  font-size: 16px;
}

/* 入力フォーム ==========*/
.sc__input_group_2 {
  display: flex;
  flex-wrap: wrap;
  padding: 5px;
  margin-bottom: 15px;
}
@media screen and (max-width: 1024px) {
  .sc__input_group_2 {
    flex-direction: column;
    margin-bottom: 10px;
  }
}
.sc__input_group_2__content {
  display: flex;
  align-items: center;
}
.sc__input_group_2__body p {
  margin-bottom: 10px;
}

/* 余白 */
.sc__custom_form_2 .sc__input_group_2 input[type=text],
.sc__custom_form_2 .sc__input_group_2 input[type=tel],
.sc__custom_form_2 .sc__input_group_2 input[type=email],
.sc__custom_form_2 .sc__input_group_2 input[type=date] {
  padding: 10px;
  border-radius: 10px;
}

.sc__custom_form_2 .sc__input_group_2 textarea,
.sc__custom_form_2 .sc__input_group_2 select {
  padding: 10px;
  border-radius: 10px;
}

.sc__custom_form_2 .sc__input_group_2 input[type=radio],
.sc__custom_form_2 .sc__input_group_2 input[type=checkbox] {
  margin-left: 20px;
  margin-bottom: 5px;
}

.sc__custom_form_2 .sc__input_group_2 input[type=radio]:first-child,
.sc__custom_form_2 .sc__input_group_2 input[type=checkbox]:first-child {
  margin-left: 0px;
}

.sc__custom_form_2 .sc__input_group_2 input[type=tel] {
  margin-right: 10px;
}

.col1,
.col2 {
  margin-bottom: 20px;
}

.address__content h4 {
  margin-bottom: 5px;
}

.sc__input_group_2__address_top {
  display: flex;
}

.sc__input_group_2__address_top label {
  margin-right: 10px;
}

.sc__input_group_2__address_middle {
  margin: 20px 0;
}

/* 待機状態 */
.sc__custom_form_2 .sc__input_group_2 input[type=text],
.sc__custom_form_2 .sc__input_group_2 input[type=tel],
.sc__custom_form_2 .sc__input_group_2 input[type=email],
.sc__custom_form_2 .sc__input_group_2 input[type=date] {
  color: #333;
  border: 1px solid #d5d8dc;
}

.sc__custom_form_2 .sc__input_group_2 textarea,
.sc__custom_form_2 .sc__input_group_2 select {
  color: #333;
  border: 1px solid #d5d8dc;
}

.sc__custom_form_2 .sc__input_group_2 input[type=text]:focus,
.sc__custom_form_2 .sc__input_group_2 input[type=tel]:focus,
.sc__custom_form_2 .sc__input_group_2 input[type=email]:focus,
.sc__custom_form_2 .sc__input_group_2 input[type=date]:focus {
  outline: 0;
  color: #333;
  border-color: #0a639c;
  border-radius: 10px;
}

.sc__custom_form_2 .sc__input_group_2 textarea:focus,
.sc__custom_form_2 .sc__input_group_2 select:focus {
  outline: 0;
  color: #333;
  border-color: #0a639c;
  border-radius: 10px;
}

.sc__custom_form_2 .sc__input_group_2 input[type=text],
.sc__custom_form_2 .sc__input_group_2 input[type=tel],
.sc__custom_form_2 .sc__input_group_2 input[type=email],
.sc__custom_form_2 .sc__input_group_2 input[type=date] {
  height: auto;
  padding: 10px;
}

.sc__custom_form_2 .sc__input_group_2 textarea,
.sc__custom_form_2 .sc__input_group_2 select {
  height: auto;
  padding: 10px;
}

.sc__custom_form_2 .sc__input_group_2 input[type=text] {
  width: 100%;
}

/* サイズ */
@media screen and (max-width: 1024px) {
  .sc__custom_form_2 .sc__input_group_2 input[type=text],
  .sc__custom_form_2 .sc__input_group_2 input[type=tel],
  .sc__custom_form_2 .sc__input_group_2 input[type=email],
  .sc__custom_form_2 .sc__input_group_2 input[type=date] {
    padding: 10px;
  }
  .sc__custom_form_2 .sc__input_group_2 textarea,
  .sc__custom_form_2 .sc__input_group_2 select {
    padding: 10px;
  }
}
.sc__input_group_2 .sc__input_group_2__address_middle input[type=text],
.sc__input_group_2 .sc__input_group_2__address_bottom input[type=text] {
  width: 560px;
}

.sc__custom_form_2 .sc__input_group_2 textarea {
  width: 100%;
  height: 150px;
}

.sc_group__body {
  width: 100%;
}

/* 電話番号入力欄サイズ */
.sc__custom_form_2 .sc__input_group_2 input[type=tel].telephone_number1 {
  width: 100%;
}

.sc__custom_form_2 .sc__input_group_2 input[type=email].email_placeholder {
  width: 100%;
}

/* メールアドレス入力欄サイズ */
/* 確認画面タイトル設定*/
.contents_title {
  font-weight: bold;
}

/* 完了画面画像設定*/
.custom_complete__img .a {
  fill: none;
  stroke: var(--main-color);
  stroke-linecap: round;
  stroke-width: 4px;
}

/* 共通クラス*/
.errmsg {
  color: red;
}

.contact_titl {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0.08em;
  line-height: 47px;
  text-align: left;
  color: #080808;
  margin-bottom: 60px;
}

.contact_txt {
  font-family: "Noto Sans JP";
  font-weight: normal;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 36px;
  text-align: left;
  color: #1d1d1d;
  margin-bottom: 40px;
  width: 75%;
}

.contact_titl_2 {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 26px;
  letter-spacing: 0.08em;
  line-height: 47px;
  text-align: left;
  color: #20acce;
  margin-bottom: 20px;
}

.contact_list ul li {
  font-family: "Noto Sans JP";
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.06em;
  line-height: 40px;
  text-align: left;
  color: #1d1d1d;
}

.left_contents {
  flex: 1;
  width: 60%;
  margin-top: 72px;
}

.right_contents {
  background: #f4f4f5;
  width: 40%;
  padding: 0 15px;
  height: 200vh;
}

.form_wrapp {
  width: 47%;
}

.form_wrapp:first-of-type {
  margin-right: 18px;
}

.lh0 {
  line-height: 0;
}

@media screen and (max-width: 1080px) and (max-width: 1080px) {
  .left_contents {
    width: 100%;
    margin-top: 60px;
  }
  .right_contents {
    width: 100%;
    padding: 0 15px;
    height: 200vh;
  }
  .contact_titl {
    margin-bottom: 50px;
  }
  .contact_txt {
    margin-bottom: 40px;
    width: 100%;
  }
}
.privacyarea {
  text-align: center;
  margin-bottom: 30px;
}
.privacyarea dt a {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: #20acce;
}
.privacyarea dt a:hover {
  opacity: 0.8;
}

.p-pageDetailButton__item p {
  display: flex;
  justify-content: center;
}
.p-pageDetailButton__item .wpcf7-spinner {
  display: none;
}

.single-products .l-main {
  padding-top: 8.375rem;
}
@media screen and (min-width: 48em) {
  .single-products .l-main {
    padding-top: 11.6875rem;
  }
}
@media screen and (min-width: 63.9375em) {
  .single-products .l-main .p-pageBody__aside {
    display: block;
  }
}

@media screen and (max-width: 63.9375em) {
  .post-type-archive-products .p-pageBody__aside,
  .post-type-archive-products .tax-products_archive .p-pageBody__aside,
  .post-type-archive-products .tax-products_tag .p-pageBody__aside,
  .post-type-archive-products .tax-products_cat .p-pageBody__aside,
  .post-type-archive-products .tax-products_category .p-pageBody__aside,
  .post-type-archive-products .tax-products_maker .p-pageBody__aside {
    display: block;
  }
}

.button {
  padding: 17px;
  font-size: 18px;
  line-height: 22px;
  letter-spacing: 2.16px;
  margin-top: 17px;
  text-align: center;
  text-decoration: none;
  color: #000000;
}
@media screen and (max-width: 1000px) {
  .button {
    font-size: 18px;
    line-height: 22px;
    letter-spacing: 2.16px;
  }
}
.button--outline {
  color: #ffffff;
  background-color: transparent;
  border: 1px solid;
  transition: all 0.2s ease;
}
.button--outline:hover {
  background-color: #ffffff;
  color: #7d7d7d;
}
@media screen and (max-width: 768px) {
  .button--outline {
    padding: 50px 15px 100px;
  }
}
.button--more {
  position: relative;
  display: block;
  min-width: 250px;
  background-color: #ffffff;
  border: 1px solid;
  padding: 15px;
  font-size: 14px;
  line-height: 11px;
  letter-spacing: 1.4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  transition: all 0.2s ease;
}
@media screen and (max-width: 1000px) {
  .button--more {
    font-size: 30px;
    line-height: 24px;
    letter-spacing: 3px;
    max-width: 502px;
    padding-top: 27px;
    padding-bottom: 27px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.button--more::after {
  content: "";
  display: block;
  position: absolute;
  height: 1px;
  width: 42px;
  right: -21px;
  background-color: #000000;
  top: 50%;
  transform: translatey(-50%);
}
@media screen and (max-width: 1000px) {
  .button--more::after {
    width: 95px;
    right: -47.5px;
  }
}

.btn {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.1em;
  text-align: center;
  color: #000;
  padding: 16px 22px;
  border: 1px solid #000;
}

.arrow_right {
  position: relative;
  padding-right: 2.5em;
}
.arrow_right::after {
  content: "";
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}

p:empty {
  display: none;
}

.js-btn-more,
.js-btn-close {
  cursor: pointer;
  margin-top: 1.5em;
}

.js-btn-close {
  color: #fff;
  background: #4a5f7e;
}/*# sourceMappingURL=main.css.map */