@charset "UTF-8";
/*
  Media Query
  @include mediaquery(**){ 

  }
  default sm
*/
/*---------------------
  CSS variable
----------------------*/
:root {
  --font-main: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Lexend", sans-serif;
  --color-heading: #36374E;
  --color-txt: #1B1A25;
  --color-subtxt: #6A6B7D;
  --color-border: #ccc;
  --color-grayborder: #D9D9D9;
  --color-lightborder: #E7E7E7;
  --color-dark: #38364E;
  --color-light: #A1A1AC;
  --color-gray: #F8F8F8;
  --color-lightgray: #F5F4F7;
  --color-red: #E02424;
  --color-blue: #0056CF;
  --header: 8.5rem;
}
@media screen and (min-width: 980px) {
  :root {
    --header: 11.8rem;
    --scroll: 9rem;
  }
}

/*---------------------
  reset
----------------------*/
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

*:where(:not(fieldset, progress, meter)) {
  border-width: 0;
  border-style: solid;
  background-origin: border-box;
  background-repeat: no-repeat;
}

html {
  block-size: 100%;
  -webkit-text-size-adjust: none;
  font-size: 2.5641025641vw;
  scroll-padding-top: 8.5rem;
}
@media screen and (min-width: 576px) {
  html {
    font-size: 62.5%;
    scroll-padding-top: 12rem;
  }
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
body {
  text-rendering: optimizeSpeed;
  min-block-size: 100%;
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--color-txt);
  font-family: var(--font-main);
  background-color: #fff;
}

:where(video, canvas, audio, iframe, embed, object) {
  display: block;
}

:where(img, svg, video) {
  block-size: auto;
  max-inline-size: 100%;
  vertical-align: middle;
}

:where(svg) {
  stroke: none;
  fill: none;
}

:where(svg):where(:not([width])) {
  inline-size: 5rem;
}

:where(input, button, textarea, select),
:where(input[type=file])::-webkit-file-upload-button {
  color: inherit;
  font: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  word-spacing: inherit;
}

:where(button) {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  appearance: none;
}

:where(textarea) {
  resize: vertical;
}

@supports (resize: block) {
  :where(textarea) {
    resize: block;
  }
}
:where(em) {
  font-style: normal;
}

:where(p, h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
}

:where(h1, h2, h3, h4, h5, h6) {
  overflow-wrap: break-word;
  color: var(--color-heading);
}

:where(h1, .h1) {
  font-size: 4rem;
}
@media screen and (min-width: 980px) {
  :where(h1, .h1) {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 1200px) {
  :where(h1, .h1) {
    font-size: 6rem;
  }
}

:where(h2, .h2) {
  font-size: 2.8rem;
}
@media screen and (min-width: 980px) {
  :where(h2, .h2) {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  :where(h2, .h2) {
    font-size: 4rem;
  }
}

:where(h3, .h3) {
  font-size: 2.4rem;
}
@media screen and (min-width: 980px) {
  :where(h3, .h3) {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 1200px) {
  :where(h3, .h3) {
    font-size: 3.2rem;
  }
}

:where(h4, .h4) {
  font-size: 2rem;
}
@media screen and (min-width: 980px) {
  :where(h4, .h4) {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1200px) {
  :where(h4, .h4) {
    font-size: 2.4rem;
  }
}

:where(h5, .h5) {
  font-size: 1.8rem;
}
@media screen and (min-width: 980px) {
  :where(h5, .h5) {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 1200px) {
  :where(h5, .h5) {
    font-size: 2.7rem;
  }
}

:where(p, ul, ol) {
  font-size: 1.6rem;
}

:where(p) {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  :where(p) {
    line-height: 2;
  }
}

:where(ul, ol) {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

:where(a) {
  color: currentColor;
  text-decoration: none;
}

:where(table) {
  border-collapse: collapse;
}

:where(a[href], area, button, input, label[for], select, summary, textarea, [tabindex]:not([tabindex*="-"])) {
  cursor: pointer;
  touch-action: manipulation;
}

:where(input[type=file]) {
  cursor: auto;
}

:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  cursor: pointer;
}

@media (prefers-reduced-motion: no-preference) {
  :focus-visible {
    transition: outline-offset 145ms cubic-bezier(0.25, 0, 0.4, 1);
  }
  :where(:not(:active)):focus-visible {
    transition-duration: 0.25s;
  }
}
:where(:not(:active)):focus-visible {
  outline: none;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset]),
:where(input[type=file])::-webkit-file-upload-button,
:where(input[type=file])::file-selector-button {
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  user-select: none;
  text-align: center;
}

:where(button, button[type], input[type=button], input[type=submit], input[type=reset])[disabled] {
  cursor: not-allowed;
}

:where(input[type=text], input[type=tel], input[type=email], textarea) {
  background-color: var(--color-lightgray);
  border-radius: 0.8rem;
  padding: 1.2rem 1.6rem;
  width: 100%;
}

::placeholder {
  color: #aaa;
  font-weight: 500;
}

:where(input[aria-invalid=true], textarea[aria-invalid=true]) {
  outline: 0.3rem solid #FFCFCF;
  outline-offset: -0.3rem;
}

/*---------------------
  layout
----------------------*/
.container {
  padding-inline: 2rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .container {
    padding-inline: 2.6rem;
  }
}
@media screen and (min-width: 980px) {
  .container {
    padding-inline: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .container {
    padding-inline: 4rem;
  }
}

@media screen and (min-width: 980px) {
  .inner {
    max-width: 112rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .inner--xsmall {
    max-width: 76rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .inner--small {
    max-width: 80rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 768px) {
  .inner--midium {
    max-width: 96rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 1200px) {
  .inner--wide {
    max-width: 136rem;
    margin-inline: auto;
  }
}
.inner-radius {
  border-radius: 1.6rem;
}
@media screen and (min-width: 768px) {
  .inner-radius {
    border-radius: 2rem;
  }
}

.sec {
  padding-top: 6.4rem;
  padding-bottom: 12rem;
}
@media screen and (min-width: 768px) {
  .sec {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
@media screen and (min-width: 980px) {
  .sec {
    padding-top: 12.8rem;
    padding-bottom: 12.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .sec {
    padding-top: 16rem;
    padding-bottom: 16rem;
  }
}

.page--col {
  display: grid;
  row-gap: 8rem;
}

.grid {
  display: grid;
}
.grid--col1-3 {
  display: grid;
  gap: 1.6rem 0;
}
@media screen and (min-width: 980px) {
  .grid--col1-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
.grid--col2-3 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.2rem 1.8rem;
}
@media screen and (min-width: 768px) {
  .grid--col2-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 3.5rem 2.6rem;
  }
}
@media screen and (min-width: 980px) {
  .grid--col2-3 {
    gap: 4.3rem 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .grid--col2-3 {
    gap: 5.4rem 4rem;
  }
}

.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-align--start {
  align-items: flex-start;
}
.flex-align--center {
  align-items: center;
}
.flex-align--end {
  align-items: flex-end;
}
.flex-justify--start {
  justify-content: flex-start;
}
.flex-justify--center {
  justify-content: center;
}
.flex-justify--end {
  justify-content: flex-end;
}

.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}

/*---------------------
  component
----------------------*/
@media screen and (min-width: 576px) {
  .show--sm {
    display: none !important;
  }
}

@media screen and (max-width: 575px) {
  .hide--sm {
    display: none !important;
  }
}

.show--md {
  display: none !important;
}
@media screen and (min-width: 768px) {
  .show--md {
    display: block !important;
  }
}

@media screen and (min-width: 768px) {
  .hide--md {
    display: none !important;
  }
}

.show--lg {
  display: none !important;
}
@media screen and (min-width: 980px) {
  .show--lg {
    display: block !important;
  }
}

@media screen and (min-width: 980px) {
  .hide--lg {
    display: none !important;
  }
}

.show--xl {
  display: none !important;
}
@media screen and (min-width: 1200px) {
  .show--xl {
    display: block !important;
  }
}

@media screen and (min-width: 1200px) {
  .hide--xl {
    display: none !important;
  }
}

/*color*/
.bg-white {
  background-color: #fff;
}

.bg-gray {
  background-color: var(--color-gray);
}

.color-subtxt {
  color: var(--color-subtxt);
}

/*font*/
.font-en {
  font-family: var(--font-en);
}

.text {
  font-size: 1.6rem;
}
.text small {
  font-size: 1.4rem;
}
.text--bold {
  font-weight: 700;
}
.text--midium {
  font-weight: 500;
}
.text--center {
  text-align: center;
}
.text--left {
  text-align: left;
}

/*space*/
.space-container {
  padding-block: 4rem;
}
@media screen and (min-width: 768px) {
  .space-container {
    padding-block: 7.8rem;
  }
}
@media screen and (min-width: 980px) {
  .space-container {
    padding-block: 9.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .space-container {
    padding-block: 12rem;
  }
}
.space-inner {
  padding: 4rem 2rem;
}
@media screen and (min-width: 768px) {
  .space-inner {
    padding: 4.2rem 5.2rem;
  }
}
@media screen and (min-width: 980px) {
  .space-inner {
    padding: 5.1rem 6.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .space-inner {
    padding: 6.4rem 8rem;
  }
}
.space-h2 {
  margin-bottom: 2.7rem;
}
@media screen and (min-width: 768px) {
  .space-h2 {
    margin-bottom: 4.2rem;
  }
}
@media screen and (min-width: 980px) {
  .space-h2 {
    margin-bottom: 5rem;
  }
}
@media screen and (min-width: 1200px) {
  .space-h2 {
    margin-bottom: 6.4rem;
  }
}

/*img*/
.img-full {
  width: 100%;
}
.img-radius {
  border-radius: 0.8rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .img-radius {
    border-radius: 2rem;
  }
}

/*button*/
.btn {
  position: relative;
  text-align: center;
  width: fit-content;
  height: 5.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  background-color: var(--color-heading);
  border-radius: 5.6rem;
  transition: 0.3s ease;
  padding-inline: 2rem;
}
.btn--small {
  min-width: 15rem;
}
.btn--normal {
  min-width: 24.8rem;
}
.btn--fit {
  padding-inline: 4rem;
}
.btn--gray {
  border: 1px solid var(--color-border);
  background-color: var(--color-lightgray);
  color: var(--color-heading);
  transition: 0.3s ease;
}
.btn--gray:after {
  filter: brightness(0) saturate(100%) invert(20%) sepia(26%) saturate(554%) hue-rotate(198deg) brightness(97%) contrast(94%);
}
@media (hover) {
  .btn--gray:hover {
    background-color: #fff;
  }
}
.btn--arrow {
  padding-right: 3rem;
  border: 1px solid var(--color-heading);
  transition: 0.3s ease;
}
.btn--arrow::before {
  content: "";
  width: 3.5rem;
  aspect-ratio: 1;
  background: url(../img/parts/icon_arrow-thin-white.svg) no-repeat center/cover;
  transition: 0.3s ease;
  margin-right: -0.3rem;
}
@media (hover) {
  .btn--arrow:hover {
    background-color: #fff;
    color: var(--color-heading);
  }
  .btn--arrow:hover::before {
    filter: brightness(0) saturate(100%) invert(20%) sepia(26%) saturate(554%) hue-rotate(198deg) brightness(97%) contrast(94%);
  }
}
.btn--newwin:after {
  content: "";
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/parts/icon_newwindow.svg) no-repeat center/cover;
  margin-left: 1rem;
}
@media screen and (min-width: 980px) {
  .btn--newwin:after {
    width: 1.6rem;
    height: 1.6rem;
  }
}
.btn--move {
  position: relative;
  display: block;
  width: fit-content;
}
.btn--move__icon {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: absolute;
  width: 6rem;
  height: 6rem;
  background: var(--color-heading);
  border-radius: 3rem;
}
.btn--move__arrow {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  width: 6rem;
  height: 6rem;
  position: absolute;
  top: 0;
  left: 0;
}
.btn--move__arrow::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  height: 6rem;
  background: url(../img/parts/icon_arrow-thin-white.svg) no-repeat center/cover;
}
.btn--move__txt {
  transition: 0.45s cubic-bezier(0.65, 0, 0.076, 1);
  position: relative;
  color: var(--color-heading);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-left: 7.3rem;
  line-height: 6rem;
  padding-right: 3rem;
}
@media screen and (min-width: 1200px) {
  .btn--move__txt {
    font-size: 2rem;
  }
}
@media (hover) {
  .btn--move:hover .btn--move__icon {
    width: 100%;
  }
  .btn--move:hover .btn--move__arrow {
    transform: translate(1.5rem, 0);
  }
  .btn--move:hover .btn--move__txt {
    color: #fff;
  }
}
.btn--center {
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .btn--center--sp {
    margin-inline: auto;
  }
}

/*accordion*/
.accordion.is-open dt svg rect:nth-child(2) {
  opacity: 0;
}
.accordion dt {
  display: flex;
  align-items: center;
}
.accordion dt svg {
  width: 1.2rem;
  height: auto;
  margin-left: 2rem;
}
.accordion dt svg rect {
  fill: currentColor;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 576px) {
  .accordion--sp dt svg {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .accordion--tab dt svg {
    display: none;
  }
}

/*section title*/
.sec__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .sec__ttl {
    align-items: flex-start;
  }
}
.sec__ttl span {
  font-size: 4rem;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .sec__ttl span {
    font-size: 3.9rem;
  }
}
@media screen and (min-width: 980px) {
  .sec__ttl span {
    font-size: 4.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .sec__ttl span {
    font-size: 6rem;
  }
}
.sec__ttl strong {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .sec__ttl strong {
    font-size: 1.2rem;
    margin-top: 1.6rem;
  }
}
@media screen and (min-width: 980px) {
  .sec__ttl strong {
    font-size: 1.5rem;
    margin-top: 1.9rem;
  }
}
@media screen and (min-width: 1200px) {
  .sec__ttl strong {
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }
}

.h2--border {
  font-size: 2rem;
  font-weight: 700;
  border-left: 0.4rem solid var(--color-heading);
  padding-left: 1.2rem;
  min-height: 3rem;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .h2--border {
    font-size: 2.2rem;
    min-height: 4.4rem;
  }
}

/*page heading*/
.heading {
  padding-top: 4.6rem;
  padding-bottom: 5.2rem;
  background: url(../img/parts/heading_bg_sp.webp) no-repeat center/cover;
  position: relative;
}
@media screen and (min-width: 576px) {
  .heading {
    min-height: 24rem;
  }
}
@media screen and (min-width: 768px) {
  .heading {
    padding-top: 7rem;
    padding-bottom: 7rem;
    min-height: 34rem;
    background-image: url(../img/parts/heading_bg_sp.webp);
  }
}
.heading:before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../img/parts/mofing.svg) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
}
.heading .inner {
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 576px) {
  .heading .inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
  }
}
.heading h1 {
  display: flex;
  flex-direction: column;
}
.heading h1 span {
  font-family: var(--font-en);
  font-weight: 400;
  line-height: 1;
}
.heading h1 strong {
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--color-subtxt);
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .heading h1 strong {
    font-size: 1.7rem;
  }
}
.heading nav {
  margin-top: 4rem;
}
.heading__link {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 0.8rem;
  padding: 0.8rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.3rem;
}
@media screen and (min-width: 768px) {
  .heading__link {
    gap: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
  }
}
.heading__link a {
  display: grid;
  align-items: center;
  grid-template-columns: 2rem 1fr;
  column-gap: 0.8rem;
  padding: 0.8rem 0 0.8rem 0.8rem;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-subtxt);
  transition: 0.3s ease;
}
@media screen and (min-width: 576px) {
  .heading__link a {
    padding: 0.8rem 0 0.8rem 1.6rem;
    font-size: 1.6rem;
    grid-template-columns: 2.4rem 1fr;
  }
}
@media screen and (min-width: 768px) {
  .heading__link a {
    padding: 1.8rem 1.6rem;
  }
}
.heading__link a::before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid #D7DADF;
  background: url(../img/parts/icon_arrow-lightgray.svg) no-repeat center/cover #fff;
  border-radius: 50%;
  transition: 0.3s ease;
}
.heading__link a.current {
  color: var(--color-heading);
  pointer-events: none;
}
.heading__link a.current:before {
  background-color: currentColor;
  background-image: url(../img/parts/icon_arrow-white.svg);
  border-color: currentColor;
  transform: rotate(90deg);
}
@media (hover) {
  .heading__link a:hover {
    color: var(--color-heading);
  }
  .heading__link a:hover:before {
    background-color: currentColor;
    background-image: url(../img/parts/icon_arrow-white.svg);
    border-color: currentColor;
  }
}

/*breadcrumb*/
.breadcrumb {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.8rem;
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    row-gap: 1.3rem;
  }
}
@media screen and (min-width: 980px) {
  .breadcrumb {
    row-gap: 1.6rem;
  }
}
.breadcrumb li {
  font-size: 1.2rem;
}
.breadcrumb li a {
  transition: 0.3s ease;
}
@media (hover) {
  .breadcrumb li a:hover {
    color: var(--color-light);
  }
}
.breadcrumb li + li {
  display: grid;
  grid-template-columns: 0.6rem 1fr;
  column-gap: 1.2rem;
}
.breadcrumb li + li:before {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg) translate(0.6rem, 0.3rem);
}

/*pagination*/
.pagination {
  margin-top: 8rem;
}
.pagination__list {
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  gap: 1rem;
  max-width: 35rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .pagination__list {
    max-width: 100%;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .pagination__list li:not(.pagination__control) {
    flex: 1;
  }
}
@media screen and (min-width: 768px) {
  .pagination__list li:not(.pagination__control) {
    width: 4rem;
  }
}
@media screen and (min-width: 980px) {
  .pagination__list li:not(.pagination__control) {
    width: 5rem;
  }
}
.pagination__list li:not(.pagination__control) a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
  background-color: var(--color-lightgray);
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pagination__list li:not(.pagination__control) a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 980px) {
  .pagination__list li:not(.pagination__control) a {
    font-size: 2rem;
  }
}
@media (hover) {
  .pagination__list li:not(.pagination__control) a:hover {
    background-color: var(--color-heading);
    color: #fff;
  }
}
.pagination__list span {
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  aspect-ratio: 1;
}
@media screen and (min-width: 768px) {
  .pagination__list span {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 980px) {
  .pagination__list span {
    font-size: 2rem;
  }
}
.pagination__list span.current {
  border-radius: 50%;
  background-color: var(--color-heading);
  color: #fff;
}
.pagination__control {
  position: absolute;
  top: 0;
}
.pagination__control a {
  font-size: 1.3rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  column-gap: 1.3rem;
}
@media screen and (min-width: 980px) {
  .pagination__control a {
    font-size: 1.6rem;
    column-gap: 1.6rem;
  }
}
@media (hover) {
  .pagination__control a:hover:after, .pagination__control a:hover:before {
    background-color: var(--color-heading);
    background-image: url(../img/parts/icon_arrow-thin-white.svg);
  }
}
.pagination__control--next {
  right: 0;
}
.pagination__control--next a:after {
  content: "";
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../img/parts/icon_arrow-thin-black.svg) no-repeat center/100% auto var(--color-lightgray);
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  .pagination__control--next a:after {
    width: 4rem;
  }
}
@media screen and (min-width: 980px) {
  .pagination__control--next a:after {
    width: 5rem;
  }
}
.pagination__control--prev {
  left: 0;
}
.pagination__control--prev a:before {
  content: "";
  width: 5rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../img/parts/icon_arrow-thin-black.svg) no-repeat center/100% auto var(--color-lightgray);
  transition: 0.3s ease;
  transform: scale(-1, 1);
}
@media screen and (min-width: 768px) {
  .pagination__control--prev a:before {
    width: 4rem;
  }
}
@media screen and (min-width: 980px) {
  .pagination__control--prev a:before {
    width: 5rem;
  }
}

/*---------------------
  header
----------------------*/
body:has(.header.open) {
  overflow: clip;
  overscroll-behavior: none;
}

.header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width: 980px) {
  .header {
    background-color: #fff;
    height: var(--header);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: 2rem;
    width: 100%;
    transition: 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  .header {
    padding-inline: 4rem;
  }
}
.header__main {
  position: relative;
  width: 100%;
  height: var(--header);
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2rem;
  padding-right: 1.2rem;
  z-index: 100;
}
@media screen and (min-width: 980px) {
  .header__main {
    width: auto;
    height: auto;
    display: block;
    padding-left: 0;
    padding-right: 0;
  }
}
.header__logo img {
  width: 13rem;
  transition: 0.3s ease;
}
@media screen and (min-width: 980px) {
  .header__logo img {
    width: 16.5rem;
  }
}
.header__btn {
  width: 5rem;
  height: 5rem;
  background-color: var(--color-dark);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}
@media screen and (min-width: 980px) {
  .header__btn {
    display: none;
  }
}
.header__btn span {
  width: 2.2rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 1.1rem);
  transition: 0.3s ease;
}
.header__btn span:nth-child(1) {
  top: calc(50% - 0.4rem);
}
.header__btn span:nth-child(2) {
  top: calc(50% + 0.4rem);
}
.header__nav {
  position: fixed;
  top: 8rem;
  left: 0;
  width: 100%;
  height: calc(100dvh - 8rem);
  padding-bottom: 10rem;
  background: url(../img/parts/mofing_bg_sp.webp) no-repeat center top/cover #fff;
  z-index: 99;
  padding-inline: 2.3rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease-in;
}
@media screen and (max-width: 979px) {
  .header__nav {
    overflow-y: auto;
  }
}
@media screen and (min-width: 980px) {
  .header__nav {
    position: static;
    height: auto;
    width: auto;
    padding-right: 0;
    padding-bottom: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: visible;
  }
}
.header__nav__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (min-width: 980px) {
  .header__nav__bg {
    display: none !important;
  }
}
.header__nav__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.header__nav__inner {
  position: relative;
  z-index: 1;
  padding: 5rem 1.3rem 4rem;
}
@media screen and (min-width: 980px) {
  .header__nav__inner {
    position: static;
    display: flex;
    align-items: center;
    padding: 0;
  }
}
.header__nav__btn {
  position: fixed;
  bottom: 4rem;
  left: 0;
  width: 100%;
}
@media screen and (min-width: 980px) {
  .header__nav__btn {
    position: static;
    width: auto;
    margin-left: 2.4rem;
  }
}
.header__nav__btn .btn {
  letter-spacing: 0.2em;
}
@media screen and (max-width: 979px) {
  .header__nav__btn .btn {
    min-width: 30rem;
    height: 6.8rem;
    font-size: 2.2rem;
    border-radius: 6.8rem;
  }
}
@media screen and (min-width: 980px) {
  .header__nav__btn .btn {
    transition: 0.3s ease;
    height: 4.8rem;
    border-radius: 4.8rem;
  }
}
@media screen and (max-width: 979px) {
  .header__nav__btn .btn--newwin:after {
    position: absolute;
    top: calc(50% - 0.9rem);
    right: 2.5rem;
  }
}
.header.open .header__btn span:nth-child(1) {
  transform: rotate(45deg);
  top: 50%;
}
.header.open .header__btn span:nth-child(2) {
  transform: rotate(-45deg);
  top: 50%;
}
.header.open .header__nav {
  opacity: 1;
  visibility: visible;
  pointer-events: visible;
}
@media screen and (min-width: 980px) {
  .header.scroll {
    height: var(--scroll);
  }
}
@media screen and (min-width: 980px) {
  .header.scroll .header__logo img {
    width: 12.8rem;
  }
}
@media screen and (min-width: 980px) {
  .header.scroll .btn {
    width: 14.2rem;
    height: 4.2rem;
  }
}

.nav__item {
  display: grid;
  row-gap: 0.8rem;
}
@media screen and (min-width: 980px) {
  .nav__item {
    display: flex;
    align-items: center;
    row-gap: 0;
  }
}
.nav__item--lv1 > a, .nav__item--lv1 dt {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-heading);
  padding-block: 1.6rem;
  display: block;
  line-height: 1;
  transition: color 0.3s ease;
}
@media screen and (min-width: 980px) {
  .nav__item--lv1 > a, .nav__item--lv1 dt {
    padding-inline: 2rem;
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .nav__item--lv1 > a, .nav__item--lv1 dt {
    padding-inline: 3.2rem;
  }
}
@media (hover) {
  .nav__item--lv1 > a:hover, .nav__item--lv1 dt:hover {
    color: var(--color-light);
  }
}
.nav__item dl dt {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.nav__item dl dt svg {
  width: 1.5rem;
  margin-left: 2.2rem;
}
@media screen and (min-width: 980px) {
  .nav__item dl dt svg {
    width: 1.2rem;
    margin-left: 1rem;
  }
}
.nav__item dl dt svg rect {
  fill: currentColor;
  transition: 0.2s ease-in;
}
.nav__item dl dt svg rect:nth-child(2) {
  opacity: 1;
}
.nav__item dl dt.is-open svg rect:nth-child(2) {
  opacity: 0;
}
@media screen and (min-width: 980px) {
  .nav__item dl dd {
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
  }
}
.nav__item dl dd figure {
  display: none;
}
@media screen and (min-width: 980px) {
  .nav__item dl dd figure {
    display: block;
    width: 27.7%;
  }
}
.nav__item--lv2 {
  padding-left: 1rem;
  padding-bottom: 0.8rem;
}
@media screen and (min-width: 980px) {
  .nav__item--lv2 {
    padding-block: 3rem;
    display: flex;
    justify-content: center;
    column-gap: 3%;
    align-items: center;
    max-width: 112rem;
    margin-inline: auto;
    padding-left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .nav__item--lv2 {
    column-gap: 5.4%;
  }
}
@media screen and (min-width: 980px) {
  .nav__item--lv2 ul {
    max-width: 66.9%;
    display: grid;
    grid-template-columns: repeat(4, auto);
    row-gap: 1.2rem;
  }
}
.nav__item--lv2 a {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
  padding-block: 0.8rem;
}
@media screen and (min-width: 980px) {
  .nav__item--lv2 a {
    display: grid;
    grid-template-columns: 2.4rem 1fr;
    align-items: center;
    column-gap: 0.8rem;
    padding-inline: 1rem;
    padding-block: 1.8rem;
    font-weight: 700;
    color: var(--color-subtxt);
    transition: 0.3s ease;
  }
}
@media screen and (min-width: 1200px) {
  .nav__item--lv2 a {
    padding-inline: 1.6rem;
  }
}
@media screen and (min-width: 980px) {
  .nav__item--lv2 a:before {
    content: "";
    width: 100%;
    aspect-ratio: 1;
    background: url(../img/parts/icon_arrow-gray.svg) no-repeat center/cover;
    border-radius: 50%;
    border: 1px solid var(--color-subtxt);
    background-color: #fff;
    transition: 0.3s ease;
  }
}
@media (hover) {
  .nav__item--lv2 a:hover {
    color: var(--color-heading);
  }
  .nav__item--lv2 a:hover:before {
    background-color: var(--color-heading);
    border-color: var(--color-heading);
    background-image: url(../img/parts/icon_arrow-white.svg);
  }
}

/*---------------------
  footer
----------------------*/
.footer {
  padding-top: 5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5.8rem;
  }
}
.footer__heading {
  display: grid;
  grid-template-columns: 14.2rem 1fr;
  column-gap: 3.6rem;
  align-items: center;
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 768px) {
  .footer__heading {
    grid-template-columns: 20rem 1fr;
    column-gap: 7.7rem;
    margin-bottom: 6.4rem;
  }
}
.footer__logo img {
  width: 100%;
}
.footer__sns {
  display: flex;
}
.footer__sns a {
  display: block;
  padding: 1.2rem;
}
@media screen and (min-width: 768px) {
  .footer__sns a {
    padding: 1.6rem;
  }
}
.footer__sns a img {
  width: 3.2rem;
}
@media screen and (min-width: 768px) {
  .footer__sns a img {
    width: 4rem;
  }
}
.footer__menu {
  margin-bottom: 4.8rem;
}
@media screen and (min-width: 768px) {
  .footer__menu {
    margin-bottom: 2.4rem;
  }
}
.footer__menu__main {
  display: grid;
  row-gap: 4rem;
  margin-bottom: 4rem;
}
@media screen and (min-width: 576px) {
  .footer__menu__main {
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .footer__menu__main {
    padding-bottom: 2.4rem;
    margin-bottom: 2.4rem;
    border-bottom: 1px solid var(--color-border);
  }
}
@media screen and (min-width: 980px) {
  .footer__menu__main {
    justify-content: space-between;
  }
}
@media screen and (min-width: 576px) {
  .footer__menu__main li {
    flex: 1 0 50%;
  }
}
@media screen and (min-width: 768px) {
  .footer__menu__main li {
    flex: 1 0 33.3333333333%;
  }
}
@media screen and (min-width: 980px) {
  .footer__menu__main li {
    flex: none;
  }
}
.footer__menu--lv1 {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__menu--lv1 {
    font-size: 1.7rem;
  }
}
.footer__menu a.footer__menu--lv1 {
  transition: color 0.3s ease;
}
@media (hover) {
  .footer__menu a.footer__menu--lv1:hover {
    color: var(--color-light);
  }
}
@media screen and (min-width: 576px) {
  .footer__menu dt {
    padding-bottom: 2rem;
  }
}
.footer__menu--lv2 {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 575px) {
  .footer__menu--lv2 {
    padding-top: 2rem;
  }
}
.footer__menu--lv2 a {
  font-size: 1.6rem;
  padding-block: 0.8rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__menu--lv2 a {
    font-size: 1.4rem;
    padding-block: 0.7rem;
  }
}
@media (hover) {
  .footer__menu--lv2 a:hover {
    color: var(--color-light);
  }
}
.footer__menu__sub {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__menu__sub {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 768px) {
  .footer__menu__sub li {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__menu__sub li:not(:last-child) {
    border-right: 1px solid var(--color-txt);
  }
}
.footer__menu__sub a {
  display: block;
  padding-block: 0.8rem;
  font-size: 1.6rem;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .footer__menu__sub a {
    font-size: 1.4rem;
    padding-inline: 1.6rem;
    padding-block: 0;
    line-height: 1;
  }
}
@media (hover) {
  .footer__menu__sub a:hover {
    color: var(--color-light);
  }
}
.footer__bottom {
  padding-bottom: 3.8rem;
  display: grid;
  row-gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom {
    padding-inline: 1.6rem;
    grid-template-columns: 6.4rem 1fr;
    grid-template-rows: 1fr auto;
    align-items: end;
    gap: 0 3rem;
  }
}
.footer__bottom p {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .footer__bottom p {
    font-size: 1.2rem;
  }
}
.footer__bottom p.font-en {
  font-weight: 300;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .footer__bottom p.font-en {
    grid-area: 2/2/3/3;
    padding-top: 0.8rem;
  }
}
@media screen and (min-width: 768px) {
  .footer__bottom p:first-child {
    grid-area: 1/2/2/3;
  }
}
.footer__icon {
  display: block;
  width: fit-content;
}
@media screen and (min-width: 768px) {
  .footer__icon {
    grid-area: 1/1/3/2;
  }
}
.footer__icon img {
  width: 6.4rem;
}

.btn__bnr {
  display: flex;
  flex-direction: column;
}
.btn__bnr a {
  border: 1px solid var(--color-border);
  border-radius: 0.8rem;
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  padding-left: 1rem;
  padding-right: 1.8rem;
  height: 8.8rem;
  max-width: 33rem;
  transition: opacity 0.3s ease;
}
@media screen and (min-width: 768px) {
  .btn__bnr a {
    column-gap: 0.8rem;
    max-width: 24rem;
    height: 6.3rem;
    padding-left: 0.7rem;
    padding-right: 1.3rem;
  }
}
.btn__bnr a + a {
  margin-top: 1.6rem;
}
@media screen and (min-width: 768px) {
  .btn__bnr a + a {
    margin-top: 2.4rem;
  }
}
.btn__bnr a p {
  display: flex;
  flex-direction: column;
  flex: 1;
  line-height: 1.5;
}
.btn__bnr a p span {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .btn__bnr a p span {
    font-size: 1rem;
  }
}
.btn__bnr a p span.font-en {
  font-weight: 600;
  color: #aaa;
}
@media screen and (min-width: 768px) {
  .btn__bnr a p span.font-en {
    font-size: 1.2rem;
  }
}
.btn__bnr a p strong {
  font-size: 2.2rem;
  font-weight: 700;
  display: grid;
  grid-template-columns: 1fr 2.5rem;
  column-gap: 1rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .btn__bnr a p strong {
    font-size: 1.7rem;
    grid-template-columns: 1fr 1.8rem;
  }
}
.btn__bnr a p strong:after {
  content: "";
  width: 100%;
  aspect-ratio: 1;
  background: url(../img/parts/icon_newwindow.svg) no-repeat center/cover;
  filter: brightness(0) saturate(100%) invert(19%) sepia(7%) saturate(2323%) hue-rotate(200deg) brightness(96%) contrast(88%);
}
@media (hover) {
  .btn__bnr a:hover {
    opacity: 0.7;
  }
}
.btn__bnr--recruit {
  background-color: #f5f4f7;
}
.btn__bnr--recruit img {
  width: 5.6rem;
}
@media screen and (min-width: 768px) {
  .btn__bnr--recruit img {
    width: 4.1rem;
  }
}
.btn__bnr--lookmee {
  background-color: #faf4ed;
}
.btn__bnr--lookmee img {
  width: 7rem;
}
@media screen and (min-width: 768px) {
  .btn__bnr--lookmee img {
    width: 5.1rem;
  }
}
.btn__bnr--lookmeeroom {
  background-color: #edf6f7;
}
.btn__bnr--lookmeeroom img {
  width: 7.4rem;
}
@media screen and (min-width: 768px) {
  .btn__bnr--lookmeeroom img {
    width: 5.4rem;
  }
}

.floater {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding-top: 4rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.3s ease;
}
.floater.active {
  opacity: 1;
  visibility: visible;
}
.floater.active .floater__bnr,
.floater.active .pagetop {
  pointer-events: visible;
}
.floater__bnr {
  position: relative;
  display: none;
}
.floater__bnr a {
  display: block;
  transition: 0.3s ease;
}
@media (hover) {
  .floater__bnr a:hover {
    opacity: 0.7;
  }
}
.floater__bnr a img {
  width: 19.8rem;
}
@media screen and (min-width: 768px) {
  .floater__bnr a img {
    width: 34rem;
  }
}
.floater__bnr .close {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background-color: var(--color-dark);
  position: absolute;
  top: -2.5rem;
  right: -3.2rem;
  transition: 0.3s ease;
  z-index: 1;
}
.floater__bnr .close::before {
  content: "";
  width: 2.2rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 1.1rem);
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.floater__bnr .close::after {
  content: "";
  width: 2.2rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 1.1rem);
  transform: rotate(-45deg);
}
@media (hover) {
  .floater__bnr .close:hover {
    opacity: 0.7;
  }
}

.pagetop {
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 50%;
  background-color: var(--color-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
  z-index: 10;
  margin-right: 0.8rem;
  margin-bottom: 1rem;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .pagetop {
    margin-right: 2rem;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .pagetop {
    display: none !important;
  }
}
.pagetop img {
  transform: rotate(-90deg);
  width: 100%;
}
@media (hover) {
  .pagetop:hover {
    opacity: 0.7;
  }
}

/*---------------------
  plugin swiper css
----------------------*/
:root {
  --swiper-theme-color: #007aff ;
}

:host {
  display: block;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.swiper {
  display: block;
  list-style: none;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0;
  position: relative;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  box-sizing: initial;
  display: flex;
  height: 100%;
  position: relative;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  width: 100%;
  z-index: 1;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translateZ(0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  display: block;
  flex-shrink: 0;
  height: 100%;
  position: relative;
  transition-property: transform;
  width: 100%;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-cube-shadow,
.swiper-3d .swiper-slide {
  transform-style: preserve-3d;
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper:before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper:before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper:before {
  height: var(--swiper-centered-offset-after);
  min-width: 1px;
  width: 100%;
}

.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top {
  height: 100%;
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.1490196078);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(270deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(0deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5019607843), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top: 4px solid rgba(0, 0, 0, 0);
  box-sizing: border-box;
  height: 42px;
  left: 50%;
  margin-left: -21px;
  margin-top: -21px;
  position: absolute;
  top: 50%;
  transform-origin: 50%;
  width: 42px;
  z-index: 10;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s linear infinite;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff ;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000 ;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper:after {
  content: "";
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper:after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper:after {
  height: var(--swiper-virtual-size);
  width: 1px;
}

:root {
  --swiper-navigation-size: 44px ;
}

.swiper-button-next,
.swiper-button-prev {
  align-items: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  cursor: pointer;
  display: flex;
  height: var(--swiper-navigation-size);
  justify-content: center;
  position: absolute;
  width: var(--swiper-navigation-size);
  z-index: 10;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  cursor: auto;
  opacity: 0.35;
  pointer-events: none;
}
.swiper-button-next.swiper-button-hidden,
.swiper-button-prev.swiper-button-hidden {
  cursor: auto;
  opacity: 0;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-next,
.swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}
.swiper-button-next svg,
.swiper-button-prev svg {
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  width: 100%;
  fill: currentColor;
  pointer-events: none;
}

.swiper-button-lock {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}

.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}

.swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}

.swiper-horizontal .swiper-button-next,
.swiper-horizontal .swiper-button-prev,
.swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal ~ .swiper-button-prev {
  margin-left: 0;
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  top: var(--swiper-navigation-top-offset, 50%);
}
.swiper-horizontal.swiper-rtl .swiper-button-next, .swiper-horizontal.swiper-rtl ~ .swiper-button-next, .swiper-horizontal ~ .swiper-button-prev,
.swiper-horizontal .swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
}
.swiper-horizontal.swiper-rtl .swiper-button-prev, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev, .swiper-horizontal ~ .swiper-button-next,
.swiper-horizontal .swiper-button-next {
  left: auto;
  right: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-horizontal.swiper-rtl .swiper-button-next .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-next .swiper-navigation-icon, .swiper-horizontal ~ .swiper-button-prev .swiper-navigation-icon,
.swiper-horizontal .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(180deg);
}
.swiper-horizontal.swiper-rtl .swiper-button-prev .swiper-navigation-icon, .swiper-horizontal.swiper-rtl ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(0deg);
}

.swiper-vertical .swiper-button-next,
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-next,
.swiper-vertical ~ .swiper-button-prev {
  left: var(--swiper-navigation-top-offset, 50%);
  margin-left: calc(0px - var(--swiper-navigation-size) / 2);
  margin-top: 0;
  right: auto;
}
.swiper-vertical .swiper-button-prev,
.swiper-vertical ~ .swiper-button-prev {
  bottom: auto;
  top: var(--swiper-navigation-sides-offset, 4px);
}
.swiper-vertical .swiper-button-prev .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-prev .swiper-navigation-icon {
  transform: rotate(-90deg);
}
.swiper-vertical .swiper-button-next,
.swiper-vertical ~ .swiper-button-next {
  bottom: var(--swiper-navigation-sides-offset, 4px);
  top: auto;
}
.swiper-vertical .swiper-button-next .swiper-navigation-icon,
.swiper-vertical ~ .swiper-button-next .swiper-navigation-icon {
  transform: rotate(90deg);
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transform: translateZ(0);
  transition: opacity 0.3s;
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination.swiper-pagination-disabled, .swiper-pagination-disabled > .swiper-pagination {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 8px);
  left: 0;
  top: var(--swiper-pagination-top, auto);
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  font-size: 0;
  overflow: hidden;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  position: relative;
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active,
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  display: inline-block;
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  opacity: var(--swiper-pagination-bullet-opacity, 1);
}

.swiper-pagination-vertical.swiper-pagination-bullets,
.swiper-vertical > .swiper-pagination-bullets {
  left: var(--swiper-pagination-left, auto);
  right: var(--swiper-pagination-right, 8px);
  top: 50%;
  transform: translate3d(0, -50%, 0);
}
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  display: block;
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: transform 0.2s, top 0.2s;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, left 0.2s;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: transform 0.2s, right 0.2s;
}

.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.2509803922));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transform: scale(0);
  transform-origin: left top;
  width: 100%;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-horizontal > .swiper-pagination-progressbar, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
  width: 100%;
}
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar {
  height: 100%;
  left: 0;
  top: 0;
  width: var(--swiper-pagination-progressbar-size, 4px);
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
}
.swiper-scrollbar.swiper-scrollbar-disabled, .swiper-scrollbar-disabled > .swiper-scrollbar {
  display: none !important;
}
.swiper-scrollbar.swiper-scrollbar-horizontal, .swiper-horizontal > .swiper-scrollbar {
  bottom: var(--swiper-scrollbar-bottom, 4px);
  height: var(--swiper-scrollbar-size, 4px);
  left: var(--swiper-scrollbar-sides-offset, 1%);
  position: absolute;
  top: var(--swiper-scrollbar-top, auto);
  width: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  z-index: 50;
}
.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  height: calc(100% - var(--swiper-scrollbar-sides-offset, 1%) * 2);
  left: var(--swiper-scrollbar-left, auto);
  position: absolute;
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  width: var(--swiper-scrollbar-size, 4px);
  z-index: 50;
}

.swiper-scrollbar-drag {
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5019607843));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  height: 100%;
  left: 0;
  position: relative;
  top: 0;
  width: 100%;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  text-align: center;
  width: 100%;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}

.swiper .swiper-notification {
  left: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  margin: 0 auto;
  transition-timing-function: ease-out;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-direction: column;
  flex-wrap: wrap;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  backface-visibility: hidden;
  height: 100%;
  pointer-events: none;
  transform-origin: 0 0;
  visibility: hidden;
  width: 100%;
  z-index: 1;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  bottom: 0;
  height: 100%;
  left: 0;
  opacity: 0.6;
  position: absolute;
  width: 100%;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  background: #000;
  bottom: 0;
  content: "";
  filter: blur(50px);
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  backface-visibility: hidden;
  pointer-events: none;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  backface-visibility: hidden;
  z-index: 0;
}

.swiper-creative .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  backface-visibility: hidden;
  overflow: hidden;
  transform-origin: center bottom;
}

/*---------------------
  plugin modal css
----------------------*/
.modal {
  display: none;
}
.modal.is-open {
  display: block;
}
.modal[aria-hidden=false] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal[aria-hidden=true] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(54, 55, 78, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  backdrop-filter: blur(5px);
  will-change: transform;
}
.modal__container {
  position: relative;
  background-color: #fff;
  overflow-y: auto;
  max-width: calc(100% - 4rem);
  max-height: 90dvh;
  border-radius: 2rem;
  padding: 1.6rem 2.5rem 4.6rem;
  filter: drop-shadow(0 0 1.6rem rgba(0, 0, 0, 0.1));
  will-change: transform;
}
@media screen and (min-width: 980px) {
  .modal__container {
    max-width: 90rem;
    padding: 2.4rem 2.4rem 7rem;
  }
}
.modal__close {
  position: sticky;
  top: 0;
  left: 100%;
  width: 5rem;
  height: 5rem;
  background-color: var(--color-heading);
  border-radius: 50%;
  z-index: 2;
}
.modal__close:after {
  content: "";
  width: 2.2rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 1.1rem);
  top: 50%;
  transform: rotate(45deg);
}
.modal__close:before {
  content: "";
  width: 2.2rem;
  height: 0.2rem;
  border-radius: 1px;
  background-color: #fff;
  position: absolute;
  left: calc(50% - 1.1rem);
  top: 50%;
  transform: rotate(-45deg);
}
.modal__content {
  padding-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .modal__content {
    padding: 0 4.6rem;
  }
}
.modal__img {
  width: fit-content;
  max-width: 24.8rem;
  margin-inline: auto;
  margin-bottom: 2.6rem;
}
@media screen and (min-width: 768px) {
  .modal__img {
    margin-bottom: 3.8rem;
    max-width: 34.6rem;
  }
}
@media screen and (min-width: 980px) {
  .modal__img {
    margin-bottom: 4.8rem;
    max-width: 43.3rem;
  }
}
.modal__img img {
  width: 100%;
}
.modal h3 {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 3.8rem;
}
@media screen and (min-width: 768px) {
  .modal h3 {
    margin-bottom: 4.2rem;
  }
}
@media screen and (min-width: 980px) {
  .modal h3 {
    margin-bottom: 4.7rem;
  }
}
.modal h3 b {
  font-weight: 500;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media screen and (min-width: 768px) {
  .modal h3 b {
    font-size: 1.7rem;
  }
}
@media screen and (min-width: 980px) {
  .modal h3 b {
    font-size: 1.9rem;
  }
}
.modal h3 strong {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.78;
}
@media screen and (min-width: 768px) {
  .modal h3 strong {
    font-size: 2.9rem;
  }
}
@media screen and (min-width: 980px) {
  .modal h3 strong {
    font-size: 3.2rem;
  }
}
.modal h3 span {
  font-size: 1.6rem;
  font-weight: 500;
}
.modal__sns {
  margin-top: 5.2rem;
  display: flex;
  justify-content: flex-end;
}
@media screen and (min-width: 768px) {
  .modal__sns {
    margin-top: 3.4rem;
  }
}
.modal__sns.disable {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.modal__sns li a {
  padding: 1.2rem;
  display: block;
  transition: 0.3s ease;
}
@media (hover) {
  .modal__sns li a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .modal__sns li a {
    padding: 1.6rem;
  }
}
.modal__sns img {
  width: 3.4rem;
}
@media screen and (min-width: 768px) {
  .modal__sns img {
    width: 4.5rem;
  }
}

@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
/*CTA Button*/
.btn--anime {
  --bt1: 10%;
  --by1: 90%;
  --bx2: 52%;
  --by2: 87%;
  --bx3: 91%;
  --by3: 87%;
  --bx4: 7%;
  --by4: 13%;
  --bx5: 49%;
  --by5: 7%;
  --bx6: 91%;
  --by6: 8%;
  position: relative;
  display: block;
  width: fit-content;
  margin-inline: auto;
}
.btn--anime:before {
  content: "";
  width: calc(100% + 1rem);
  height: calc(100% + 0.8rem);
  position: absolute;
  top: -0.4rem;
  left: -0.5rem;
  border-radius: 5rem;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25));
  background-color: hsl(0, 0%, 98%);
  background-image: radial-gradient(at var(--bx1) var(--by1), hsl(337, 100%, 86%) 0px, transparent 50%), radial-gradient(at var(--bx2) var(--by2), hsl(189, 77%, 72%) 0px, transparent 50%), radial-gradient(at var(--bx3) var(--by3), hsl(355, 100%, 80%) 0px, transparent 50%), radial-gradient(at var(--bx4) var(--by4), hsl(37, 70%, 70%) 0px, transparent 50%), radial-gradient(at var(--bx5) var(--by5), hsl(101, 100%, 85%) 0px, transparent 50%), radial-gradient(at var(--bx6) var(--by6), hsl(189, 77%, 72%) 0px, transparent 50%);
  animation: btnGrad 6s linear infinite, btnGrad_fade 3s linear forwards;
}
@media (hover) {
  .btn--anime:hover:before {
    opacity: 1 !important;
  }
}

@property --bx1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 10%;
}
@property --by1 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 90%;
}
@property --bx2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 52%;
}
@property --by2 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 87%;
}
@property --bx3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 91%;
}
@property --by3 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 87%;
}
@property --bx4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}
@property --by4 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 13%;
}
@property --bx5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 49%;
}
@property --by5 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 7%;
}
@property --bx6 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 91%;
}
@property --by6 {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 8%;
}
@keyframes btnGrad {
  0% {
    --bx1: 10%;
    --by1: 90%;
    --bx2: 52%;
    --by2: 91%;
    --bx3: 91%;
    --by3: 87%;
    --bx4: 7%;
    --by4: 13%;
    --bx5: 49%;
    --by5: 7%;
    --bx6: 91%;
    --by6: 8%;
  }
  20% {
    --bx1: 48%;
    --by1: 89%;
    --bx2: 86%;
    --by2: 85%;
    --bx3: 94%;
    --by3: 29%;
    --bx4: 8%;
    --by4: 81%;
    --bx5: 11%;
    --by5: 11%;
    --bx6: 55%;
    --by6: 7%;
  }
  40% {
    --bx1: 84%;
    --by1: 82%;
    --bx2: 97%;
    --by2: 47%;
    --bx3: 70%;
    --by3: 5%;
    --bx4: 41%;
    --by4: 88%;
    --bx5: 7%;
    --by5: 61%;
    --bx6: 19%;
    --by6: 7%;
  }
  60% {
    --bx1: 93%;
    --by1: 31%;
    --bx2: 65%;
    --by2: 4%;
    --bx3: 12%;
    --by3: 10%;
    --bx4: 79%;
    --by4: 83%;
    --bx5: 44%;
    --by5: 86%;
    --bx6: 8%;
    --by6: 63%;
  }
  80% {
    --bx1: 51%;
    --by1: 7%;
    --bx2: 17%;
    --by2: 12%;
    --bx3: 8%;
    --by3: 72%;
    --bx4: 93%;
    --by4: 18%;
    --bx5: 86%;
    --by5: 77%;
    --bx6: 49%;
    --by6: 84%;
  }
}
@keyframes btnGrad_fade {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*Text Animation*/
.fadein {
  opacity: 0;
  transform: translateY(0.5rem);
  transition: 0.5s ease-in;
}

.js-text.show + .fadein {
  opacity: 1;
  transform: translateY(0);
}

.js-line {
  overflow: hidden;
  display: inline-flex;
  flex-wrap: wrap;
}

.txtIn {
  transform: translateY(110%);
  clip-path: polygon(0 100%, 0 100%, 100% 100%, 100% 100%);
}

.anime.show .txtIn {
  animation: textIn 0.4s cubic-bezier(0.77, 0, 0.175, 1) both;
}

.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@keyframes textIn {
  0% {
    transform: translateY(110%);
    clip-path: polygon(0 100%, 0 100%, 100% 100%, 100% 100%);
  }
  100% {
    transform: translateY(0);
    clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  }
}
/*---------------------
  HOME
----------------------*/
.home__bottom img {
  width: 100%;
}

.kv {
  padding-inline: 0.8rem;
}
@media screen and (min-width: 768px) {
  .kv {
    padding-inline: 4rem;
  }
}
.kv__wrap {
  position: relative;
}
.kv__image {
  border-radius: 1.6rem;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .kv__image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 2rem;
  }
}
.kv__image .swiper {
  width: 100%;
}
.kv__image .swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: clip-path 2.5s cubic-bezier(0.77, 0, 0.2, 1), transform 7s ease-in-out;
  transform: scale(1);
}
.kv__swiper1 .swiper-slide.swiper-slide-next img {
  clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%);
}
@media screen and (min-width: 768px) {
  .kv__swiper1 .swiper-slide.swiper-slide-next img {
    clip-path: polygon(0% 0%, 0% 0%, 100% 0%, 100% 0%);
  }
}
.kv__swiper1 .swiper-slide.swiper-slide-active img {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .kv__swiper1 .swiper-slide.swiper-slide-active img {
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
  }
}
.kv__swiper2 .swiper-slide.swiper-slide-next img {
  clip-path: polygon(100% 0%, 100% 100%, 100% 100%, 100% 0%);
}
@media screen and (min-width: 768px) {
  .kv__swiper2 .swiper-slide.swiper-slide-next img {
    clip-path: polygon(0% 100%, 0% 100%, 100% 100%, 100% 100%);
  }
}
.kv__swiper2 .swiper-slide.swiper-slide-active img {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
  transform: scale(1.1);
}
@media screen and (min-width: 768px) {
  .kv__swiper2 .swiper-slide.swiper-slide-active img {
    clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
  }
}
.kv_slogan {
  position: absolute;
  top: -34px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-inline: 1.2rem;
}
@media screen and (min-width: 576px) {
  .kv_slogan {
    padding-inline: 5.5rem;
    justify-content: flex-end;
    padding-bottom: 0rem;
  }
}
@media screen and (min-width: 980px) {
  .kv_slogan {
    padding-inline: 6.8rem;
    padding-bottom: 0rem;
  }
}
@media screen and (min-width: 1200px) {
  .kv_slogan {
    padding-inline: 8.5rem;
    padding-bottom: 0rem;
  }
}
.kv_slogan h1 {
  display: flex;
  flex-direction: column;
}
.kv_slogan h1 span {
  position: relative;
  display: block;
  line-height: 1;
  width: fit-content;
  padding: 0.5rem;
  font-size: 1.8rem;
  font-weight: 700;
  clip-path: polygon(0% 0%, 0% 100%, 0% 100%, 0% 0%);
  transition: clip-path 0.8s cubic-bezier(0.77, 0, 0.2, 1);
}
@media screen and (min-width: 576px) {
  .kv_slogan h1 span {
    font-size: 2rem;
    padding: 0.8rem;
  }
}
@media screen and (min-width: 980px) {
  .kv_slogan h1 span {
    font-size: 2rem;
    padding: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .kv_slogan h1 span {
    font-size: 3rem;
    padding: 1.5rem;
  }
}
.kv_slogan h1 span + span {
  margin-top: 0.5rem;
}
@media screen and (min-width: 576px) {
  .kv_slogan h1 span + span {
    margin-top: 1rem;
  }
}
@media screen and (min-width: 980px) {
  .kv_slogan h1 span + span {
    margin-top: 0.9rem;
  }
}
@media screen and (min-width: 1200px) {
  .kv_slogan h1 span + span {
    margin-top: 1rem;
  }
}
.kv_slogan h1 span:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.94);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.kv_slogan h1 span:after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  transition: width 0.8s cubic-bezier(0.77, 0, 0.2, 1) 0.6s;
}
.kv_slogan p {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 1rem;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  opacity: 0;
  transition: opacity 0.8s ease-in-out 1.5s;
}
@media screen and (min-width: 576px) {
  .kv_slogan p {
    font-size: 1.6rem;
    margin-top: 1.4rem;
    max-width: 64rem;
  }
}
@media screen and (min-width: 980px) {
  .kv_slogan p {
    font-size: 2rem;
    margin-top: 1rem;
    max-width: 90rem;
  }
}
@media screen and (min-width: 1200px) {
  .kv_slogan p {
    font-size: 2.4rem;
    margin-top: 1.7rem;
    max-width: 110rem;
  }
}
.kv_scroll {
  position: absolute;
  bottom: 2rem;
  left: 1.2rem;
  z-index: 1;
  color: #fff;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.25));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .kv_scroll {
    left: 2.4rem;
    bottom: 2.4rem;
  }
}
.kv_scroll p {
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .kv_scroll p {
    font-size: 1.4rem;
  }
}
.kv_scroll span {
  height: 6.4rem;
  width: 1px;
  background-color: #fff;
  margin-top: 0.4rem;
  position: relative;
}
@media screen and (min-width: 980px) {
  .kv_scroll span {
    height: 10rem;
  }
}
.kv_scroll span:after {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: calc(50% - 0.45rem);
  animation: position 1.3s ease infinite;
}

.loaded .kv_slogan h1 span {
  clip-path: polygon(0% 0%, 0% 100%, 100% 100%, 100% 0%);
}
.loaded .kv_slogan h1 span:after {
  width: 0;
}
.loaded .kv_slogan p {
  opacity: 1;
}

@keyframes position {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
/*about*/
.home-about {
  position: relative;
  overflow: hidden;
  padding-top: 16.2rem;
  z-index: 0;
  background: url(../img/parts/mofing_bg_sp.webp) no-repeat center top 16.2rem/cover;
}
@media screen and (min-width: 768px) {
  .home-about {
    background-image: url(../img/parts/mofing_bg.webp);
    padding-top: 10.4rem;
    background-position: center top 10.4rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about {
    padding-top: 12.8rem;
    background-position: center top 12.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about {
    padding-top: 16rem;
    background-position: center top 16rem;
  }
}
.home-about__bg {
  position: absolute;
  top: 18.2rem;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .home-about__bg {
    top: 13.65rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__bg {
    top: 16.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__bg {
    top: 21rem;
  }
}
.home-about__bg img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .home-about__bg img {
    height: 80%;
  }
}
.home-about__bg + .container {
  position: relative;
  z-index: 1;
}
.home-about__wrap {
  height: 57rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 12.6rem;
}
@media screen and (min-width: 768px) {
  .home-about__wrap {
    height: 43rem;
    margin-bottom: 10.4rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__wrap {
    height: 53rem;
    margin-bottom: 12.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__wrap {
    height: 66rem;
    margin-bottom: 16rem;
  }
}
.home-about__wrap.show figure img {
  opacity: 1;
  transform: scale(1);
}
.home-about figure {
  position: absolute;
  pointer-events: none;
  overflow: hidden;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .home-about figure {
    border-radius: 1rem;
  }
}
.home-about figure img {
  width: 100%;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1s ease-out, transform 1.5s ease-out;
}
.home-about__img--1 {
  left: 2rem;
  top: 0;
  width: 16rem;
}
@media screen and (min-width: 768px) {
  .home-about__img--1 {
    left: 2.6rem;
    top: 10.4rem;
    width: 15.6rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__img--1 {
    left: 3.2rem;
    top: 12.8rem;
    width: 19.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__img--1 {
    left: 4rem;
    top: 16rem;
    width: 24rem;
  }
}
.home-about__img--2 {
  left: 2rem;
  bottom: 0;
  width: 9.5rem;
}
@media screen and (min-width: 768px) {
  .home-about__img--2 {
    left: auto;
    bottom: auto;
    right: 7.8rem;
    top: 0;
    width: 13rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__img--2 {
    right: 9.6rem;
    width: 16rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__img--2 {
    right: 12rem;
    width: 20rem;
  }
}
.home-about__img--2 img {
  transition-delay: 0.3s !important;
}
.home-about__img--3 {
  right: 2rem;
  top: 10rem;
  width: 10rem;
}
@media screen and (min-width: 768px) {
  .home-about__img--3 {
    right: auto;
    top: auto;
    left: 15rem;
    bottom: 1.3rem;
    width: 13rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__img--3 {
    left: 18.5rem;
    bottom: 1.6rem;
    width: 16rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__img--3 {
    left: 23.1rem;
    bottom: 2rem;
    width: 20rem;
  }
}
.home-about__img--3 img {
  transition-delay: 0.5s !important;
}
.home-about__img--4 {
  right: 0;
  bottom: 3.5rem;
  width: 18rem;
}
@media screen and (min-width: 768px) {
  .home-about__img--4 {
    right: 0;
    bottom: 0;
    width: 24.7rem;
  }
}
@media screen and (min-width: 980px) {
  .home-about__img--4 {
    width: 30.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-about__img--4 {
    width: 38rem;
  }
}
.home-about__img--4 img {
  transition-delay: 0.2s !important;
}
.home-about__btn {
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .home-about__btn {
    padding-bottom: 0;
  }
}

/*service*/
.home-service {
  background-color: #fff;
  border-radius: 1.6rem;
  padding: 6.4rem 3rem 6rem;
}
@media screen and (min-width: 768px) {
  .home-service {
    padding: 6.4rem 3rem;
  }
}
@media screen and (min-width: 980px) {
  .home-service {
    padding: 6.4rem 8rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-service {
    padding: 6.4rem 8rem;
  }
}
.home-service dl {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home-service dl {
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 38rem;
    column-gap: 2.5rem;
  }
}
@media screen and (min-width: 980px) {
  .home-service dl {
    grid-template-columns: 1fr 38rem;
    column-gap: 3rem;
  }
}
@media screen and (min-width: 1200px) {
  .home-service dl {
    grid-template-columns: 1fr 38rem;
    column-gap: 7.2rem;
  }
}
.home-service dt {
  margin-bottom: 4rem;
}
.home-service dd h3 {
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.home-service dd p {
  line-height: 2;
  margin-bottom: 4rem;
}

/*news*/
@media screen and (min-width: 768px) {
  .home-news {
    display: grid;
    grid-template-columns: 21.2rem 1fr;
    grid-template-rows: auto 1fr;
  }
}
@media screen and (min-width: 1200px) {
  .home-news {
    grid-template-columns: 26.5rem 1fr;
  }
}
@media screen and (min-width: 768px) {
  .home-news .sec__ttl {
    grid-area: 1/1/2/2;
    margin-bottom: 8rem;
  }
}
.home-news__item {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .home-news__item {
    grid-area: 1/2/3/3;
    margin-bottom: 0;
  }
}
.home-news__item ul {
  border-top: 1px solid var(--color-border);
}
.home-news__item ul li a {
  display: block;
  padding-block: 2.4rem;
  position: relative;
}
.home-news__item ul li a::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  position: absolute;
  bottom: 0;
  left: 0;
}
.home-news__item ul li a::after {
  content: "";
  width: 0;
  height: 1px;
  background-color: var(--color-heading);
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s ease;
}
@media (hover) {
  .home-news__item ul li a:hover::after {
    width: 100%;
  }
}
.home-news__item--data {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 1.2rem;
}
.home-news__item--data time {
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--color-subtxt);
}
.home-news__item--data span {
  margin-left: 1.6rem;
  background-color: var(--color-lightgray);
  border: 1px solid var(--color-lightborder);
  color: var(--color-heading);
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.2rem 2.8rem;
  border-radius: 2rem;
}
.home-news__item h3 {
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--color-txt);
}
@media screen and (min-width: 768px) {
  .home-news__btn {
    grid-area: 2/1/3/2;
  }
}

/*recruit*/
.home-recruit {
  background: url(../img/home/bg_recruit_sp.webp) no-repeat center bottom/100% auto var(--color-gray);
}
@media screen and (max-width: 767px) {
  .home-recruit {
    padding-bottom: 25.6rem;
  }
}
@media screen and (min-width: 768px) {
  .home-recruit {
    background: url(../img/home/bg_recruit.webp) no-repeat center/144rem auto #fbfbfb;
  }
}
@media screen and (min-width: 1400px) {
  .home-recruit {
    background: url(../img/home/bg_recruit.webp) no-repeat center/cover #fbfbfb;
  }
}
.home-recruit h3 {
  text-align: center;
  line-height: 1.6;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .home-recruit h3 {
    text-align: left;
  }
}
.home-recruit h3 em {
  font-style: normal;
  font-size: 133.4%;
}
.home-recruit p {
  line-height: 2;
  margin-bottom: 4rem;
}

/*---------------------
  Contact
----------------------*/
.contact__list {
  margin-top: 4rem;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 979px) {
  .contact__list {
    max-width: 54rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 980px) {
  .contact__list {
    margin-bottom: 8.8rem;
  }
}
.contact__list li {
  border: 1px solid var(--color-border);
  border-radius: 1.6rem;
  display: grid;
  row-gap: 1.6rem;
  padding: 3.2rem 1rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .contact__list li {
    border-radius: 2rem;
  }
}
@media screen and (min-width: 980px) {
  .contact__list li {
    padding: 4rem 1rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__list li p {
    padding-bottom: 0.8rem;
  }
}
.contact__lookme dd p {
  margin-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .contact__lookme dd p {
    margin-bottom: 4rem;
  }
}
.contact__form-ttl {
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .contact__form-ttl {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__form-ttl {
    margin-bottom: 8rem;
  }
}

.form-dl {
  display: grid;
  row-gap: 2.4rem;
}
.form-dl .row {
  display: grid;
  row-gap: 0.8rem;
}
@media screen and (min-width: 768px) {
  .form-dl .row {
    grid-template-columns: 18rem 1fr;
    column-gap: 2rem;
  }
}
.form-dl dt {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .form-dl dt {
    display: flex;
    align-items: flex-start;
    padding-top: 1.2rem;
  }
}
.form-dl dt p {
  display: flex;
  align-items: center;
  column-gap: 0.8rem;
}
.form-dl dt .label {
  background-color: var(--color-red);
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 0.2rem 0.4rem;
  border-radius: 2rem;
}
.form-dl .size-s {
  width: 16rem;
}

.control-group p {
  display: flex;
  align-items: center;
}
.control-group + .control-group {
  margin-top: 0.8rem;
}

.wpcf7-form-control-wrap {
  display: block;
}

.btn-section p {
  position: relative;
  width: fit-content;
  margin-inline: auto;
}
.btn-section p:has(> input[type=submit]):after {
  content: "";
  pointer-events: none;
  width: 3.5rem;
  aspect-ratio: 1;
  background: url(../img/parts/icon_arrow-thin-white.svg) no-repeat center/cover;
  position: absolute;
  top: calc(50% - 1.75rem);
  left: 5.5rem;
  transition: 0.3s ease;
}
@media (hover) {
  .btn-section p:has(> .btn:not(:disabled)):hover::after {
    filter: brightness(0) saturate(100%) invert(20%) sepia(26%) saturate(554%) hue-rotate(198deg) brightness(97%) contrast(94%);
  }
  .btn-section p:has(> .btn:not(:disabled)):hover .btn {
    background-color: #fff;
    color: var(--color-heading);
  }
}
.btn-section a {
  color: var(--color-blue);
  text-decoration: none !important;
}
@media (hover) {
  .btn-section a:hover {
    text-decoration: underline !important;
    text-underline-offset: 0.2em;
  }
}
.btn-section .btn {
  width: 24.8rem;
  border: 1px solid var(--color-heading);
}
.btn-section .btn:disabled {
  opacity: 0.5;
}
.btn-section .wpcf7-spinner {
  width: 2.4rem;
  height: 2.4rem;
  margin: 0;
  position: absolute;
  top: calc(50% - 1.2rem);
  left: calc(50% - 1.2rem);
}

/*error message*/
.wpcf7-not-valid-tip {
  font-weight: 500;
  color: var(--color-red);
}

input[name=your-name] + .wpcf7-not-valid-tip:before {
  content: "※お名前を";
}

input[name=your-name-kana] + .wpcf7-not-valid-tip:before {
  content: "※ふりがなを";
}

input[name=your-email] + .wpcf7-not-valid-tip:before {
  content: "※メールアドレスを";
}

input[name=your-tel] + .wpcf7-not-valid-tip:before {
  content: "※電話番号を";
}

textarea[name=your-message] + .wpcf7-not-valid-tip {
  color: transparent;
  font-size: 0;
}
textarea[name=your-message] + .wpcf7-not-valid-tip:before {
  content: "※この項目は必須です";
  font-size: 1.6rem;
  color: var(--color-red);
}

/*---------------------
  News
----------------------*/
.news-summary {
  margin-bottom: 4rem;
}
@media screen and (max-width: 575px) {
  .news-summary .accordion {
    border-radius: 1rem;
    overflow: hidden;
  }
}
.news-summary .accordion dt {
  background-color: var(--color-lightgray);
  padding: 1.3rem 2.4rem;
  justify-content: space-between;
  color: var(--color-heading);
}
@media screen and (max-width: 575px) {
  .news-summary__tab {
    background-color: var(--color-lightgray);
    background: #F5F4F7;
    padding-bottom: 0.5rem;
  }
}
@media screen and (min-width: 576px) {
  .news-summary__tab {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
  }
}
.news-summary__tab li a {
  padding: 0.8rem 2.4rem;
  display: block;
  font-weight: 500;
  transition: 0.3s ease;
  color: var(--color-heading);
}
@media screen and (min-width: 576px) {
  .news-summary__tab li a {
    background-color: var(--color-lightgray);
    border-radius: 1rem;
    overflow: hidden;
    line-height: 1;
    padding: 1.2rem 2.4rem;
  }
}
.news-summary__tab li a.active {
  background-color: var(--color-heading);
  color: #fff;
}
@media (hover) {
  .news-summary__tab li a:hover {
    background-color: var(--color-heading);
    color: #fff;
  }
}
.news-container {
  margin-top: 3.3rem;
}
.news-contents {
  padding-bottom: 8rem;
  border-bottom: 1px solid var(--color-grayborder);
}
.news-contents .wp-block-image {
  margin-block: 3.2rem;
}
.news-contents p {
  margin-bottom: 2.4rem;
}
.news-contents p.has-medium-font-size {
  margin-top: 4.8rem;
}
.news-head {
  padding-bottom: 4.8rem;
  border-bottom: 1px solid var(--color-grayborder);
  margin-bottom: 4.8rem;
}
.news-head__info {
  display: flex;
  align-items: center;
  column-gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.news-head__info .label {
  font-size: 1.2rem;
  background-color: var(--color-lightgray);
  color: var(--color-heading);
  border: 1px solid var(--color-lightborder);
  font-weight: 700;
  padding: 0.1rem 1rem;
  border-radius: 2rem;
}
.news-head__date {
  font-size: 1.6rem;
}
.news-share {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem 0;
  margin-top: 8rem;
}
@media screen and (min-width: 576px) {
  .news-share {
    flex-direction: row;
    justify-content: flex-end;
    gap: 0 1.6rem;
  }
}
.news-share dt {
  font-size: 1.8rem;
  color: var(--color-heading);
  font-weight: 500;
  line-height: 1;
}
@media screen and (min-width: 576px) {
  .news-share dt {
    font-size: 1.9rem;
  }
}
.news-share dd {
  display: flex;
  justify-content: center;
  column-gap: 0.8rem;
}
.news-share dd a {
  width: 5rem;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-grayborder);
  border-radius: 1rem;
  overflow: hidden;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .news-share dd a:hover {
    opacity: 0.7;
  }
}
.news-share dd a img {
  width: 2.6rem;
}
.news-btn {
  margin-top: 8rem;
}

.col-item {
  row-gap: 1.6rem;
}
@media (hover) {
  .col-item:hover .col-item__img img {
    transform: scale(1.1);
  }
  .col-item:hover .col-item__body {
    opacity: 0.5;
  }
}
.col-item__img {
  border: 1px solid var(--color-lightborder);
  border-radius: 1rem;
  overflow: hidden;
}
.col-item__img img {
  width: 100%;
  aspect-ratio: 346.7/192;
  object-fit: contain;
  transition: transform 0.6s ease;
}
.col-item__head {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  margin-bottom: 1rem;
  align-items: center;
}
@media screen and (min-width: 980px) {
  .col-item__head {
    margin-bottom: 1rem;
  }
}
.col-item__head .label {
  font-size: 1rem;
  background-color: var(--color-lightgray);
  color: var(--color-heading);
  border: 1px solid var(--color-lightborder);
  font-weight: 700;
  padding: 0.2rem 1rem;
  border-radius: 2rem;
}
@media screen and (min-width: 980px) {
  .col-item__head .label {
    font-size: 1.2rem;
    padding: 0.1rem 1rem;
  }
}
.col-item__body {
  transition: opacity 0.3s ease-in;
}
.col-item__date {
  font-size: 1.4rem;
}
@media screen and (min-width: 980px) {
  .col-item__date {
    font-size: 1.6rem;
  }
}
.col-item__txt {
  font-size: 1.4rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (min-width: 980px) {
  .col-item__txt {
    font-size: 1.6rem;
  }
}

.post-navigation {
  margin-top: 8rem;
}
.post-navigation__link {
  display: flex;
  justify-content: space-between;
}
.post-navigation__link li {
  width: 16.6rem;
}
@media screen and (min-width: 576px) {
  .post-navigation__link li {
    width: 18rem;
  }
}
@media screen and (min-width: 980px) {
  .post-navigation__link li {
    width: fit-content;
    max-width: 40.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .post-navigation__link li {
    max-width: 51rem;
  }
}
.post-navigation__link li a {
  display: grid;
  row-gap: 1.6rem;
  align-items: flex-start;
  transition: opacity 0.3s ease;
}
@media (hover) {
  .post-navigation__link li a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 980px) {
  .post-navigation__link li a {
    grid-template-columns: 14.4rem 1fr;
    column-gap: 1.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .post-navigation__link li a {
    grid-template-columns: 18rem 1fr;
    column-gap: 1.6rem;
  }
}
.post-navigation__label {
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 2rem;
  line-height: 1;
}
@media screen and (min-width: 980px) {
  .post-navigation__label {
    font-size: 1.9rem;
  }
}
.post-navigation__img {
  border: 1px solid var(--color-lightborder);
  border-radius: 1rem;
  overflow: hidden;
}
.post-navigation__img img {
  width: 100%;
  aspect-ratio: 346.7/192;
  object-fit: contain;
}
.post-navigation__title {
  font-size: 1.4rem;
  font-weight: 500;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  line-height: 1.5;
}
@media screen and (min-width: 980px) {
  .post-navigation__title {
    font-size: 1.6rem;
    -webkit-line-clamp: 2;
  }
}
@media screen and (min-width: 1200px) {
  .post-navigation__title {
    font-size: 1.9rem;
  }
}

.thanks {
  display: grid;
  row-gap: 4rem;
}

/*---------------------
  Company
----------------------*/
.purpose {
  text-align: center;
  row-gap: 2.7rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .purpose {
    row-gap: 4rem;
  }
}
.purpose p {
  white-space: nowrap;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .value {
    display: grid;
    grid-template-columns: 31.3% 1fr;
    column-gap: 6.6%;
    align-items: center;
  }
}
@media screen and (min-width: 980px) {
  .value {
    column-gap: 8.3%;
  }
}
.value + .value {
  margin-top: 8rem;
}
@media screen and (min-width: 980px) {
  .value + .value {
    margin-top: 10rem;
  }
}
.value dt {
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .value dt {
    margin-bottom: 0;
  }
}
.value dt img {
  width: 24rem;
}
@media screen and (min-width: 768px) {
  .value dt img {
    width: 100%;
  }
}
.value dd h3 {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 980px) {
  .value dd h3 {
    font-size: 3.6rem;
  }
}
.value dd h3 span {
  font-weight: 500;
  font-family: var(--font-en);
  font-size: 3.2rem;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .value dd h3 span {
    font-size: 4rem;
  }
}
.value dd h3 strong {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
}
.value dd p {
  line-height: 2;
}

.origins h2 {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .origins__block {
    display: flex;
    flex-direction: row-reverse;
    column-gap: 6.8%;
  }
}
@media screen and (min-width: 980px) {
  .origins__block {
    column-gap: 8.5%;
  }
}
.origins__block + .origins__block {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .origins__block + .origins__block {
    margin-top: 6.4rem;
  }
}
@media screen and (min-width: 980px) {
  .origins__block + .origins__block {
    margin-top: 8rem;
  }
}
.origins__block dt {
  margin-bottom: 4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .origins__block dt {
    margin-bottom: 0;
    width: 44.6%;
  }
}
@media screen and (min-width: 768px) {
  .origins__block dd {
    flex: 1;
  }
}
.origins__block dd h4 {
  margin-bottom: 2.4rem;
}
.origins__block dd p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .origins__block--logo {
    flex-direction: row;
    column-gap: 4.3%;
  }
}
@media screen and (min-width: 980px) {
  .origins__block--logo {
    column-gap: 5.4%;
  }
}
@media screen and (min-width: 768px) {
  .origins__block--logo dt {
    width: 37.5%;
  }
}
.origins__block--logo dt img {
  width: 20rem;
}
@media screen and (min-width: 768px) {
  .origins__block--logo dt img {
    width: 100%;
  }
}

/*-----------
  team
 ------------*/
.team {
  display: grid;
  row-gap: 6rem;
}
@media screen and (min-width: 576px) {
  .team {
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem 4rem;
  }
}
@media screen and (min-width: 768px) {
  .team {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 3rem;
  }
}
@media screen and (min-width: 980px) {
  .team {
    gap: 6rem;
  }
}
@media screen and (min-width: 1200px) {
  .team {
    gap: 8rem;
  }
}
.team li:nth-child(6) {
  margin-bottom: 15rem;
}
@media (hover) {
  .team li:hover .team__img {
    transform: rotateY(-180deg);
  }
  .team li:hover h3:after {
    background-color: var(--color-light);
  }
}
.team__img {
  margin-bottom: 2rem;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 1s ease;
}
.team__img img {
  border-radius: 1rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .team__img .on-img {
    display: none !important;
  }
}
.team p {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--color-heading);
}
.team h3 {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-right: 5.2rem;
}
.team h3 strong {
  font-size: 2.6rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.team h3 span {
  font-size: 1.6rem;
  font-weight: 400;
}
.team h3:after {
  content: "";
  width: 4.4rem;
  aspect-ratio: 1;
  border-radius: 50%;
  background: url(../img/parts/icon_arrow-thin-white.svg) no-repeat center/100% auto var(--color-heading);
  transition: 0.3s ease;
  position: absolute;
  right: 0;
  top: calc(50% - 2.2rem);
}
@media screen and (min-width: 768px) {
  .team-swiper .swiper-pagination,
  .team-swiper .swiper-button-prev,
  .team-swiper .swiper-button-next {
    display: none !important;
  }
}
.team-swiper .swiper-button-next,
.team-swiper .swiper-button-prev {
  color: #000;
  width: 1.2rem;
  height: 1.2rem;
  top: calc(50% - 2.2rem);
  margin-top: 0;
}
.team-swiper .swiper-button-next {
  right: 0.5rem;
}
.team-swiper .swiper-button-prev {
  left: 0.5rem;
}
.team-swiper .swiper-pagination {
  position: static;
  display: flex;
  justify-content: center;
  column-gap: 2rem;
  margin-top: 2rem;
}
.team-swiper .swiper-pagination-bullet {
  width: 1.2rem;
  height: 1.2rem;
  margin: 0 !important;
  background-color: var(--color-grayborder);
}
.team-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-heading);
}

@media screen and (min-width: 768px) {
  .off-img {
    position: relative;
    z-index: 2;
    backface-visibility: hidden;
  }
}

@media screen and (min-width: 768px) {
  .on-img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transform: rotateY(-180deg) !important;
    backface-visibility: hidden;
  }
}

@media screen and (min-width: 768px) {
  .ov-change {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 1s ease;
    cursor: pointer;
  }
}
@media (hover) {
  .ov-change:hover {
    transform: rotateY(-180deg);
  }
}

/* 一覧でスピンしない人 */
li.no-spin figure.team__img {
  transform: none !important;
  transition: none !important;
}
li.no-spin figure.team__img img {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}
li.no-spin:hover figure.team__img {
  transform: none !important;
}

/*---------------------
  Representative Message
----------------------*/
.message {
  display: flex;
  flex-direction: column;
  row-gap: 4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .message {
    flex-direction: row;
    column-gap: 7%;
    align-items: flex-start;
  }
}
.message__img {
  width: 100%;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .message__img {
    flex: 0 0 32%;
    max-width: 32rem;
  }
}
.message__img img {
  width: 100%;
  border-radius: 1rem;
  display: block;
}
.message__body {
  flex: 1;
}
.message__lead {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 3rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .message__lead {
    font-size: 3.2rem;
  }
}
.message p {
  margin-bottom: 2.4rem;
  line-height: 2;
}
.message .message__caption {
  font-size: 1.4rem;
  color: #666;
  margin-top: 0.6rem;
  text-align: right;
  line-height: 1.5;
}
.message .message_strong {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 2.4rem;
}
.message__sign {
  margin-top: 4rem;
  text-align: right;
}
.message__sign img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .message__sign img {
    width: 57rem;
  }
}

/*----------------
  overview
------------------*/
.company-info-page .container,
.company-info-page .inner {
  max-width: 112rem;
  margin-inline: auto;
}

.company-info {
  margin-top: 8rem;
  /*  Google Map */
}
.company-info h2.common_title {
  margin-bottom: 4rem;
  text-align: left;
}
.company-info__list {
  display: block;
  /* ▼ SP/PC 共通：最後の線なし */
}
@media screen and (min-width: 768px) {
  .company-info__list {
    display: grid;
    grid-template-columns: 25% 1fr;
    column-gap: 0%;
    row-gap: 0;
  }
}
.company-info__list dt {
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 0.4rem;
  margin-top: 1rem;
  border-bottom: none; /* SP */
}
@media screen and (min-width: 768px) {
  .company-info__list dt {
    /* PC：dt 自体には線不要 */
    margin: 0;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
  }
}
.company-info__list dd {
  line-height: 1.5;
  padding-bottom: 0.8rem;
  /* SP：dd 下にだけ線 */
  border-bottom: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .company-info__list dd {
    /* PC：dd も同じ高さで横並び */
    line-height: 1.9;
    margin: 0;
    padding: 1.2rem 0;
    border-bottom: 1px solid #ddd;
  }
}
.company-info__list dd strong {
  display: block;
  margin: 0.8rem 0 0.8rem;
  font-size: 1.6rem;
  font-weight: 700;
}
.company-info__list dd p {
  margin-bottom: 1.2rem;
}
.company-info__list dt:last-of-type,
.company-info__list dd:last-of-type {
  border-bottom: none !important;
}
.company-info__map {
  margin: 2rem 0 3rem;
}
.company-info__map iframe {
  width: 100%;
  height: 260px;
  border: 0;
  border-radius: 0.8rem;
}
@media screen and (min-width: 768px) {
  .company-info__map iframe {
    height: 340px;
  }
}

/*  award */
.awards {
  list-style: none;
  padding: 0;
  margin: 4rem auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* SP：2カラム */
  gap: 4rem 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .awards {
    grid-template-columns: repeat(4, 1fr); /* PC：4カラム */
    gap: 6rem 3rem;
  }
}
.awards__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.awards__link {
  display: block;
  text-decoration: none;
  color: var(--color-heading);
  /* hover
  @include forward.hover() {
    opacity: 0.75;
  }*/
}
.awards__link img {
  width: 120px;
  height: auto;
  margin: 0 auto 1.6rem;
}
@media screen and (min-width: 768px) {
  .awards__link img {
    width: 140px;
  }
}
.awards__link p {
  font-size: 1.5rem;
  line-height: 1.6;
  color: var(--color-heading);
  /* text-decoration: underline; */
  text-align: left;
}

/*---------------------
  materiality
----------------------*/
.materiality-section .container,
.materiality-section .inner {
  max-width: 112rem;
  margin-inline: auto;
}
.materiality-section .materiality {
  margin-top: 8rem;
}
.materiality-section .materiality h2.space-h2 {
  margin-bottom: 4rem;
  text-align: left;
}
.materiality-section .materiality .materiality_box {
  margin-bottom: 10rem;
}
.materiality-section .materiality .materiality_box--last {
  margin-bottom: 3rem !important;
}
.materiality-section .materiality h3 {
  font-size: 2.7rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: var(--color-heading);
}
.materiality-section .materiality h4 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--color-heading);
}
.materiality-section .materiality h5 {
  font-size: 1.9rem;
}
.materiality-section .materiality p {
  line-height: 1.9;
  font-size: 1.6rem;
  margin-bottom: 3rem;
}
.materiality-section .materiality p br {
  display: block;
  margin-bottom: 1rem;
}

/*----------------
  materiality slider
------------------*/
.materiality_slider {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  padding-bottom: 2rem;
  /* SP：スクロールバーを表示 */
  /* PC：スクロールバー非表示 */
  /* 内側の横並び */
  /* スライド */
}
.materiality_slider::-webkit-scrollbar {
  height: 6px;
}
.materiality_slider::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 3px;
}
.materiality_slider::-webkit-scrollbar-track {
  background: #f2f2f2;
}
@media screen and (min-width: 768px) {
  .materiality_slider::-webkit-scrollbar {
    display: none;
  }
}
.materiality_slider__inner {
  display: flex;
  column-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .materiality_slider__inner {
    overflow: visible;
    column-gap: 3rem;
  }
}
.materiality_slider__item {
  min-width: 200%;
  max-width: 200%;
  flex-shrink: 0;
  scroll-snap-align: start;
}
@media screen and (min-width: 768px) {
  .materiality_slider__item {
    min-width: 100%;
    max-width: 100%;
    flex-shrink: 1;
    scroll-snap-align: none;
  }
}
.materiality_slider__item img {
  width: 200%;
  height: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .materiality_slider__item img {
    width: 100%;
  }
}

/*----------------
  ESG block
------------------*/
.section-esg {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  row-gap: 3rem;
  /* 番号カラー */
}
.section-esg .esg-block {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
  /* SPは共通 padding */
  /* PCでは高さ調整 */
  /* 左ラベル（カラー付き） */
  /* リスト */
}
.section-esg .esg-block .esg-block__label {
  padding: 1.5rem 4rem;
}
@media screen and (min-width: 768px) {
  .section-esg .esg-block {
    flex-direction: row;
    align-items: flex-start;
    column-gap: 3rem;
  }
  .section-esg .esg-block:nth-child(1) .esg-block__label {
    padding: 11rem 4rem;
  }
  .section-esg .esg-block:nth-child(2) .esg-block__label {
    padding: 1.3rem 4rem;
  }
  .section-esg .esg-block:nth-child(3) .esg-block__label {
    padding: 2.4rem 4rem;
  }
  .section-esg .esg-block:nth-child(4) .esg-block__label {
    padding: 2.4rem 4rem;
  }
}
.section-esg .esg-block__label {
  border-radius: 15px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .section-esg .esg-block__label {
    min-width: 320px;
    justify-content: center;
    font-size: 1.8rem;
  }
}
.section-esg .esg-block__label--social {
  background: #5777dd;
}
.section-esg .esg-block__label--social-gov {
  background: #ffb600;
}
.section-esg .esg-block__label--gov {
  background: #ed4c67;
}
.section-esg .esg-block__label--env {
  background: #2eb1a1;
}
.section-esg .esg-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.section-esg .esg-block__list li {
  display: flex;
  align-items: flex-start;
  column-gap: 0.8rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
.section-esg .num {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  flex-shrink: 0;
}
.section-esg .num.n1, .section-esg .num.n2, .section-esg .num.n3, .section-esg .num.n4, .section-esg .num.n5, .section-esg .num.n6 {
  background: #5577dd;
}
.section-esg .num.n7, .section-esg .num.n8 {
  background: #ffb600;
}
.section-esg .num.n9, .section-esg .num.n10 {
  background: #ed4c67;
}
.section-esg .num.n11, .section-esg .num.n12 {
  background: #2eb1a1;
}

/*----------------
  Trademark Section
------------------*/
.trademark-section .trademark {
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
  margin-top: 3rem;
  /* リスト全体 */
}
.trademark-section .trademark h5 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.trademark-section .trademark__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  row-gap: 1.2rem;
}
.trademark-section .trademark__list li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding-left: 1.8rem;
  position: relative;
}
.trademark-section .trademark__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.2rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}

/*--------------------
  SNS Section
---------------------*/
.sns-section .sns-section__lead {
  margin-top: 1rem;
  font-size: 1.6rem;
  color: #38364e;
}

.sns-list {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  row-gap: 3.2rem;
}

.sns-item {
  display: flex;
  flex-direction: column;
  row-gap: 1.6rem;
  /* 左側（アイコン＋名前） */
  /* 右側（カード 2列 → SP1列） */
}
.sns-item__left {
  display: flex;
  flex-direction: row; /* SP：横並び */
  align-items: center;
  column-gap: 1.2rem;
  width: 100%;
  text-align: left;
}
.sns-item__left .sns-item__icon {
  width: 100px;
  height: auto;
}
.sns-item__left .sns-item__name {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-heading);
}
.sns-item__right {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.6rem;
  width: 100%;
}

/*--------------------
  SNS Card
---------------------*/
.sns-card {
  display: flex;
  align-items: center;
  column-gap: 1.2rem;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #eee;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: 0.2s;
}
.sns-card__thumb {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.sns-card__text {
  flex: 1;
  font-size: 1.5rem;
  line-height: 1.6;
  color: #333;
}
.sns-card i.ic-external {
  width: 22px;
  height: 22px;
  background: url("/assets/img/company/accounts/external.svg") no-repeat center/contain;
}
@media (hover) {
  .sns-card:hover {
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
  }
}

/*--------------------
  PC レイアウト
---------------------*/
@media screen and (min-width: 768px) {
  .sns-card__thumb {
    width: 80px;
    height: 80px;
  }
  .sns-item {
    flex-direction: row;
    column-gap: 7rem;
    align-items: center;
  }
  .sns-item__left {
    flex-direction: column; /* PC：縦並び */
    align-items: center;
    width: 140px;
    text-align: center;
  }
  .sns-item__left .sns-item__name {
    margin-top: 1rem;
  }
  .sns-item__right {
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 140px);
  }
  .sns-item .sns-item__icon {
    width: 130px;
    height: auto;
  }
}
/*--------------------
  Privacy
---------------------*/
.privacy-contents {
  padding-top: 3.3rem;
  line-height: 1.7;
}
.privacy-contents h1 {
  margin-bottom: 4rem;
  border-bottom: 1px solid var(--color-border);
  line-height: 1;
  padding-bottom: 1.2rem;
}
.privacy-contents h2 {
  margin-bottom: 2rem;
}
.privacy-signature {
  text-align: right;
  margin: 2rem 0;
}
.privacy-customer {
  background: #F5F4F7;
  padding: 1rem;
  text-align: center;
}
.privacy-list__title {
  font-size: 1.6rem;
  margin-top: 1rem;
}
.privacy-list > li {
  margin-bottom: 2rem;
}
.privacy-list__inlist {
  margin-left: 1em;
}
.privacy-list__indent li {
  text-indent: -1em;
  margin-left: 1em;
}
.privacy-list__table {
  margin: 3rem 0;
  border: 1px solid var(--color-grayborder);
  max-width: 80rem;
}
.privacy-list__table th {
  background-color: #eee;
  font-weight: 400;
}
.privacy-list__table th, .privacy-list__table td {
  padding: 0.5rem;
  border: 1px solid var(--color-grayborder);
  font-size: 1.4rem;
}
.privacy-list__table li {
  font-size: 1.4rem;
}

/*---------------------
  Service
----------------------*/
.service {
  text-align: center;
  display: grid;
  row-gap: 4rem;
}
@media screen and (min-width: 980px) {
  .service {
    row-gap: 6rem;
  }
}
.service__ttl {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  .service__ttl {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 980px) {
  .service__ttl {
    font-size: 3.2rem;
  }
}
@media screen and (min-width: 1200px) {
  .service__ttl {
    font-size: 4rem;
  }
}
.service__txt {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .service__txt {
    max-width: 53rem;
    margin-inline: auto;
  }
}
@media screen and (min-width: 980px) {
  .service__txt {
    max-width: 62.5rem;
    font-size: 1.9rem;
  }
}
.service__logo img {
  width: 16rem;
}
@media screen and (min-width: 980px) {
  .service__logo img {
    width: 18rem;
  }
}
@media screen and (min-width: 1200px) {
  .service__logo img {
    width: 22rem;
  }
}
.service__movie {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .service__movie {
    margin-top: 0;
  }
}
.service__movie figure {
  width: 29rem;
  margin-inline: auto;
  aspect-ratio: 16/9;
}
@media screen and (min-width: 576px) {
  .service__movie figure {
    width: 100%;
    max-width: 90rem;
  }
}
.service__movie iframe {
  width: 100%;
  height: 100%;
}
.service__movie p {
  margin-top: 2.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 576px) {
  .service__movie p {
    margin-top: 2rem;
  }
}
.service-detail__ttl {
  margin-bottom: 1.8rem;
  font-size: 2rem;
}
@media screen and (min-width: 980px) {
  .service-detail__ttl {
    font-size: 2.6rem;
    margin-bottom: 5.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-detail__ttl {
    font-size: 3.2rem;
    margin-bottom: 7rem;
  }
}
@media screen and (min-width: 768px) {
  .service-detail__item {
    display: flex;
    column-gap: 3.9rem;
  }
}
@media screen and (min-width: 980px) {
  .service-detail__item {
    column-gap: 4.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-detail__item {
    column-gap: 6rem;
  }
}
@media screen and (min-width: 768px) {
  .service-detail__item--reverse {
    flex-direction: row-reverse;
  }
}
.service-detail__item + .service-detail__item {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item + .service-detail__item {
    margin-top: 5.2rem;
  }
}
@media screen and (min-width: 980px) {
  .service-detail__item + .service-detail__item {
    margin-top: 6.4rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-detail__item + .service-detail__item {
    margin-top: 8rem;
  }
}
.service-detail__item dt {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item dt {
    margin-bottom: 0;
    width: 41.7%;
  }
}
@media screen and (min-width: 768px) {
  .service-detail__item dd {
    flex: 1;
  }
}
.service-detail__item dd h4 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item dd h4 {
    margin-bottom: 1.6rem;
    line-height: 1.4;
  }
}
@media screen and (min-width: 980px) {
  .service-detail__item dd h4 {
    font-size: 2rem;
  }
}
.service-detail__item dd p {
  line-height: 1.8;
}
.service-detail__item dd p + h4 {
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .service-detail__item dd p + h4 {
    margin-top: 3rem;
  }
}
.service-detail .btn {
  margin-top: 4rem;
}
@media screen and (min-width: 980px) {
  .service-detail .btn {
    margin-top: 5.6rem;
  }
}
@media screen and (min-width: 1200px) {
  .service-detail .btn {
    margin-top: 7rem;
  }
}
