@charset "UTF-8";
/* =========================================
Media
========================================== */
/* =========================================
Font
========================================== */
:root {
  --color-white: #fff;
  --color-black: #000;
  --color-gray: #7b7b7b;
  --color-under-gray: #7b7b7b;
  --color-loader-gray: #9b9b9b;
  --color-blue: #2954dc;
  --color-deep-blue: #2a4273;
  --color-cyan: #00ffff;
  --color-back-blue: #e4ecf9;
  --color-header-hum: #1c1c1c;
  --color-footer: #1c1c1c;
  --fw-100: 100;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-900: 900;
  --liquid-lgDesignSize: calc(1440 / 10);
  --liquid-mdDesignSize: calc(768 / 10);
  --liquid-smDesignSize: calc(390 / 10);
  --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-lgDesignSize));
}

@media screen and (max-width: 768px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-mdDesignSize));
  }
}
@media screen and (max-width: 560px) {
  :root {
    --liquid-htmlroot: calc(calc(var(--vw, 1vw) * 100) / var(--liquid-smDesignSize));
  }
}
/* =========================================
dis - hide
========================================== */
/* 初期状態：全て非表示 */
.view-pc,
.view-tb,
.view-sp {
  display: none;
}

@media screen and (min-width: 769px) {
  .view-pc {
    display: block;
  }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
  .view-tb {
    display: block;
  }
}
@media screen and (max-width: 560px) {
  .view-sp {
    display: block;
  }
}
/* #region body */
html {
  font-size: var(--liquid-htmlroot);
}

body {
  text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -ms-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
  position: relative;
  font-family: "Sora", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  padding: 0;
  margin: 0;
}
body.is-open {
  overflow-y: hidden;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

button {
  cursor: pointer;
}

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

h1, h2, h3, h4, h5, h6, p, span, a, ul, ol, dl, li, figure {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
  list-style-type: none;
}

/* #endregion */
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

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

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

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

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

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

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

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

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

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

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

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

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

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

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

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

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

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

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

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

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

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

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

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

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

/************************
* breadcrumbs
************************/
.breadcrumbs {
  display: none;
  align-items: center;
  gap: 0 4rem;
}
.breadcrumbs .breadcrumbs_link {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--fw-600);
  color: var(--color-loader-gray);
  transition: color 0.3s;
}
.breadcrumbs .breadcrumbs_link:not(:first-of-type)::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background-color: var(--color-loader-gray);
}
@media (any-hover: hover) {
  .breadcrumbs .breadcrumbs_link:hover {
    color: var(--color-black);
  }
}
.breadcrumbs .breadcrumbs_title {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.breadcrumbs .breadcrumbs_title::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -3rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 1px;
  background-color: var(--color-loader-gray);
}
@media screen and (min-width: 769px) {
  .breadcrumbs.view-pc {
    display: flex;
  }
}
@media screen and (min-width: 561px) and (max-width: 768px) {
  .breadcrumbs.view-tb {
    display: flex;
  }
}
@media screen and (max-width: 560px) {
  .breadcrumbs.view-sp {
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: 3.2rem;
  }
  .breadcrumbs .breadcrumbs_link {
    font-size: 1.2rem;
  }
  .breadcrumbs .breadcrumbs_title {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 560px) {
  .breadcrumbs {
    margin-top: 2.4rem;
  }
  .breadcrumbs .breadcrumbs_link {
    font-size: 1rem;
  }
  .breadcrumbs .breadcrumbs_title {
    font-size: 1rem;
  }
}
.btn_wrap {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.btn_wrap::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  width: 24rem;
  height: 4.8rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(0% + 2.6rem) 0%, 100% 0%, 100% 1px, calc(0% + 2.6rem + 0.5px) 1px, 1px calc(0% + 2.6rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 2.6rem));
  z-index: 1;
}
.btn_wrap::after {
  content: "";
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 24rem;
  height: 4.8rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(100% - 2.6rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 2.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.6rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 2.6rem));
  z-index: 1;
}

.clipped_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: inherit;
  font-size: 2rem;
  font-weight: var(--fw-600);
  color: var(--color-cyan);
  clip-path: polygon(calc(0% + 2.4rem) 0%, 100% 0%, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0% 100%, 0% calc(0% + 2.4rem));
  z-index: 1;
  transition: color 0.2s;
}
.clipped_box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 30px 0 rgba(0, 255, 255, 0.25) inset;
  clip-path: polygon(calc(0% + 2.4rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 2.4rem + 0.5px), calc(100% - 2.4rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 2.4rem - 0.5px));
  z-index: -1;
  transition: background 0.2s, box-shadow 0.2s;
}
.clipped_box::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-cyan);
  clip-path: polygon(calc(0% + 2.4rem) 0, 100% 0, 100% 1px, calc(0% + 2.4rem + 0.5px) 1px, 1px calc(0% + 2.4rem + 0.5px), 1px calc(100% - 1px), calc(100% - 2.4rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.4rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0 100%, 0 calc(0% + 2.4rem));
  z-index: -2;
}
.clipped_box .btn_text {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center;
}
.clipped_box .pipe {
  width: 1px;
  height: 4.8rem;
  background-color: currentColor;
  margin-left: 1.6rem;
}
.clipped_box .btn_arrow {
  width: 1.7rem;
  height: auto;
  aspect-ratio: 1/1;
  margin-left: 2.4rem;
}

.clipped_box:hover {
  color: var(--color-white);
}
.clipped_box:hover::before {
  background: rgba(0, 255, 255, 0.32);
  box-shadow: 0px 0px 30px 0 rgb(0, 255, 255) inset;
}

@media screen and (max-width: 560px) {
  .btn_wrap::before {
    width: 21.8rem;
    height: 4.4rem;
  }
  .btn_wrap::after {
    width: 21.8rem;
    height: 4.4rem;
  }
  .clipped_box {
    font-size: 1.6rem;
  }
  .clipped_box .btn_text {
    flex-basis: 0;
    flex-grow: 1;
    text-align: center;
  }
  .clipped_box .pipe {
    height: 4.4rem;
  }
  .clipped_box .btn_arrow {
    width: 1.5rem;
    margin-left: 2rem;
  }
  .clipped_box:hover {
    color: var(--color-white);
  }
  .clipped_box:hover::before {
    background: rgba(0, 255, 255, 0.32);
    box-shadow: 0px 0px 30px 0 rgb(0, 255, 255) inset;
  }
}
.js-fade,
.js-slide-fade {
  opacity: 0;
}

.fadeIn {
  animation-name: fadeInAnimation;
  animation-duration: 1s;
  animation-fill-mode: both;
}

.gradation__fadeIn {
  animation-name: fadeInAnimationGradation;
  animation-duration: 1s;
  animation-delay: 0.5s;
  animation-fill-mode: both;
}

.slide__fadeIn {
  animation-name: slideFadeInAnimation;
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeInAnimation {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeInAnimationGradation {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.1;
  }
}
@keyframes slideFadeInAnimation {
  from {
    opacity: 0;
    transform: translateY(8rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 560px) {
  @keyframes slideFadeInAnimation {
    from {
      opacity: 0;
      transform: translateY(4rem);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
/************************
* footer
************************/
.footer {
  background-color: var(--color-footer);
}
.footer .footer_inner {
  width: 120rem;
  margin: 0 auto;
  padding: 12rem 0;
}
.footer .footer_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0 8rem;
}
.footer .footer_logo {
  display: block;
  width: 36rem;
  height: auto;
}
.footer .footer_logo img {
  width: 100%;
  height: auto;
}
.footer .footer_address {
  margin-top: 3.2rem;
}
.footer .footer_address_box {
  margin-top: 1rem;
}
.footer .footer_address_text {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
}
.footer .footer_address_text:not(:first-of-type) {
  margin-top: 1rem;
}
.footer .footer_form_box {
  margin-top: 4rem;
}
.footer .btn_wrap {
  width: 36.4rem;
  min-height: 7.3rem;
}
.footer .btn_wrap:not(:first-of-type) {
  margin-top: 2.8rem;
}
.footer .clipped_box {
  padding: 0 2.4rem 0 1.6rem;
}
.footer .footer_menu {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 4rem 6.4rem;
}
.footer .footer_menu_item {
  position: relative;
}
.footer .footer_menu_item:nth-of-type(odd) {
  width: 32.7rem;
}
.footer .footer_menu_item:nth-of-type(even) {
  width: 27.6rem;
}
.footer .footer_menu_item::before {
  position: absolute;
  content: "";
  bottom: -1rem;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: var(--color-white);
  scale: 0 1;
  transform-origin: left;
  transition: scale 0.3s cubic-bezier(0.77, 0, 0.175, 1);
}
@media (any-hover: hover) {
  .footer .footer_menu_item:has(a:hover)::before {
    scale: 1 1;
    transform-origin: left;
  }
  .footer .footer_menu_item:not(:has(a:hover))::before {
    scale: 0 1;
    transform-origin: right;
  }
}
.footer .menu_name_en {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 7.2rem;
  font-weight: var(--fw-500);
  color: var(--color-white);
}
.footer .menu_name_ja {
  font-size: 2rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
}
.footer .footer_info {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--color-white);
  margin-top: 8rem;
  padding-top: 4.8rem;
}
.footer .footer_info a {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
  text-decoration: underline;
  text-underline-offset: 0.8rem;
  text-decoration-color: var(--color-under-gray);
}
.footer .copyright {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .footer .footer_inner {
    width: 65.6rem;
    padding: 6.4rem 0;
  }
  .footer .footer_content {
    flex-direction: column;
    gap: 3.2rem 0;
  }
  .footer .footer_details {
    width: 100%;
  }
  .footer .footer_logo {
    width: 24rem;
  }
  .footer .footer_address {
    display: flex;
    justify-content: center;
    gap: 0 2.4rem;
    margin-top: 2.4rem;
  }
  .footer .footer_address_box {
    margin-top: 0;
  }
  .footer .footer_address_text:not(:first-of-type) {
    margin-top: 0.8rem;
  }
  .footer .footer_form_box {
    margin-top: 6.4rem;
  }
  .footer .btn_wrap {
    width: 48rem;
    min-height: 7.3rem;
    margin: 0 auto;
  }
  .footer .btn_wrap:not(:first-of-type) {
    margin-top: 2.4rem;
  }
  .footer .footer_menu_wrap {
    width: 48rem;
    margin: 0 auto;
  }
  .footer .footer_menu {
    gap: 2.4rem;
  }
  .footer .footer_menu_item {
    width: calc(50% - 2.4rem);
  }
  .footer .menu_name_en {
    font-size: 4.8rem;
  }
  .footer .menu_name_ja {
    font-size: 1.8rem;
  }
  .footer .footer_info {
    margin-top: 5.6rem;
    padding-top: 3.2rem;
  }
  .footer .footer_info a {
    text-underline-offset: 0.8rem;
  }
}
@media screen and (max-width: 560px) {
  .footer .footer_inner {
    width: 34.2rem;
    padding: 4.8rem 0;
  }
  .footer .footer_address {
    gap: 0 1.6rem;
    margin-top: 1.6rem;
  }
  .footer .footer_address_text {
    font-size: 1.4rem;
  }
  .footer .footer_form_box {
    margin-top: 3.2rem;
  }
  .footer .btn_wrap {
    width: 32.8rem;
    min-height: 6.6rem;
  }
  .footer .btn_wrap:not(:first-of-type) {
    margin-top: 2rem;
  }
  .footer .footer_menu_wrap {
    width: 100%;
  }
  .footer .footer_menu_item {
    width: auto;
  }
  .footer .footer_menu_item:nth-of-type(odd) {
    width: 16.4rem;
  }
  .footer .footer_menu_item:nth-of-type(even) {
    width: 13.8rem;
  }
  .footer .menu_name_en {
    font-size: 3.6rem;
  }
  .footer .menu_name_ja {
    font-size: 1.6rem;
  }
  .footer .footer_info {
    flex-direction: column;
    align-items: flex-end;
    gap: 1.6rem 0;
    margin-top: 4rem;
    padding-top: 1.6rem;
  }
  .footer .footer_info a {
    font-size: 1.4rem;
  }
  .footer .copyright {
    font-size: 1.4rem;
  }
}
/************************
* header
************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 11.8rem;
  background-color: var(--color-white);
  z-index: 998;
}
.header.is-open {
  background-color: transparent;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 1.5rem 8rem;
}
.header .header_logo {
  height: 100%;
}
.header .header_logo img {
  height: 100%;
}
.header .header_content {
  display: flex;
  align-items: center;
  gap: 0 4rem;
}
.header .header_menu {
  display: flex;
  align-items: center;
  gap: 0 4rem;
}
.header .header_menu_item a {
  position: relative;
  text-align: center;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .header .header_menu_item a:hover {
    opacity: 0.5;
  }
}
.header .menu_name_en {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.header .menu_name_ja {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-gray);
  margin-top: 0.2rem;
}
.header .header_contact_btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 20.5rem;
  background-color: var(--color-blue);
  border: 1px solid transparent;
  border-radius: 10.7rem;
  padding: 0.8rem;
  transition: background-color 0.3s, border 0.3s;
}
@media (any-hover: hover) {
  .header .header_contact_btn:hover {
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
  }
  .header .header_contact_btn:hover .contact_text {
    color: var(--color-blue);
  }
  .header .header_contact_btn:hover .icon_mail path {
    fill: var(--color-blue);
  }
  .header .header_contact_btn:hover .icon_arrow circle {
    fill: var(--color-blue);
  }
  .header .header_contact_btn:hover .icon_arrow path {
    fill: var(--color-white);
  }
}
.header .contact_wrap {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  padding-left: 1.6rem;
}
.header .contact_text {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.8rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
  transition: color 0.3s;
}
.header .icon_mail path {
  fill: var(--color-white);
  transition: fill 0.3s;
}
.header .icon_arrow circle {
  fill: var(--color-white);
  transition: fill 0.3s;
}
.header .icon_arrow path {
  fill: var(--color-blue);
  transition: fill 0.3s;
}
.header .header_line_wrap {
  display: none;
}

@media screen and (max-width: 768px) {
  .header {
    height: 10.4rem;
  }
  .header .header_inner {
    padding: 2.4rem 4rem;
  }
  .header .header_logo {
    height: 100%;
  }
  .header .header_logo img {
    transition: content 0.3s ease;
  }
  .header .header_logo.is-open img {
    content: url(../../assets/images/webp/logo_01_w.webp);
  }
  .header .header_content {
    display: none;
  }
  .header .header_line_wrap {
    position: relative;
    display: block;
    width: 5.6rem;
    height: auto;
    aspect-ratio: 1/1;
  }
  .header .header_line_wrap::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-black);
    clip-path: polygon(calc(0% + 0.8rem) 0, 100% 0, 100% 1px, calc(0% + 0.8rem + 0.5px) 1px, 1px calc(0% + 0.8rem + 0.5px), 1px calc(100% - 1px), calc(100% - 0.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 0.8rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 0.8rem), calc(100% - 0.8rem) 100%, 0 100%, 0 calc(0% + 0.8rem));
    z-index: 1;
    transition: background 0.3s ease;
  }
  .header .header_line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2.4rem;
    height: 1px;
    background-color: var(--color-black);
    z-index: 2;
    transition: height 0.3s ease, background-color 0.3s ease;
  }
  .header .line_num01 {
    top: 2.4rem;
    transition: top 0.3s ease, transform 0.3s ease;
  }
  .header .line_num02 {
    bottom: 2.4rem;
    transition: bottom 0.3s ease, transform 0.3s ease;
  }
  .header .header_line_wrap.is-open::before {
    background: var(--color-white);
  }
  .header .header_line_wrap.is-open .header_line {
    height: 2px;
    background-color: var(--color-white);
  }
  .header .header_line_wrap.is-open .line_num01 {
    transform: translateX(-50%) translateY(-50%) rotate(30deg);
    top: calc(50% - 1px);
  }
  .header .header_line_wrap.is-open .line_num02 {
    transform: translateX(-50%) translateY(-50%) rotate(-30deg);
    bottom: calc(50% - 1px);
  }
}
@media screen and (max-width: 560px) {
  .header {
    height: 8.8rem;
  }
  .header .header_inner {
    padding: 2.4rem;
  }
  .header .header_line_wrap {
    width: 4rem;
  }
  .header .header_line_wrap::before {
    clip-path: polygon(calc(0% + 0.8rem) 0, 100% 0, 100% 1px, calc(0% + 0.8rem + 0.5px) 1px, 1px calc(0% + 0.8rem + 0.5px), 1px calc(100% - 1px), calc(100% - 0.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 0.8rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 0.8rem), calc(100% - 0.8rem) 100%, 0 100%, 0 calc(0% + 0.8rem));
  }
  .header .line_num01 {
    top: 1.6rem;
  }
  .header .line_num02 {
    bottom: 1.6rem;
  }
}
/************************
* hamburger
************************/
.header_ham {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100lvh;
  background-color: var(--color-header-hum);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 997;
}
.header_ham.is-open {
  opacity: 1;
  pointer-events: all;
}
.header_ham .header_ham_inner {
  width: 100%;
  height: 100%;
  padding: 16rem 0 8rem;
  overflow-y: scroll;
}
.header_ham .header_ham_menu {
  width: 29.4rem;
  margin: 0 auto;
}
.header_ham .header_ham_menu_item {
  position: relative;
  margin-bottom: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid #9ca8ad;
}
.header_ham .current {
  border-bottom: 1px solid var(--color-white);
}
.header_ham .current::before {
  position: absolute;
  content: "";
  top: 2.4rem;
  left: -2.4rem;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border-radius: 50%;
  transform: translateY(-50%);
}
.header_ham .header_ham_menu_item a {
  display: flex;
  align-items: baseline;
  gap: 0 2rem;
}
.header_ham .menu_name_en {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 4rem;
  font-weight: var(--fw-500);
  color: var(--color-white);
}
.header_ham .menu_name_ja {
  font-size: 1.6rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
}
.header_ham .menu_item_contact {
  border-bottom: 1px solid var(--color-cyan);
}
.header_ham .menu_item_contact .menu_name_en {
  color: var(--color-cyan);
}
.header_ham .menu_item_contact .menu_name_ja {
  color: var(--color-cyan);
}

@media screen and (max-width: 560px) {
  .header_ham .header_ham_inner {
    padding: 12rem 0;
  }
  .header_ham .header_ham_menu_item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
  }
}
.heading_ja {
  font-size: 2rem;
  font-weight: var(--fw-600);
}

.heading_en {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 8rem;
  font-weight: var(--fw-700);
}

@media screen and (max-width: 768px) {
  .heading_ja {
    font-size: 1.8rem;
  }
  .heading_en {
    font-size: 6.4rem;
  }
}
@media screen and (max-width: 560px) {
  .heading_ja {
    font-size: 1.6rem;
  }
  .heading_en {
    font-size: 4.8rem;
  }
}
.p_heading_ja {
  font-size: 3.6rem;
  font-weight: var(--fw-900);
}

.p_heading_en {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 12rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.04em;
  color: var(--color-blue);
}

@media screen and (max-width: 768px) {
  .p_heading_ja {
    font-size: 2.8rem;
  }
  .p_heading_en {
    font-size: 8rem;
  }
}
@media screen and (max-width: 560px) {
  .p_heading_ja {
    font-size: 2rem;
  }
  .p_heading_en {
    font-size: 6.4rem;
  }
}
/************************
* info
************************/
.info {
  background-image: url(../../assets/images/webp/bgImg_01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 16rem 0;
}
.info .info_inner {
  display: flex;
  justify-content: center;
  gap: 0 6rem;
  width: 126rem;
  margin: 0 auto;
}
.info .btn_wrap {
  width: 50%;
  min-height: 30rem;
  transition: width 0.2s ease-in-out;
}
.info .btn_wrap::before {
  top: -10px;
  left: -10px;
  width: 42.4rem;
  height: 22rem;
  clip-path: polygon(calc(0% + 6.4rem) 0%, 100% 0%, 100% 4px, calc(0% + 6.4rem + 2px) 4px, 4px calc(0% + 6.4rem + 2px), 4px 100%, 0% 100%, 0% calc(0% + 6.4rem));
  transition: width 0.2s ease-in-out;
}
.info .btn_wrap::after {
  bottom: -10px;
  right: -10px;
  width: 42.4rem;
  height: 22rem;
  clip-path: polygon(calc(100% - 6.4rem) 100%, 0% 100%, 0% calc(100% - 4px), calc(100% - 6.4rem - 2px) calc(100% - 4px), calc(100% - 4px) calc(100% - 6.4rem - 2px), calc(100% - 4px) 0%, 100% 0%, 100% calc(100% - 6.4rem));
  transition: width 0.2s ease-in-out;
}
.info .btn_wrap.hovered {
  width: 60%;
}
.info .btn_wrap.hovered::before {
  width: 54rem;
}
.info .btn_wrap.hovered::after {
  width: 54rem;
}
.info .btn_wrap.not_hovered::before {
  width: 22rem;
}
.info .btn_wrap.not_hovered::after {
  width: 22rem;
}
.info .clipped_box {
  display: block;
  clip-path: polygon(calc(0% + 6rem) 0%, 100% 0%, 100% calc(100% - 6rem), calc(100% - 6rem) 100%, 0% 100%, 0% calc(0% + 6rem));
  padding: 4rem;
  -webkit-backdrop-filter: blur(2rem);
          backdrop-filter: blur(2rem);
}
.info .clipped_box::before {
  clip-path: polygon(calc(0% + 6rem - 1px) 0%, 100% 0%, 100% calc(100% - 6rem + 1px), calc(100% - 6rem + 1px) 100%, 0% 100%, 0% calc(0% + 6rem - 1px));
}
.info .clipped_box::after {
  clip-path: polygon(calc(0% + 6rem) 0, 100% 0, 100% 2px, calc(0% + 6rem + 1px) 2px, 2px calc(0% + 6rem + 1px), 2px calc(100% - 2px), calc(100% - 6rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 6rem - 1px), calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 6rem), calc(100% - 6rem) 100%, 0 100%, 0 calc(0% + 6rem));
}
@media (any-hover: hover) {
  .info .clipped_box:hover .btn_arrow {
    scale: 0;
    opacity: 0;
  }
  .info .clipped_box:hover .btn_mail,
  .info .clipped_box:hover .btn_recruit {
    scale: 1;
    opacity: 1;
  }
}
.info .btn_details {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2.4rem;
}
.info .btn_details_text {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  line-height: 1.5;
}
.info .btn_details_icon {
  display: grid;
  place-items: center;
  width: 8rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.info .btn_arrow,
.info .btn_mail,
.info .btn_recruit {
  grid-area: 1/1;
  display: inline-flex;
  align-items: center;
  transition: scale 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.info .btn_arrow {
  width: 2.4rem;
  margin-left: unset;
  scale: 1;
  opacity: 1;
}
.info .btn_mail {
  width: 3rem;
  scale: 0;
  opacity: 0;
}
.info .btn_recruit {
  width: 4.8rem;
  scale: 0;
  opacity: 0;
}
.info .btn_arrow svg,
.info .btn_mail svg {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .info {
    padding: 8rem 0;
  }
  .info .info_inner {
    flex-direction: column;
    gap: 5.6rem 0;
    width: 65.6rem;
  }
  .info .btn_wrap {
    width: 100%;
  }
  .info .btn_wrap::before {
    top: -8px;
    left: -8px;
  }
  .info .btn_wrap::after {
    bottom: -8px;
    right: -8px;
  }
  .info .clipped_box {
    color: var(--color-white);
  }
  .info .clipped_box::before {
    background: rgba(0, 255, 255, 0.32);
    box-shadow: 0px 0px 30px 0 rgb(0, 255, 255) inset;
  }
}
@media screen and (max-width: 560px) {
  .info {
    padding: 7.2rem 0;
  }
  .info .info_inner {
    width: 34.2rem;
  }
  .info .btn_wrap {
    min-height: 22rem;
  }
  .info .btn_wrap::before {
    width: 23.6rem;
    height: 15.6rem;
    clip-path: polygon(calc(0% + 3.6rem) 0%, 100% 0%, 100% 2px, calc(0% + 3.6rem + 1px) 2px, 2px calc(0% + 3.6rem + 1px), 2px 100%, 0% 100%, 0% calc(0% + 3.6rem));
  }
  .info .btn_wrap::after {
    width: 23.6rem;
    height: 15.6rem;
    clip-path: polygon(calc(100% - 3.6rem) 100%, 0% 100%, 0% calc(100% - 2px), calc(100% - 3.6rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 3.6rem - 1px), calc(100% - 2px) 0%, 100% 0%, 100% calc(100% - 3.6rem));
  }
  .info .clipped_box {
    clip-path: polygon(calc(0% + 3.2rem) 0%, 100% 0%, 100% calc(100% - 3.2rem), calc(100% - 3.2rem) 100%, 0% 100%, 0% calc(0% + 3.2rem));
    padding: 3.2rem 2.4rem;
  }
  .info .clipped_box::before {
    clip-path: polygon(calc(0% + 3.2rem - 1px) 0%, 100% 0%, 100% calc(100% - 3.2rem + 1px), calc(100% - 3.2rem + 1px) 100%, 0% 100%, 0% calc(0% + 3.2rem - 1px));
  }
  .info .clipped_box::after {
    clip-path: polygon(calc(0% + 3.2rem) 0, 100% 0, 100% 2px, calc(0% + 3.2rem + 0.5px) 1px, 1px calc(0% + 3.2rem + 0.5px), 1px calc(100% - 1px), calc(100% - 3.2rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 3.2rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 3.2rem), calc(100% - 3.2rem) 100%, 0 100%, 0 calc(0% + 3.2rem));
  }
  .info .btn_details {
    margin-top: 4rem;
  }
  .info .btn_details_text {
    font-size: 1.4rem;
  }
  .info .btn_details_icon {
    position: absolute;
    top: 50%;
    right: 3.2rem;
    transform: translateY(-50%);
    width: 4.8rem;
  }
}
/************************
* single
************************/
.single {
  padding: 16rem 0;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .single {
    padding: 14rem 0;
  }
}
@media screen and (max-width: 560px) {
  .single {
    padding: 12rem 0;
  }
}
.single_container {
  width: 128rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .single_container {
    width: 65.6rem;
  }
}
@media screen and (max-width: 560px) {
  .single_container {
    width: 34.2rem;
  }
}
/************************
* single_news
************************/
.single_news .single_inner {
  width: 80rem;
  margin: 12rem auto 0;
}
.single_news .single_item_info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12rem;
  padding-left: 1.8rem;
}
.single_news .single_item_info::before {
  position: absolute;
  content: "";
  top: 0.3rem;
  left: 0;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.single_news .single_category {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.single_news .news_date {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.single_news .news_date::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10rem;
  transform: translateY(-50%);
  width: 8rem;
  height: 1px;
  background-color: #9ca8ad;
}
.single_news .single_title {
  font-size: 4.8rem;
  font-weight: var(--fw-600);
  line-height: 1.1666666667;
  color: var(--color-black);
  margin-top: 2rem;
}
.single_news .single_contents {
  margin-top: 8rem;
}
.single_news .single_contents p {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.single_news .single_contents h2 {
  font-size: 2.8rem;
  font-weight: var(--fw-700);
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.single_news .single_contents h3 {
  font-size: 2rem;
  font-weight: var(--fw-600);
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
  line-height: 1.4;
}
.single_news .single_contents h4 {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  margin-top: 2rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.single_news .single_contents ul,
.single_news .single_contents ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}
.single_news .single_contents li {
  list-style: inherit;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  line-height: 1.7;
  margin-bottom: 0.2rem;
}
.single_news .single_contents img {
  display: block;
  width: 100%;
  border-radius: 0.8rem;
  margin: 4rem 0;
  overflow: hidden;
}
.single_news .single_contents figure img {
  margin: unset;
}
.single_news .single_contents figure figcaption {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
}
.single_news .single_contents blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 4px solid #ddd;
}
.single_news .single_contents pre {
  margin: 2rem 0;
  padding: 1.5rem;
  overflow-x: auto;
}
.single_news .single_contents table {
  margin: 2rem 0;
  width: 100%;
  border-collapse: collapse;
  font-size: 1.4rem;
  line-height: 1.6;
}
.single_news .single_contents thead {
  background-color: #f5f5f5;
  font-weight: var(--fw-600);
}
.single_news .single_contents th,
.single_news .single_contents td {
  padding: 1rem 1.5rem;
  border: 1px solid #ddd;
  text-align: left;
  vertical-align: middle;
}
.single_news .single_contents th {
  font-size: 1.5rem;
  font-weight: var(--fw-600);
}
.single_news .single_contents tr:nth-child(even) {
  background-color: #fafafa;
}
.single_news .single_btn_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 6.4rem;
}
.single_news .back_btn {
  position: relative;
}
.single_news .back_btn::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 5.4rem;
  transform: translateY(-50%);
  width: 1px;
  height: 2.6rem;
  background-color: var(--color-white);
}
.single_news .back_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 4.8rem;
  width: 23.2rem;
  height: 5.4rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: var(--color-white);
  background-color: var(--color-black);
  border: 1px solid transparent;
  border-radius: 0.8rem;
  overflow: hidden;
  transition: color 0.2s, background-color 0.2s, border 0.2s;
}
.single_news .back_btn_text {
  display: block;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.8rem;
  font-weight: var(--fw-600);
}
.single_news .back_btn_arrow {
  width: 1.4rem;
}
.single_news .prev_link,
.single_news .next_link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.4rem;
  width: 7.8rem;
  height: 3.6rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  color: #9ca8ad;
  border: 1px solid #9ca8ad;
  border-radius: 0.2rem;
  overflow: hidden;
  transition: color 0.2s, background-color 0.2s, border 0.2s;
}
.single_news .prev_text,
.single_news .next_text {
  display: block;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
}
.single_news .pagination_arrow {
  width: 1.6rem;
}
.single_news .pagination_arrow path {
  transition: fill 0.2s;
}
@media (any-hover: hover) {
  .single_news .prev_link:hover,
  .single_news .next_link:hover {
    color: var(--color-white);
    background-color: var(--color-black);
    border-color: var(--color-black);
  }
  .single_news .prev_link:hover .pagination_arrow path,
  .single_news .next_link:hover .pagination_arrow path {
    fill: var(--color-white);
  }
}

@media screen and (max-width: 768px) {
  .single_news .single_inner {
    width: 100%;
    margin: 8rem auto 0;
  }
  .single_news .single_item_info {
    gap: 0 8rem;
    padding-left: 1.6rem;
  }
  .single_news .single_item_info::before {
    width: 0.8rem;
  }
  .single_news .news_date::before {
    left: -6.4rem;
    width: 4.8rem;
  }
  .single_news .single_title {
    font-size: 3.2rem;
    line-height: 1.25;
    margin-top: 1.6rem;
  }
  .single_news .single_contents {
    margin-top: 5.6rem;
  }
  .single_news .single_contents h2 {
    font-size: 2.4rem;
    font-weight: var(--fw-700);
    margin-top: 3.2rem;
    margin-bottom: 1.4rem;
    line-height: 1.3;
  }
  .single_news .single_contents h3 {
    font-size: 1.9rem;
    font-weight: var(--fw-600);
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.4;
  }
  .single_news .single_contents h4 {
    font-size: 1.6rem;
    font-weight: var(--fw-500);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.5;
  }
  .single_news .single_btn_box {
    margin-top: 5.6rem;
  }
}
@media screen and (max-width: 560px) {
  .single_news .single_inner {
    margin: 4rem auto 0;
  }
  .single_news .single_item_info {
    gap: 0 6.4rem;
    padding-left: 1.2rem;
  }
  .single_news .single_item_info::before {
    width: 0.8rem;
  }
  .single_news .single_category {
    font-size: 1.2rem;
  }
  .single_news .news_date {
    font-size: 1.2rem;
  }
  .single_news .news_date::before {
    left: -5.6rem;
    width: 4.8rem;
  }
  .single_news .single_title {
    font-size: 2rem;
    margin-top: 1rem;
  }
  .single_news .single_contents {
    margin-top: 4rem;
  }
  .single_news .single_contents p {
    font-size: 1.4rem;
  }
  .single_news .single_contents h2 {
    font-size: 1.8rem;
    font-weight: var(--fw-700);
    margin-top: 2.4rem;
    margin-bottom: 1.2rem;
    line-height: 1.3;
  }
  .single_news .single_contents h3 {
    font-size: 1.6rem;
    font-weight: var(--fw-600);
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.4;
  }
  .single_news .single_contents h4 {
    font-size: 1.5rem;
    font-weight: var(--fw-500);
    margin-top: 1.6rem;
    margin-bottom: 0.8rem;
    line-height: 1.5;
  }
  .single_news .single_contents figure figcaption {
    font-size: 1rem;
  }
  .single_news .single_contents table {
    font-size: 1.3rem;
    display: block;
    overflow-x: auto;
    white-space: nowrap;
  }
  .single_news .single_contents th,
  .single_news .single_contents td {
    padding: 0.8rem 1rem;
  }
  .single_news .single_contents th {
    font-size: 1.4rem;
  }
  .single_news .single_btn_box {
    margin-top: 4.8rem;
  }
  .single_news .back_btn::before {
    right: 4rem;
    height: 2rem;
  }
  .single_news .back_link {
    gap: 0 3rem;
    width: 16.8rem;
    height: 4rem;
  }
  .single_news .back_btn_text {
    font-size: 1.4rem;
  }
  .single_news .back_btn_arrow {
    width: 1.2rem;
  }
  .single_news .prev_link,
  .single_news .next_link {
    gap: 0 0.6rem;
    width: 5.8rem;
    height: 3rem;
  }
  .single_news .prev_text,
  .single_news .next_text {
    font-size: 1.4rem;
  }
  .single_news .pagination_arrow {
    width: 1rem;
  }
}
.p_company {
  padding: 16rem 0;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .p_company {
    padding: 14rem 0;
  }
}
@media screen and (max-width: 560px) {
  .p_company {
    padding: 12rem 0;
  }
}
.p_company_container {
  width: 128rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_company_container {
    width: 65.6rem;
  }
}
@media screen and (max-width: 560px) {
  .p_company_container {
    width: 34.2rem;
  }
}
/************************
* company
************************/
.company {
  position: relative;
  margin-top: 4rem;
}
.company::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--color-back-blue);
  clip-path: polygon(0 56.2rem, 100% 56.2rem, 100% 100%, 0% 100%);
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
.company .company_contents {
  margin-top: 7.2rem;
}
.company .company_anchor_list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0 3rem;
}
.company .company_anchor_item > a {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .company .company_anchor_item > a:hover {
    opacity: 0.5;
  }
}
.company .anchor_arrow {
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
}
.company .company_img {
  width: 100%;
  margin-top: 2.4rem;
  border-radius: 0.8rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .company {
    margin-top: unset;
  }
  .company::before {
    clip-path: polygon(0 48rem, 100% 48rem, 100% 100%, 0% 100%);
  }
  .company .company_contents {
    margin-top: 8rem;
  }
  .company .company_anchor_list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0 2.4rem;
  }
  .company .company_anchor_item > a {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .company::before {
    clip-path: polygon(0 38rem, 100% 38rem, 100% 100%, 0% 100%);
  }
  .company .company_anchor_list {
    gap: 1.2rem 2.4rem;
  }
  .company .company_anchor_item > a {
    font-size: 1.2rem;
  }
  .company .anchor_arrow {
    width: 1.5rem;
  }
}
/************************
* philosophy
************************/
.philosophy {
  position: relative;
  padding: 12rem 0 16rem;
}
.philosophy::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100vw;
  height: 100%;
  background-color: var(--color-back-blue);
  margin: 0 calc(50% - 50vw);
  z-index: -1;
}
.philosophy .philosophy_heading {
  text-align: center;
}
.philosophy .philosophy_contents {
  margin-top: 8rem;
}
.philosophy .philosophy_item {
  position: relative;
  display: grid;
  grid-template-columns: 28.5rem 73.6rem;
  justify-content: space-between;
}
.philosophy .philosophy_item:not(:first-of-type) {
  margin-top: 8rem;
}
.philosophy .philosophy_item:nth-last-of-type(2) {
  margin-top: 11rem;
}
.philosophy .annotation_line_box {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.philosophy .annotation_line_box .line01 {
  position: absolute;
  content: "";
  top: 9.6rem;
  left: 0;
  width: 48rem;
  height: 0.2rem;
  background-color: #bedbe9;
}
.philosophy .annotation_line_box .line01::before {
  position: absolute;
  content: "";
  top: -0.4rem;
  right: 0;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #bedbe9;
  border-radius: 50%;
}
.philosophy .philosophy_item:first-of-type .line01 {
  top: 12.6rem;
}
.philosophy .annotation_line_box .line02 {
  position: relative;
  display: block;
  top: 9.6rem;
  left: 34rem;
  width: 94rem;
  height: calc(100% - 9.6rem + 3.6rem);
}
.philosophy .annotation_line_box .line02::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #bedbe9;
  clip-path: polygon(0% 0%, 14rem 100%, 100% 100%, 100% calc(100% - 2px), calc(14rem + 1px) calc(100% - 2px), calc(0% + 2px) 0px);
}
.philosophy .annotation_line_box .line02::after {
  position: absolute;
  content: "";
  bottom: -0.4rem;
  right: 0;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: #bedbe9;
  border-radius: 50%;
}
.philosophy .philosophy_item:first-of-type .line02 {
  top: 12.6rem;
}
.philosophy .philosophy_item_title {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 8rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.philosophy .philosophy_item:first-of-type .philosophy_item_title {
  font-size: 11rem;
}
.philosophy .philosophy_item_detail {
  margin-top: 4.8rem;
}
.philosophy .philosophy_item_subtitle {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  line-height: 1.5;
  color: var(--color-black);
}
.philosophy .philosophy_item:first-of-type .philosophy_item_subtitle {
  font-size: 5.6rem;
}
.philosophy .philosophy_item:nth-of-type(3) .philosophy_item_subtitle:not(:first-of-type) {
  margin-top: 4rem;
}
.philosophy .philosophy_item_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 2.2222222222;
  color: var(--color-black);
  margin-top: 3.2rem;
}
.philosophy .philosophy_item:nth-of-type(3) .philosophy_item_description {
  margin-top: 2.4rem;
}
.philosophy .company_slide__text {
  position: absolute;
  bottom: -14.4rem;
  left: 0;
  display: flex;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  z-index: 2;
}
.philosophy .slide__text-inner {
  display: flex;
  gap: 3.2rem;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-left: 3.2rem;
}
.philosophy .slide__text-inner:nth-child(odd) {
  animation: moveToLeft 1000s -500s infinite linear;
}
.philosophy .slide__text-inner:nth-child(even) {
  animation: moveToLeft2 1000s infinite linear;
}
.philosophy .slide__text-item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex: 0 0 auto;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 24rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.04em;
  color: var(--color-deep-blue);
  white-space: nowrap;
}
.philosophy .strong_blue {
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
@keyframes moveToLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes moveToLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 768px) {
  .philosophy {
    padding: 6.4rem 0 13.2rem;
  }
  .philosophy .philosophy_heading {
    text-align: center;
  }
  .philosophy .philosophy_contents {
    margin-top: 6.4rem;
  }
  .philosophy .philosophy_item {
    grid-template-columns: 1fr;
    justify-content: unset;
    padding: 0 0 4rem 4rem;
  }
  .philosophy .philosophy_item:not(:first-of-type) {
    margin-top: 7rem;
  }
  .philosophy .philosophy_item::before, .philosophy .philosophy_item::after {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: #bedbe9;
  }
  .philosophy .philosophy_item::before {
    top: 0;
    left: -0.55rem;
  }
  .philosophy .philosophy_item::after {
    bottom: -0.55rem;
    right: 0;
  }
  .philosophy .annotation_line_box {
    background: #bedbe9;
    clip-path: polygon(0% 0%, 0% calc(100% - 2.4rem), 2.4rem 100%, 100% 100%, 100% calc(100% - 0.8px), calc(2.4rem + 0.4px) calc(100% - 0.8px), 0.8px calc(100% - 2.4rem - 0.4px), 0.8px 0%);
  }
  .philosophy .annotation_line_box .line01 {
    display: none;
  }
  .philosophy .annotation_line_box .line02 {
    display: none;
  }
  .philosophy .philosophy_item_title {
    font-size: 5.6rem;
  }
  .philosophy .philosophy_item:first-of-type .philosophy_item_title {
    font-size: 8rem;
  }
  .philosophy .philosophy_item_detail {
    margin-top: 3.2rem;
  }
  .philosophy .philosophy_item_subtitle {
    font-size: 2rem;
    line-height: 1.5;
  }
  .philosophy .philosophy_item:first-of-type .philosophy_item_subtitle {
    font-size: 3.2rem;
  }
  .philosophy .philosophy_item:nth-of-type(3) .philosophy_item_subtitle:not(:first-of-type) {
    margin-top: 2.4rem;
  }
  .philosophy .philosophy_item_description {
    line-height: 2;
    margin-top: 2rem;
  }
  .philosophy .philosophy_item:nth-of-type(3) .philosophy_item_description {
    margin-top: 1.6rem;
  }
  .philosophy .company_slide__text {
    bottom: -7.8rem;
  }
  .philosophy .slide__text-inner {
    gap: 1.6rem;
    padding-left: 1.6rem;
  }
  .philosophy .slide__text-item {
    gap: 1.6rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 560px) {
  .philosophy .philosophy_contents {
    margin-top: 4rem;
  }
  .philosophy .philosophy_item {
    padding: 0 0 2rem 2rem;
  }
  .philosophy .philosophy_item:not(:first-of-type) {
    margin-top: 6rem;
  }
  .philosophy .philosophy_item::before, .philosophy .philosophy_item::after {
    width: 0.6rem;
  }
  .philosophy .philosophy_item::before {
    left: -0.25rem;
  }
  .philosophy .philosophy_item::after {
    bottom: -0.25rem;
  }
  .philosophy .philosophy_item_title {
    font-size: 4.8rem;
  }
  .philosophy .philosophy_item:first-of-type .philosophy_item_title {
    font-size: 6.4rem;
  }
  .philosophy .philosophy_item_detail {
    margin-top: 2.4rem;
  }
  .philosophy .philosophy_item_subtitle {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .philosophy .philosophy_item:first-of-type .philosophy_item_subtitle {
    font-size: 2.4rem;
  }
  .philosophy .philosophy_item:nth-of-type(3) .philosophy_item_subtitle:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .philosophy .philosophy_item_description {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 1rem;
  }
  .philosophy .philosophy_item:nth-of-type(3) .philosophy_item_description {
    margin-top: 0.8rem;
  }
  .philosophy .company_slide__text {
    bottom: -5.8rem;
  }
  .philosophy .slide__text-item {
    font-size: 12rem;
  }
}
/************************
* management
************************/
.management {
  padding-top: 26.2rem;
}
.management .p_heading_en {
  font-size: 8rem;
}
.management .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.management .management_president {
  display: grid;
  grid-template-columns: 64rem 1fr;
  gap: 0 8rem;
  margin-top: 8rem;
}
.management .president_img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}
.management .profile_position {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.management .profile_name_wrap {
  display: flex;
  align-items: baseline;
  gap: 0 4rem;
  margin-top: 2rem;
}
.management .profile_name_ja {
  font-size: 4.8rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
}
.management .profile_name_en {
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.management .profile_career {
  margin-top: 3.6rem;
}
.management .profile_career_item:not(:first-of-type) {
  margin-top: 2.4rem;
}
.management .career_item_title {
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
}
.management .career_item_title.c-blue {
  color: var(--color-blue);
}
.management .career_item_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.2777777778;
  color: var(--color-black);
  margin-top: 1rem;
}
.management .profile_qual {
  margin-top: 5.6rem;
}
.management .profile_qual_title {
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.management .profile_qual_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.2777777778;
  color: var(--color-black);
  margin-top: 1rem;
}
.management .management_officer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 7rem;
  margin-top: 12rem;
}
.management .officer_position {
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.management .officer_name_wrap {
  display: flex;
  align-items: baseline;
  gap: 0 2.4rem;
  margin-top: 2rem;
}
.management .officer_name_ja {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
}
.management .officer_name_en {
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.management .officer_item_text_box {
  margin-top: 3.2rem;
}
.management .officer_item_text {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.3333333333;
  color: var(--color-black);
}
.management .officer_item_text:not(:first-of-type) {
  margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .management {
    padding-top: 12.8rem;
  }
  .management .p_heading_en {
    font-size: 6.4rem;
  }
  .management .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .management .management_president {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 6.4rem;
  }
  .management .president_profile {
    margin-top: 4.8rem;
  }
  .management .profile_position {
    font-size: 2.4rem;
  }
  .management .profile_name_wrap {
    gap: 0 3.2rem;
    margin-top: 1.6rem;
  }
  .management .profile_name_en {
    font-size: 1.6rem;
  }
  .management .profile_career {
    margin-top: 3.2rem;
  }
  .management .profile_career_item:not(:first-of-type) {
    margin-top: 2rem;
  }
  .management .career_item_title {
    font-size: 2rem;
  }
  .management .career_item_description {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .management .profile_qual {
    margin-top: 3.2rem;
  }
  .management .profile_qual_title {
    font-size: 2rem;
  }
  .management .profile_qual_description {
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .management .management_officer {
    grid-template-columns: 1fr;
    gap: 5.6rem 0;
    margin-top: 6.4rem;
  }
  .management .officer_position {
    font-size: 2rem;
  }
  .management .officer_name_wrap {
    margin-top: 1.6rem;
  }
  .management .officer_name_ja {
    font-size: 3.2rem;
  }
  .management .officer_name_en {
    font-size: 1.6rem;
  }
  .management .officer_item_text_box {
    margin-top: 2.8rem;
  }
  .management .officer_item_text {
    font-size: 1.6rem;
    line-height: 1.3125;
  }
  .management .officer_item_text:not(:first-of-type) {
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .management .p_heading_en {
    font-size: 4.8rem;
  }
  .management .p_heading_ja {
    font-size: 1.6rem;
  }
  .management .management_president {
    margin-top: 4rem;
  }
  .management .president_img {
    width: 100vw;
    margin: calc(50% - 50vw);
  }
  .management .president_profile {
    margin-top: 5.6rem;
  }
  .management .profile_position {
    font-size: 2rem;
  }
  .management .profile_name_wrap {
    gap: 0 2.4rem;
    margin-top: 1rem;
  }
  .management .profile_name_ja {
    font-size: 4rem;
  }
  .management .profile_name_en {
    font-size: 1.2rem;
  }
  .management .profile_career {
    margin-top: 2.4rem;
  }
  .management .profile_career_item:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .management .career_item_title {
    display: grid;
    grid-template-columns: 6.4rem 1fr;
    font-size: 1.6rem;
  }
  .management .career_item_description {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    margin-top: 0.8rem;
  }
  .management .profile_qual {
    margin-top: 2.4rem;
  }
  .management .profile_qual_title {
    font-size: 1.6rem;
  }
  .management .profile_qual_description {
    font-size: 1.4rem;
    line-height: 1.2857142857;
    margin-top: 0.8rem;
  }
  .management .management_officer {
    gap: 4.8rem 0;
    margin-top: 4.8rem;
  }
  .management .officer_position {
    font-size: 1.6rem;
  }
  .management .officer_name_wrap {
    margin-top: 1rem;
  }
  .management .officer_name_en {
    font-size: 1.2rem;
  }
  .management .officer_item_text_box {
    margin-top: 2.4rem;
  }
  .management .officer_item_text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .management .officer_item_text:not(:first-of-type) {
    margin-top: 0.8rem;
  }
}
/************************
* company_info
************************/
.company_info {
  padding-top: 16.4rem;
}
.company_info .p_heading_en {
  font-size: 8rem;
}
.company_info .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.company_info .company_info_inner {
  width: 96rem;
  margin: 8rem auto 0;
}
.company_info .company_info_box:not(:first-of-type) {
  margin-top: 9.6rem;
}
.company_info .company_info_title {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
}
.company_info .company_info_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 4.8rem;
}
.company_info .company_info_description + dl {
  margin-top: 4rem;
}
.company_info .company_info_item {
  display: grid;
  grid-template-columns: 14.4rem 1fr;
  gap: 0 11.2rem;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
}
.company_info .company_info_item:not(:last-of-type) {
  border-bottom: 1px solid #a7a7a7;
}
.company_info .company_info_item > dt {
  font-size: 2.4rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.company_info .company_info_item > dd {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-inline-start: unset;
}
.company_info .company_info_item > .f_dd {
  display: flex;
  align-items: center;
  gap: 0 2rem;
}
.company_info .company_info_item > .fc_dd {
  display: flex;
  flex-direction: column;
  gap: 0.8rem 0;
}
.company_info .company_info_item > dd span,
.company_info .company_info_item > dd a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.company_info .company_info_item > dd span:not(:first-of-type),
.company_info .company_info_item > dd a:not(:first-of-type) {
  margin-top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .company_info {
    padding-top: 8rem;
  }
  .company_info .p_heading_en {
    font-size: 6.4rem;
  }
  .company_info .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .company_info .company_info_inner {
    width: 100%;
    margin: 6.4rem auto 0;
  }
  .company_info .company_info_box:not(:first-of-type) {
    margin-top: 5.6rem;
  }
  .company_info .company_info_title {
    font-size: 2.4rem;
  }
  .company_info .company_info_description {
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
  .company_info .company_info_description + dl {
    margin-top: 2.8rem;
  }
  .company_info .company_info_item {
    grid-template-columns: 12rem 1fr;
    gap: 0 9.6rem;
    margin-bottom: 1.4rem;
    padding-bottom: 1.4rem;
  }
  .company_info .company_info_item > dt {
    font-size: 2rem;
  }
  .company_info .company_info_item > dd {
    font-size: 1.6rem;
  }
  .company_info .company_info_item > .f_dd {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem 0;
  }
}
@media screen and (max-width: 560px) {
  .company_info {
    padding-top: 6.4rem;
  }
  .company_info .p_heading_en {
    font-size: 4.8rem;
  }
  .company_info .p_heading_ja {
    font-size: 1.6rem;
  }
  .company_info .company_info_inner {
    margin: 4rem auto 0;
  }
  .company_info .company_info_title {
    font-size: 2rem;
  }
  .company_info .company_info_description {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
  .company_info .company_info_description + dl {
    margin-top: 2rem;
  }
  .company_info .company_info_item {
    grid-template-columns: 9.6rem 1fr;
    gap: 0 4rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .company_info .company_info_item > dt {
    font-size: 1.6rem;
  }
  .company_info .company_info_item > dd {
    font-size: 1.4rem;
  }
}
/************************
* access
************************/
.access {
  padding-top: 14rem;
}
.access .p_heading_en {
  font-size: 8rem;
}
.access .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.access .access_content {
  margin-top: 8rem;
}
.access .access_item {
  position: relative;
  display: grid;
  grid-template-columns: 64rem 1fr;
  align-items: center;
  gap: 0 4.8rem;
}
.access .access_item:not(:first-of-type) {
  margin-top: 4rem;
}
.access .annotation_line_box {
  position: absolute;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-blue);
  clip-path: polygon(0% 0%, 0% calc(100% - 2.4rem), 2.4rem 100%, 100% 100%, 100% calc(100% - 0.8px), calc(2.4rem + 0.4px) calc(100% - 0.8px), 0.8px calc(100% - 2.4rem - 0.4px), 0.8px 0%);
}
.access .access_map {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.access .access_map iframe {
  width: 100%;
  height: 100%;
}
.access .access_details {
  position: relative;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0 0 3.2rem 3.2rem;
}
.access .access_details::before, .access .access_details::after {
  position: absolute;
  content: "";
  width: 1.2rem;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--color-blue);
}
.access .access_details::before {
  top: 0;
  left: -0.55rem;
}
.access .access_details::after {
  bottom: -0.55rem;
  right: 0;
}
.access .access_title {
  font-size: 4rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.access .access_address {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 2.4rem;
}
.access .address_text {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.access .address_text:not(:first-of-type) {
  margin-top: 0.8rem;
}
.access .access_link {
  display: block;
  width: 4.8rem;
  height: auto;
  aspect-ratio: 1/1;
}
.access .icon_map path {
  transition: fill 0.3s;
}
.access .icon_map circle {
  transition: fill 0.3s;
}
@media (any-hover: hover) {
  .access .access_link:hover .icon_map path {
    fill: var(--color-white);
  }
  .access .access_link:hover .icon_map circle {
    fill: var(--color-blue);
  }
}
.access .icon_map {
  width: 100%;
}
.access .access_info_text {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.access .access_info_text.c-blue {
  color: var(--color-blue);
}
.access .access_info_text.f-sen {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-weight: var(--fw-700);
}
.access .access_description_wrap {
  border-top: 1px solid var(--color-blue);
  margin-top: 1rem;
  padding-top: 1rem;
}
.access .access_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.access .access_description:not(:first-of-type) {
  margin-top: 0.8rem;
}

@media screen and (max-width: 768px) {
  .access {
    padding-top: 8rem;
  }
  .access .p_heading_en {
    font-size: 6.4rem;
  }
  .access .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .access .access_content {
    margin-top: 6.4rem;
  }
  .access .access_item {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 2.4rem 0;
  }
  .access .annotation_line_box {
    position: absolute;
    content: "";
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    clip-path: polygon(0% 0%, 0% calc(100% - 2.4rem), 2.4rem 100%, 100% 100%, 100% calc(100% - 0.8px), calc(2.4rem + 0.4px) calc(100% - 0.8px), 0.8px calc(100% - 2.4rem - 0.4px), 0.8px 0%);
  }
  .access .access_map {
    aspect-ratio: 171/100;
  }
  .access .access_details {
    padding: 0 0 4rem 4rem;
  }
  .access .access_details::before, .access .access_details::after {
    position: absolute;
    content: "";
    width: 1.2rem;
    height: auto;
    aspect-ratio: 1/1;
    border-radius: 50%;
    background-color: var(--color-blue);
  }
  .access .access_details::before {
    top: 0;
    left: -0.55rem;
  }
  .access .access_details::after {
    bottom: -0.55rem;
    right: 0;
  }
  .access .access_title {
    font-size: 3.2rem;
  }
  .access .access_address {
    align-items: flex-start;
    margin-top: 0.8rem;
  }
  .access .address_text_wrap {
    margin-top: 1.2rem;
  }
  .access .address_text {
    font-size: 1.6rem;
  }
  .access .access_description_wrap {
    margin-top: 0.8rem;
  }
  .access .access_description {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .access {
    padding-top: 6.4rem;
  }
  .access .p_heading_en {
    font-size: 4.8rem;
  }
  .access .p_heading_ja {
    font-size: 1.6rem;
  }
  .access .access_content {
    margin-top: 4rem;
  }
  .access .access_item {
    gap: 2.4rem 0;
  }
  .access .access_details {
    padding: 0 0 2rem 2rem;
  }
  .access .access_details::before, .access .access_details::after {
    width: 0.6rem;
  }
  .access .access_details::before {
    left: -0.25rem;
  }
  .access .access_details::after {
    bottom: -0.25rem;
  }
  .access .access_title {
    font-size: 2.4rem;
  }
  .access .access_address {
    margin-top: 0.4rem;
  }
  .access .address_text {
    font-size: 1.4rem;
  }
  .access .address_text:not(:first-of-type) {
    margin-top: 0.4rem;
  }
  .access .access_description {
    font-size: 1.4rem;
  }
  .access .access_description:not(:first-of-type) {
    margin-top: 0.4rem;
  }
}
/************************
* p_contact
************************/
.p_contact {
  padding: 16rem 0;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .p_contact {
    padding: 14rem 0;
  }
}
@media screen and (max-width: 560px) {
  .p_contact {
    padding: 12rem 0;
  }
}
.p_contact_container {
  width: 128rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .p_contact_container {
    width: 65.6rem;
  }
}
@media screen and (max-width: 560px) {
  .p_contact_container {
    width: 34.2rem;
  }
}
/************************
* partial_contact
************************/
.gbiz_wrap {
  padding: 7.2rem 0 8rem;
}
.gbiz_wrap .contact_item_name {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.gbiz_wrap .contact_item_name .required {
  position: relative;
  top: -0.2rem;
  font-size: 1.4rem;
  font-weight: var(--fw-600);
  color: var(--color-white);
  background-color: #ff2323;
  margin-left: 0.8rem;
  padding: 0.4rem 0.8rem;
}
.gbiz_wrap .contact__block {
  margin-top: 4rem;
}
.gbiz_wrap .contact__block:not(:first-of-type) {
  margin-top: 3.2rem;
}
.gbiz_wrap .contact__block__input {
  width: 100%;
}
.gbiz_wrap .contact__block__input span {
  width: 100%;
}
.gbiz_wrap .contact__block__input span input {
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  background-color: var(--color-white);
  border: 1px solid var(--color-blue);
  border-radius: 0.4rem;
  color: var(--color-black);
  margin-top: 1.6rem;
  padding: 1.6rem;
}
.gbiz_wrap .contact__block__input span input::-moz-placeholder {
  color: #999;
}
.gbiz_wrap .contact__block__input span input::placeholder {
  color: #999;
}
.gbiz_wrap .contact__block__input span .wpcf7-not-valid-tip {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.8rem;
}
.gbiz_wrap .contact_note_box {
  margin-top: 2.4rem;
}
.gbiz_wrap .contact_note_wrap {
  display: flex;
  align-items: flex-start;
  gap: 0 1.6rem;
  margin-top: 1.6rem;
}
.gbiz_wrap .contact_note_wrap > .contact_note:not(:first-of-type) {
  margin-top: unset;
}
.gbiz_wrap .contact_note {
  display: block;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: #777;
}
.gbiz_wrap .contact_note:not(:first-of-type) {
  margin-top: 1.6rem;
}
.gbiz_wrap .contact_note.bold {
  font-weight: var(--fw-600);
}

.bank_wrap {
  padding: 7.2rem 0 8rem;
}
.bank_wrap .contact_item_name {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.bank_wrap .contact_item_name .required {
  position: relative;
  top: -0.2rem;
  font-size: 1.4rem;
  font-weight: var(--fw-600);
  color: var(--color-white);
  background-color: #ff2323;
  margin-left: 0.8rem;
  padding: 0.4rem 0.8rem;
}
.bank_wrap .contact__block {
  margin-top: 4rem;
}
.bank_wrap .contact__block:not(:first-of-type) {
  margin-top: 3.2rem;
}
.bank_wrap .contact__block__input {
  width: 100%;
}
.bank_wrap .contact__block__input span {
  width: 100%;
}
.bank_wrap .contact__block__input span input {
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  border: 1px solid var(--color-blue);
  border-radius: 0.4rem;
  color: var(--color-black);
  margin-top: 1.6rem;
  padding: 1.6rem;
}
.bank_wrap .contact__block__input span input::-moz-placeholder {
  color: #999;
}
.bank_wrap .contact__block__input span input::placeholder {
  color: #999;
}
.bank_wrap .contact__block__input span .wpcf7-not-valid-tip {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.8rem;
}

.contact__form__wrap {
  display: flex;
  flex-direction: column;
  gap: 3.2rem 0;
}
.contact__form__wrap .contact__block .contact_item_name {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.contact__form__wrap .contact__block .contact_item_name .required {
  position: relative;
  top: -0.2rem;
  font-size: 1.4rem;
  font-weight: var(--fw-600);
  color: var(--color-white);
  background-color: #ff2323;
  margin-left: 0.8rem;
  padding: 0.4rem 0.8rem;
}
.contact__form__wrap .contact__block .contact__block__input {
  width: 100%;
}
.contact__form__wrap .contact__block .contact__block__input span {
  width: 100%;
}
.contact__form__wrap .contact__block .contact__block__input span input {
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  border: 1px solid var(--color-blue);
  border-radius: 0.4rem;
  color: var(--color-black);
  margin-top: 1.6rem;
  padding: 1.6rem;
}
.contact__form__wrap .contact__block .contact__block__input span input::-moz-placeholder {
  color: #999;
}
.contact__form__wrap .contact__block .contact__block__input span input::placeholder {
  color: #999;
}
.contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 500;
  margin-top: 0.8rem;
}
.contact__form__wrap .contact__block.textarea {
  height: 100%;
}
.contact__form__wrap .contact__block.textarea .contact__block__input {
  height: 100%;
}
.contact__form__wrap .contact__block.textarea .contact__block__input textarea {
  width: 100%;
  height: 19.2rem;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.25;
  color: var(--color-black);
  border: 1px solid var(--color-blue);
  border-radius: 0.4rem;
  margin-top: 1rem;
  padding: 1.6em;
}
.contact__form__wrap .contact__block.textarea .contact__block__input textarea::-moz-placeholder {
  color: #777;
}
.contact__form__wrap .contact__block.textarea .contact__block__input textarea::placeholder {
  color: #777;
}
.contact__form__wrap .contact__block.radio .contact__block__input {
  margin-top: 1.6rem;
}
.contact__form__wrap .contact__block.radio input[type=radio] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: unset;
  padding: unset;
  border: unset;
  display: none;
}
.contact__form__wrap .contact__block.radio span.wpcf7-list-item {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: unset;
}
.contact__form__wrap .contact__block.radio span.wpcf7-list-item:not(:first-of-type) {
  margin-top: 1.6rem;
}
.contact__form__wrap .contact__block.radio span.wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.45;
}
.contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::before {
  display: block;
  content: "";
  background-color: var(--color-white);
  border-radius: 50%;
  border: solid 1px #333333;
  width: 2rem;
  height: 2rem;
  margin-right: 1rem;
}
.contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::after {
  display: none;
  position: absolute;
  content: "";
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  background-color: #333333;
  left: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
}
.contact__form__wrap .contact__block.radio input[type=radio]:checked + span.wpcf7-list-item-label::after {
  display: block;
}
.contact__form__wrap .contact__block.select .contact__block__input {
  position: relative;
  margin-top: 1.6rem;
}
.contact__form__wrap .contact__block.select .contact__block__input::before {
  position: absolute;
  content: "";
  width: 2.4rem;
  height: 1.2rem;
  top: 50%;
  right: 1.6rem;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2224%22%20height%3D%2214%22%20viewBox%3D%220%200%2024%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20x1%3D%2211.2929%22%20y1%3D%2213.2929%22%20x2%3D%2223.2929%22%20y2%3D%221.29289%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%22-1%22%20x2%3D%2216.9706%22%20y2%3D%22-1%22%20transform%3D%22matrix(-0.707107%20-0.707107%20-0.707107%200.707107%2012%2014)%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 1;
}
.contact__form__wrap .contact__block.select select {
  position: relative;
  width: 100%;
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  color: var(--color-black);
  border: 1px solid var(--color-blue);
  border-radius: 0.4rem;
  padding: 1.6rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact__form__wrap .contact_note {
  display: block;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: #777;
  margin-top: 1rem;
}

.contact__accept__wrap {
  text-align: center;
  margin-top: 4.8rem;
}
.contact__accept__wrap label {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact__accept__wrap input[type=checkbox] {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.contact__accept__wrap .wpcf7-list-item-label {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  color: var(--color-black);
}
.contact__accept__wrap .wpcf7-list-item-label > a {
  color: #0000ee;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.contact__accept__wrap .wpcf7-list-item-label > a:hover {
  opacity: 0.5;
}

.contact__submit__wrap {
  width: 27.2rem;
  margin: 2.4rem auto 0;
}
.contact__submit__wrap .contact__block {
  width: 100%;
}
.contact__submit__wrap .contact__block input {
  width: 100%;
  font-size: 2.8rem;
  font-weight: var(--fw-600);
  line-height: 1.25;
  color: var(--color-white);
  background-color: var(--color-blue);
  border: 1px solid transparent;
  border-radius: 0.4rem;
  margin-top: 2.4rem;
  padding: 2rem 0;
  transition: color 0.3s, background-color 0.3s, border 0.3s;
  cursor: pointer;
}
@media (any-hover: hover) {
  .contact__submit__wrap .contact__block input:hover {
    color: var(--color-blue);
    background-color: var(--color-white);
    border: 1px solid var(--color-blue);
  }
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.4375;
  color: #b94a48;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin: unset;
  padding: 8px 32px 8px 16px;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}

.wpcf7 form .wpcf7-response-output {
  font-size: 1.6rem;
  font-weight: var(--fw-500);
  line-height: 1.4375;
  color: #3a87ad;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin: unset;
  padding: 8px 32px 8px 16px;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}

@media screen and (max-width: 768px) {
  .gbiz_wrap {
    padding: 0 0 4.8rem;
  }
  .gbiz_wrap .contact_item_name {
    font-size: 1.4rem;
  }
  .gbiz_wrap .contact_item_name .required {
    top: -0.2rem;
    font-size: 1.4rem;
  }
  .gbiz_wrap .contact__block {
    margin-top: 2rem;
  }
  .gbiz_wrap .contact__block:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .gbiz_wrap .contact__block__input span input {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    padding: 1.2rem;
  }
  .gbiz_wrap .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
  .gbiz_wrap .contact_note_box {
    margin-top: 1.6rem;
  }
  .gbiz_wrap .contact_note_wrap {
    gap: 0 1rem;
    margin-top: 0.8rem;
  }
  .gbiz_wrap .contact_note {
    font-size: 1.4rem;
  }
  .gbiz_wrap .contact_note:not(:first-of-type) {
    margin-top: 0.8rem;
  }
  .bank_wrap {
    padding: 4.8rem 0 5.6rem;
  }
  .bank_wrap .contact_item_name {
    font-size: 1.4rem;
  }
  .bank_wrap .contact_item_name .required {
    top: -0.2rem;
    font-size: 1.4rem;
  }
  .bank_wrap .contact__block {
    margin-top: 2rem;
  }
  .bank_wrap .contact__block:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .bank_wrap .contact__block__input span input {
    font-size: 1.4rem;
    margin-top: 1.4rem;
    padding: 1.2rem;
  }
  .bank_wrap .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
  .contact__form__wrap {
    gap: 2.4rem 0;
  }
  .contact__form__wrap .contact__block .contact_item_name {
    font-size: 1.4rem;
  }
  .contact__form__wrap .contact__block .contact_item_name .required {
    top: -0.2rem;
    font-size: 1.4rem;
  }
  .contact__form__wrap .contact__block .contact__block__input span input {
    font-size: 1.4rem;
    margin-top: 1rem;
    padding: 1.2rem;
  }
  .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.4rem;
  }
  .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
    height: 20rem;
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .contact__form__wrap .contact__block.radio .contact__block__input {
    margin-top: 1rem;
  }
  .contact__form__wrap .contact__block.radio span.wpcf7-list-item:not(:first-of-type) {
    margin-top: 1.4rem;
  }
  .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label {
    font-size: 1.4rem;
  }
  .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::before {
    width: 1.6rem;
    height: 1.6rem;
    margin-right: 0.8rem;
  }
  .contact__form__wrap .contact__block.radio span.wpcf7-list-item-label::after {
    width: 1rem;
    height: 1rem;
    left: 0.4rem;
  }
  .contact__form__wrap .contact__block.select .contact__block__input {
    margin-top: 1rem;
  }
  .contact__form__wrap .contact__block.select select {
    font-size: 1.4rem;
    padding: 1.2rem;
  }
  .contact__accept__wrap {
    margin-top: 4rem;
  }
  .contact__accept__wrap label {
    gap: 0.8rem;
  }
  .contact__accept__wrap input[type=checkbox] {
    width: 1.8rem;
    height: 1.8rem;
  }
  .contact__accept__wrap .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
  .contact__submit__wrap {
    width: 24rem;
  }
  .contact__submit__wrap .contact__block input {
    font-size: 2.4rem;
    padding: 1.6rem 0;
  }
  .wpcf7 form.invalid .wpcf7-response-output {
    font-size: 1.4rem;
  }
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  .bank_wrap {
    padding: 4rem 0 4.8rem;
  }
  .contact__form__wrap {
    gap: 1.6rem 0;
  }
  .contact__form__wrap .contact__block .contact_item_name .required {
    font-size: 1rem;
    padding: 0.2rem 0.6rem;
  }
  .contact__form__wrap .contact__block .contact__block__input span input {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
  .contact__form__wrap .contact__block .contact__block__input span .wpcf7-not-valid-tip {
    font-size: 1.2rem;
  }
  .contact__form__wrap .contact__block.textarea .contact__block__input textarea {
    height: 12rem;
    font-size: 1.2rem;
    padding: 0.8rem;
  }
  .contact__form__wrap .contact__block.select .contact__block__input::before {
    width: 2rem;
    height: 0.8rem;
    right: 1.2rem;
  }
  .contact__form__wrap .contact__block.select select {
    font-size: 1.2rem;
    padding: 0.8rem;
  }
  .contact__accept__wrap {
    margin-top: 3.6rem;
  }
  .contact__submit__wrap {
    width: 17.6rem;
  }
  .contact__submit__wrap .contact__block input {
    font-size: 2rem;
    padding: 1.2rem 0;
  }
  .wpcf7 form.invalid .wpcf7-response-output {
    font-size: 1.4re2;
  }
  .wpcf7 form .wpcf7-response-output {
    font-size: 1.2rem;
  }
}
/************************
* contact
************************/
.contact {
  margin-top: 4rem;
}
.contact .contact_contents {
  display: grid;
  grid-template-columns: 1fr 80rem;
  gap: 0 4rem;
  margin-top: 12rem;
}
.contact .contact_strong_text {
  font-size: 2.4rem;
  font-weight: var(--fw-600);
  line-height: 1.6666666667;
  color: #222;
}
.contact .contact_form {
  background-color: var(--color-back-blue);
  border-radius: 0.8rem;
  padding: 6.4rem 0;
}
.contact .contact_form_inner {
  width: 64rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .contact {
    margin-top: unset;
  }
  .contact .contact_contents {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 6.4rem;
  }
  .contact .contact_strong_text {
    font-size: 2rem;
    line-height: 1.5;
  }
  .contact .contact_form {
    margin-top: 6.4rem;
    padding: 4.8rem 0;
  }
  .contact .contact_form_inner {
    width: 59.2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact .contact_contents {
    margin-top: 4rem;
  }
  .contact .contact_strong_text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
  .contact .contact_form {
    margin-top: 4rem;
    padding: 3.6rem 0;
  }
  .contact .contact_form_inner {
    width: 30.2rem;
  }
}
/************************
* contact_sole
************************/
.contact_sole {
  margin-top: 4rem;
}
.contact_sole .p_heading_en {
  font-size: 8rem;
}
.contact_sole .contact_sole_contents {
  display: grid;
  grid-template-columns: 67.2rem 1fr;
  gap: 0 6.4rem;
  margin-top: 12rem;
}
.contact_sole .sole_flow_lite {
  background-color: var(--color-back-blue);
  border-radius: 0.8rem;
  padding: 6.4rem 4rem;
}
.contact_sole .sole_flow_heading {
  font-size: 4rem;
  font-weight: var(--fw-600);
  color: var(--color-blue);
}
.contact_sole .sole_flow_text {
  font-size: 2rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 2rem;
}
.contact_sole .sole_flow_text:first-of-type {
  margin-top: 5.6rem;
}
.contact_sole .sole_flow_note {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-deep-blue);
  margin-top: 0.8rem;
}
.contact_sole .sole_flow_detail {
  background-color: var(--color-back-blue);
  border-radius: 0.8rem;
  margin-top: 8rem;
  padding: 6.4rem 4rem;
}
.contact_sole .sole_flow_box {
  margin-top: 4.8rem;
}
.contact_sole .sole_flow_box:first-of-type {
  margin-top: 5.6rem;
}
.contact_sole .flow_title {
  display: flex;
  align-items: flex-start;
  font-size: 2rem;
  font-weight: var(--fw-600);
  color: var(--color-blue);
}
.contact_sole .flow_strong_text {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  margin-top: 1.6rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_strong_text.c-blue {
  color: var(--color-deep-blue);
}
.contact_sole .flow_financial_text {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  margin-top: 2rem;
  margin-bottom: 1.6rem;
  margin-left: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-blue);
}
.contact_sole .flow_applicable {
  margin-top: 1.6rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_applicable_title {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.contact_sole .flow_applicable_point {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 1.6rem;
  padding-left: 2.4rem;
}
.contact_sole .sole_flow_sender {
  margin-top: 2rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_sender_title {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.contact_sole .flow_sender_text {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 1.5;
  color: var(--color-black);
  margin-top: 1.6rem;
}
.contact_sole .flow_description {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 2rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_small_text {
  display: block;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 0.8rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_month_wrap {
  margin-top: 2rem;
  padding-left: 2.4rem;
}
.contact_sole .flow_month_title {
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  border-bottom: 1px solid var(--color-blue);
  margin-bottom: 1.6rem;
  padding-bottom: 1.6rem;
}
.contact_sole .flow_month_item {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 1.6rem;
}
.contact_sole .sole_contact_title {
  font-size: 2.4rem;
  font-weight: var(--fw-600);
  color: var(--color-blue);
}
.contact_sole .sole_contact_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.3333333333;
  color: var(--color-black);
  margin-top: 2rem;
}
.contact_sole .form_link {
  color: var(--color-black);
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .contact_sole {
    margin-top: unset;
  }
  .contact_sole .p_heading_en {
    font-size: 6.4rem;
  }
  .contact_sole .contact_sole_contents {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 8rem;
  }
  .contact_sole .contact_sole_inner_details {
    position: relative;
    width: 65.6rem;
    margin: 0 auto;
    z-index: 2;
    border-bottom: 1px solid var(--color-black);
  }
  .contact_sole .contact_sole_inner_details:first-of-type {
    border-top: 1px solid var(--color-black);
  }
  .contact_sole .contact_sole_inner_details {
    font-size: 3.2rem;
    font-weight: var(--fw-700);
    color: var(--color-blue);
  }
  .contact_sole .contact_sole_inner_details:not(:last-of-type) {
    margin-bottom: 2.4rem;
  }
  .contact_sole .contact_sole_inner_details.is-opened .details_question::after {
    rotate: -180deg;
  }
  .contact_sole .details_question {
    position: relative;
    display: block;
    padding: 3.2rem;
    cursor: pointer;
    transition: transform 0.4s;
  }
  .contact_sole .details_question::-webkit-details-marker {
    display: none;
  }
  .contact_sole .details_question::after {
    position: absolute;
  }
  .contact_sole .details_question::after {
    content: "";
    width: 3rem;
    height: 1.5rem;
    top: 4.2rem;
    right: 2.4rem;
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2232%22%20height%3D%2218%22%20viewBox%3D%220%200%2032%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20x1%3D%2215.2929%22%20y1%3D%2217.2929%22%20x2%3D%2231.2929%22%20y2%3D%221.29289%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%22-1%22%20x2%3D%2222.6274%22%20y2%3D%22-1%22%20transform%3D%22matrix(-0.707107%20-0.707107%20-0.707107%200.707107%2016%2018)%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    rotate: 0deg;
    transition: rotate 0.4s;
  }
  .contact_sole .details_answer {
    margin-bottom: 4rem;
    overflow: hidden;
  }
  .contact_sole .details_answer p {
    position: relative;
    display: block;
    transition: all 0.4s ease-out;
  }
  .contact_sole .sole_flow_text {
    font-size: 1.8rem;
  }
  .contact_sole .sole_flow_text:first-of-type {
    margin-top: unset;
  }
  .contact_sole .sole_flow_box {
    margin-top: 3.2rem;
  }
  .contact_sole .sole_flow_box:first-of-type {
    margin-top: unset;
  }
  .contact_sole .flow_title {
    font-size: 1.8rem;
  }
  .contact_sole .flow_strong_text {
    font-size: 1.6rem;
  }
  .contact_sole .flow_applicable {
    margin-top: 1.2rem;
  }
  .contact_sole .flow_applicable_title {
    font-size: 1.6rem;
  }
  .contact_sole .flow_applicable_point {
    font-size: 1.2rem;
    margin-top: 1.2rem;
  }
  .contact_sole .sole_flow_sender {
    margin-top: 1.6rem;
  }
  .contact_sole .flow_sender_title {
    font-size: 1.6rem;
  }
  .contact_sole .flow_sender_text {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }
  .contact_sole .flow_description {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
  .contact_sole .flow_small_text {
    font-size: 1.4rem;
  }
  .contact_sole .flow_month_wrap {
    margin-top: 1.6rem;
  }
  .contact_sole .flow_month_title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
  }
  .contact_sole .flow_month_item {
    font-size: 1.6rem;
    margin-top: 1.2rem;
  }
  .contact_sole .sole_contact_form {
    margin-top: 6.4rem;
  }
  .contact_sole .sole_contact_title {
    font-size: 2.4rem;
  }
  .contact_sole .sole_contact_description {
    font-size: 1.8rem;
    margin-top: 1.6rem;
  }
  .contact_sole .wpcf7 {
    background-color: var(--color-back-blue);
    margin-top: 3.2rem;
    padding: 4.8rem 3.2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_sole .p_heading_en {
    font-size: 4.4rem;
  }
  .contact_sole .contact_sole_contents {
    margin-top: 4rem;
  }
  .contact_sole .contact_sole_inner_details {
    width: 34.2rem;
  }
  .contact_sole .contact_sole_inner_details {
    font-size: 2.4rem;
  }
  .contact_sole .details_question {
    padding: 3.2rem 3.2rem 3.2rem 0;
  }
  .contact_sole .details_question::after {
    top: 3.8rem;
    right: 1.6rem;
  }
  .contact_sole .sole_flow_text {
    font-size: 1.6rem;
  }
  .contact_sole .sole_flow_note {
    font-size: 1.2rem;
  }
  .contact_sole .sole_flow_box {
    margin-top: 2rem;
  }
  .contact_sole .flow_title {
    font-size: 1.6rem;
  }
  .contact_sole .flow_strong_text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .contact_sole .flow_applicable {
    margin-top: 1.2rem;
  }
  .contact_sole .flow_applicable_title {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
  .contact_sole .flow_applicable_point {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    padding-left: unset;
  }
  .contact_sole .sole_flow_sender {
    margin-top: 1.6rem;
  }
  .contact_sole .flow_sender_title {
    font-size: 1.6rem;
  }
  .contact_sole .flow_sender_text {
    font-size: 1.2rem;
    margin-top: 0.8rem;
  }
  .contact_sole .flow_description {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
  .contact_sole .flow_small_text {
    font-size: 1.2rem;
  }
  .contact_sole .flow_month_wrap {
    margin-top: 1.4rem;
  }
  .contact_sole .flow_month_title {
    font-size: 1.6rem;
  }
  .contact_sole .flow_month_item {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .contact_sole .sole_contact_form {
    margin-top: 4rem;
  }
  .contact_sole .sole_contact_title {
    font-size: 2rem;
  }
  .contact_sole .sole_contact_description {
    font-size: 1.6rem;
  }
  .contact_sole .wpcf7 {
    margin-top: 2.4rem;
    padding: 4.8rem 2rem;
  }
}
/************************
* contact_gpu
************************/
.contact_gpu {
  margin-top: 4rem;
}
.contact_gpu .p_heading_en {
  font-size: 8rem;
}
.contact_gpu .contact_gpu_contents {
  display: grid;
  grid-template-columns: 67.2rem 1fr;
  gap: 0 6.4rem;
  margin-top: 12rem;
}
.contact_gpu .contact_gpu_textbox {
  background-color: var(--color-back-blue);
  border-radius: 0.8rem;
  padding: 4.8rem 3.2rem;
}
.contact_gpu .contact_gpu_text {
  position: relative;
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 2rem;
  padding-left: 2rem;
}
.contact_gpu .contact_gpu_text::before {
  position: absolute;
  content: "";
  top: 0.6rem;
  left: 0;
  width: 0.4rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-black);
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .contact_gpu {
    margin-top: unset;
  }
  .contact_gpu .p_heading_en {
    font-size: 6.4rem;
  }
  .contact_gpu .contact_gpu_contents {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 8rem;
  }
  .contact_gpu .contact_gpu_textbox {
    background-color: transparent;
    border-radius: unset;
    padding: unset;
  }
  .contact_gpu .gpu_contact_form {
    margin-top: 6.4rem;
  }
  .contact_gpu .wpcf7 {
    background-color: var(--color-back-blue);
    margin-top: 3.2rem;
    padding: 4.8rem 3.2rem;
  }
}
@media screen and (max-width: 560px) {
  .contact_gpu .p_heading_en {
    font-size: 4.4rem;
  }
  .contact_gpu .contact_gpu_contents {
    margin-top: 4rem;
  }
  .contact_gpu .contact_gpu_text {
    font-size: 1.4rem;
    margin-top: 1.6rem;
    padding-left: 1.6rem;
  }
  .contact_gpu .contact_gpu_text::before {
    top: 0.5rem;
  }
  .contact_gpu .gpu_contact_form {
    margin-top: 4rem;
  }
  .contact_gpu .wpcf7 {
    margin-top: 2.4rem;
    padding: 4.8rem 2rem;
  }
}
/************************
* archive
************************/
.archive {
  padding: 16rem 0;
  overflow-x: hidden;
}

@media screen and (max-width: 768px) {
  .archive {
    padding: 14rem 0;
  }
}
@media screen and (max-width: 560px) {
  .archive {
    padding: 12rem 0;
  }
}
.archive_container {
  width: 128rem;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .archive_container {
    width: 65.6rem;
  }
}
@media screen and (max-width: 560px) {
  .archive_container {
    width: 34.2rem;
  }
}
/************************
* archive_news
************************/
.archive_news {
  margin-top: 4rem;
}
.archive_news .news_contents {
  display: grid;
  grid-template-columns: 1fr 100rem;
  gap: 0 10rem;
  margin-top: 12rem;
}
.archive_news .news_category_select {
  display: none;
}
.archive_news .news_category_item {
  position: relative;
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: #939eba;
  padding-left: 1.8rem;
  transition: color 0.3s;
}
.archive_news .news_category_item.current {
  color: var(--color-blue);
}
.archive_news .news_category_item.current::before {
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
}
.archive_news .news_category_item::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  border: 1px solid #939eba;
  border-radius: 50%;
  transition: color 0.3s, background-color 0.3s;
  z-index: 1;
}
.archive_news .news_category_item:not(:first-of-type) {
  margin-top: 2.4rem;
}
@media (any-hover: hover) {
  .archive_news .news_category_item:hover {
    color: var(--color-blue);
  }
  .archive_news .news_category_item:hover::before {
    background-color: var(--color-blue);
    border: 1px solid var(--color-blue);
  }
  .archive_news .news_category_item:hover > a {
    color: var(--color-blue);
  }
}
.archive_news .news_category_item > a {
  color: #939eba;
  transition: color 0.3s;
}
.archive_news .news_item {
  border-top: 1px solid #9ca8ad;
  padding-top: 4rem;
}
.archive_news .news_item:not(:first-of-type) {
  margin-top: 4rem;
}
.archive_news .news_item:last-of-type {
  border-bottom: 1px solid #9ca8ad;
  padding-bottom: 4rem;
}
.archive_news .news_item_link {
  display: flex;
  gap: 0 4rem;
}
.archive_news .news_thumbnail {
  flex-shrink: 0;
  width: 32rem;
  height: auto;
  aspect-ratio: 8/5;
  border-radius: 0.4rem;
  overflow: hidden;
}
.archive_news .news_thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.archive_news .news_item_info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12rem;
  padding-left: 1.8rem;
}
.archive_news .news_item_info::before {
  position: absolute;
  content: "";
  top: 0.3rem;
  left: 0;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.archive_news .news_category {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.archive_news .news_date {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.archive_news .news_date::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10rem;
  transform: translateY(-50%);
  width: 8rem;
  height: 1px;
  background-color: #9ca8ad;
}
.archive_news .news_item_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 4rem;
  margin-top: 2rem;
}
.archive_news .news_item_title {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 2.4rem;
  font-weight: var(--fw-600);
  line-height: 1.5;
  color: var(--color-black);
  overflow: hidden;
}
.archive_news .icon_news_arrow {
  flex-shrink: 0;
  width: 5.4rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media (any-hover: hover) {
  .archive_news .news_item_link:hover .icon_news_arrow path {
    opacity: 1;
    transform: translate(0, 0);
    animation: hoverArrow 0.4s ease forwards;
  }
}
@keyframes hoverArrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  40% {
    opacity: 0;
    transform: translate(1rem, -1rem);
  }
  60% {
    opacity: 0;
    transform: translate(-1rem, 1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.archive_news .pagination {
  display: flex;
  justify-content: center;
  margin-top: 4.8rem;
}
.archive_news .pagination ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 2rem;
}
.archive_news .pagination ul li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2rem;
  color: var(--color-black);
  border: 1px solid #9ca8ad;
  border-radius: 0.2rem;
  transition: color 0.2s, background-color 0.2s, border 0.2s;
}
.archive_news .pagination ul li .page-numbers.prev, .archive_news .pagination ul li .page-numbers.next {
  gap: 0 0.4rem;
  width: 7.8rem;
  height: 3.6rem;
  font-size: 1.6rem;
  color: #9ca8ad;
}
.archive_news .pagination ul li .page-numbers .pagination_arrow {
  width: 1.6rem;
}
.archive_news .pagination ul li .page-numbers .pagination_arrow path {
  transition: fill 0.2s;
}
.archive_news .pagination ul li .page-numbers:not(.dots):hover {
  color: var(--color-white);
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
.archive_news .pagination ul li .page-numbers:not(.dots):hover .pagination_arrow path {
  fill: var(--color-white);
}
.archive_news .pagination ul li .page-numbers.current {
  color: var(--color-white);
  background-color: var(--color-blue);
  border-color: var(--color-blue);
}
.archive_news .pagination ul li .page-numbers.dots {
  cursor: default;
  color: #999;
}

@media screen and (max-width: 768px) {
  .archive_news {
    margin-top: unset;
  }
  .archive_news .news_contents {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 8rem;
  }
  .archive_news .news_category_wrap {
    position: relative;
    display: block;
    width: 34.2rem;
    margin: 0 auto;
  }
  .archive_news .news_category_wrap::before {
    position: absolute;
    content: "";
    width: 2rem;
    height: 1rem;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2222%22%20height%3D%2212%22%20viewBox%3D%220%200%2022%2012%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M21%201L11%2011L1%201%22%20stroke%3D%22white%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 1;
  }
  .archive_news .news_category_select {
    position: relative;
    width: 100%;
    font-size: 1.6rem;
    font-weight: var(--fw-900);
    color: var(--color-white);
    text-align: center;
    background-color: var(--color-blue);
    border: none;
    border-radius: 0.2rem;
    padding: 1.6rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .archive_news .news_category_list {
    display: none;
  }
  .archive_news .news_category_select {
    display: block;
  }
  .archive_news .news_list {
    margin-top: 6.4rem;
  }
  .archive_news .news_item {
    padding-top: 3.2rem;
  }
  .archive_news .news_item:not(:first-of-type) {
    margin-top: 3.2rem;
  }
  .archive_news .news_item:last-of-type {
    padding-bottom: 3.2rem;
  }
  .archive_news .news_item_link {
    display: block;
  }
  .archive_news .news_thumbnail {
    width: 100%;
    aspect-ratio: 171/100;
  }
  .archive_news .archive_news_details {
    margin-top: 2.4rem;
  }
  .archive_news .news_item_info {
    gap: 0 8rem;
    padding-left: 1.6rem;
  }
  .archive_news .news_item_info::before {
    width: 0.8rem;
  }
  .archive_news .news_date {
    font-size: 1.4rem;
  }
  .archive_news .news_date::before {
    left: -6.4rem;
    width: 4.8rem;
  }
  .archive_news .news_item_title_wrap {
    display: contents;
  }
  .archive_news .news_item_title {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .archive_news .icon_news_arrow {
    display: none;
  }
  .archive_news .pagination {
    margin-top: 4.4rem;
  }
  .archive_news .pagination ul {
    gap: 1.6rem;
  }
  .archive_news .pagination ul li .page-numbers {
    width: 4rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  .archive_news .pagination ul li .page-numbers.prev, .archive_news .pagination ul li .page-numbers.next {
    width: 8rem;
    height: 4rem;
    font-size: 1.8rem;
  }
  .archive_news .pagination ul li .page-numbers .pagination_arrow {
    width: 1.4rem;
  }
}
@media screen and (max-width: 560px) {
  .archive_news .news_contents {
    margin-top: 6.4rem;
  }
  .archive_news .news_category_wrap {
    width: 100%;
  }
  .archive_news .news_list {
    margin-top: 4rem;
  }
  .archive_news .news_item {
    padding-top: 2.4rem;
  }
  .archive_news .news_item:not(:first-of-type) {
    margin-top: 2.4rem;
  }
  .archive_news .news_item:last-of-type {
    padding-bottom: 2.4rem;
  }
  .archive_news .archive_news_details {
    margin-top: 1.6rem;
  }
  .archive_news .news_item_info {
    gap: 0 6.4rem;
    padding-left: 1.2rem;
  }
  .archive_news .news_item_info::before {
    width: 0.8rem;
  }
  .archive_news .news_category {
    font-size: 1.2rem;
  }
  .archive_news .news_date {
    font-size: 1.2rem;
  }
  .archive_news .news_date::before {
    left: -5.6rem;
    width: 4.8rem;
  }
  .archive_news .news_item_title {
    font-size: 1.6rem;
    margin-top: 1rem;
  }
  .archive_news .pagination {
    margin-top: 4rem;
  }
  .archive_news .pagination ul {
    gap: 1.6rem 1.4rem;
  }
  .archive_news .pagination ul li .page-numbers.prev, .archive_news .pagination ul li .page-numbers.next {
    width: 5.8rem;
    font-size: 1.4rem;
  }
  .archive_news .pagination ul li .page-numbers .pagination_arrow {
    width: 1rem;
  }
}
/************************
* product_fv
************************/
.product_fv {
  position: relative;
  background-image: url("../../assets/images/webp/p-product_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 16rem 0 2.4rem;
}
.product_fv .product_fv_inner {
  padding-left: 8rem;
}
.product_fv .product_fv_heading {
  position: relative;
  margin-top: 4rem;
  z-index: 2;
}
.product_fv .product_fv_title {
  position: relative;
  font-size: 4rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  margin-top: 12rem;
  z-index: 2;
}
.product_fv .product_fv_text {
  position: relative;
  width: 67.8rem;
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.7777777778;
  color: var(--color-black);
  margin-top: 3.6rem;
  z-index: 2;
}
.product_fv .btn_box {
  position: relative;
  display: flex;
  gap: 0 2rem;
  margin-top: 4.8rem;
  z-index: 2;
}
.product_fv .btn_wrap {
  width: 31rem;
  min-height: 7.3rem;
}
.product_fv .btn_wrap::before {
  width: 24rem;
  height: 4.8rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 2.6rem) 0%, 100% 0%, 100% 1px, calc(0% + 2.6rem + 0.5px) 1px, 1px calc(0% + 2.6rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 2.6rem));
}
.product_fv .btn_wrap::after {
  width: 24rem;
  height: 4.8rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 2.6rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 2.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.6rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 2.6rem));
}
.product_fv .btn_wrap:nth-of-type(2) {
  width: -moz-fit-content;
  width: fit-content;
}
.product_fv .clipped_box {
  color: var(--color-white);
  clip-path: polygon(calc(0% + 2.4rem) 0%, 100% 0%, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0% 100%, 0% calc(0% + 2.4rem));
  padding: 0 2.4rem 0 3.2rem;
}
.product_fv .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 2.4rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 2.4rem + 0.5px), calc(100% - 2.4rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 2.4rem - 0.5px));
}
.product_fv .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 2.4rem) 0, 100% 0, 100% 1px, calc(0% + 2.4rem + 0.5px) 1px, 1px calc(0% + 2.4rem + 0.5px), 1px calc(100% - 1px), calc(100% - 2.4rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.4rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0 100%, 0 calc(0% + 2.4rem));
  z-index: -2;
}
.product_fv .clipped_box .pipe {
  height: 4.8rem;
  margin-left: 2.4rem;
}
.product_fv .clipped_box .btn_arrow {
  margin-left: 2.4rem;
}
.product_fv .clipped_box:hover {
  color: var(--color-deep-blue);
}
.product_fv .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}
.product_fv .product_fv_anchor_list {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem 3rem;
  margin-top: 6.4rem;
  z-index: 2;
}
.product_fv .product_fv_anchor_item > a {
  display: flex;
  align-items: center;
  gap: 0 0.8rem;
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  .product_fv .product_fv_anchor_item > a:hover {
    opacity: 0.5;
  }
}
.product_fv .anchor_arrow {
  width: 2rem;
  height: auto;
  aspect-ratio: 1/1;
}
.product_fv .product_fv_img {
  position: absolute;
  top: 21.6rem;
  right: 4rem;
  width: 64rem;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product_fv {
    background-image: url("../../assets/images/webp/p-product_bg_sp.webp");
    background-position: center -53rem;
    padding: 12rem 0 2.4rem;
  }
  .product_fv .product_fv_inner {
    width: 65.6rem;
    margin: 0 auto;
    padding-left: unset;
  }
  .product_fv .product_fv_heading {
    margin-top: unset;
  }
  .product_fv .product_fv_title {
    font-size: 3.2rem;
    margin-top: 8rem;
  }
  .product_fv .product_fv_text {
    width: 100%;
    font-size: 1.6rem;
    line-height: 1.6875;
    margin-top: 2rem;
  }
  .product_fv .btn_box {
    display: none;
  }
  .product_fv .product_fv_anchor_list {
    gap: 1.4rem 2.4rem;
    margin-top: 40rem;
    z-index: 2;
  }
  .product_fv .product_fv_anchor_item > a {
    font-size: 1.6rem;
  }
  .product_fv .product_fv_img {
    top: 48rem;
    left: 14rem;
    right: auto;
    width: 48rem;
  }
}
@media screen and (max-width: 560px) {
  .product_fv {
    background-position: center bottom;
  }
  .product_fv .product_fv_inner {
    width: 34.2rem;
  }
  .product_fv .product_fv_title {
    font-size: 2.4rem;
    margin-top: 4rem;
  }
  .product_fv .product_fv_text {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 1rem;
  }
  .product_fv .product_fv_anchor_list {
    gap: 1.2rem 1.8rem;
    margin-top: 29rem;
  }
  .product_fv .product_fv_anchor_item > a {
    font-size: 1.2rem;
  }
  .product_fv .anchor_arrow {
    width: 1.5rem;
  }
  .product_fv .product_fv_img {
    top: 40.8rem;
    left: 2.4rem;
    right: auto;
    width: 34.2rem;
  }
}
/************************
* problem
************************/
.problem {
  background-image: url(../../assets/images/webp/problem_bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 10rem 0 8rem;
}
.problem .problem_inner {
  width: 128rem;
  margin: 0 auto;
}
.problem .problem_title_ja_img {
  display: block;
  width: 90rem;
  margin: 0 auto;
}
.problem .problem_title_ja {
  font-size: 4.8rem;
  font-weight: var(--fw-900);
  color: var(--color-white);
  margin-top: 2.4rem;
  text-align: center;
}
.problem .problem_slider {
  margin-top: 4rem;
}
.problem .problem_slider_slide {
  position: relative;
  height: auto;
  background: transparent;
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border: 0.2rem solid var(--color-cyan);
  border-radius: 0.8rem;
  padding: 6.4rem 4.8rem;
}
.problem .problem_slider_slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 30px 0 rgba(0, 255, 255, 0.25) inset;
  z-index: -1;
}
.problem .problem_slide_icon {
  width: auto;
  height: 10rem;
  margin: 0 auto;
}
.problem .problem_slide_icon img {
  display: block;
  width: auto;
  height: 100%;
  margin: 0 auto;
}
.problem .problem_slide_point {
  font-size: 1.8rem;
  font-weight: var(--fw-700);
  color: var(--color-cyan);
  margin-top: 3rem;
}
.problem .point_num {
  font-size: 3.6rem;
  margin-left: 0.8rem;
}
.problem .problem_slide_title {
  font-size: 4rem;
  font-weight: var(--fw-900);
  color: var(--color-white);
  margin-top: 1rem;
}
.problem .problem_slide_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 2.2222222222;
  color: var(--color-white);
  margin-top: 1.6rem;
}

@media screen and (max-width: 768px) {
  .problem {
    background-image: url(../../assets/images/webp/problem_bg_sp.webp);
    padding: 8rem 0 11rem;
  }
  .problem .problem_inner {
    width: 65.6rem;
  }
  .problem .problem_title_ja_img {
    width: 56rem;
  }
  .problem .problem_title_ja {
    font-size: 4rem;
    margin-top: 2rem;
  }
  .problem .problem_slider {
    margin-top: 6.4rem;
  }
  .problem .problem_slider_slide {
    padding: 4.8rem 2.4rem;
  }
  .problem .problem_slide_icon {
    height: 12rem;
  }
  .problem .problem_slide_point {
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
  .problem .point_num {
    font-size: 2.8rem;
    margin-left: 0.4rem;
  }
  .problem .problem_slide_title {
    font-size: 3.6rem;
  }
  .problem .problem_slide_description {
    font-size: 1.6rem;
    line-height: 1.6875;
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .problem .problem_inner {
    width: 34.2rem;
  }
  .problem .problem_title_ja_img {
    width: 34.2rem;
  }
  .problem .problem_title_ja {
    font-size: 2.4rem;
    margin-top: 1.6rem;
  }
  .problem .problem_slider_slide {
    padding: 4.8rem 2rem;
  }
  .problem .problem_slide_icon {
    height: 16rem;
  }
  .problem .problem_slide_point {
    font-size: 1.4rem;
  }
  .problem .point_num {
    font-size: 2rem;
  }
  .problem .problem_slide_description {
    font-size: 1.4rem;
    line-height: 1.7142857143;
  }
}
/************************
* feature
************************/
.feature {
  padding-top: 12rem;
}
.feature .feature_inner {
  width: 128rem;
  margin: 0 auto;
}
.feature .p_heading_en {
  font-size: 8rem;
}
.feature .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.feature .feature_contents {
  display: flex;
  justify-content: space-between;
  gap: 0 7rem;
  margin-top: 5.6rem;
}
.feature .feature_num {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 4rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.feature .feature_title {
  font-size: 4rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
  margin-top: 2.8rem;
}
.feature .feature_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.7777777778;
  color: var(--color-black);
  margin-top: 4.8rem;
}
.feature .feature_img {
  border-radius: 0.8rem;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .feature {
    padding-top: 8rem;
  }
  .feature .feature_inner {
    width: 65.6rem;
  }
  .feature .p_heading_en {
    font-size: 6.4rem;
  }
  .feature .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .feature .feature_contents {
    flex-direction: column-reverse;
    gap: unset;
    margin-top: 6.4rem;
  }
  .feature .feature_details {
    margin-top: 2.4rem;
  }
  .feature .feature_num {
    font-size: 3rem;
  }
  .feature .feature_title {
    font-size: 3.2rem;
    margin-top: 1.6rem;
  }
  .feature .feature_description {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 3.2rem;
  }
  .feature .feature_img {
    width: 48rem;
    margin: 0 auto;
  }
}
@media screen and (max-width: 560px) {
  .feature {
    padding-top: 6.4rem;
  }
  .feature .feature_inner {
    width: 34.2rem;
  }
  .feature .p_heading_en {
    font-size: 4.8rem;
  }
  .feature .p_heading_ja {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  .feature .feature_contents {
    margin-top: 4rem;
  }
  .feature .feature_num {
    font-size: 2rem;
  }
  .feature .feature_title {
    font-size: 2.4rem;
    margin-top: 1rem;
  }
  .feature .feature_description {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 2.4rem;
  }
  .feature .feature_img {
    width: 100%;
  }
}
/************************
* case
************************/
.case {
  padding: 18rem 0 12rem;
}
.case .case_inner {
  width: 128rem;
  margin: 0 auto;
}
.case .p_heading_en {
  font-size: 8rem;
}
.case .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.case .case_contents {
  display: flex;
  justify-content: space-between;
  gap: 0 4.8rem;
}
.case .case_img {
  width: 69.6rem;
}
.case .case_img img {
  display: block;
  width: 100%;
}
.case .case_details {
  flex-basis: 0;
  flex-grow: 1;
  margin-top: 2.8rem;
}
.case .case_title {
  font-size: 3.6rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
  margin-top: 8rem;
}
.case .case_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.7777777778;
  color: var(--color-black);
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .case {
    padding: 10rem 0 8rem;
  }
  .case .case_inner {
    width: 65.6rem;
  }
  .case .case_heading {
    order: 1;
  }
  .case .p_heading_en {
    font-size: 8rem;
  }
  .case .p_heading_ja {
    font-size: 2rem;
    letter-spacing: 0.04em;
  }
  .case .case_contents {
    flex-direction: column;
    gap: unset;
  }
  .case .case_img {
    width: 48rem;
    margin: 4rem auto 0;
    order: 2;
  }
  .case .case_details {
    display: contents;
  }
  .case .case_title {
    font-size: 3.2rem;
    margin-top: 5.6rem;
    order: 3;
  }
  .case .case_description {
    font-size: 1.6rem;
    line-height: 1.75;
    margin-top: 3.2rem;
    order: 4;
  }
}
@media screen and (max-width: 560px) {
  .case {
    padding: 6.4rem 0;
  }
  .case .case_inner {
    width: 34.2rem;
  }
  .case .p_heading_en {
    font-size: 4.8rem;
  }
  .case .p_heading_ja {
    font-size: 1.6rem;
  }
  .case .case_img {
    width: 100%;
  }
  .case .case_title {
    font-size: 2.4rem;
    margin-top: 4rem;
  }
  .case .case_description {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 2.4rem;
  }
}
/************************
* spec
************************/
.spec {
  background-color: var(--color-back-blue);
  padding: 8rem 0;
}
.spec .spec_inner {
  width: 128rem;
  margin: 0 auto;
}
.spec .p_heading_en {
  font-size: 8rem;
}
.spec .p_heading_ja {
  font-weight: var(--fw-700);
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.spec .spec_tab_list {
  display: flex;
  gap: 0 4rem;
  margin-top: 8rem;
}
.spec .spec_tab_item {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25%;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2.4rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  text-align: center;
  padding-bottom: 2rem;
  cursor: pointer;
}
.spec .spec_tab_item::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #a1a1a1;
  transition: background-color 0.3s;
}
.spec .spec_tab_item.is-active::before {
  background-color: var(--color-blue);
}
@media (any-hover) {
  .spec .spec_tab_item:hover::before {
    background-color: var(--color-blue);
  }
}
.spec .spec_panel {
  display: none;
  background-color: var(--color-white);
  border-radius: 0.8rem;
  overflow: hidden;
  margin-top: 6.4rem;
}
.spec .spec_panel.is-active {
  display: flex;
}
.spec .spec_table {
  width: 100%;
}
.spec .spec_table_item {
  display: grid;
  grid-template-columns: 30rem 1fr;
}
.spec .spec_table_item:not(:last-of-type) {
  border-bottom: 1px solid var(--color-back-blue);
}
.spec .spec_table_item > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-white);
  background-color: var(--color-blue);
  padding: 2.4rem 0;
}
.spec .spec_table_item > dd {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2.4rem;
  font-weight: var(--fw-500);
  color: var(--color-black);
  text-align: center;
  margin-inline-start: unset;
  padding: 2.4rem 0;
}
.spec .spec_table_item > .fc-dd {
  flex-direction: column;
}
.spec .spec_table_item > .fc-dd > span {
  margin-top: 1.6rem;
}
.spec .spec_name {
  width: 100%;
  font-weight: var(--fw-900);
  text-align: center;
  margin-bottom: 2.4rem;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--color-back-blue);
}
.spec .server_image {
  width: 31.2rem;
}
.spec .btn_wrap {
  width: 37.2rem;
  min-height: 7.3rem;
  margin: 4rem auto 0;
}
.spec .btn_wrap::before {
  width: 24rem;
  height: 4.8rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 2.6rem) 0%, 100% 0%, 100% 1px, calc(0% + 2.6rem + 0.5px) 1px, 1px calc(0% + 2.6rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 2.6rem));
}
.spec .btn_wrap::after {
  width: 24rem;
  height: 4.8rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 2.6rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 2.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.6rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 2.6rem));
}
.spec .clipped_box {
  color: var(--color-white);
  clip-path: polygon(calc(0% + 2.4rem) 0%, 100% 0%, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0% 100%, 0% calc(0% + 2.4rem));
  padding: 0 2.4rem 0 2rem;
}
.spec .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 2.4rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 2.4rem + 0.5px), calc(100% - 2.4rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 2.4rem - 0.5px));
}
.spec .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 2.4rem) 0, 100% 0, 100% 1px, calc(0% + 2.4rem + 0.5px) 1px, 1px calc(0% + 2.4rem + 0.5px), 1px calc(100% - 1px), calc(100% - 2.4rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 2.4rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 2.4rem), calc(100% - 2.4rem) 100%, 0 100%, 0 calc(0% + 2.4rem));
  z-index: -2;
}
.spec .clipped_box .pipe {
  height: 4.8rem;
  margin-left: 2.4rem;
}
.spec .clipped_box .btn_arrow {
  margin-left: 2.4rem;
}
.spec .clipped_box:hover {
  color: var(--color-deep-blue);
}
.spec .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}
.spec .spec_price_box {
  margin-top: 8rem;
}
.spec .spec_price_box .spec_price_title {
  font-size: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.2rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.spec .spec_price_box .spec_price_contents {
  display: grid;
  grid-template-columns: 80rem 1fr;
  gap: 0 4.8rem;
  margin-top: 6.4rem;
}
.spec .spec_price_box .spec_price_panel {
  display: flex;
  background-color: var(--color-white);
  border-radius: 0.8rem;
  overflow: hidden;
}
.spec .spec_price_box .spec_price_table {
  width: 100%;
}
.spec .spec_price_box .spec_price_table_item {
  display: grid;
  grid-template-columns: 42rem 1fr;
}
.spec .spec_price_box .spec_price_table_item:not(:last-of-type) {
  border-bottom: 1px solid var(--color-back-blue);
}
.spec .spec_price_box .spec_price_table_item > dt {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-white);
  text-align: center;
  background-color: var(--color-blue);
  padding: 2.4rem 0;
}
.spec .spec_price_box .spec_price_table_item > dd {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.4rem;
  font-weight: var(--fw-500);
  color: var(--color-black);
  text-align: center;
  margin-inline-start: unset;
  padding: 2.4rem 0;
}
.spec .spec_price_box .spec_price_name {
  font-weight: var(--fw-900);
}
.spec .spec_price_box .spec_price_strong {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
.spec .spec_price_box .spec_price_details {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.spec .spec_price_box .spec_price_text {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  line-height: 2;
  color: var(--color-black);
}
.spec .spec_price_box .spec_price_text:not(:first-of-type) {
  margin-top: 2rem;
}
.spec .spec_price_box .spec_price_note {
  font-size: 1.6rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
}
.spec .spec_comparison_box {
  margin-top: 8rem;
}
.spec .spec_comparison_box .spec_comparison_title {
  font-size: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.2rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.spec .spec_comparison_box table {
  position: relative;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-top: 8.8rem;
}
.spec .spec_comparison_box thead tr,
.spec .spec_comparison_box tbody tr {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.spec .spec_comparison_box thead tr th {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #5e80e3;
  padding: 2rem 0;
}
.spec .spec_comparison_box thead tr th:first-of-type {
  background-color: transparent;
}
.spec .spec_comparison_box thead tr th:nth-of-type(2) {
  border-radius: 0.8rem 0.8rem 0 0;
}
.spec .spec_comparison_box thead tr th:nth-of-type(3) {
  border-radius: 0.8rem 0 0 0;
}
.spec .spec_comparison_box thead tr th:last-of-type {
  border-radius: 0 0.8rem 0 0;
}
.spec .spec_comparison_box .main_th {
  height: calc(100% + 2.4rem);
  background-color: var(--color-blue);
  margin-top: -2.4rem;
}
.spec .spec_comparison_box .spec_comparison_name {
  flex: 1;
  display: grid;
  align-items: center;
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: var(--color-white);
  margin-top: 1.8rem;
}
.spec .spec_comparison_box .spec_comparison_icon {
  margin: 0 auto;
}
.spec .spec_comparison_box .spec_comparison_icon.icon_server,
.spec .spec_comparison_box .spec_comparison_icon.icon_life,
.spec .spec_comparison_box .spec_comparison_icon.icon_airport,
.spec .spec_comparison_box .spec_comparison_icon.icon_container {
  width: 8rem;
}
.spec .spec_comparison_box .spec_comparison_icon.icon_laundry {
  width: 6.4rem;
}
.spec .spec_comparison_box .spec_comparison_icon.icon_mining {
  width: 11.4rem;
}
.spec .spec_comparison_box tbody {
  position: relative;
  display: block;
}
.spec .spec_comparison_box tbody::before {
  position: absolute;
  content: "";
  top: 0;
  left: 18.3rem;
  width: calc(14.2857142857% - 0.8rem);
  height: calc(100% - 0.4rem);
  border-left: 0.4rem solid var(--color-blue);
  border-right: 0.4rem solid var(--color-blue);
  border-bottom: 0.4rem solid var(--color-blue);
  z-index: 1;
}
.spec .spec_comparison_box tbody tr {
  overflow: hidden;
}
.spec .spec_comparison_box tbody tr:not(:last-of-type) {
  border-bottom: 1px solid #e4eef3;
}
.spec .spec_comparison_box tbody tr:first-of-type {
  border-radius: 0.8rem 0 0 0;
}
.spec .spec_comparison_box tbody tr:last-of-type {
  border-radius: 0 0 0.8rem 0.8rem;
}
.spec .spec_comparison_box tbody tr th {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 11.6rem;
  font-size: 2rem;
  font-weight: var(--fw-600);
  color: var(--color-white);
  background-color: var(--color-deep-blue);
}
.spec .spec_comparison_box tbody tr td {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
  text-align: center;
  background-color: var(--color-white);
  padding: 2.4rem 0;
}
.spec .spec_comparison_box tbody tr td:not(:nth-child(2)):not(:nth-child(7)) {
  border-right: 1px solid #e4eef3;
}
.spec .spec_comparison_box tbody tr .main_td {
  position: relative;
  font-size: 2.8rem;
  color: var(--color-blue);
}
.spec .spec_comparison_box .border {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0.4rem solid var(--color-blue);
}
.spec .spec_comparison_box tbody tr td span {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  margin-top: 0.2rem;
}

@media screen and (max-width: 768px) {
  .spec {
    padding: 6.4rem 0;
    overflow-x: hidden;
  }
  .spec .spec_inner {
    width: 65.6rem;
  }
  .spec .p_heading_en {
    font-size: 6.4rem;
    text-align: center;
  }
  .spec .p_heading_ja {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0;
    text-align: center;
    margin-top: 0.8rem;
  }
  .spec .spec_tab_list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 3.2rem;
    margin-top: 6.4rem;
  }
  .spec .spec_tab_item {
    width: 40%;
    padding-bottom: 1rem;
  }
  .spec .spec_panel {
    margin-top: 4.8rem;
  }
  .spec .spec_table_item {
    grid-template-columns: 20rem 1fr;
  }
  .spec .spec_table_item > dt {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .spec .spec_table_item > dd {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .spec .spec_table_item > .fc-dd > span {
    margin-top: 0.8rem;
  }
  .spec .spec_name {
    margin-bottom: 2rem;
    padding-bottom: 1.4rem;
  }
  .spec .server_image {
    width: 24rem;
  }
  .spec .spec_price_box {
    margin-top: 6.4rem;
  }
  .spec .spec_price_box .spec_price_title {
    font-size: 2.8rem;
  }
  .spec .spec_price_box .spec_price_contents {
    grid-template-columns: 1fr;
    gap: unset;
    margin-top: 3.2rem;
  }
  .spec .spec_price_box .spec_price_table_item {
    grid-template-columns: repeat(2, 1fr);
  }
  .spec .spec_price_box .spec_price_table_item > dt {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .spec .spec_price_box .spec_price_table_item > dd {
    font-size: 1.8rem;
    padding: 2rem 0;
  }
  .spec .spec_price_box .spec_price_strong {
    font-size: 2.4rem;
  }
  .spec .spec_price_box .spec_price_details {
    margin-top: 3.2rem;
  }
  .spec .spec_price_box .spec_price_text:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .spec .spec_price_box .spec_price_note {
    font-size: 1.4rem;
  }
  .spec .spec_comparison_box {
    margin-top: 6.4rem;
  }
  .spec .spec_comparison_box .spec_comparison_title {
    font-size: 2.8rem;
  }
  .spec .spec_comparison_box .spec_comparison_inner {
    width: calc(100% + 5.6rem);
    overflow-x: scroll;
  }
  .spec .spec_comparison_box table {
    width: 83.4rem;
    margin-top: 4.8rem;
  }
  .spec .spec_comparison_box thead tr th {
    padding: 1.6rem 0;
  }
  .spec .spec_comparison_box .main_th {
    height: 100%;
    margin-top: unset;
  }
  .spec .spec_comparison_box .spec_comparison_name {
    font-size: 1.4rem;
    margin-top: 0.8rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_server {
    width: 3.6rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_life {
    width: 3rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_airport,
  .spec .spec_comparison_box .spec_comparison_icon.icon_container {
    width: 2.8rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_laundry {
    width: 2.2rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_mining {
    width: 4rem;
  }
  .spec .spec_comparison_box tbody::before {
    left: 11.9rem;
    width: calc(14.2857142857% - 0.4rem);
    height: calc(100% - 0.2rem);
    border-left: 0.2rem solid var(--color-blue);
    border-right: 0.2rem solid var(--color-blue);
    border-bottom: 0.2rem solid var(--color-blue);
  }
  .spec .spec_comparison_box tbody tr th {
    font-size: 1.4rem;
    min-height: 12rem;
  }
  .spec .spec_comparison_box tbody tr td {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_comparison_box tbody tr .main_td {
    font-size: 1.8rem;
  }
  .spec .spec_comparison_box .null {
    width: 3.2rem;
  }
  .spec .spec_comparison_box .border {
    border: 0.2rem solid var(--color-blue);
  }
  .spec .spec_comparison_box tbody tr td span {
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
}
@media screen and (max-width: 560px) {
  .spec {
    padding: 4.8rem 0;
  }
  .spec .spec_inner {
    width: 34.2rem;
  }
  .spec .p_heading_en {
    font-size: 4.8rem;
  }
  .spec .p_heading_ja {
    font-size: 1.6rem;
  }
  .spec .spec_tab_list {
    gap: 1.6rem 0;
    margin-top: 4rem;
  }
  .spec .spec_tab_item {
    width: 90%;
    padding-bottom: 0.8rem;
  }
  .spec .spec_panel {
    margin-top: 2.4rem;
  }
  .spec .spec_table_item {
    grid-template-columns: 12rem 1fr;
  }
  .spec .spec_table_item > dt {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_table_item > dd {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_name {
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
  }
  .spec .server_image {
    width: 15.8rem;
  }
  .spec .btn_wrap {
    width: 32.8rem;
    min-height: 6.6rem;
  }
  .spec .btn_wrap::before {
    width: 21.8rem;
    height: 4.4rem;
  }
  .spec .btn_wrap::after {
    width: 21.8rem;
    height: 4.4rem;
  }
  .spec .clipped_box {
    font-size: 1.8rem;
    padding: 0 2rem;
  }
  .spec .clipped_box .pipe {
    height: 4.4rem;
    margin-left: 2rem;
  }
  .spec .clipped_box .btn_arrow {
    margin-left: 1.5rem;
  }
  .spec .spec_price_box {
    margin-top: 4rem;
  }
  .spec .spec_price_box .spec_price_title {
    font-size: 2.4rem;
  }
  .spec .spec_price_box .spec_price_contents {
    margin-top: 2.4rem;
  }
  .spec .spec_price_box .spec_price_table_item > dt {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_price_box .spec_price_table_item > dd {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_price_box .spec_price_strong {
    font-size: 2rem;
  }
  .spec .spec_price_box .spec_price_details {
    margin-top: 2rem;
  }
  .spec .spec_price_box .spec_price_text {
    font-size: 1.4rem;
    font-weight: var(--fw-400);
    line-height: 1.7142857143;
    color: var(--color-black);
  }
  .spec .spec_price_box .spec_price_text:not(:first-of-type) {
    margin-top: 1.6rem;
  }
  .spec .spec_comparison_box {
    margin-top: 4rem;
  }
  .spec .spec_comparison_box .spec_comparison_title {
    font-size: 2.4rem;
  }
  .spec .spec_comparison_box .spec_comparison_inner {
    width: calc(100% + 2.4rem);
  }
  .spec .spec_comparison_box table {
    margin-top: 2.4rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_server {
    width: 3.6rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_life {
    width: 3rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_airport,
  .spec .spec_comparison_box .spec_comparison_icon.icon_container {
    width: 2.8rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_laundry {
    width: 2.2rem;
  }
  .spec .spec_comparison_box .spec_comparison_icon.icon_mining {
    width: 4rem;
  }
  .spec .spec_comparison_box tbody tr th {
    font-size: 1.4rem;
    min-height: 9.6rem;
  }
  .spec .spec_comparison_box tbody tr td {
    font-size: 1.4rem;
    padding: 1.6rem 0;
  }
  .spec .spec_comparison_box tbody tr .main_td {
    font-size: 1.8rem;
  }
  .spec .spec_comparison_box .border {
    border: 0.2rem solid var(--color-blue);
  }
  .spec .spec_comparison_box tbody tr td span {
    font-size: 1.2rem;
    margin-top: 0.6rem;
  }
}
/************************
* flow
************************/
.flow {
  padding: 16rem 0 12rem;
}
.flow .flow_inner {
  display: grid;
  grid-template-columns: 1fr 100rem;
  align-items: baseline;
  gap: 0 10rem;
  width: 128rem;
  margin: 0 auto;
}
.flow .flow_heading {
  position: sticky;
  top: 24rem;
  height: -moz-fit-content;
  height: fit-content;
}
.flow .p_heading_en {
  font-size: 8rem;
}
.flow .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.flow .flow_contents {
  position: relative;
}
.flow .flow_contents::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 8.7rem;
  width: 0.2rem;
  height: calc(100% - 5.26rem);
  border-left: 0.2rem dashed var(--color-blue);
  z-index: -1;
}
.flow .flow_note_text {
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
}
.flow .flow_item {
  display: flex;
  gap: 0 9.6rem;
  min-height: 19.4rem;
  border: 1px solid var(--color-blue);
  border-radius: 0.8rem;
  margin-top: 3.2rem;
  padding: 3.2rem 4.8rem;
}
.flow .flow_item:nth-of-type(odd) {
  background-color: var(--color-blue);
}
.flow .flow_item:nth-of-type(odd) .item_step_text {
  color: var(--color-white);
}
.flow .flow_item:nth-of-type(odd) .item_step_num {
  color: var(--color-white);
}
.flow .flow_item:nth-of-type(odd) .flow_item_title {
  color: var(--color-white);
}
.flow .flow_item:nth-of-type(odd) .flow_item_description {
  color: var(--color-white);
}
.flow .flow_item:nth-of-type(odd) .flow_item_details::before {
  background-color: var(--color-white);
}
.flow .flow_item:nth-of-type(even) {
  background-color: var(--color-white);
}
.flow .flow_item:nth-of-type(even) .item_step_text {
  color: var(--color-blue);
}
.flow .flow_item:nth-of-type(even) .item_step_num {
  color: var(--color-blue);
}
.flow .flow_item:nth-of-type(even) .flow_item_title {
  color: var(--color-blue);
}
.flow .flow_item:nth-of-type(even) .flow_item_description {
  color: var(--color-blue);
}
.flow .flow_item:nth-of-type(even) .flow_item_details::before {
  background-color: var(--color-blue);
}
.flow .item_step_text {
  display: block;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.2rem;
  font-weight: var(--fw-500);
}
.flow .item_step_num {
  display: block;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 6.4rem;
  font-weight: var(--fw-700);
}
.flow .flow_item_details {
  position: relative;
}
.flow .flow_item_details::before {
  position: absolute;
  content: "";
  top: -1.2rem;
  left: -4.8rem;
  width: 0.2rem;
  height: 15.2rem;
}
.flow .flow_item_title {
  font-size: 2.4rem;
  font-weight: var(--fw-900);
}
.flow .flow_item_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .flow {
    padding: 8rem 0;
  }
  .flow .flow_inner {
    grid-template-columns: 1fr;
    gap: unset;
    width: 65.6rem;
  }
  .flow .flow_heading {
    position: static;
    top: auto;
    height: auto;
  }
  .flow .p_heading_en {
    font-size: 6.4rem;
  }
  .flow .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .flow .flow_contents {
    margin-top: 6.4rem;
  }
  .flow .flow_contents::before {
    left: 7.8rem;
  }
  .flow .flow_note_text {
    font-size: 1.6rem;
  }
  .flow .flow_item {
    flex-direction: column;
    gap: unset;
    min-height: auto;
    padding: 1rem 2rem 2rem;
  }
  .flow .flow_item:nth-of-type(odd) .flow_item_step::before {
    background-color: var(--color-white);
  }
  .flow .flow_item:nth-of-type(even) .flow_item_step::before {
    background-color: var(--color-blue);
  }
  .flow .flow_item_step {
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0 0.4rem;
    width: -moz-fit-content;
    width: fit-content;
  }
  .flow .flow_item_step::before {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0.2rem;
    background-color: var(--color-white);
  }
  .flow .item_step_text {
    font-size: 2.8rem;
  }
  .flow .item_step_num {
    font-size: 4.8rem;
  }
  .flow .flow_item_details {
    margin-top: 1.6rem;
  }
  .flow .flow_item_details::before {
    display: none;
  }
  .flow .flow_item_title {
    font-size: 2rem;
  }
  .flow .flow_item_description {
    font-size: 1.6rem;
    margin-top: 1.6rem;
  }
}
@media screen and (max-width: 560px) {
  .flow {
    padding: 6.4rem 0;
  }
  .flow .flow_inner {
    width: 34.2rem;
  }
  .flow .p_heading_en {
    font-size: 4.8rem;
  }
  .flow .p_heading_ja {
    font-size: 1.6rem;
  }
  .flow .flow_contents {
    margin-top: 4rem;
  }
  .flow .flow_contents::before {
    left: 5.6rem;
    height: calc(100% - 7.82rem);
  }
  .flow .flow_note_text {
    font-size: 1.4rem;
  }
  .flow .item_step_text {
    font-size: 2.4rem;
  }
  .flow .item_step_num {
    font-size: 4rem;
  }
  .flow .flow_item_title {
    font-size: 1.6rem;
  }
  .flow .flow_item_description {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
}
/************************
* support
************************/
.support {
  background-image: url("../../assets/images/webp/support_bg.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 8.8rem 0 8.8rem;
}
.support .support_inner {
  width: 128rem;
  margin: 0 auto;
}
.support .p_heading_en {
  font-size: 8rem;
  color: var(--color-white);
}
.support .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.support .support_contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4.4rem 4rem;
  margin-top: 6.4rem;
}
.support .support_wrap {
  position: relative;
  width: 34.2rem;
  min-height: 22rem;
}
.support .support_wrap::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 22.4rem;
  height: 15rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(0% + 4.8rem) 0%, 100% 0%, 100% 2px, calc(0% + 4.8rem + 1px) 2px, 2px calc(0% + 4.8rem + 1px), 2px 100%, 0% 100%, 0% calc(0% + 4.8rem));
  z-index: 1;
}
.support .support_wrap::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 22.4rem;
  height: 15rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(100% - 4.8rem) 100%, 0% 100%, 0% calc(100% - 2px), calc(100% - 4.8rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 4.8rem - 1px), calc(100% - 2px) 0%, 100% 0%, 100% calc(100% - 4.8rem));
  z-index: 1;
}
.support .clipped_box {
  flex-direction: column;
  color: var(--color-white);
  clip-path: polygon(calc(0% + 4.8rem) 0%, 100% 0%, 100% calc(100% - 4.8rem), calc(100% - 4.8rem) 100%, 0% 100%, 0% calc(0% + 4.8rem));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 4rem;
}
.support .clipped_box::before {
  clip-path: polygon(calc(0% + 4.8rem - 1px) 0%, 100% 0%, 100% calc(100% - 4.8rem + 1px), calc(100% - 4.8rem + 1px) 100%, 0% 100%, 0% calc(0% + 4.8rem - 1px));
}
.support .clipped_box::after {
  clip-path: polygon(calc(0% + 4.8rem) 0, 100% 0, 100% 2px, calc(0% + 4.8rem + 1px) 2px, 2px calc(0% + 4.8rem + 1px), 2px calc(100% - 2px), calc(100% - 4.8rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 4.8rem - 1px), calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 4.8rem), calc(100% - 4.8rem) 100%, 0 100%, 0 calc(0% + 4.8rem));
  z-index: -2;
}
.support .clipped_box:hover {
  color: var(--color-white);
}
.support .clipped_box:hover::before {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 30px 0 rgba(0, 255, 255, 0.25) inset;
}
.support .icon_update,
.support .icon_secure,
.support .icon_crypto,
.support .icon_info {
  width: 7.2rem;
}
.support .icon_virtual {
  width: 6.4rem;
}
.support .support_text {
  font-size: 1.8rem;
  font-weight: var(--fw-700);
  line-height: 1.6;
  text-align: center;
  margin-top: 2rem;
}
.support .support_slider {
  display: none;
}

@media screen and (max-width: 768px) {
  .support {
    background-image: url("../../assets/images/webp/support_bg_sp.webp");
    padding: 8rem 0 8rem;
  }
  .support .support_inner {
    width: 65.6rem;
  }
  .support .p_heading_en {
    font-size: 6.4rem;
  }
  .support .p_heading_ja {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
  .support .support_contents {
    display: none;
  }
  .support .support_wrap {
    width: 38.2rem;
    min-height: 32.2rem;
    margin: 0 auto;
    padding: 1rem;
  }
  .support .support_wrap::before {
    top: 0;
    left: 0;
    width: 20.5rem;
    height: 25.2rem;
    z-index: 1;
  }
  .support .support_wrap::after {
    bottom: 0;
    right: 0;
    width: 20.5rem;
    height: 25.2rem;
    z-index: 1;
  }
  .support .clipped_box {
    clip-path: polygon(calc(0% + 4.5rem) 0%, 100% 0%, 100% calc(100% - 4.5rem), calc(100% - 4.5rem) 100%, 0% 100%, 0% calc(0% + 4.5rem));
    -webkit-backdrop-filter: blur(8px);
            backdrop-filter: blur(8px);
    padding: 8rem 3.2rem;
  }
  .support .clipped_box::before {
    clip-path: polygon(calc(0% + 4.5rem - 1px) 0%, 100% 0%, 100% calc(100% - 4.5rem + 1px), calc(100% - 4.5rem + 1px) 100%, 0% 100%, 0% calc(0% + 4.5rem - 1px));
  }
  .support .clipped_box::after {
    clip-path: polygon(calc(0% + 4.5rem) 0, 100% 0, 100% 2px, calc(0% + 4.5rem + 1px) 2px, 2px calc(0% + 4.5rem + 1px), 2px calc(100% - 2px), calc(100% - 4.5rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 4.5rem - 1px), calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 4.5rem), calc(100% - 4.5rem) 100%, 0 100%, 0 calc(0% + 4.5rem));
    z-index: -2;
  }
  .support .icon_update,
  .support .icon_secure,
  .support .icon_crypto,
  .support .icon_info {
    width: 13.2rem;
  }
  .support .icon_virtual {
    width: 12rem;
  }
  .support .support_text {
    margin-top: 4rem;
  }
  .support .support_slider {
    display: block;
    margin-top: 6.4rem;
  }
  .support .slider_details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0 2rem;
    margin-top: 4rem;
  }
  .support .progress_bar {
    position: relative;
    width: 40rem;
    height: 0.4rem;
    background: #a6a6a6;
    overflow: hidden;
  }
  .support .progressbar_in {
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--color-cyan);
    transform: scaleX(0);
    transform-origin: left center;
    transition-timing-function: linear;
  }
  .support .slide_counter {
    display: flex;
    align-items: center;
    gap: 0 0.8rem;
    font-size: 2.4rem;
    font-weight: var(--fw-500);
    color: var(--color-cyan);
  }
  .support .current {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 5.6rem;
    height: auto;
    aspect-ratio: 1/1;
  }
  .support .progress_circle {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  .support path.circle-bar {
    stroke: var(--color-cyan);
    stroke-width: 0.2rem;
    stroke-linecap: round;
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    transition: stroke-dashoffset 0.5s linear;
  }
  .support .pipe {
    display: block;
    width: 0.2rem;
    height: 4rem;
    background-color: var(--color-cyan);
  }
}
@media screen and (max-width: 560px) {
  .support {
    padding: 6.4rem 0;
  }
  .support .support_inner {
    width: 34.2rem;
  }
  .support .p_heading_en {
    font-size: 4.8rem;
  }
  .support .p_heading_ja {
    font-size: 1.6rem;
  }
  .support .support_wrap {
    width: 100%;
    min-height: 40rem;
  }
  .support .clipped_box {
    padding: 8rem 3rem;
  }
  .support .icon_update,
  .support .icon_secure,
  .support .icon_crypto,
  .support .icon_info {
    width: 11.4rem;
  }
  .support .icon_virtual {
    width: 10.8rem;
  }
  .support .support_text {
    margin-top: 4.8rem;
  }
  .support .slider_details {
    margin-top: 3.2rem;
  }
  .support .progress_bar {
    width: 24rem;
  }
}
/************************
* faq
************************/
.faq {
  position: relative;
  padding: 16rem 0;
}
.faq .faq_inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 96rem;
  gap: 14.8rem;
  width: 128rem;
  margin: 0 auto;
  z-index: 2;
}
.faq .p_heading_en {
  font-size: 8rem;
}
.faq .p_heading_ja {
  font-size: 2rem;
  letter-spacing: 0.04em;
}
.faq .faq_inner_details {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  border: 1px solid var(--color-blue);
  border-radius: 0.6rem;
}
.faq .faq_inner_details:not(:last-of-type) {
  margin-bottom: 2.4rem;
}
.faq .faq_inner_details.is-opened .details_question::after {
  rotate: -180deg;
}
.faq .faq_inner_details.is-opened .border {
  opacity: 1;
}
.faq .faq_inner_details.is-hidden {
  display: none;
}
.faq .details_question {
  position: relative;
  display: block;
  padding: 2.4rem 9.2rem;
  cursor: pointer;
  transition: transform 0.4s;
}
.faq .details_question::-webkit-details-marker {
  display: none;
}
.faq .details_question::before, .faq .details_question::after {
  position: absolute;
}
.faq .details_question::before {
  content: "Q";
  display: block;
  top: 1.6rem;
  left: 4rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.6rem;
  font-weight: var(--fw-600);
  line-height: 1;
  color: var(--color-blue);
}
.faq .details_question::after {
  content: "";
  width: 3rem;
  height: 1.5rem;
  top: 3rem;
  right: 4rem;
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2232%22%20height%3D%2218%22%20viewBox%3D%220%200%2032%2018%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cline%20x1%3D%2215.2929%22%20y1%3D%2217.2929%22%20x2%3D%2231.2929%22%20y2%3D%221.29289%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3Cline%20y1%3D%22-1%22%20x2%3D%2222.6274%22%20y2%3D%22-1%22%20transform%3D%22matrix(-0.707107%20-0.707107%20-0.707107%200.707107%2016%2018)%22%20stroke%3D%22%23525252%22%20stroke-width%3D%222%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  rotate: 0deg;
  transition: rotate 0.4s;
}
.faq .border {
  position: absolute;
  content: "";
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 88rem;
  height: 1px;
  background-color: #666;
  opacity: 0;
  transition: opacity 0.2s;
}
.faq .details_answer {
  overflow: hidden;
}
.faq .details_answer p {
  position: relative;
  display: block;
  padding: 2.4rem 9.2rem;
  margin-top: 0;
  transition: all 0.4s ease-out;
}
.faq .details_answer p::before {
  position: absolute;
  content: "A";
  display: block;
  top: 1.4rem;
  left: 4rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.6rem;
  font-weight: var(--fw-600);
  line-height: 1;
  color: var(--color-deep-blue);
}
.faq .details_answer p > a {
  color: #428bca;
}
.faq .btn_wrap {
  width: 24.8rem;
  min-height: 5.8rem;
  margin: 4.8rem auto 0;
}
.faq .btn_wrap::before {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 1.8rem) 0%, 100% 0%, 100% 1px, calc(0% + 1.8rem + 0.5px) 1px, 1px calc(0% + 1.8rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 1.8rem));
}
.faq .btn_wrap::after {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 1.8rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 1.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.8rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 1.8rem));
}
.faq .clipped_box {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: var(--color-white);
  clip-path: polygon(calc(0% + 1.6rem) 0%, 100% 0%, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0% 100%, 0% calc(0% + 1.6rem));
  border: none;
  padding: 0 2.4rem 0 2rem;
}
.faq .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 1.6rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 1.6rem + 0.5px), calc(100% - 1.6rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 1.6rem - 0.5px));
}
.faq .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 1.6rem) 0, 100% 0, 100% 1px, calc(0% + 1.6rem + 0.5px) 1px, 1px calc(0% + 1.6rem + 0.5px), 1px calc(100% - 1px), calc(100% - 1.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.6rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 calc(0% + 1.6rem));
  z-index: -2;
}
.faq .clipped_box .pipe {
  height: 4.8rem;
  margin-left: 2.4rem;
}
.faq .clipped_box .btn_arrow {
  margin-left: 2.4rem;
}
.faq .clipped_box.is-open .btn_arrow {
  transform: rotate(-180deg);
}
.faq .clipped_box:hover {
  color: var(--color-deep-blue);
}
.faq .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}

@media screen and (max-width: 768px) {
  .faq {
    padding-block: 6.4rem 12rem;
  }
  .faq .faq_inner {
    grid-template-columns: 1fr;
    gap: unset;
    width: 65.6rem;
  }
  .faq .p_heading_en {
    font-size: 6.4rem;
    text-align: center;
  }
  .faq .p_heading_ja {
    display: block;
    font-size: 1.8rem;
    letter-spacing: 0;
    text-align: center;
  }
  .faq .faq_right_content {
    margin-top: 4rem;
  }
  .faq .faq_inner_details {
    font-size: 1.6rem;
  }
  .faq .details_question {
    padding: 2.4rem 8.8rem;
  }
  .faq .details_question::before {
    top: 2rem;
    left: 3.2rem;
    font-size: 3.2rem;
  }
  .faq .details_question::after {
    width: 2.8rem;
    height: 1.2rem;
    top: 2.8rem;
    right: 3.2rem;
  }
  .faq .border {
    width: 58.2rem;
  }
  .faq .details_answer p {
    padding: 2.4rem 8.8rem;
  }
  .faq .details_answer p::before {
    top: 1.8rem;
    left: 3.2rem;
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 560px) {
  .faq .faq_inner {
    width: 34.2rem;
  }
  .faq .p_heading_en {
    font-size: 4.8rem;
  }
  .faq .p_heading_ja {
    font-size: 1.6rem;
  }
  .faq .faq_inner_details {
    font-size: 1.4rem;
  }
  .faq .faq_inner_details:not(:last-of-type) {
    margin-bottom: 1rem;
  }
  .faq .details_question {
    padding: 2.2rem 4.8rem;
  }
  .faq .details_question::before {
    top: 2rem;
    left: 1.6rem;
    font-size: 2.4rem;
  }
  .faq .details_question::after {
    width: 1.8rem;
    height: 0.8rem;
    top: 2.8rem;
    right: 1.6rem;
  }
  .faq .border {
    width: 25.4rem;
  }
  .faq .details_answer p {
    padding: 2.2rem 4.4rem;
  }
  .faq .details_answer p::before {
    top: 2rem;
    left: 1.6rem;
    font-size: 2.4rem;
  }
  .faq .btn_wrap {
    width: 16.8rem;
    min-height: 4rem;
    margin: 4rem auto 0;
  }
  .faq .btn_wrap::before {
    width: 11.6rem;
    height: 3.4rem;
  }
  .faq .btn_wrap::after {
    width: 11.6rem;
    height: 3.4rem;
  }
  .faq .clipped_box {
    padding: 0 1.4rem 0 1.6rem;
  }
  .faq .clipped_box .pipe {
    height: 2rem;
    margin-left: 1.4rem;
  }
  .faq .clipped_box .btn_arrow {
    margin-left: 2rem;
  }
}
/************************
* top
************************/
.top_content {
  overflow-x: hidden;
}

/************************
* fv
************************/
.fv {
  padding: 16rem 0 54.4rem;
  /* マスクでテキストを左→右に表示させる */
  /* グラデーションをランダムっぽく動かすアニメーション */
}
.fv .fv_catch {
  padding-left: 8rem;
}
.fv .catch_title_ja {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 8.8rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.04em;
  color: transparent;
  background: linear-gradient(270deg, #2a54dc, #020d21, #2a54dc, #020d21, #2a54dc);
  background-size: 800% 800%;
  background-clip: text;
  -webkit-background-clip: text;
  mask-image: linear-gradient(to right, transparent 0%, var(--color-black) 0%, var(--color-black) 10%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--color-black) 0%, var(--color-black) 10%, transparent 100%);
  mask-size: 300% 100%;
  -webkit-mask-size: 300% 100%;
  mask-position: 0% 0%;
  -webkit-mask-position: 150% 0%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  animation: revealMask 3s ease forwards, gradientMove 12s ease-in-out infinite;
}
.fv .catch_title_en {
  position: relative;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 2.4rem;
  font-weight: var(--fw-900);
  color: transparent;
  background: linear-gradient(270deg, #2a54dc, #020d21, #2a54dc, #020d21, #2a54dc);
  background-size: 800% 800%;
  -webkit-background-clip: text;
          background-clip: text;
  mask-image: linear-gradient(to right, transparent 0%, var(--color-black) 0%, var(--color-black) 10%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, var(--color-black) 0%, var(--color-black) 10%, transparent 100%);
  mask-size: 300% 100%;
  -webkit-mask-size: 300% 100%;
  mask-position: 0% 0%;
  -webkit-mask-position: 150% 0%;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  animation: revealMask 2.5s ease forwards, gradientMove 12s ease-in-out infinite;
  margin-top: 0.8rem;
}
@keyframes revealMask {
  0% {
    mask-position: 150% 0%;
    -webkit-mask-position: 150% 0%;
  }
  100% {
    mask-position: 0% 0%;
    -webkit-mask-position: 0% 0%;
  }
}
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  25% {
    background-position: 50% 100%;
  }
  50% {
    background-position: 100% 50%;
  }
  75% {
    background-position: 50% 0%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.fv .fv_service_contents {
  position: relative;
  margin-top: 6rem;
}
.fv .fv_service_texts {
  position: absolute;
  top: -12rem;
  right: 7.2rem;
  z-index: 2;
}
.fv .service_sub_title {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.fv .fv_service_texts_item_wrap {
  position: relative;
  width: 52rem;
  margin-top: 1.6rem;
}
.fv .fv_service_texts_item {
  position: absolute;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  top: 0;
  left: 0;
  width: 100%;
  gap: 0 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 0);
  transition: opacity 0.7s ease-in-out;
}
.fv .fv_service_texts_item.is-active {
  opacity: 1;
  visibility: visible;
}
.fv .service_main_title {
  font-size: 3.2rem;
  font-weight: var(--fw-900);
  color: var(--color-black);
}
.fv .service_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.7777777778;
  color: var(--color-black);
  margin-top: 1.6rem;
}
.fv .service_link_wrap {
  flex-shrink: 0;
  width: 5.4rem;
  height: auto;
  aspect-ratio: 1/1;
}
.fv .service_link {
  display: block;
  width: 100%;
  height: 100%;
}
.fv .service_link svg {
  width: 100%;
}
@media (any-hover: hover) {
  .fv .service_link:hover .icon_service_arrow path {
    opacity: 1;
    transform: translate(0, 0);
    animation: hoverServiceArrow 0.4s ease forwards;
  }
}
@keyframes hoverServiceArrow {
  0% {
    opacity: 1;
    transform: translate(0, 0);
  }
  40% {
    opacity: 0;
    transform: translate(0.5rem, -0.5rem);
  }
  60% {
    opacity: 0;
    transform: translate(-0.5rem, 0.5rem);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
.fv .fv_service_contents_nav {
  display: flex;
  align-items: center;
  margin-top: 35rem;
}
.fv .anchor {
  position: relative;
  width: 3.2rem;
  height: auto;
  aspect-ratio: 1/1;
  margin: 0 0.9rem;
  cursor: pointer;
}
.fv .anchor_gray {
  position: absolute;
  width: 0.8rem;
  height: auto;
  aspect-ratio: 1/1;
  background: var(--color-loader-gray);
  border-radius: 50%;
  top: calc(50% - 0.4rem);
  left: calc(50% - 0.4rem);
}
.fv .anchor.current .anchor_gray {
  scale: 1.1;
  background: var(--color-blue);
}
.fv .circular-loader {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}
.fv .circular-loader circle {
  stroke-width: 0.2rem;
  stroke: var(--color-blue);
  fill: none;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  will-change: stroke-dashoffset;
  transition: opacity 0.3s;
}
.fv .anchor.current .circular-loader circle {
  animation: progress 6s linear forwards;
}
@keyframes progress {
  from {
    stroke-dashoffset: 140;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.fv .fv_slider_box {
  position: absolute;
  top: 17rem;
  left: 0;
  width: 100vw;
  z-index: 1;
}
.fv .fv_slider_box::before {
  content: "";
  position: absolute;
  top: -1.4rem;
  left: 14rem;
  width: 64.8rem;
  height: 44.8rem;
  background: linear-gradient(0deg, var(--color-blue) 0%, var(--color-deep-blue) 60%, var(--color-blue) 100%);
  clip-path: polygon(calc(0% + 6.5rem) 0, 100% 0, 100% 0.8rem, calc(0% + 6.5rem + 0.5rem) 0.8rem, 0.8rem calc(0% + 6.5rem + 0.5rem), 0.8rem calc(100% - 0.8rem), calc(100% - 6.5rem - 0.5rem) calc(100% - 0.8rem), calc(100% - 0.8rem) calc(100% - 6.5rem - 0.5rem), calc(100% - 0.8rem) 0.8rem, 100% 0.8rem, 100% calc(100% - 6.5rem), calc(100% - 6.5rem) 100%, 0 100%, 0 calc(0% + 6.5rem));
  z-index: 1;
}
.fv .fv_slider_ctrl_box {
  overflow: hidden;
}
.fv .fv_slider {
  width: 100%;
  padding-left: 15.4rem;
  overflow: visible;
}
.fv .fv_slider_slide {
  width: 62rem;
  transform-origin: bottom center;
  transition: 1s transform ease-in-out, 0.3s transform-origin ease-in-out;
  will-change: transform;
  backface-visibility: hidden;
}
.fv .fv_slider_slide:not(.swiper-slide-active) {
  transform: scale(0.5) translateX(-52rem);
}
.fv .fv_slider_slide.swiper-slide-prev {
  transform: scale(0.8322580645);
}
.fv .fv_slider_slide.swiper-slide-next {
  transform: scale(0.664516129) translateX(-7rem);
}
.fv .fv_slider_slide img {
  width: 100%;
  clip-path: polygon(calc(0% + 6rem) 0, 100% 0, 100% calc(100% - 6rem), calc(100% - 6rem) 100%, 0 100%, 0 calc(0% + 6rem));
}

@media screen and (max-width: 768px) {
  .fv {
    padding: 16rem 0 36.4rem;
  }
  .fv .fv_catch {
    width: 60rem;
    margin: 0 auto;
    padding-left: 0;
  }
  .fv .catch_title_ja {
    font-size: 6rem;
  }
  .fv .catch_title_en {
    font-size: 2rem;
    margin-top: 0.8rem;
  }
  .fv .fv_service_contents {
    width: 60rem;
    margin: 6.4rem auto 0;
  }
  .fv .fv_service_texts {
    position: relative;
    top: 0;
    right: auto;
  }
  .fv .service_sub_title {
    font-size: 1.8rem;
  }
  .fv .fv_service_texts_item_wrap {
    margin-top: 1.6rem;
  }
  .fv .fv_service_texts_item {
    position: absolute;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    top: 0;
    left: 0;
    width: 100%;
    gap: 0 2rem;
  }
  .fv .service_main_title {
    font-size: 2.4rem;
  }
  .fv .service_description {
    font-size: 1.6rem;
  }
  .fv .service_link_wrap {
    width: 4rem;
  }
  .fv .service_link svg {
    width: 4rem;
  }
  .fv .fv_service_contents_nav {
    margin-top: 25.4rem;
  }
  .fv .anchor {
    width: 2.4rem;
    margin: 0 0.9rem;
  }
  .fv .anchor_gray {
    width: 0.6rem;
    top: calc(50% - 0.4rem);
    left: calc(50% - 0.3rem);
  }
  .fv .fv_slider_box {
    top: auto;
    left: unset;
    bottom: -46.2rem;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .fv .fv_slider_box::before {
    display: none;
  }
  .fv .fv_slider {
    transform: initial;
    padding-left: unset;
  }
  .fv .fv_slider_slide {
    width: 56rem;
  }
  .fv .fv_slider_slide:not(.swiper-slide-active) {
    transform: scale(0.8);
  }
  .fv .fv_slider_slide.swiper-slide-prev {
    transform: scale(0.8);
    transform-origin: bottom right;
  }
  .fv .fv_slider_slide.swiper-slide-next {
    transform: scale(0.8);
    transform-origin: bottom left;
  }
}
@media screen and (max-width: 560px) {
  .fv {
    padding: 14.8rem 0 13rem;
  }
  .fv .fv_catch {
    width: 34.7rem;
    margin: 0 auto;
  }
  .fv .catch_title_ja {
    font-size: 3.9rem;
    font-feature-settings: "palt";
  }
  .fv .catch_title_en {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
  .fv .fv_service_contents {
    width: 33.5rem;
    margin: 7.2rem auto 0;
  }
  .fv .fv_service_texts {
    position: relative;
    top: 0;
    right: auto;
  }
  .fv .service_sub_title {
    font-size: 1.6rem;
  }
  .fv .fv_service_texts_item_wrap {
    width: 100%;
  }
  .fv .fv_service_texts_item {
    gap: 0 1rem;
  }
  .fv .service_main_title {
    font-size: 2.4rem;
  }
  .fv .service_description {
    font-size: 1.4rem;
  }
  .fv .service_link_wrap {
    width: 3.6rem;
  }
  .fv .service_link svg {
    width: 3.6rem;
  }
  .fv .fv_service_contents_nav {
    margin-top: 30.4rem;
  }
  .fv .fv_slider_box {
    bottom: -25rem;
    margin-top: unset;
  }
  .fv .fv_slider_slide {
    width: 33.6rem;
  }
  .fv .fv_slider_slide:not(.swiper-slide-active):not(.swiper-slide-prev) {
    transform: scale(0.75);
  }
  .fv .fv_slider_slide.swiper-slide-prev {
    transform: scale(0.75);
  }
  .fv .fv_slider_slide.swiper-slide-next {
    transform: scale(0.75);
  }
}
/************************
* message
************************/
.message {
  background-image: url(../../assets/images/webp/bgImg_01.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 22.4rem 0 6.4rem;
}
.message .message_inner {
  display: flex;
  align-items: flex-end;
  gap: 0 8rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.message .message_title {
  font-size: 4rem;
  font-weight: var(--fw-900);
  line-height: normal;
  color: var(--color-white);
}
.message .message_description {
  font-size: 1.8rem;
  font-weight: var(--fw-600);
  line-height: 2.2222222222;
  color: var(--color-white);
  margin-top: 4.8rem;
}
.message .message_heading {
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .message {
    padding: 20rem 0 6.4rem;
  }
  .message .message_inner {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: unset;
    width: 65.6rem;
  }
  .message .message_details {
    margin-top: 4rem;
  }
  .message .message_title {
    font-size: 3.2rem;
  }
  .message .message_description {
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
}
@media screen and (max-width: 560px) {
  .message .message_inner {
    width: 34.2rem;
  }
  .message .message_title {
    font-size: 2rem;
  }
  .message .message_description {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
}
/************************
* mission
************************/
.mission {
  position: relative;
  padding: 10rem 0 26.8rem;
}
.mission .mission_inner {
  width: 128rem;
  margin: 0 auto;
}
.mission .heading_en {
  color: var(--color-blue);
}
.mission .heading_ja {
  color: var(--color-black);
}
.mission .mission_content {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 0.2rem;
  margin-top: 8rem;
}
.mission .mission_details {
  flex-basis: 0%;
  flex-grow: 1;
}
.mission .mission_title {
  font-family: "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 6.4rem;
  font-weight: var(--fw-700);
  color: var(--color-blue);
}
.mission .mission_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 2.2222222222;
  color: var(--color-black);
  margin-top: 4rem;
  padding-right: 17.4rem;
}
.mission .mission_img {
  width: 62rem;
}
.mission .mission_img svg {
  width: 100%;
  overflow: visible;
}
.mission .mission_img .cube01,
.mission .mission_img .cube02,
.mission .mission_img .smartphone,
.mission .mission_img .fan01,
.mission .mission_img .fan02,
.mission .mission_img .condenser02,
.mission .mission_img .monitor,
.mission .mission_img .database,
.mission .mission_img .hdd03_wrap,
.mission .mission_img .hdd02,
.mission .mission_img .hdd01,
.mission .mission_img .window,
.mission .mission_img .cpu,
.mission .mission_img .computer,
.mission .mission_img .cloud,
.mission .mission_img .fan03,
.mission .mission_img .condenser01,
.mission .mission_img .gear {
  animation-name: floatingAnimation;
  animation-duration: 5s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.mission .mission_img .cube01 {
  animation-delay: 0s;
}
.mission .mission_img .cube02 {
  animation-delay: 0.1s;
}
.mission .mission_img .smartphone {
  animation-delay: 0.2s;
}
.mission .mission_img .fan01 {
  animation-delay: 0.3s;
}
.mission .mission_img .fan02 {
  animation-delay: 0.4s;
}
.mission .mission_img .condenser02 {
  animation-delay: 0.5s;
}
.mission .mission_img .monitor {
  animation-delay: 0.6s;
}
.mission .mission_img .database {
  animation-delay: 0.7s;
}
.mission .mission_img .hdd03_wrap {
  animation-delay: 0.8s;
}
.mission .mission_img .hdd02 {
  animation-delay: 0.9s;
}
.mission .mission_img .hdd01 {
  animation-delay: 1s;
}
.mission .mission_img .window {
  animation-delay: 1.1s;
}
.mission .mission_img .cpu {
  animation-delay: 1.2s;
}
.mission .mission_img .computer {
  animation-delay: 1.3s;
}
.mission .mission_img .cloud {
  animation-delay: 1.4s;
}
.mission .mission_img .fan03 {
  animation-delay: 1.5s;
}
.mission .mission_img .condenser01 {
  animation-delay: 1.6s;
}
.mission .mission_img .gear {
  animation-delay: 1.7s;
}
@keyframes floatingAnimation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-1.2rem);
  }
  100% {
    transform: translateY(0);
  }
}
.mission .btn_wrap {
  width: 25.5rem;
  min-height: 6.5rem;
  margin-top: 4.8rem;
}
.mission .btn_wrap::before {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 1.8rem) 0%, 100% 0%, 100% 1px, calc(0% + 1.8rem + 0.5px) 1px, 1px calc(0% + 1.8rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 1.8rem));
}
.mission .btn_wrap::after {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 1.8rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 1.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.8rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 1.8rem));
}
.mission .clipped_box {
  color: var(--color-white);
  clip-path: polygon(calc(0% + 1.6rem) 0%, 100% 0%, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0% 100%, 0% calc(0% + 1.6rem));
  padding: 0 2rem 0 4rem;
}
.mission .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 1.6rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 1.6rem + 0.5px), calc(100% - 1.6rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 1.6rem - 0.5px));
}
.mission .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 1.6rem) 0, 100% 0, 100% 1px, calc(0% + 1.6rem + 0.5px) 1px, 1px calc(0% + 1.6rem + 0.5px), 1px calc(100% - 1px), calc(100% - 1.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.6rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 calc(0% + 1.6rem));
  z-index: -2;
}
.mission .clipped_box .pipe {
  height: 2.4rem;
  margin-left: 4rem;
}
.mission .clipped_box .btn_arrow {
  margin-left: 2rem;
}
.mission .clipped_box:hover {
  color: var(--color-deep-blue);
}
.mission .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}
.mission .top_slide__text {
  position: absolute;
  bottom: -9.2rem;
  left: 0;
  display: flex;
  width: 100vw;
  overflow: hidden;
  z-index: 2;
}
.mission .slide__text-inner {
  display: flex;
  gap: 3.2rem;
  flex: 0 0 auto;
  white-space: nowrap;
  padding-left: 3.2rem;
}
.mission .slide__text-inner:nth-child(odd) {
  animation: moveToLeft 500s -250s infinite linear;
}
.mission .slide__text-inner:nth-child(even) {
  animation: moveToLeft2 500s infinite linear;
}
.mission .slide__text-item {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  flex: 0 0 auto;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 24rem;
  font-weight: var(--fw-700);
  letter-spacing: -0.04em;
  color: var(--color-deep-blue);
  white-space: nowrap;
}
.mission .strong_blue {
  font-weight: var(--fw-900);
  color: var(--color-blue);
}
@keyframes moveToLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes moveToLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}

@media screen and (max-width: 768px) {
  .mission {
    padding: 6.4rem 0 20.8rem;
  }
  .mission .mission_inner {
    display: flex;
    flex-direction: column;
    width: 65.6rem;
  }
  .mission .mission_content {
    display: contents;
  }
  .mission .mission_details {
    flex-basis: auto;
    margin-top: 6.4rem;
    order: 1;
  }
  .mission .mission_title {
    font-size: 4.8rem;
  }
  .mission .mission_description {
    font-size: 1.6rem;
    line-height: 1.3333333333;
    margin-top: 3.2rem;
    padding-right: unset;
  }
  .mission .mission_img {
    width: 48rem;
    margin: 7.2rem auto 0;
    order: 3;
  }
  .mission .btn_wrap {
    order: 2;
  }
  .mission .top_slide__text {
    bottom: 2.2rem;
  }
  .mission .slide__text-inner {
    gap: 1.6rem;
    padding-left: 1.6rem;
  }
  .mission .slide__text-item {
    gap: 1.6rem;
    font-size: 16rem;
  }
}
@media screen and (max-width: 560px) {
  .mission .mission_inner {
    width: 34.2rem;
  }
  .mission .mission_details {
    margin-top: 4rem;
  }
  .mission .mission_title {
    font-size: 3.6rem;
    font-feature-settings: "palt";
  }
  .mission .mission_description {
    font-size: 1.4rem;
    line-height: 1.7142857143;
    margin-top: 2.4rem;
  }
  .mission .mission_img {
    width: 28rem;
    margin: 6.4rem auto 0;
  }
  .mission .btn_wrap {
    width: 16.8rem;
    min-height: 4rem;
    margin-top: 4rem;
  }
  .mission .btn_wrap::before {
    width: 11.6rem;
    height: 3.4rem;
  }
  .mission .btn_wrap::after {
    width: 11.6rem;
    height: 3.4rem;
  }
  .mission .btn_wrap .clipped_box {
    padding: 0 1.4rem 0 2rem;
  }
  .mission .btn_wrap .clipped_box .pipe {
    height: 2rem;
    margin-left: 2rem;
  }
  .mission .btn_wrap .clipped_box .btn_arrow {
    margin-left: 1.4rem;
  }
  .mission .top_slide__text {
    bottom: 6.8rem;
  }
  .mission .slide__text-item {
    font-size: 12rem;
  }
}
/************************
* service
************************/
.service .service_container {
  position: relative;
  padding: 22.6rem 0 17.6rem;
}
.service .service_container::before {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  background: rgba(23, 51, 77, 0.8);
  z-index: 1;
}
.service .service_bg {
  position: absolute;
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../assets/images/webp/bgImg_02.webp");
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
.service .service_inner {
  position: relative;
  width: 120rem;
  margin: 0 auto;
  z-index: 2;
}
.service .service_contents {
  display: flex;
  justify-content: center;
  gap: 0 4.8rem;
}
.service .service_details {
  flex-shrink: 0;
  width: 48.2rem;
}
.service .service_heading {
  color: var(--color-white);
  margin-top: 4.8rem;
}
.service .service_description {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  line-height: 1.7777777778;
  color: var(--color-white);
  margin-top: 6.4rem;
}
.service .service_anchor {
  position: relative;
  margin-top: 5.6rem;
}
.service .service_anchor::before {
  position: absolute;
  content: "";
  top: 0;
  left: 1rem;
  width: 0.2rem;
  height: 100%;
  background-color: #717171;
}
.service .service_anchor_item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 1.6rem;
  padding-left: 4.8rem;
}
.service .service_anchor_item:not(:first-of-type) {
  margin-top: 2.6rem;
}
.service .service_anchor_item::before {
  position: absolute;
  content: "";
  top: 1.1rem;
  left: 0;
  width: 2.2rem;
  height: 0.2rem;
  background-color: #717171;
}
.service .service_anchor_item.current::before {
  background-color: var(--color-cyan);
}
.service .service_anchor_num {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.8rem;
  font-weight: var(--fw-500);
  color: #717171;
}
.service .service_anchor_num.current {
  color: var(--color-cyan);
}
.service .service_anchor_title {
  font-size: 1.8rem;
  font-weight: var(--fw-500);
  color: #717171;
}
.service .service_anchor_title.current {
  color: var(--color-cyan);
}
.service .circular-loader {
  position: absolute;
  top: -1.3rem;
  left: -1.3rem;
  width: 4.6rem;
  height: auto;
  aspect-ratio: 1/1;
  transform: rotate(-90deg);
}
.service .circular-loader circle {
  stroke-width: 0.2rem;
  stroke: var(--color-cyan);
  fill: none;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
  will-change: stroke-dashoffset;
  transition: opacity 0.3s;
}
.service .service_anchor_num.current .circular-loader circle {
  animation: progress 5s linear forwards;
}
@keyframes progress {
  from {
    stroke-dashoffset: 140;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.service .btn_wrap {
  width: 25.5rem;
  min-height: 6.5rem;
  margin-top: 4.8rem;
}
.service .btn_wrap::before {
  width: 17.8rem;
  height: 4.2rem;
  clip-path: polygon(calc(0% + 1.8rem) 0%, 100% 0%, 100% 1px, calc(0% + 1.8rem + 0.5px) 1px, 1px calc(0% + 1.8rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 1.8rem));
}
.service .btn_wrap::after {
  width: 17.8rem;
  height: 4.2rem;
  clip-path: polygon(calc(100% - 1.8rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 1.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.8rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 1.8rem));
}
.service .btn_wrap .clipped_box {
  clip-path: polygon(calc(0% + 1.6rem) 0%, 100% 0%, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0% 100%, 0% calc(0% + 1.6rem));
  padding: 0 2rem 0 4rem;
}
.service .btn_wrap .clipped_box::before {
  clip-path: polygon(calc(0% + 1.6rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 1.6rem + 0.5px), calc(100% - 1.6rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 1.6rem - 0.5px));
}
.service .btn_wrap .clipped_box::after {
  clip-path: polygon(calc(0% + 1.6rem) 0, 100% 0, 100% 1px, calc(0% + 1.6rem + 0.5px) 1px, 1px calc(0% + 1.6rem + 0.5px), 1px calc(100% - 1px), calc(100% - 1.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.6rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 calc(0% + 1.6rem));
  z-index: -2;
}
.service .btn_wrap .clipped_box .pipe {
  height: 2.4rem;
  margin-left: 4rem;
}
.service .btn_wrap .clipped_box .btn_arrow {
  margin-left: 2rem;
}
.service .service_slide_container {
  min-height: 75.6rem;
}
.service .service_wrap {
  position: relative;
  width: auto;
}
.service .service_wrap::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 42.4rem;
  height: 50.2rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(0% + 10.4rem) 0%, 100% 0%, 100% 2px, calc(0% + 10.4rem + 1px) 2px, 2px calc(0% + 10.4rem + 1px), 2px 100%, 0% 100%, 0% calc(0% + 10.4rem));
  z-index: 1;
}
.service .service_wrap::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -10px;
  width: 42.4rem;
  height: 50.2rem;
  background: var(--color-cyan);
  clip-path: polygon(calc(100% - 10.4rem) 100%, 0% 100%, 0% calc(100% - 2px), calc(100% - 10.4rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 10.4rem - 1px), calc(100% - 2px) 0%, 100% 0%, 100% calc(100% - 10.4rem));
  z-index: 1;
}
.service .service_wrap .clipped_box {
  flex-direction: column;
  color: var(--color-white);
  clip-path: polygon(calc(0% + 10.4rem) 0%, 100% 0%, 100% calc(100% - 10.4rem), calc(100% - 10.4rem) 100%, 0% 100%, 0% calc(0% + 10.4rem));
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  padding: 8rem;
}
.service .service_wrap .clipped_box::before {
  clip-path: polygon(calc(0% + 10.4rem - 1px) 0%, 100% 0%, 100% calc(100% - 10.4rem + 1px), calc(100% - 10.4rem + 1px) 100%, 0% 100%, 0% calc(0% + 10.4rem - 1px));
}
.service .service_wrap .clipped_box::after {
  clip-path: polygon(calc(0% + 10.4rem) 0, 100% 0, 100% 2px, calc(0% + 10.4rem + 1px) 2px, 2px calc(0% + 10.4rem + 1px), 2px calc(100% - 2px), calc(100% - 10.4rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 10.4rem - 1px), calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 10.4rem), calc(100% - 10.4rem) 100%, 0 100%, 0 calc(0% + 10.4rem));
  z-index: -2;
}
.service .service_wrap .clipped_box:hover {
  color: var(--color-white);
}
.service .service_wrap .clipped_box:hover::before {
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0px 0px 30px 0 rgba(0, 255, 255, 0.25) inset;
}
.service .service_wrap .service_box {
  justify-content: flex-start;
}
.service .service_slide_img {
  border-radius: 0.8rem;
  overflow: hidden;
}
.service .service_slide_details {
  margin-top: 2.4rem;
}
.service .service_slide_subtitle {
  display: flex;
  align-items: center;
  gap: 0 1rem;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 2rem;
  font-weight: var(--fw-700);
  color: var(--color-cyan);
}
.service .service_slide_num {
  font-size: 2.8rem;
}
.service .service_slide_title {
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 3.2rem;
  font-weight: var(--fw-600);
  color: var(--color-cyan);
  margin-top: 1rem;
}
.service .service_slide_description {
  font-size: 1.6rem;
  font-weight: var(--fw-600);
  line-height: 1.7777777778;
  color: var(--color-cyan);
  margin-top: 2.4rem;
}

@media screen and (max-width: 768px) {
  .service .service_container {
    padding: 0 0 8rem;
  }
  .service .service_container::before {
    clip-path: polygon(0rem 25rem, 100% 25rem, 100% 100%, 0% 100%);
  }
  .service .service_bg {
    clip-path: polygon(0rem 25rem, 100% 25rem, 100% 100%, 0% 100%);
  }
  .service .service_inner {
    display: flex;
    flex-direction: column;
    width: 65.6rem;
    margin: 0 auto;
  }
  .service .service_contents {
    display: contents;
  }
  .service .service_details {
    display: contents;
  }
  .service .service_heading {
    margin-top: unset;
    order: 1;
  }
  .service .heading_en {
    color: var(--color-blue);
  }
  .service .heading_ja {
    color: var(--color-black);
  }
  .service .service_description {
    font-size: 1.6rem;
    line-height: 2;
    color: var(--color-black);
    margin-top: 6.4rem;
    order: 2;
  }
  .service .service_anchor {
    margin-top: 6.4rem;
    margin-left: 2.4rem;
    order: 4;
  }
  .service .service_anchor_item {
    gap: 0 1.6rem;
    padding-left: 6rem;
  }
  .service .service_anchor_item:not(:first-of-type) {
    margin-top: 2rem;
  }
  .service .service_anchor_num {
    font-size: 1.6rem;
  }
  .service .service_anchor_title {
    font-size: 1.6rem;
  }
  .service .circular-loader {
    top: -1.1rem;
    left: -1.1rem;
    width: 4rem;
  }
  .service .btn_wrap {
    width: 25.5rem;
    min-height: 6.5rem;
    margin: 4.8rem auto 0;
    order: 5;
  }
  .service .service_slide_container {
    display: contents;
  }
  .service .service_wrap {
    width: 100%;
    min-height: 75.8rem;
    margin-top: 8.8rem;
    order: 3;
  }
  .service .service_slide {
    display: flex;
    flex-direction: column;
  }
  .service .service_slide_img {
    margin-top: 2.4rem;
    order: 2;
  }
  .service .service_slide_details {
    display: contents;
  }
  .service .service_slide_subtitle {
    gap: 0 0.8rem;
    font-size: 2rem;
    color: var(--color-white);
    order: 1;
  }
  .service .service_slide_num {
    font-size: 2.8rem;
    color: var(--color-white);
  }
  .service .service_slide_title {
    font-size: 2.8rem;
    color: var(--color-white);
    order: 3;
  }
  .service .service_slide_description {
    font-size: 1.6rem;
    line-height: 1.7142857143;
    color: var(--color-white);
    margin-top: 2rem;
    order: 4;
  }
}
@media screen and (max-width: 560px) {
  .service .service_container {
    padding: 0 0 6.4rem;
  }
  .service .service_container::before {
    clip-path: polygon(0rem 25rem, 100% 25rem, 100% 100%, 0% 100%);
  }
  .service .service_bg {
    clip-path: polygon(0rem 25rem, 100% 25rem, 100% 100%, 0% 100%);
  }
  .service .service_inner {
    width: 34.2rem;
  }
  .service .service_description {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
  .service .service_anchor {
    margin-top: 3.2rem;
    margin-left: 1.6rem;
  }
  .service .service_anchor_item {
    gap: 0 1.6rem;
  }
  .service .service_anchor_num {
    font-size: 1.4rem;
  }
  .service .service_anchor_title {
    font-size: 1.4rem;
  }
  .service .circular-loader {
    top: -1rem;
    left: -1rem;
    width: 3.6rem;
  }
  .service .btn_wrap {
    width: 16.8rem;
    min-height: 4rem;
    margin-top: 4rem;
  }
  .service .btn_wrap::before {
    width: 11.6rem;
    height: 3.4rem;
  }
  .service .btn_wrap::after {
    width: 11.6rem;
    height: 3.4rem;
  }
  .service .btn_wrap .clipped_box {
    padding: 0 1.2rem 0 1.8rem;
  }
  .service .btn_wrap .clipped_box .pipe {
    height: 2rem;
    margin-left: 2rem;
  }
  .service .btn_wrap .clipped_box .btn_arrow {
    width: 1.2rem;
    margin-left: 1.4rem;
  }
  .service .service_wrap {
    min-height: 58.6rem;
  }
  .service .service_wrap::before {
    top: -8px;
    left: -8px;
    width: 22.2rem;
    height: 31.2rem;
    clip-path: polygon(calc(0% + 5.2rem) 0%, 100% 0%, 100% 2px, calc(0% + 5.2rem + 1px) 2px, 2px calc(0% + 5.2rem + 1px), 2px 100%, 0% 100%, 0% calc(0% + 5.2rem));
  }
  .service .service_wrap::after {
    bottom: -8px;
    right: -8px;
    width: 22.2rem;
    height: 31.2rem;
    clip-path: polygon(calc(100% - 5.2rem) 100%, 0% 100%, 0% calc(100% - 2px), calc(100% - 5.2rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 5.2rem - 1px), calc(100% - 2px) 0%, 100% 0%, 100% calc(100% - 5.2rem));
  }
  .service .service_wrap .clipped_box {
    clip-path: polygon(calc(0% + 5.2rem) 0%, 100% 0%, 100% calc(100% - 5.2rem), calc(100% - 5.2rem) 100%, 0% 100%, 0% calc(0% + 5.2rem));
    padding: 4.8rem 2rem;
  }
  .service .service_wrap .clipped_box::before {
    clip-path: polygon(calc(0% + 5.2rem - 1px) 0%, 100% 0%, 100% calc(100% - 5.2rem + 1px), calc(100% - 5.2rem + 1px) 100%, 0% 100%, 0% calc(0% + 5.2rem - 1px));
  }
  .service .service_wrap .clipped_box::after {
    clip-path: polygon(calc(0% + 5.2rem) 0, 100% 0, 100% 2px, calc(0% + 5.2rem + 1px) 2px, 2px calc(0% + 5.2rem + 1px), 2px calc(100% - 2px), calc(100% - 5.2rem - 1px) calc(100% - 2px), calc(100% - 2px) calc(100% - 5.2rem - 1px), calc(100% - 2px) 2px, 100% 2px, 100% calc(100% - 5.2rem), calc(100% - 5.2rem) 100%, 0 100%, 0 calc(0% + 5.2rem));
  }
  .service .service_slide_subtitle {
    gap: 0 0.4rem;
    font-size: 1.8rem;
  }
  .service .service_slide_num {
    font-size: 2.4rem;
  }
  .service .service_slide_title {
    font-size: 1.8rem;
  }
  .service .service_slide_description {
    font-size: 1.4rem;
    margin-top: 1.6rem;
  }
}
/************************
* product
************************/
.product {
  position: relative;
  background-image: url("../../assets/images/webp/bgImg_03.webp");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 5.6rem 0 24rem;
  overflow: hidden;
}
.product .product_inner {
  padding-right: 8rem;
}
.product .product_content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0 9.4rem;
}
.product .product_img {
  width: 64rem;
  margin-left: 7.5rem;
}
.product .product_details {
  flex-basis: 0%;
  flex-grow: 1;
}
.product .mission_heading {
  margin-top: 18rem;
}
.product .heading_en {
  color: var(--color-blue);
}
.product .product_title {
  font-size: 4rem;
  font-weight: var(--fw-600);
  color: var(--color-black);
  margin-top: 8rem;
}
.product .product_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  line-height: 1.7777777778;
  color: var(--color-black);
  margin-top: 4rem;
}
.product .btn_wrap {
  width: 25.5rem;
  min-height: 6.5rem;
  margin-top: 4.8rem;
}
.product .btn_wrap::before {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 1.8rem) 0%, 100% 0%, 100% 1px, calc(0% + 1.8rem + 0.5px) 1px, 1px calc(0% + 1.8rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 1.8rem));
}
.product .btn_wrap::after {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 1.8rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 1.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.8rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 1.8rem));
}
.product .btn_wrap:nth-of-type(3) {
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2.4rem;
}
.product .clipped_box {
  color: var(--color-white);
  clip-path: polygon(calc(0% + 1.6rem) 0%, 100% 0%, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0% 100%, 0% calc(0% + 1.6rem));
  padding: 0 2rem 0 4rem;
}
.product .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 1.6rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 1.6rem + 0.5px), calc(100% - 1.6rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 1.6rem - 0.5px));
}
.product .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 1.6rem) 0, 100% 0, 100% 1px, calc(0% + 1.6rem + 0.5px) 1px, 1px calc(0% + 1.6rem + 0.5px), 1px calc(100% - 1px), calc(100% - 1.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.6rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 calc(0% + 1.6rem));
  z-index: -2;
}
.product .clipped_box .pipe {
  height: 2.4rem;
  margin-left: 4rem;
}
.product .clipped_box .btn_arrow {
  margin-left: 2rem;
}
.product .clipped_box:hover {
  color: var(--color-deep-blue);
}
.product .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}
.product .under_text {
  position: absolute;
  bottom: -6rem;
  left: 0;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 24rem;
  font-weight: var(--fw-700);
  color: var(--color-white);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .product {
    padding: 8rem 0;
  }
  .product .product_inner {
    display: flex;
    flex-direction: column;
    width: 65.6rem;
    margin: 0 auto;
    padding-right: unset;
  }
  .product .product_content {
    display: contents;
  }
  .product .product_img {
    width: 50rem;
    margin: 4.8rem auto 0;
    order: 4;
  }
  .product .product_details {
    display: contents;
  }
  .product .product_heading {
    margin-top: unset;
    order: 1;
  }
  .product .product_title {
    font-size: 3.2rem;
    margin-top: 6.4rem;
    order: 2;
  }
  .product .product_description {
    font-size: 1.6rem;
    line-height: 1.7142857143;
    margin-top: 2rem;
    order: 3;
  }
  .product .btn_wrap {
    margin: 4.8rem auto 0;
    order: 5;
  }
  .product .under_text {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .product {
    padding: 6.4rem 0;
  }
  .product .product_inner {
    width: 34.2rem;
  }
  .product .product_img {
    width: 100%;
    margin: 2.4rem auto 0;
  }
  .product .product_title {
    font-size: 2rem;
    margin-top: 4rem;
  }
  .product .product_description {
    font-size: 1.4rem;
    margin-top: 1rem;
  }
  .product .btn_wrap {
    width: 16.8rem;
    min-height: 4rem;
    margin: 4rem auto 0;
  }
  .product .btn_wrap::before {
    width: 11.6rem;
    height: 3.4rem;
  }
  .product .btn_wrap::after {
    width: 11.6rem;
    height: 3.4rem;
  }
  .product .btn_wrap .clipped_box {
    padding: 0 1.2rem 0 1.8rem;
  }
  .product .btn_wrap .clipped_box .pipe {
    height: 2rem;
    margin-left: 2rem;
  }
  .product .btn_wrap .clipped_box .btn_arrow {
    width: 1.2rem;
    margin-left: 1.4rem;
  }
}
/************************
* news
************************/
.news {
  padding: 16rem 0 20rem;
}
.news .news_inner {
  width: 128rem;
  margin: 0 auto;
}
.news .news_contents {
  display: grid;
  grid-template-columns: 1fr 84rem;
  gap: 0 18rem;
}
.news .heading_en {
  color: var(--color-blue);
}
.news .news_description {
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  margin-top: 8rem;
}
.news .btn_wrap {
  width: 25.5rem;
  min-height: 6.5rem;
  margin-top: 4.8rem;
}
.news .btn_wrap::before {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(0% + 1.8rem) 0%, 100% 0%, 100% 1px, calc(0% + 1.8rem + 0.5px) 1px, 1px calc(0% + 1.8rem + 0.5px), 1px 100%, 0% 100%, 0% calc(0% + 1.8rem));
}
.news .btn_wrap::after {
  width: 17.8rem;
  height: 4.2rem;
  background: var(--color-deep-blue);
  clip-path: polygon(calc(100% - 1.8rem) 100%, 0% 100%, 0% calc(100% - 1px), calc(100% - 1.8rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.8rem - 0.5px), calc(100% - 1px) 0%, 100% 0%, 100% calc(100% - 1.8rem));
}
.news .clipped_box {
  color: var(--color-white);
  clip-path: polygon(calc(0% + 1.6rem) 0%, 100% 0%, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0% 100%, 0% calc(0% + 1.6rem));
  padding: 0 2rem 0 4rem;
}
.news .clipped_box::before {
  background: rgb(18, 45, 63);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
  clip-path: polygon(calc(0% + 1.6rem - 0.5px) 0%, 100% 0%, 100% calc(100% - 1.6rem + 0.5px), calc(100% - 1.6rem + 0.5px) 100%, 0% 100%, 0% calc(0% + 1.6rem - 0.5px));
}
.news .clipped_box::after {
  background: transparent;
  clip-path: polygon(calc(0% + 1.6rem) 0, 100% 0, 100% 1px, calc(0% + 1.6rem + 0.5px) 1px, 1px calc(0% + 1.6rem + 0.5px), 1px calc(100% - 1px), calc(100% - 1.6rem - 0.5px) calc(100% - 1px), calc(100% - 1px) calc(100% - 1.6rem - 0.5px), calc(100% - 1px) 1px, 100% 1px, 100% calc(100% - 1.6rem), calc(100% - 1.6rem) 100%, 0 100%, 0 calc(0% + 1.6rem));
  z-index: -2;
}
.news .clipped_box .pipe {
  height: 2.4rem;
  margin-left: 4rem;
}
.news .clipped_box .btn_arrow {
  margin-left: 2rem;
}
.news .clipped_box:hover {
  color: var(--color-deep-blue);
}
.news .clipped_box:hover::before {
  background: rgba(42, 66, 115, 0.1);
  box-shadow: 0px 0px 30px 0 rgb(18, 45, 63) inset;
}
.news .news_item:not(:first-of-type) {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid #9ca8ad;
}
.news .news_item_info {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0 12rem;
  padding-left: 2.8rem;
  opacity: 1;
  transform: scale(0.999) translateY(0) translateZ(0);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: transform, opacity;
}
.news .news_item_info::before {
  position: absolute;
  content: "";
  top: 0.4rem;
  left: 0;
  width: 1rem;
  height: auto;
  aspect-ratio: 1/1;
  background-color: var(--color-blue);
  border-radius: 50%;
}
.news .news_category {
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.news .news_date {
  position: relative;
  font-family: "Sen", "Noto Sans JP", "Noto Serif JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  font-size: 1.4rem;
  font-weight: var(--fw-400);
  color: #9ca8ad;
}
.news .news_date::before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10rem;
  transform: translateY(-50%);
  width: 8rem;
  height: 1px;
  background-color: #9ca8ad;
}
.news .news_item_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 0 4rem;
  margin-top: 2.4rem;
}
.news .news_item_title {
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  font-size: 1.8rem;
  font-weight: var(--fw-400);
  color: var(--color-black);
  overflow: hidden;
  opacity: 1;
  transform: scale(0.999) translateY(0) translateZ(0);
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1);
  will-change: transform, opacity;
}
.news .icon_news_arrow {
  flex-shrink: 0;
  width: 5.4rem;
  height: auto;
  aspect-ratio: 1/1;
}
@media (any-hover: hover) {
  .news .news_item_link:hover .news_item_info,
  .news .news_item_link:hover .news_item_title {
    opacity: 0.6;
    transform: scale(0.97) translateY(0) translateZ(0);
    transition: all 0.5s cubic-bezier(0.39, 0.575, 0.565, 1);
    will-change: transform, opacity;
  }
}

@media screen and (max-width: 768px) {
  .news {
    padding: 8rem 0;
  }
  .news .news_inner {
    display: flex;
    flex-direction: column;
    width: 65.6rem;
  }
  .news .news_contents {
    display: contents;
  }
  .news .news_details {
    display: contents;
  }
  .news .news_heading {
    order: 1;
  }
  .news .news_description {
    font-size: 1.6rem;
    margin-top: 6.4rem;
    order: 2;
  }
  .news .btn_wrap {
    margin: 7.2rem auto 0;
    order: 4;
  }
  .news .news_list {
    margin-top: 6.4rem;
    order: 3;
  }
  .news .news_item_info {
    gap: 0 8rem;
    padding-left: 1.6rem;
  }
  .news .news_item_info::before {
    width: 0.8rem;
  }
  .news .news_date {
    font-size: 1.4rem;
  }
  .news .news_date::before {
    left: -6.4rem;
    width: 4.8rem;
  }
  .news .news_item_title_wrap {
    display: contents;
  }
  .news .news_item_title {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
  .news .icon_news_arrow {
    display: none;
  }
}
@media screen and (max-width: 560px) {
  .news {
    padding: 6.4rem 0;
  }
  .news .news_inner {
    width: 34.2rem;
  }
  .news .news_description {
    font-size: 1.4rem;
    margin-top: 4rem;
  }
  .news .btn_wrap {
    width: 16.8rem;
    min-height: 4rem;
    margin: 6.4rem auto 0;
  }
  .news .btn_wrap::before {
    width: 11.6rem;
    height: 3.4rem;
  }
  .news .btn_wrap::after {
    width: 11.6rem;
    height: 3.4rem;
  }
  .news .btn_wrap .clipped_box {
    padding: 0 1.2rem 0 1.8rem;
  }
  .news .btn_wrap .clipped_box .pipe {
    height: 2rem;
    margin-left: 2rem;
  }
  .news .btn_wrap .clipped_box .btn_arrow {
    width: 1.2rem;
    margin-left: 1.4rem;
  }
  .news .news_list {
    margin-top: 4rem;
  }
  .news .news_item:not(:first-of-type) {
    margin-top: 3.2rem;
    padding-top: 3.2rem;
  }
  .news .news_item_info {
    gap: 0 6.4rem;
    padding-left: 1.2rem;
  }
  .news .news_category {
    font-size: 1.2rem;
  }
  .news .news_date {
    font-size: 1.2rem;
  }
  .news .news_date::before {
    left: -5.6rem;
    width: 4.8rem;
  }
  .news .news_item_title {
    font-size: 1.4rem;
  }
}
/*# sourceMappingURL=app.css.map */
