/* Meyerweb-inspired reset baseline + strong form reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

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

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html,
body {
  min-height: 100%;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea,
option,
optgroup {
  font: inherit;
  color: inherit;
  letter-spacing: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

textarea {
  resize: none;
}

input::placeholder,
textarea::placeholder {
  color: inherit;
  opacity: 1;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=search]::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: none;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

*:focus-visible {
  outline: none;
}

html[data-scroll-locked=true],
body[data-scroll-locked=true] {
  overflow: hidden;
  overscroll-behavior: none;
  touch-action: none;
}

body {
  font-family: "din-2014", "Noto Sans JP", sans-serif;
  background-color: #f8f8f8;
}

body:has([data-is-page=top]) {
  background-color: #ffffff;
}

.main-content {
  margin-top: 64px;
}
@media screen and (min-width: 900px) {
  .main-content {
    margin-top: 70px;
  }
}

.main-content[data-is-page=top] {
  margin-top: 0;
}
@media screen and (min-width: 900px) {
  .main-content[data-is-page=top] {
    margin-top: 70px;
  }
}

.page-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (min-width: 900px) {
  .page-head {
    gap: 40px;
  }
}

.page-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .page-title {
    letter-spacing: 0;
    font-size: 134px;
  }
}

.page-copy {
  font-size: 20px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .page-copy {
    font-size: 34px;
    line-height: 1;
  }
}

.section-head {
  max-width: 460px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1 0 auto;
}
@media screen and (min-width: 900px) {
  .section-head {
    gap: 43px;
  }
}

.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .section-title {
    font-size: 64px;
  }
}

.section-copy {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .section-copy {
    font-size: 34px;
    line-height: 54px;
  }
}

.white {
  color: #ffffff;
}

.button-white {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  border: 1px solid #333333;
  box-sizing: border-box;
  border-radius: 6px;
  z-index: 0;
  overflow: hidden;
  text-align: center;
}

.button-white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background-color: #1a1c22;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s ease-in;
}

.button-white:hover,
.button-white:focus-visible {
  color: #ffffff;
}
.button-white:hover::before,
.button-white:focus-visible::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.button-black {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  box-sizing: border-box;
  border-radius: 6px;
  z-index: 0;
  color: #ffffff;
  border: 1px solid #1a1c22;
  background-color: #1a1c22;
  transition: color 0.3s ease-in;
  overflow: hidden;
  text-align: center;
}
.button-black > span {
  z-index: 2;
}

.button-black::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #ffffff;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform 0.3s ease-in;
}

.button-black.official::after {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M11.25 2.25h4.5v4.5M7.5 10.5l8.25-8.25M13.5 9.75v4.5a1.5 1.5 0 0 1-1.5 1.5H3.75a1.5 1.5 0 0 1-1.5-1.5V6a1.5 1.5 0 0 1 1.5-1.5h4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  transition: background-image 0.3s ease-in;
}

.button-black:hover,
.button-black:focus-visible {
  color: #000000;
}
.button-black:hover::after,
.button-black:focus-visible::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath stroke='%23000' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M11.25 2.25h4.5v4.5M7.5 10.5l8.25-8.25M13.5 9.75v4.5a1.5 1.5 0 0 1-1.5 1.5H3.75a1.5 1.5 0 0 1-1.5-1.5V6a1.5 1.5 0 0 1 1.5-1.5h4.5'/%3E%3C/svg%3E");
}
.button-black:hover::before,
.button-black:focus-visible::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.content-unit {
  margin: 60px auto 0;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .content-unit {
    margin-top: 200px;
    gap: 48px;
  }
}

.content-block {
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid #aeaeae;
}
@media screen and (min-width: 900px) {
  .content-block {
    padding-bottom: 48px;
    gap: 24px;
  }
}

.content-block-head {
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .content-block-head {
    font-size: 24px;
  }
}

.content-unit > p,
.content-block-text {
  font-size: 14px;
  line-height: 22.4px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .content-unit > p,
  .content-block-text {
    font-size: 16px;
    line-height: 24px;
    gap: 32px;
  }
}

.content-block-text > a {
  font-size: 14px;
  line-height: 22.4px;
  text-decoration: underline;
  width: fit-content;
}
@media screen and (min-width: 900px) {
  .content-block-text > a {
    font-size: 16px;
    line-height: 24px;
  }
}

.link-map {
  margin-top: 8px;
  margin-left: 18px;
  position: relative;
  font-size: 13px;
  line-height: 15.6px;
  text-decoration: underline;
}
@media screen and (min-width: 900px) {
  .link-map {
    margin-left: 22px;
    font-size: 14px;
    line-height: 16.6px;
  }
}

.link-map::after {
  content: "";
  width: 14px;
  height: 14px;
  display: block;
  position: absolute;
  top: 50%;
  left: -18px;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11.6666 5.83366C11.6666 8.74624 8.43556 11.7796 7.35056 12.7164C7.24949 12.7924 7.12645 12.8335 6.99998 12.8335C6.87351 12.8335 6.75047 12.7924 6.6494 12.7164C5.5644 11.7796 2.33331 8.74624 2.33331 5.83366C2.33331 4.59598 2.82498 3.409 3.70015 2.53383C4.57532 1.65866 5.7623 1.16699 6.99998 1.16699C8.23766 1.16699 9.42464 1.65866 10.2998 2.53383C11.175 3.409 11.6666 4.59598 11.6666 5.83366Z' stroke='black' stroke-width='0.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M7 7.58301C7.9665 7.58301 8.75 6.79951 8.75 5.83301C8.75 4.86651 7.9665 4.08301 7 4.08301C6.0335 4.08301 5.25 4.86651 5.25 5.83301C5.25 6.79951 6.0335 7.58301 7 7.58301Z' stroke='black' stroke-width='0.875' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (min-width: 900px) {
  .link-map::after {
    width: 16px;
    height: 16px;
    left: -22px;
  }
}

.header {
  padding: 0 20px;
  height: 64px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #f8f8f8;
  overflow-y: hidden;
  transition: height 0.2s ease-in;
  z-index: 900;
}
@media screen and (min-width: 900px) {
  .header {
    overflow-y: visible;
    height: 70px;
  }
}

.header:has(+ .main-content[data-is-page=top]) {
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .header:has(+ .main-content[data-is-page=top]) .header-dropdown {
    background-color: #ffffff;
  }
}

.header[data-is-open=true] {
  height: 100dvh;
}
@media screen and (min-width: 900px) {
  .header[data-is-open=true] {
    height: 70px;
  }
}

.header-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .header-content {
    padding: 38px 0 0;
  }
}

.header-button {
  margin: 10px 0 10px auto;
  width: 44px;
  height: 44px;
  background-repeat: no-repeat;
  background-size: 100%;
  transition: background-image 0.2s ease-in;
  cursor: pointer;
}
@media screen and (min-width: 900px) {
  .header-button {
    display: none;
  }
}

.header-button[data-is-open=false] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='44' height='44' fill='none' viewBox='0 0 44 44'%3E%3Cpath fill='%231a1c22' d='M10 14a1 1 0 0 1 1-1h22a1 1 0 1 1 0 2H11a1 1 0 0 1-1-1M10 21a1 1 0 0 1 1-1h22a1 1 0 1 1 0 2H11a1 1 0 0 1-1-1M10 28a1 1 0 0 1 1-1h22a1 1 0 1 1 0 2H11a1 1 0 0 1-1-1'/%3E%3C/svg%3E");
}

.header-button[data-is-open=true] {
  background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 44 44' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M10 22C10 21.4477 10.4477 21 11 21H33C33.5523 21 34 21.4477 34 22C34 22.5523 33.5523 23 33 23H11C10.4477 23 10 22.5523 10 22Z' fill='%231A1C22'/%3E%3Cpath d='M10 22C10 21.4477 10.4477 21 11 21H33C33.5523 21 34 21.4477 34 22C34 22.5523 33.5523 23 33 23H11C10.4477 23 10 22.5523 10 22Z' fill='%231A1C22'/%3E%3C/svg%3E%0A");
}

.header-nav {
  width: 100%;
}

.header-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .header-links {
    flex-direction: row;
    justify-content: center;
    gap: 80px;
  }
}

.header-link {
  padding: 0 0 8px;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  cursor: pointer;
}
.header-link > a {
  display: block;
}
@media screen and (min-width: 900px) {
  .header-link {
    padding: 0;
    border: none;
  }
}

.header-link:hover .header-link-en,
.header-link:focus-within .header-link-en {
  opacity: 0;
}
.header-link:hover .header-link-ja,
.header-link:focus-within .header-link-ja {
  opacity: 1;
}

.header-item {
  position: relative;
  --header-dropdown-height: 0px;
}
@media screen and (min-width: 900px) {
  .header-item {
    padding-bottom: 12px;
  }
}
.header-item:hover .header-dropdown, .header-item:focus-within .header-dropdown {
  opacity: 1;
  height: var(--header-dropdown-height);
  pointer-events: auto;
}
.header-item:hover .header-dropdown-head::after, .header-item:focus-within .header-dropdown-head::after {
  transform: translateY(calc(-50% - 8px)) scaleY(1);
}
@media screen and (min-width: 900px) {
  .header-item:hover .header-dropdown-head::after, .header-item:focus-within .header-dropdown-head::after {
    transform: translateY(-50%) scaleY(1);
  }
}
.header-item:hover .header-dropdown-head, .header-item:focus-within .header-dropdown-head {
  border-bottom: 1px solid #000000;
}
@media screen and (min-width: 900px) {
  .header-item:hover .header-dropdown-head, .header-item:focus-within .header-dropdown-head {
    border: none;
  }
}
.header-item:hover .header-link-en, .header-item:focus-within .header-link-en {
  opacity: 0;
}
.header-item:hover .header-link-ja, .header-item:focus-within .header-link-ja {
  opacity: 1;
}

.header-dropdown-head {
  padding: 0 0 8px;
  display: block;
  position: relative;
  border-bottom: 1px solid #e5e5e5;
  z-index: 1;
  cursor: pointer;
  transition: border 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .header-dropdown-head {
    padding: 0;
    margin-right: 22px;
    border: none;
  }
}

.header-dropdown-head::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%231A1C22' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  right: 0;
  transform: translateY(calc(-50% - 8px)) scaleY(-1);
  transition: transform 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .header-dropdown-head::after {
    right: -22px;
    transform: translateY(-50%) scaleY(-1);
  }
}

.header-dropdown-head:hover > .header-link-en,
.header-dropdown-head:focus-visible > .header-link-en {
  opacity: 0;
}
.header-dropdown-head:hover > .header-link-ja,
.header-dropdown-head:focus-visible > .header-link-ja {
  opacity: 1;
}

.header-item,
.header-link {
  font-size: 16px;
  line-height: 1.2;
  font-weight: 600;
}

.header-link-en {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}

.header-link-ja {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .header-link-ja {
    white-space: nowrap;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header-dropdown {
  opacity: 0;
  pointer-events: none;
  height: 0px;
  box-sizing: border-box;
  overflow: hidden;
  transition: height 0.2s ease-in, opacity 0.2s ease-in 0.2s;
}
@media screen and (min-width: 900px) {
  .header-dropdown {
    padding: 0 20px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 100dvw;
    background-color: #f8f8f8;
    opacity: 1;
    transition: height 0.15s ease-in, opacity 0.2s ease-in 0.15s;
  }
}

.header-service-groups {
  padding-top: 32px;
  margin-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media screen and (min-width: 900px) {
  .header-service-groups {
    padding: 40px 0 48px;
    margin: 0 auto;
    max-width: 1120px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5.7%;
  }
}

.header-service-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 900px) {
  .header-service-group {
    gap: 32px;
  }
}

.header-service-group-head {
  position: relative;
  transition: opacity 0.1s ease-in, transform 0.2s ease-in;
}
.header-service-group-head:hover,
.header-service-group-head :focus-within {
  opacity: 0.6;
}
@media screen and (min-width: 900px) {
  .header-service-group-head {
    width: fit-content;
  }
  .header-service-group-head:hover::after,
  .header-service-group-head :focus-within::after {
    transform: translate(4px, -50%) rotate(90deg);
  }
}

.header-service-group-head::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%231A1C22' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  right: 0;
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (min-width: 900px) {
  .header-service-group-head::after {
    font-size: 17px;
    right: -24px;
    transition: transform 0.1s ease-in;
  }
}

.header-service-links {
  margin-left: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 900px) {
  .header-service-links {
    margin: 0;
    border-top: 1px solid #000000;
  }
}

.header-service-link {
  border-bottom: 1px solid #aeaeae;
}
.header-service-link a {
  padding: 14px 0;
  display: block;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 400;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .header-service-link a {
    padding: 19px 0;
    font-size: 15px;
  }
}
.header-service-link a:hover,
.header-service-link a :focus-visible {
  opacity: 0.6;
}

.footer {
  background-color: #1a1c22;
}
.footer > * {
  color: #ffffff;
}

.footer-content {
  margin: 0 auto;
  padding: 80px 20px;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 900px) {
  .footer-content {
    gap: 40px;
  }
}

.footer-links {
  padding: 0 0 32px;
  border-bottom: 1px solid #d5d5d5;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .footer-links {
    padding: 0 0 40px;
    flex-direction: row;
    gap: 32px;
  }
}

.footer-link,
.footer-dropdown-head {
  font-size: 14px;
  line-height: 1.2;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .footer-link,
  .footer-dropdown-head {
    font-size: 16px;
  }
}

.footer-link:hover,
.footer-link:focus-within {
  opacity: 0.8;
}

.footer-dropdown {
  position: relative;
}
.footer-dropdown:hover .footer-dropdown-head::after,
.footer-dropdown:focus-within .footer-dropdown-head::after {
  transform: translateY(-50%) scale(1);
}
.footer-dropdown:hover .footer-dropdown-menu,
.footer-dropdown:focus-within .footer-dropdown-menu {
  height: 110px;
}
@media screen and (min-width: 900px) {
  .footer-dropdown:hover .footer-dropdown-menu,
  .footer-dropdown:focus-within .footer-dropdown-menu {
    height: 181px;
  }
}

.footer-dropdown-head {
  width: fit-content;
  padding-right: 18px;
  position: relative;
}

.footer-dropdown-head::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23FFFFFF' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  right: 0;
  transform: translateY(-50%) scale(-1);
  transition: transform 0.2s ease-in;
}

.footer-dropdown-menu {
  height: 0;
  overflow: hidden;
  transition: height 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .footer-dropdown-menu {
    margin-top: 10px;
    width: 220px;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
  }
}

.footer-dropdown-links {
  padding: 20px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .footer-dropdown-links {
    padding: 12px;
    background-color: #24272f;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.2509803922);
    gap: 17px;
  }
}

.footer-dropdown-link {
  font-size: 14px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .footer-dropdown-link {
    padding: 12px 16px;
    position: relative;
  }
  .footer-dropdown-link a {
    display: block;
  }
}

.footer-dropdown-link > a {
  transition: opacity 0.2s ease-in;
}

.footer-dropdown-link::after {
  content: none;
}
@media screen and (min-width: 900px) {
  .footer-dropdown-link::after {
    content: "";
    height: 1px;
    display: block;
    position: absolute;
    top: -9px;
    left: 0;
    right: 0;
    background-color: #ffffff;
  }
}

.footer-dropdown-link:first-child::after {
  content: none;
}

.footer-dropdown-link:hover > a,
.footer-dropdown-link:focus-within > a {
  opacity: 0.8;
}

.footer-organization {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 900px) {
  .footer-organization {
    align-items: flex-start;
  }
}

.footer-organization-image {
  width: 286px;
  height: 100%;
  object-fit: contain;
}

.footer-organization-text {
  font-size: 11px;
  line-height: 1.2;
}

.footer-copy {
  font-size: 12px;
  line-height: 1.2;
  text-align: center;
}

.floating-banner {
  padding: 24px 15px 12px;
  width: 200px;
  position: fixed;
  right: 20px;
  bottom: var(--floating-banner-bottom, 20px);
  background-color: #1a1c22;
  border-radius: 10px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  will-change: opacity;
}
@media screen and (min-width: 900px) {
  .floating-banner {
    padding: 31px 15px 12px;
    width: 270px;
    right: 60px;
  }
}

.floating-banner[data-state=hidden],
.floating-banner[data-state=closed] {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.floating-banner[data-state=opening] {
  visibility: visible;
  pointer-events: auto;
  animation: floating-banner-open 0.35s ease forwards;
}

.floating-banner[data-state=open] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.floating-banner[data-state=closing] {
  visibility: visible;
  pointer-events: none;
  animation: floating-banner-close 0.25s ease forwards;
}

@keyframes floating-banner-open {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes floating-banner-close {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  .floating-banner {
    animation-duration: 0.01ms !important;
  }
}
.floating-banner-close {
  position: absolute;
  top: 5px;
  right: 4.5px;
  z-index: 2;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='none' viewBox='0 0 20 20'%3E%3Cmask id='a' width='20' height='20' x='0' y='0' maskUnits='userSpaceOnUse' style='mask-type:alpha'%3E%3Cpath fill='%23d9d9d9' d='M0 0h20v20H0z'/%3E%3C/mask%3E%3Cg mask='url(%23a)'%3E%3Cpath fill='%23fff' d='m5.33296 15.2567-.5898-.5898 4.66667-4.6667-4.66667-4.66663.5898-.5898 4.66666 4.66667 4.66668-4.66667.5898.5898-4.6667 4.66663 4.6667 4.6667-.5898.5898L9.99962 10.59z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
  transition: opacity 0.2s ease-in;
}

.floating-banner-close:hover,
.floating-banner-close:focus-visible {
  opacity: 0.8;
}

.floating-banner-image {
  width: 93%;
  height: auto;
  position: absolute;
  top: -22px;
  left: -8px;
}
@media screen and (min-width: 900px) {
  .floating-banner-image {
    width: 100%;
    top: -55px;
    left: 0;
  }
}

.floating-banner-text {
  margin: 0 0 0 auto;
  width: fit-content;
  font-size: 14px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
@media screen and (min-width: 900px) {
  .floating-banner-text {
    font-size: 16px;
    gap: 6px;
  }
}

.floating-banner-link {
  margin-top: 7px;
  height: 46px;
  background-color: #ffffff;
  font-size: 16px;
  border-radius: 48px;
}
@media screen and (min-width: 900px) {
  .floating-banner-link {
    margin-top: 22px;
    height: 39px;
  }
}

.cookie-consent {
  padding: 24px;
  max-width: 1200px;
  width: calc(100% - 40px);
  position: fixed;
  left: 50%;
  bottom: 20px;
  z-index: 500;
  transform: translate(-50%, 100%);
  background-color: #ffffff;
  border: 1px solid #e5e5e5;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.0705882353);
  border-radius: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}
@media screen and (min-width: 900px) {
  .cookie-consent {
    padding: 24px 32px;
  }
}

.cookie-consent[data-animate=false] {
  transition: none;
}

.cookie-consent[data-state=open] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.cookie-consent-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .cookie-consent-content {
    flex-direction: row;
    justify-content: space-between;
    gap: 32px;
  }
}

.cookie-consent-text {
  margin: 0 auto;
  max-width: 680px;
  font-size: 14px;
  line-height: 1.75;
}
@media screen and (min-width: 900px) {
  .cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
  }
}

.cookie-consent-text > a {
  text-decoration: underline;
}

.cookie-consent-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 900px) {
  .cookie-consent-actions {
    flex-shrink: 0;
    gap: 24px;
  }
}

.cookie-consent-button {
  font-size: 16px;
  line-height: 18px;
}
@media screen and (min-width: 900px) {
  .cookie-consent-button {
    font-size: 15px;
  }
}

.cookie-consent-button--accept {
  padding: 0 40px;
  height: 46px;
  border-radius: 100px;
}
@media screen and (min-width: 900px) {
  .cookie-consent-button--accept {
    padding: 0 36px;
  }
}

.cookie-consent-button--reject {
  width: 106px;
  color: #000000;
  background-color: transparent;
  text-align: center;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .cookie-consent-button--reject {
    width: auto;
  }
}

.cookie-consent-button--reject:hover,
.cookie-consent-button--reject:focus-visible {
  opacity: 0.8;
}

.business-visuals {
  padding: 80px 32px;
  max-width: 100dvw;
  background-color: #1a1c22;
  display: flex;
  flex-direction: column;
  gap: 80px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .business-visuals {
    padding: 200px 32px;
  }
}

.business-visuals-content {
  margin: 0 auto;
  max-width: 1120px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  position: relative;
}

.business-visuals-content .section-head {
  max-width: 100%;
}

.business-slider {
  position: relative;
}

.business-slider .splide__track {
  overflow: visible;
}

.business-slider .splide__arrows {
  padding: 0 20px;
  width: 100dvw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  position: absolute;
  bottom: 0;
  z-index: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 900px) {
  .business-slider .splide__arrows {
    padding: 0 10px;
    width: 100%;
    transform: none;
    left: auto;
  }
}

.business-slider .splide__arrow {
  width: 40px;
  height: 40px;
  position: static;
  transform: none;
  border: 0;
  border-radius: 0;
  background: transparent;
  opacity: 1;
  padding: 0;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .business-slider .splide__arrow {
    width: 56px;
    height: 56px;
  }
}

.business-slider .splide__arrow svg {
  fill: none;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 900px) {
  .business-slider .splide__arrow svg {
    filter: drop-shadow(0px 2px 8px rgba(0, 0, 0, 0.1254901961));
  }
}

.business-slider .splide__arrow--next svg {
  transform: rotate(180deg);
  transform-origin: center;
}

.business-slider .splide__arrow:disabled {
  opacity: 0.4;
}

.business-slide {
  width: 169px;
  height: 315px;
  display: block;
  position: relative;
  background-color: #111;
}
@media screen and (min-width: 900px) {
  .business-slide {
    width: 256px;
    height: 480px;
  }
}

.business-slide:hover .business-slide-image,
.business-slide:focus-visible .business-slide-image {
  opacity: 0.5;
}

.business-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease-in;
}

.business-slide-head {
  padding: 0 6px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3019607843);
  text-align: center;
  box-sizing: border-box;
}
@media screen and (min-width: 900px) {
  .business-slide-head {
    padding: 0 20px;
  }
}

.business-slide-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (min-width: 900px) {
  .business-slide-title {
    font-size: 24px;
  }
}

.business-slide-copy {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.44;
}
@media screen and (min-width: 900px) {
  .business-slide-copy {
    font-size: 16px;
  }
}

.business-slide-link-wrapper {
  padding: 0 23px;
}

.business-slide-link {
  margin: 0 auto;
  max-width: 500px;
  width: 100%;
  height: 50px;
  border-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .business-slide-link {
    width: 171px;
    height: 56px;
    position: absolute;
    top: 107px;
    right: 0;
  }
}

.news-card {
  padding-bottom: 20px;
  border-bottom: 1px solid #aeaeae;
}
@media screen and (min-width: 900px) {
  .news-card {
    padding-bottom: 48px;
  }
}

.news-card a {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
@container archive-news (min-width: 600px) {
  .news-card a {
    height: 150px;
    flex-direction: row;
    gap: 20px;
  }
}
@container top-news (min-width: 600px) {
  .news-card a {
    height: 150px;
    flex-direction: row;
    gap: 20px;
  }
}

.news-card:hover .news-card-image,
.news-card:focus-visible .news-card-image {
  transform: scale(1.15);
}

.news-card-image-wrapper {
  width: 100%;
  aspect-ratio: 311/159;
  overflow: hidden;
  border-radius: 8px;
  flex: 1 0 auto;
}
@container archive-news (min-width: 600px) {
  .news-card-image-wrapper {
    width: 293px;
    aspect-ratio: 293/150;
  }
}
@container top-news (min-width: 600px) {
  .news-card-image-wrapper {
    width: 293px;
    aspect-ratio: 293/150;
  }
}

.news-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in;
}

.news-card-details {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.news-card-date {
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .news-card-date {
    font-size: 14px;
  }
}

.news-card-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-height: 3em;
  font-size: 16px;
  line-height: 1.625;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .news-card-title {
    font-size: 18px;
  }
}

.mv {
  width: 100dvw;
  position: relative;
}

.mv-loading {
  width: 100dvw;
  height: 100dvh;
  background-color: #1a1c22;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  overflow: hidden;
}

.mv[data-opening-state=complete] .mv-loading {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

html[data-mv-opening-seen=true] .mv-loading {
  display: none !important;
}

.mv-loading-visual {
  width: 40px;
  height: 40px;
  position: relative;
}

.pulse-shell {
  position: absolute;
  inset: 0;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

.pulse {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  animation: pulse-animation 1.5s ease-in-out infinite;
}

.mv-loading-circle {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(0.88);
}

.mv[data-opening-state=opening] .mv-loading {
  animation: mv-loading-fade-out 0.45s ease forwards 0.95s;
}

.mv[data-opening-state=opening] .pulse-shell {
  opacity: 0;
}

.mv[data-opening-state=opening] .mv-loading-circle {
  animation: mv-loading-circle-expand 1s ease-in-out forwards 0.04s;
}

@keyframes pulse-animation {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.8;
  }
  50% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes mv-loading-circle-expand {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(110);
  }
}
@keyframes mv-loading-fade-out {
  0% {
    opacity: 1;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
  }
}
.mv-content {
  width: 100dvw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 35px;
}
.mv-content * {
  transform: translateY(-4px);
}
@media screen and (min-width: 900px) {
  .mv-content {
    height: calc(100dvh - 70px);
    gap: 71px;
  }
  .mv-content * {
    transform: none;
  }
}

.mv-title {
  margin: 0;
}

.mv-image {
  max-width: 256px;
  width: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateY(10px);
}
@media screen and (min-width: 900px) {
  .mv-image {
    max-width: 600px;
  }
}

.mv[data-opening-state=opening] .mv-image {
  animation: mv-image-fade-in 0.9s ease forwards 0.95s;
}

.mv[data-opening-state=complete] .mv-image {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mv-image-fade-in {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mv-copy {
  margin-left: 11px;
  position: relative;
  overflow: hidden;
  font-size: 16px;
  line-height: 1;
  color: #1a1c22;
  letter-spacing: 0.14em;
}
@media screen and (min-width: 900px) {
  .mv-copy {
    margin-left: 22px;
    font-size: 24px;
    line-height: 1.47;
  }
}

.mv-copy::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #ffffff;
  transform: translateX(-101%);
}

.mv-copy-text {
  display: inline-block;
  opacity: 0;
  transform: translateY(115%);
}

.mv[data-opening-state=opening] .mv-copy::after {
  animation: mv-copy-mask 1.5s cubic-bezier(0.55, 0, 0.1, 1) forwards 1.6s;
}

.mv[data-opening-state=opening] .mv-copy-text {
  animation: mv-copy-text-in 0.6s ease forwards 1.9s;
}

.mv[data-opening-state=complete] .mv-copy::after {
  transform: translateX(101%);
}

.mv[data-opening-state=complete] .mv-copy-text {
  opacity: 1;
  transform: translateY(0);
}

@keyframes mv-copy-mask {
  0% {
    transform: translateX(-101%);
  }
  45% {
    transform: translateX(0);
  }
  55% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(101%);
  }
}
@keyframes mv-copy-text-in {
  0% {
    opacity: 0;
    transform: translateY(115%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.about {
  padding: 80px 0;
  background-color: #f8f8f8;
}
@media screen and (min-width: 900px) {
  .about {
    padding: 200px 0;
  }
}

.about-content {
  margin: 60px auto 0;
  padding: 0 32px;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-sizing: content-box;
}
@media screen and (min-width: 900px) {
  .about-content {
    margin-top: 150px;
    flex-direction: row;
    justify-content: space-between;
  }
}

.about-content:first-child {
  margin-top: 0;
}

.about-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .about-text {
    width: 50%;
    font-size: 16px;
  }
}

.about-image {
  margin: 40px auto;
  max-width: 1120px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .about-image {
    margin: 60px auto;
  }
}

.about-read-more, .top-news-read-more {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1120px;
  text-align: right;
  box-sizing: content-box;
}
.about-read-more > a, .top-news-read-more > a {
  padding-right: 82px;
  position: relative;
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  text-align: justify;
  display: inline-block;
}
@media screen and (min-width: 900px) {
  .about-read-more > a, .top-news-read-more > a {
    padding-right: 222px;
    font-size: 32px;
  }
}
.about-read-more > a > .read-more-arrow, .top-news-read-more > a > .read-more-arrow {
  width: 68px;
  height: 11.5px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 2.5px;
  overflow: hidden;
}
@media screen and (min-width: 900px) {
  .about-read-more > a > .read-more-arrow, .top-news-read-more > a > .read-more-arrow {
    width: 202px;
    height: 15px;
  }
}
.about-read-more > a > .read-more-arrow > .read-more-arrow-shape, .top-news-read-more > a > .read-more-arrow > .read-more-arrow-shape {
  width: 100%;
  height: 100%;
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='71' height='14' fill='none' viewBox='0 0 71 14'%3E%3Cpath stroke='%23000' stroke-width='2' d='M0 12.174h68L57.5.674'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 900px) {
  .about-read-more > a > .read-more-arrow > .read-more-arrow-shape, .top-news-read-more > a > .read-more-arrow > .read-more-arrow-shape {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='203' height='14' fill='none' viewBox='0 0 203 14'%3E%3Cpath stroke='%231a1c22' stroke-width='2' d='M0 12.174h200L189.5.674'/%3E%3C/svg%3E");
  }
}

.about-read-more:hover > a > .read-more-arrow > .read-more-arrow-shape, .top-news-read-more:hover > a > .read-more-arrow > .read-more-arrow-shape,
.about-read-more:focus-within > a > .read-more-arrow > .read-more-arrow-shape,
.top-news-read-more:focus-within > a > .read-more-arrow > .read-more-arrow-shape {
  animation: arrowAnime 0.4s;
}

@keyframes arrowAnime {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 100% 0;
  }
  50.1% {
    translate: -100% 0;
  }
  100% {
    translate: 0 0;
  }
}
.pickup-services {
  background-color: #1a1c22;
}

.pickup-services-content {
  padding: 80px 32px;
  margin: 0 auto;
  width: 100%;
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .pickup-services-content {
    padding: 200px 32px;
    gap: 80px;
  }
}

.pickup-service {
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pickup-service-image {
  width: auto;
}
@media screen and (min-width: 900px) {
  .pickup-service-image {
    width: 62.4%;
    height: 500px;
    object-fit: cover;
    object-position: right;
    margin-bottom: 80px;
  }
}

.pickup-service-details {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background-color: #ffffff;
  container-type: inline-size;
  container-name: pickup-service-details;
}
@media screen and (min-width: 900px) {
  .pickup-service-details {
    padding: 40px;
    width: 500px;
    height: 500px;
    gap: 40px;
    position: absolute;
    top: 80px;
    left: auto;
    right: 0;
  }
}

.pickup-service-head {
  display: flex;
  flex-direction: column;
  gap: 34px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .pickup-service-head {
    gap: 45.8px;
  }
}

.pickup-service-head::after {
  content: "";
  width: 117px;
  height: 4px;
  display: block;
  position: absolute;
  top: 35px;
  background-color: #000000;
}
@media screen and (min-width: 900px) {
  .pickup-service-head::after {
    width: 194px;
    height: 4.2px;
    top: 54.2px;
  }
}

.pickup-service-title {
  font-size: 22px;
  font-weight: 700;
  line-height: 20px;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .pickup-service-title {
    font-size: 34px;
    line-height: 1;
  }
}

.pickup-service-copy {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .pickup-service-copy {
    font-size: 20px;
  }
}

.pickup-service-text {
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .pickup-service-text {
    height: 100%;
    font-size: 16px;
    line-height: 1.8;
    flex-grow: 999;
  }
}

.pickup-service-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@container pickup-service-details (min-width: 420px) {
  .pickup-service-links {
    flex-direction: row;
    gap: 20px;
  }
}

.pickup-service-link {
  width: 100%;
  height: 50px;
}
@container pickup-service-details (min-width: 420px) {
  .pickup-service-link {
    height: 56px;
    width: calc(50% - 10px);
  }
}

.business {
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
  container-type: inline-size;
  container-name: business;
}
@media screen and (min-width: 900px) {
  .business {
    padding: 200px 0;
    gap: 120px;
  }
}

.business-content {
  margin: 0 auto;
  padding: 0 32px;
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-sizing: content-box;
}
@media screen and (min-width: 900px) {
  .business-content {
    flex-direction: row;
    justify-content: space-between;
  }
}

.business-text {
  font-size: 16px;
  line-height: 26px;
  text-align: justify;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .business-text {
    width: 50%;
  }
}

.business-links {
  display: flex;
  flex-direction: column;
}
@container business (min-width: 750px) {
  .business-links {
    flex-direction: row;
  }
}

.business-link {
  position: relative;
  width: 100dvw;
  max-height: 500px;
  aspect-ratio: 75/52;
  overflow: hidden;
}
@container business (min-width: 750px) {
  .business-link {
    width: 50dvw;
    aspect-ratio: 36/25;
  }
}

.business-link:hover .business-link-image,
.business-link:focus-visible .business-link-image {
  transform: scale(1.15);
}

.business-link-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.2s ease-in;
}

.business-link-head {
  padding: 0 15%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
}
@container business (min-width: 750px) {
  .business-link-head {
    gap: 20px;
  }
}

.business-link-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: justify;
}
@container business (min-width: 750px) {
  .business-link-title {
    font-size: 34px;
  }
}

.business-link-copy {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-align: justify;
}
@container business (min-width: 750px) {
  .business-link-copy {
    font-size: 16px;
  }
}

.top-news {
  margin: 0 auto;
  padding: 80px 32px;
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .top-news {
    padding: 200px 32px;
    gap: 60px;
  }
}

.top-news-content {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  container-type: inline-size;
  container-name: top-news;
}
@media screen and (min-width: 900px) {
  .top-news-content {
    margin-top: 60px;
    gap: 48px;
  }
}

.top-news-content .news-card {
  padding-bottom: 32px;
}
@media screen and (min-width: 900px) {
  .top-news-content .news-card {
    padding-bottom: 48px;
  }
}

.top-news-content .news-card:last-child {
  padding: none;
  border: none;
}

.top-news-read-more {
  margin: 0 0 0 auto;
  padding: 0;
}

.archive-news {
  margin: 0 auto;
  padding: 20px 32px 80px;
  max-width: 1184px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 900px) {
  .archive-news {
    padding: 90px 32px 200px;
    gap: 0;
  }
}

.archive-news-content {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  container-type: inline-size;
  container-name: archive-news;
}
@media screen and (min-width: 900px) {
  .archive-news-content {
    padding: 200px 0 0;
    gap: 48px;
  }
}

.archive-news-content--sp {
  display: block;
  visibility: visible;
}
@media screen and (min-width: 900px) {
  .archive-news-content--sp {
    display: none;
    visibility: hidden;
  }
}

.archive-news-content--pc {
  display: none;
  visibility: hidden;
}
@media screen and (min-width: 900px) {
  .archive-news-content--pc {
    display: block;
    visibility: visible;
  }
}

.archive-news-content--pc .archive-news-pagination {
  margin-top: 108px;
}

.archive-news-content--pc .archive-news-pagination-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.archive-news-pagination-item {
  display: flex;
  justify-content: center;
  align-items: center;
}

.archive-news-pagination-link {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #1a1c22;
  border-radius: 4px;
  font-size: 16px;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}

a.archive-news-pagination-link:hover,
a.archive-news-pagination-link:focus-visible {
  background-color: #1a1c22;
  color: #ffffff;
}
a.archive-news-pagination-link:hover .pagination-arrow,
a.archive-news-pagination-link:focus-visible .pagination-arrow {
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23FFFFFF' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
}

.archive-news-pagination-link.current {
  background-color: #1a1c22;
  color: #ffffff;
  pointer-events: none;
}

.archive-news-pagination-link.dots {
  border-color: transparent;
}

.archive-news-pagination-link--disabled {
  opacity: 0.35;
  pointer-events: none;
}

.pagination-arrow {
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%231A1C22' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
}

.pagination-arrow.prev {
  transform: rotate(-90deg);
}

.pagination-arrow.next {
  transform: rotate(90deg);
}

.archive-news-visually-hidden {
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.archive-news-content--sp .archive-news-pagination {
  margin-top: 60px;
  padding: 0 23px;
}

.archive-news-load-more-button {
  margin: 0 auto;
  max-width: 450px;
  width: 100%;
  height: 50px;
  font-size: 16px;
}

.archive-news-load-more-button[hidden] {
  display: none;
  visibility: hidden;
}

.page-business {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 900px) {
  .page-business {
    padding: 90px 32px 200px;
    gap: 100px;
  }
}

.page-business-content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  container-type: inline-size;
  container-name: page-business;
}
@media screen and (min-width: 900px) {
  .page-business-content {
    gap: 50px;
  }
}

.page-business-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@container page-business (min-width: 700px) {
  .page-business-card {
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
  }
}

.page-business-card-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .page-business-card-image {
    aspect-ratio: auto;
  }
}
@container page-business (min-width: 700px) {
  .page-business-card-image {
    width: 42%;
    height: 470px;
  }
}

.page-business-card-details {
  display: flex;
  flex-direction: column;
}
@container page-business (min-width: 700px) {
  .page-business-card-details {
    padding: 40px 0;
    width: 53.6%;
  }
}

.page-business-card-title {
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
  border-bottom: 1px solid #000000;
}
@container page-business (min-width: 700px) {
  .page-business-card-title {
    padding-bottom: 40px;
    font-size: 34px;
    line-height: 1;
  }
}

.page-business-card-text {
  margin: 10px 0 20px;
  height: 100%;
  font-size: 14px;
  line-height: 1.7;
  text-align: justify;
}
@container page-business (min-width: 700px) {
  .page-business-card-text {
    margin: 40px 0;
    height: 100%;
    font-size: 16px;
    line-height: 1.625;
  }
}

.page-business-card-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@container page-business (min-width: 500px) {
  .page-business-card-links {
    flex-direction: row;
    justify-content: center;
  }
}
@container page-business (min-width: 700px) {
  .page-business-card-links {
    justify-content: start;
  }
}

.page-business-card-link {
  margin: 0 auto;
  height: 50px;
  max-width: 500px;
  width: calc(100% - 46px);
  flex-shrink: 0;
}
@container page-business (min-width: 500px) {
  .page-business-card-link {
    height: 50px;
    width: 50%;
  }
}
@container page-business (min-width: 700px) {
  .page-business-card-link {
    margin: 0;
    height: 56px;
    max-width: inherit;
    width: 50%;
  }
}

.service {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1244px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .service {
    padding: 90px 32px 200px;
  }
}

.service-content {
  margin: 40px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .service-content {
    margin-top: 100px;
    margin-bottom: 150px;
    padding-right: 32px;
    flex-direction: row;
    max-width: 1440px;
    width: 100vw;
    margin-left: clamp(-160px, 50% - 50vw, -32px);
  }
}

.service-image {
  width: 100dvw;
  max-width: 100dvw;
  aspect-ratio: 375/335;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .service-image {
    max-width: 46.5%;
  }
}

.service-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .service-text {
    max-width: 560px;
    font-size: 20px;
    line-height: 40px;
  }
}

.service-features,
.service-lineup {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .service-features,
  .service-lineup {
    margin: 0;
  }
}

.service-lineup {
  margin-top: 100px;
}

.service-features-content,
.service-lineup-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 900px) {
  .service-features-content,
  .service-lineup-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 50px;
  }
}

.service-feature,
.service-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 900px) {
  .service-feature,
  .service-item {
    gap: 25px;
  }
}

.service-feature-image,
.service-item-image {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (min-width: 900px) {
  .service-feature-image,
  .service-item-image {
    aspect-ratio: auto;
    height: auto;
  }
}

.service-feature-title,
.service-item-title {
  margin-top: 5px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: justify;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .service-feature-title,
  .service-item-title {
    font-size: 24px;
    letter-spacing: 0;
    height: 3em;
  }
}

.service-feature-text,
.service-item-text {
  font-size: 14px;
  line-height: 24px;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .service-feature-text,
  .service-item-text {
    font-size: 16px;
  }
}

.service-link {
  margin: 60px auto 0;
  height: 50px;
  max-width: 500px;
  width: calc(100% - 46px);
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .service-link {
    margin-top: 160px;
    width: 268px;
    height: 60px;
  }
}

.single-news {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .single-news {
    padding: 90px 32px 200px;
  }
}

.breadcrumb {
  margin: 20px 0 60px;
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  line-height: 16.8px;
}
@media screen and (min-width: 900px) {
  .breadcrumb {
    margin: 50px 0 124px;
    font-size: 14px;
  }
}
.breadcrumb * {
  flex-shrink: 0;
}
.breadcrumb a {
  color: #999999;
}
.breadcrumb p {
  max-width: 320px;
  width: calc(100% - 68px);
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb .breadcrumb-arrow {
  margin: 0 8px 0 4px;
  width: 12px;
  height: 12px;
  display: block;
  position: relative;
}
@media screen and (min-width: 900px) {
  .breadcrumb .breadcrumb-arrow {
    margin: 0 8px;
  }
}
.breadcrumb .breadcrumb-arrow::before {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23999999' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 12px;
  height: 12px;
  transform: translateY(-50%) rotate(90deg);
}

.single-news-content {
  margin: 0 auto;
  max-width: 780px;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.single-news-date {
  margin-bottom: 16px;
  font-size: 12px;
  line-height: 1.2;
}
@media screen and (min-width: 900px) {
  .single-news-date {
    margin-bottom: 24px;
    font-size: 16px;
  }
}

.single-news-title {
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  max-height: 3em;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .single-news-title {
    margin-bottom: 24px;
    font-size: 34px;
  }
}

.single-news-image {
  margin-bottom: 32px;
  width: 100%;
  height: 100%;
  aspect-ratio: 311/176;
  border-radius: 8px;
}
@media screen and (min-width: 900px) {
  .single-news-image {
    margin-bottom: 40px;
  }
}

.single-news-text {
  margin-bottom: 32px;
  padding-bottom: 32px;
  font-size: 14px;
  line-height: 2;
  text-align: justify;
  border-bottom: 1px solid #aeaeae;
}
.single-news-text a {
  text-decoration: underline;
  transition: opacity 0.3s ease-in;
}
.single-news-text a:hover,
.single-news-text a :focus-visible {
  opacity: 0.6;
}
@media screen and (min-width: 900px) {
  .single-news-text {
    margin-bottom: 40px;
    padding-bottom: 40px;
    font-size: 16px;
    line-height: 32.4px;
  }
  .single-news-text h1,
  .single-news-text h2,
  .single-news-text h3,
  .single-news-text h4,
  .single-news-text h5 {
    font-size: 22px;
    font-weight: 700;
  }
}

.single-news-back {
  padding-left: 24px;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  transition: opacity 0.3s ease-in;
}
@media screen and (min-width: 900px) {
  .single-news-back {
    padding-left: 28px;
    font-size: 16px;
  }
}

.single-news-back::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%231A1C22' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 18px;
  height: 18px;
  left: 0;
  transform: translateY(-50%) rotate(-90deg);
}
@media screen and (min-width: 900px) {
  .single-news-back::after {
    width: 20px;
    height: 20px;
  }
}

.single-news-back:hover,
.single-news-back:focus-visible {
  opacity: 0.6;
}

.contact {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .contact {
    padding: 90px 32px 200px;
  }
}

.contact-form {
  margin: 60px auto 0;
  max-width: 780px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media screen and (min-width: 900px) {
  .contact-form {
    margin-top: 200px;
    gap: 32px;
  }
}

.contact-form-notice {
  font-size: 14px;
  line-height: 1.6;
  color: #ff0000;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 900px) {
  .contact-field {
    gap: 12px;
  }
}

.contact-field-label {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-size: 16px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 900px) {
  .contact-field-label {
    gap: 8px;
    font-size: 20px;
  }
}

.contact-field-required {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #ff0000;
  flex-shrink: 0;
}
@media screen and (min-width: 900px) {
  .contact-field-required {
    width: 6px;
    height: 6px;
  }
}

.contact-field-control {
  padding: 15.5px 12px;
  height: 48px;
  width: 100%;
  font-size: 14px;
  line-height: 1.2;
  color: #1a1c22;
  background-color: #ffffff;
  border-radius: 6px;
  border: 1px solid #d5d5d5;
  box-sizing: border-box;
  transition: border-color 0.2s ease-in, box-shadow 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .contact-field-control {
    padding: 18px 16px;
    height: 56px;
    font-size: 16px;
  }
}
.contact-field-control::placeholder {
  color: #d5d5d5;
}
.contact-field-control:focus-visible {
  border-color: #1a1c22;
}
.contact-field-control[data-has-error=true] {
  border-color: #ff0000;
}
.contact-field-control[data-has-error=true]:focus-visible {
  border-color: #ff0000;
}

.contact-message {
  height: 180px;
}
@media screen and (min-width: 900px) {
  .contact-message {
    height: 336px;
  }
}

.contact-field-error {
  margin-top: -6px;
  padding-left: 22px;
  position: relative;
  font-size: 14px;
  line-height: 1.2;
  color: #ff0000;
}
@media screen and (min-width: 900px) {
  .contact-field-error {
    margin-top: -4px;
  }
}

.contact-field-error::before {
  content: none;
  width: 16px;
  height: 16px;
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23ff0000'%3E%3Cpath d='M508.5-291.5Q520-303 520-320t-11.5-28.5Q497-360 480-360t-28.5 11.5Q440-337 440-320t11.5 28.5Q463-280 480-280t28.5-11.5ZM440-440h80v-240h-80v240Zm40 360q-83 0-156-31.5T197-197q-54-54-85.5-127T80-480q0-83 31.5-156T197-763q54-54 127-85.5T480-880q83 0 156 31.5T763-763q54 54 85.5 127T880-480q0 83-31.5 156T763-197q-54 54-127 85.5T480-80Zm0-80q134 0 227-93t93-227q0-134-93-227t-227-93q-134 0-227 93t-93 227q0 134 93 227t227 93Zm0-320Z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.contact-field-error[data-has-error=true]::before {
  content: "";
}

.contact-dropdown {
  height: 48px;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  overflow: hidden;
  transition: height 0.3s ease-in, border-color 0.3s ease-in;
  background-color: #ffffff;
}
@media screen and (min-width: 900px) {
  .contact-dropdown {
    height: 56px;
  }
}

.contact-dropdown[data-is-open=true] {
  height: 344px;
  overflow: visible;
}
.contact-dropdown[data-is-open=true] .contact-dropdown-options {
  opacity: 1;
}
.contact-dropdown[data-is-open=true] .contact-dropdown-toggle::after {
  transform: translateY(-50%) scaleY(1);
}
@media screen and (min-width: 900px) {
  .contact-dropdown[data-is-open=true] {
    height: 394px;
  }
}

.contact-dropdown:focus-within {
  border-color: #1a1c22;
}

.contact-dropdown[data-has-error=true] {
  border-color: #ff0000;
}

.contact-dropdown[data-has-error=true]:focus-within {
  border-color: #ff0000;
}

.contact-dropdown-toggle {
  padding: 15.5px 12px;
  height: 48px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  color: #1a1c22;
  border: 1px solid transparent;
  border-radius: 6px 6px 0 0;
  position: relative;
  transition: border-color 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .contact-dropdown-toggle {
    padding: 18px 16px;
    height: 56px;
    font-size: 16px;
  }
}

.contact-dropdown[data-has-value=false] .contact-dropdown-toggle {
  color: #d5d5d5;
}

.contact-dropdown-toggle::after {
  content: "";
  width: 14px;
  height: 14px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='14' viewBox='0 0 14 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3.5 8.75L7 5.25L10.5 8.75' stroke='%23D5D5D5' stroke-width='1.16667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-size: 100%;
  width: 16px;
  height: 16px;
  right: 12px;
  transform: translateY(-50%) scaleY(-1);
  transition: transform 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .contact-dropdown-toggle::after {
    right: 16px;
  }
}

.contact-dropdown-options {
  width: 100%;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.0823529412);
  border-radius: 0 0 6px 6px;
  opacity: 0;
  transition: opacity 0.3s ease-in 0.2s;
}

.contact-dropdown-option-button {
  padding: 15.5px 12px;
  height: 48px;
  width: 100%;
  text-align: left;
  font-size: 14px;
  line-height: 1.2;
  border-top: 1px solid #d5d5d5;
  color: #1a1c22;
  transition: background-color 0.2s ease-in;
}
@media screen and (min-width: 900px) {
  .contact-dropdown-option-button {
    padding: 18px 16px;
    height: 56px;
    font-size: 16px;
  }
}

.contact-dropdown-option-button[aria-selected=true] {
  font-weight: 700;
}

.contact-dropdown-option-button:not([aria-selected=true]):hover,
.contact-dropdown-option-button:not([aria-selected=true]):focus-visible {
  background-color: #e5e5e5;
}

.contact-privacy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media screen and (min-width: 900px) {
  .contact-privacy {
    gap: 8px;
  }
}

.contact-privacy-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.contact-privacy input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.contact-privacy-box {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #e5e5e5;
  background-color: #ffffff;
  flex-shrink: 0;
  position: relative;
}
@media screen and (min-width: 900px) {
  .contact-privacy-box {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }
}

.contact-privacy-box::after {
  content: none;
  width: 10px;
  height: 5px;
  border-left: 2px solid #1a1c22;
  border-bottom: 2px solid #1a1c22;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
  transition: border-color 0.1s ease-in;
}
@media screen and (min-width: 900px) {
  .contact-privacy-box::after {
    width: 11px;
    height: 6px;
  }
}

.contact-privacy input:checked + .contact-privacy-box::after {
  content: "";
}

.contact-privacy input:focus-visible + .contact-privacy-box::after {
  border-color: #e5e5e5;
}

.contact-privacy-text {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 500;
  color: #1a1c22;
}
@media screen and (min-width: 900px) {
  .contact-privacy-text {
    font-size: 16px;
  }
}
.contact-privacy-text a {
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.3s ease-in;
}
.contact-privacy-text a:hover,
.contact-privacy-text a :focus-visible {
  opacity: 0.6;
}

.contact-submit-wrap:has([disabled]) {
  pointer-events: none;
}

.contact-submit {
  margin: 60px auto 0;
  padding: 0 21.5px;
  max-width: 500px;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 900px) {
  .contact-submit {
    margin-top: 160px;
    width: 268px;
    height: 64px;
  }
}

.contact-submit[disabled] {
  opacity: 0.2;
  cursor: not-allowed;
}

.contact-result {
  margin: 60px auto 0;
  padding: 0 32px;
  max-width: 964px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 900px) {
  .contact-result {
    margin-top: 150px;
  }
}

.contact-result-icon {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #1a1c22;
  position: relative;
  z-index: 0;
}
@media screen and (min-width: 900px) {
  .contact-result-icon {
    width: 80px;
  }
}

.contact-result-icon::before {
  content: "";
  width: 36px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 900px) {
  .contact-result-icon::before {
    width: 48px;
  }
}

.contact-result-icon[data-is-status=complete]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='36' fill='none' viewBox='0 0 36 36'%3E%3Cpath stroke='%23fff' stroke-linejoin='round' stroke-width='4.5' d='M30 9 13.5 25.5 6 18'/%3E%3C/svg%3E");
}

.contact-result-icon[data-is-status=error]::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' fill='%23fff' viewBox='0 -960 960 960'%3E%3Cpath d='m256-168-88-88 224-224-224-224 88-88 224 224 224-224 88 88-224 224 224 224-88 88-224-224z'/%3E%3C/svg%3E");
}

.contact-result-head {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.47;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact-result-head {
    margin-top: 40px;
    font-size: 32px;
    line-height: 38.4px;
  }
}

.contact-result-text {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .contact-result-text {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.8;
  }
}

.contact-result-link {
  margin-top: 60px;
  padding: 0 21.5px;
  max-width: 500px;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 900px) {
  .contact-result-link {
    margin-top: 80px;
    width: 268px;
    height: 64px;
  }
}

.terms,
.company,
.tokushoho {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .terms,
  .company,
  .tokushoho {
    padding: 90px 32px 200px;
  }
}

.terms-content {
  margin: 60px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 2;
  white-space: pre-line;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .terms-content {
    margin-top: 200px;
    font-size: 16px;
    font-weight: 28.8px;
  }
}
.terms-content a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 2;
}

.terms-date {
  margin: 30px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 1;
  color: #aeaeae;
}
@media screen and (min-width: 900px) {
  .terms-date {
    margin-top: 64px;
    line-height: 1.2;
  }
}

.privacy {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .privacy {
    padding: 90px 32px 200px;
  }
}

.privacy-content {
  margin: 60px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 2;
  white-space: pre-line;
  text-align: justify;
}
@media screen and (min-width: 900px) {
  .privacy-content {
    margin-top: 200px;
    font-size: 16px;
    line-height: 28.8px;
  }
  .privacy-content span {
    margin: 40px 0 20px;
    font-weight: 500;
    font-size: 18px;
    line-height: 64px;
    vertical-align: middle;
  }
}
.privacy-content a {
  text-decoration: underline;
  font-size: 14px;
  line-height: 2;
}
@media screen and (min-width: 900px) {
  .privacy-content a {
    font-size: 16px;
    line-height: 28.8px;
  }
}

.privacy-date {
  margin: 30px auto 0;
  max-width: 780px;
  font-size: 14px;
  line-height: 1;
  color: #aeaeae;
}
@media screen and (min-width: 900px) {
  .privacy-date {
    margin-top: 64px;
    line-height: 1.2;
  }
}

.not-found {
  margin: 0 auto;
  padding: 40px 32px;
  max-width: 1184px;
  width: 100%;
}
@media screen and (min-width: 900px) {
  .not-found {
    padding: 90px 32px 200px;
  }
}

.not-found-content {
  margin-top: 60px;
  max-width: 1120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  container-type: inline-size;
  container-name: not-found-content;
}
@media screen and (min-width: 900px) {
  .not-found-content {
    margin-top: 150px;
    gap: 100px;
  }
}

.not-found-text {
  margin-top: 15px;
  font-size: 14px;
  line-height: 1.7;
}
@media screen and (min-width: 900px) {
  .not-found-text {
    margin: 0;
    width: 100%;
    font-size: 16px;
    text-align: left;
  }
}

.not-found-buttons {
  padding: 0 23px;
  max-width: 586px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@container not-found-content (min-width: 500px) {
  .not-found-buttons {
    flex-direction: row;
  }
}
@media screen and (min-width: 900px) {
  .not-found-buttons {
    padding: 0;
    max-width: 584px;
    gap: 48px;
  }
}

.not-found-button {
  margin: 0 auto;
  padding: 0 23px;
  max-width: 350px;
  width: 100%;
  height: 50px;
}
@media screen and (min-width: 900px) {
  .not-found-button {
    width: 268px;
    height: 56px;
  }
}

.not-found-nav {
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.not-found-nav-head {
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
}
@media screen and (min-width: 900px) {
  .not-found-nav-head {
    font-size: 18px;
  }
}

.not-found-nav-links {
  padding: 0 36.5px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
@container not-found-content (min-width: 500px) {
  .not-found-nav-links {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
@media screen and (min-width: 900px) {
  .not-found-nav-links {
    display: flex;
    justify-content: center;
    gap: 16px;
  }
}

.not-found-nav-link {
  padding: 14px;
  width: 100%;
  display: block;
  font-size: 14px;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #d5d5d5;
  border-radius: 6px;
  white-space: nowrap;
  transition: background-color 0.3s ease-in;
}
@media screen and (min-width: 900px) {
  .not-found-nav-link {
    padding: 15.5px 24px;
    width: auto;
  }
}

.not-found-nav-link:hover,
.not-found-nav-link:focus-visible {
  background-color: #d5d5d5;
}