@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ===== Base ===== */
html,
body {
  margin: 0;
  padding: 0;
  background: #fff;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

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

/* ===== header (Header/Navigation) ===== */
:root {
  --drawer-w: min(86vw, 360px);
}
@media screen and (max-width: 820px) {
  :root {
    --drawer-w: min(86vw, 300px);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background: #fff;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
  }
}

.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding-left: 10px;
}
@media screen and (max-width: 820px) {
  .header__container {
    flex-direction: row;
    padding-right: 20px;
  }
}

.header__logo {
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 80px;
    height: 80px;
    margin: 10px 0;
  }
}

.header__nav {
  flex: 1;
  height: 100%;
}
@media screen and (max-width: 820px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .header__list {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }
}

.header__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 30px;
  height: 130px;
  font-family: "Times New Roman", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 5.42em;
  color: #000;
  text-align: center;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .header__link {
    padding: 0 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .header__link {
    height: auto;
    padding: 10px 20px;
    font-size: 18px;
    line-height: 1.5em;
  }
}

.header__link:hover {
  opacity: 0.7;
}

.header__link--active {
  color: #000;
}

.header__link--green {
  background: #55BD82;
  color: #fff;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  transition: opacity 0.3s;
}
@media screen and (max-width: 1280px) {
  .header__link--green {
    padding: 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .header__link--green {
    height: auto;
    padding: 10px 20px;
    background-color: #55BD82;
  }
}

.header__link--green:hover {
  opacity: 0.8;
}

.header__link-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header__link-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .header__link-text {
    font-size: 16px;
  }
}

.header__link-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .header__link-line {
    font-size: 16px;
  }
}

.header__link-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
  padding: 16px 13px;
  background: #1A3477;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .header__cta {
    height: auto;
    padding: 10px;
  }
}

.header__cta:hover {
  opacity: 0.8;
}

.header__cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.header__cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 1280px) {
  .header__cta-text {
    font-size: 16px;
  }
}

.header__cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 24px;
  line-height: 1.2em;
  color: #fff;
}
@media screen and (max-width: 1280px) {
  .header__cta-phone {
    font-size: 16px;
  }
}

.header__cta-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===== Hamburger Menu ===== */
.hamburger {
  display: none;
  width: 60px;
  height: 60px;
  flex-direction: column;
  justify-content: space-around;
  align-items: flex-start;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  background: transparent;
  border: none;
  padding: 10px;
  transition: transform 0.35s ease;
  will-change: transform;
}
@media screen and (max-width: 820px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  height: 6px;
  background: #000;
  border-radius: 8px;
  transition: transform 0.25s ease, opacity 0.2s ease, width 0.25s ease;
}
.hamburger span:nth-child(1) {
  width: 20px;
}
.hamburger span:nth-child(2) {
  width: 35px;
}
.hamburger span:nth-child(3) {
  width: 50px;
}

#js-hamburger[aria-expanded=true] span {
  width: 50px;
}
#js-hamburger[aria-expanded=true] span:nth-child(1) {
  transform-origin: right center;
  width: 20px;
  transform: translateX(22px) translateY(12px) rotate(-45deg);
}
#js-hamburger[aria-expanded=true] span:nth-child(2) {
  width: 30px;
  transform: translateX(12px);
}
#js-hamburger[aria-expanded=true] span:nth-child(3) {
  transform-origin: right center;
  width: 20px;
  transform: translateX(22px) translateY(-12px) rotate(45deg);
}

/* ===== Drawer Menu ===== */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  pointer-events: none;
}
@media screen and (max-width: 820px) {
  .drawer {
    display: block;
  }
}
@media (min-width: 821px) {
  .drawer {
    display: none;
  }
}

.drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: var(--drawer-w);
  background: #005943;
  color: #fff;
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: -12px 0 30px rgba(0, 0, 0, 0.25);
  overflow-y: auto;
  will-change: transform;
}

body.is-drawer-open {
  overflow: hidden;
}
body.is-drawer-open .drawer {
  pointer-events: auto;
}
body.is-drawer-open .drawer__overlay {
  opacity: 1;
}
body.is-drawer-open .drawer__panel {
  transform: translateX(0);
}
body.is-drawer-open .hamburger,
body.is-drawer-open .header__cta {
  transform: translateX(calc(-1 * var(--drawer-w)));
}

.drawer__nav {
  padding: 20px 0 40px;
}

.drawer__title {
  margin: 0;
  font-size: 32px;
  padding: 16px 20px;
  text-align: center;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
}
@media screen and (max-width: 768px) {
  .drawer__title {
    font-size: 28px;
  }
}

.drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.drawer__list li + li {
  margin-top: 0;
}
.drawer__list a {
  display: block;
  padding: 16px 20px;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  transition: opacity 0.3s;
}
.drawer__list a:active {
  opacity: 0.7;
}

.drawer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px;
  background: #1A3477;
  margin: 20px;
  border-radius: 8px;
}

.drawer__cta-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 1em;
  color: #fff;
  text-align: center;
}

.drawer__cta-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  font-size: 20px;
  line-height: 1.2em;
  color: #fff;
}

.drawer__cta-icon {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

/* ===== FV (First View) ===== */
.fv {
  position: relative;
  width: 100%;
  height: calc(100vh - 130px);
  margin-top: 130px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .fv {
    height: calc(100vh - 120px);
    margin-top: 0;
  }
}

.fv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.fv__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__bg-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}
.fv__bg-image--active {
  opacity: 1;
}
.fv__bg-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__title {
  position: absolute;
  left: 40px;
  bottom: 80px;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 124px;
  line-height: 1.21em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv__title {
    font-size: 48px;
    left: 20px;
    bottom: 40px;
  }
}

/* ===== About ===== */
.about {
  display: flex;
  align-items: center;
  height: calc(100vh - 130px);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .about {
    height: auto;
  }
}

.about__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .about__header {
    margin-bottom: 40px;
  }
}

.about__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about__en {
    font-size: 32px;
  }
}

.about__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #000;
  margin: 0;
}

.about__content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 90px;
}
@media screen and (max-width: 1280px) {
  .about__content {
    padding: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .about__content {
    flex-direction: column;
    padding: 0;
    gap: 40px;
  }
}

.about__text {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 680px;
}

.about__text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5em;
  letter-spacing: 0.05em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .about__text p {
    font-size: 18px;
  }
}

.about__cta {
  display: flex;
  align-items: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .about__cta {
    justify-content: center;
    gap: 20px;
    align-items: flex-start;
  }
}

.about__cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .about__cta-text {
    font-size: 24px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.about__cta-arrow {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .about__cta-arrow {
    width: 60px;
    height: 60px;
  }
}

.about__president {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 234px;
}

.about__president-image {
  width: 100%;
  height: 328px;
  border-radius: 10px;
  overflow: hidden;
}
.about__president-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.about__president-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.about__president-title,
.about__president-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1em;
  color: #000;
  margin: 0;
}

/* ===== Company ===== */
.company {
  background: #005943;
}

.company__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.company__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .company__en {
    font-size: 32px;
  }
}

.company__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #fff;
  margin: 0;
}

.company__table {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
  background-color: #fff;
}
@media screen and (max-width: 1280px) {
  .company__table {
    margin: 0 40px;
  }
}
@media screen and (max-width: 768px) {
  .company__table {
    margin: 0;
  }
}

.company__row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #000;
  gap: 350px;
}
@media screen and (max-width: 1280px) {
  .company__row {
    gap: 20%;
  }
}
@media screen and (max-width: 768px) {
  .company__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.company__row:last-child {
  border-bottom: none;
}

.company__label {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #000;
  min-width: 124px;
}
@media screen and (max-width: 768px) {
  .company__label {
    font-size: 18px;
  }
}

.company__value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #000;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .company__value {
    font-size: 18px;
  }
}

.company__value-indent-box {
  display: flex;
  flex-direction: column;
}

.company__value-indent {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  color: #000;
  flex: 1;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .company__value-indent {
    font-size: 18px;
  }
}

/* ===== Service ===== */
.service {
  background: #fff;
}

.service__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.service__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service__en {
    font-size: 32px;
  }
}

.service__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #000;
  margin: 0;
}

.service__intro {
  margin-bottom: 80px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service__intro {
    margin-bottom: 40px;
  }
}

.service__intro-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service__intro-text {
    font-size: 24px;
  }
}

.service__items {
  display: flex;
  flex-direction: column;
  gap: 80px;
  max-width: 1180px;
  margin: 0 auto 50px;
}
@media screen and (max-width: 768px) {
  .service__items {
    gap: 40px;
  }
}

.service__item {
  display: flex;
  width: 100%;
  height: 540px;
}
@media screen and (max-width: 768px) {
  .service__item {
    flex-direction: column;
    height: auto;
  }
}

.service__item--reverse {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .service__item--reverse {
    flex-direction: column;
  }
}

.service__item-content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .service__item-content {
    padding: 40px 20px;
  }
}

.service__item-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 590px;
}

.service__item-point {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service__item-point {
    font-size: 32px;
  }
}

.service__item-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
  color: #000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .service__item-desc {
    font-size: 24px;
  }
}

.service__item-image {
  flex: 1;
  width: 100%;
  height: 100%;
  background: #544F4A;
}
.service__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .service__item-image {
    height: 300px;
  }
}

.service__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .service__cta {
    flex-direction: column;
    gap: 20px;
  }
}

.service__cta-text {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .service__cta-text {
    font-size: 20px;
  }
}

.service__cta-arrow {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .service__cta-arrow {
    width: 120px;
    height: 120px;
  }
}

/* ===== Line Up ===== */
.lineup {
  background: #005943;
}

.lineup__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
}

.lineup__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lineup__en {
    font-size: 32px;
  }
}

.lineup__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #fff;
  margin: 0;
}

.lineup__content {
  max-width: 1180px;
  margin: 0 auto;
}

.lineup__category {
  margin-bottom: 30px;
}

.lineup__category-title {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1;
  color: #fff;
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .lineup__category-title {
    font-size: 32px;
    flex-direction: column;
    align-items: flex-start;
  }
}

.lineup__category-desc {
  font-size: 24px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .lineup__category-desc {
    font-size: 18px;
  }
}

.lineup__items {
  display: flex;
  flex-direction: column;
}

.lineup__items--bullet {
  gap: 0;
  width: 100%;
}

.lineup__bullet-top {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  height: 200px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lineup__bullet-top {
    height: 100%;
  }
}

.lineup__bullet-item {
  width: 16.6666666667%;
  padding: 9.3227px;
  box-sizing: border-box;
}
.lineup__bullet-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .lineup__bullet-item {
    width: 50%;
    padding: 10px;
  }
}

.lineup__bullet-item--light-white {
  background: #E5DFDB;
}

@media screen and (max-width: 768px) {
  .lineup__bullet-item--light-white-reverse {
    background: #BFB9B5;
  }
}

.lineup__bullet-item--light-black {
  background: #BFB9B5;
}

@media screen and (max-width: 768px) {
  .lineup__bullet-item--light-black-reverse {
    background: #E5DFDB;
  }
}

.lineup__bullet-items {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lineup__bullet-items {
    flex-direction: column;
    gap: 40px;
  }
}

.lineup__item {
  position: relative;
  width: 100%;
  height: 270px;
  background: #89827C;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .lineup__item {
    height: 200px;
  }
}

.lineup__item-first {
  background-color: #89827C;
}

.lineup__item-second {
  background-color: #68635F;
}

.lineup__item-third {
  background-color: #544F4A;
}

.lineup__item--bullet {
  background: #68635F;
  flex: 1;
  height: 270px;
}
@media screen and (max-width: 768px) {
  .lineup__item--bullet {
    height: 200px;
  }
}

.lineup__item--bullet--others {
  background: #89827C;
}

.lineup__item--scope {
  background: #68635F;
}

.lineup__item--accessory {
  background: #544F4A;
}

.lineup__item-content {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 20px;
  z-index: 2;
}

.lineup__item-text {
  display: flex;
  text-align: center;
  flex-direction: column;
}

.lineup__item-en {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1em;
  color: #fff;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .lineup__item-en {
    font-size: 18px;
  }
}

.lineup__item-ja {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 0.05em;
  color: #fff;
  margin: 0;
}

.lineup__item-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.lineup__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 768px) {
  .lineup__item-image-sub img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}

.lineup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .lineup__cta {
    flex-direction: column;
    gap: 20px;
  }
}

.lineup__cta-text {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .lineup__cta-text {
    font-size: 20px;
  }
}

.lineup__cta-arrow {
  width: 90px;
  height: 90px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .lineup__cta-arrow {
    width: 120px;
    height: 120px;
  }
}

@media screen and (max-width: 768px) {
  .lineup__bullet-bottom {
    display: flex;
    flex-direction: column;
    height: 800px;
    gap: 0;
  }
}

/* ===== Contact ===== */
.contact {
  background: #fff;
}

.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.contact__en {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact__en {
    font-size: 32px;
  }
}

.contact__ja {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #000;
  margin: 0;
}

.contact__cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  max-width: 1180px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contact__cards {
    flex-direction: column;
  }
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 40px;
  width: 390px;
  height: 400px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact__card {
    width: 100%;
    max-width: 400px;
    height: auto;
    padding: 20px;
  }
}

.contact__card-icon {
  width: 160px;
  height: 160px;
}
.contact__card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .contact__card-icon {
    width: 120px;
    height: 120px;
  }
}

.contact__card-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2em;
  color: #000;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact__card-title {
    font-size: 20px;
  }
}

.contact__card-desc {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  color: #333333;
  text-align: center;
  margin: 0;
}

.contact__card-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 240px;
  height: 60px;
  background: #1A3477;
  border: 2px solid #1A3477;
  border-radius: 40px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2em;
  transition: opacity 0.3s;
}
.contact__card-btn img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .contact__card-btn {
    width: 200px;
    height: 50px;
    font-size: 20px;
  }
}

.contact__card-btn:hover {
  opacity: 0.8;
}

.contact__card-line {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact__card-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 60px;
  background: #55BD82;
  border-radius: 40px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2em;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .contact__card-line-btn {
    width: 180px;
    height: 50px;
    font-size: 18px;
  }
}

.contact__card-line-btn:hover {
  opacity: 0.8;
}

.contact__card-line-arrow {
  width: 75px;
  height: 75px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .contact__card-line-arrow {
    width: 60px;
    height: 60px;
  }
}

/* ===== Footer ===== */
.footer {
  padding: 80px 21%;
  background: #005943;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 40px 20px;
  }
}

.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
}

.footer__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2em;
  color: #fff;
  margin: 0 0 40px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer__title {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

.footer__content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer__content {
    flex-direction: column;
    gap: 30px;
  }
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__info-row {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer__info-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

.footer__info-label {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.54em;
  letter-spacing: -0.02em;
  color: #fff;
  min-width: 124px;
}
@media screen and (max-width: 768px) {
  .footer__info-label {
    font-size: 16px;
  }
}

.footer__info-value {
  font-family: "Noto Sans", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.54em;
  letter-spacing: -0.02em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .footer__info-value {
    font-size: 16px;
  }
}

.footer__info-row:nth-child(2) .footer__info-value {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2em;
  color: #fff;
  max-width: 380px;
}
@media screen and (max-width: 768px) {
  .footer__info-row:nth-child(2) .footer__info-value {
    font-size: 16px;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.footer__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2em;
  color: #fff;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__nav-link {
    font-size: 20px;
  }
}

.footer__nav-link:hover {
  opacity: 0.7;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.footer__link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  color: #fff;
  transition: opacity 0.3s;
}

.footer__link:hover {
  opacity: 0.7;
}

.footer__copyright,
.footer__credit {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2em;
  color: #fff;
  margin: 0;
}

@media screen and (max-width: 768px) {
  .footer__nav-mobile-section {
    background: #fff;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-mobile-section-inner {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-mobile {
    background: #fff;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-mobile ul {
    display: flex;
    flex-direction: column;
    list-style: none;
    margin: 0;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-mobile li {
    border-top: 1px solid rgba(0, 0, 0, 0.3);
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-mobile li:last-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    text-decoration: none;
    color: #000;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.2em;
    transition: opacity 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .footer__nav-link:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-link-text {
    flex: 1;
  }
}

@media screen and (max-width: 768px) {
  .footer__nav-link-arrow {
    color: rgba(0, 0, 0, 0.3);
    font-size: 16px;
    margin-left: 10px;
  }
}

/* ===== Anchor Offset ===== */
#top,
#company,
#service,
#lineup {
  scroll-margin-top: 130px;
}
@media screen and (max-width: 768px) {
  #top,
#company,
#service,
#lineup {
    scroll-margin-top: 100px;
  }
}

/* ===== Fade In Animation ===== */
.fade-in-text {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-text.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Privacy Policy ===== */
.privacy-hero {
  padding: 120px 95px 0;
  background: #fff;
  color: #000;
}
@media screen and (max-width: 768px) {
  .privacy-hero {
    padding: 40px 20px;
  }
}

.privacy-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 80px;
}

.four-hero__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 80px;
}

.privacy-hero__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.privacy-hero__label {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-size: 48px;
  line-height: 1.33em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy-hero__label {
    font-size: 32px;
    text-align: center;
  }
}

.privacy-hero__title {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 1em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy-hero__title {
    font-size: 10px;
  }
}

.privacy-hero__content {
  max-width: 1180px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .privacy-hero__content {
    padding-top: 40px;
  }
}

.privacy-hero__lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5em;
  color: #000;
  margin: 0;
  text-indent: 1em;
}
@media screen and (max-width: 768px) {
  .privacy-hero__lead {
    font-size: 18px;
  }
}

.privacy-hero__signature {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5em;
  color: #000;
  text-align: right;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy-hero__signature {
    font-size: 18px;
  }
}

.privacy {
  background: #fff;
}

.privacy__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .privacy__inner {
    padding: 40px 20px;
    gap: 20px;
  }
}

.privacy__block {
  display: flex;
  flex-direction: column;
}

.privacy__block-header {
  width: 100%;
  height: 80px;
  background: #fff;
  border-top: 3px solid #1A3477;
  border-bottom: 1px solid #1A3477;
  display: flex;
  align-items: center;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .privacy__block-header {
    height: 60px;
  }
}

.privacy__heading {
  font-family: "Times New Roman", serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.5em;
  color: #000;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .privacy__heading {
    font-size: 20px;
  }
}

.privacy__text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin: 0;
  text-indent: -1em;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .privacy__text {
    font-size: 16px;
  }
}

.privacy__text-indent {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy__text-indent {
    font-size: 16px;
  }
}

.privacy__text--first {
  padding-top: 20px;
}
@media screen and (max-width: 768px) {
  .privacy__text--first {
    font-size: 16px;
  }
}

.privacy__list {
  margin: 16px 0 0;
  padding-left: 20px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.8;
}
.privacy__list li + li {
  margin-top: 8px;
}

.privacy__contact {
  background: #fff;
  border: 2px solid #005943;
}

.privacy__contact-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy__contact-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}
.privacy__contact-list dt {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #005943;
  margin-bottom: 6px;
}
.privacy__contact-list dd {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #000;
}

.privacy__updated {
  margin-top: 24px;
  font-size: 14px;
  color: #333333;
}

.inner {
  padding: 80px 0 120px;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 40px;
  }
}

@media screen and (max-width: 768px) {
  .md-none {
    display: none;
  }
}

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

/* ===== LINE Add Contact ===== */
.line-add {
  padding: 40px 20px;
  background: #f8f8f8;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: 130px;
}
@media screen and (max-width: 768px) {
  .line-add {
    margin-top: 0;
    padding: 120px 20px 20px;
  }
}

.line-add__card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 60px 40px;
  max-width: 600px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line-add__card {
    padding: 40px 20px;
    border-radius: 12px;
  }
}

.line-add__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5em;
  color: #000;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .line-add__title {
    font-size: 20px;
    margin-bottom: 30px;
  }
}

.line-add__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.line-add__profile-icon {
  position: relative;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .line-add__profile-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 16px;
  }
}

.line-add__profile-tie {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .line-add__profile-tie {
    width: 100px;
    height: 100px;
  }
}

.line-add__profile-heart {
  position: absolute;
  top: 0;
  right: 0;
  width: 32px;
  height: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .line-add__profile-heart {
    width: 28px;
    height: 28px;
  }
}

.line-add__profile-name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.5em;
  color: #000;
  margin: 0 0 8px;
}
@media screen and (max-width: 768px) {
  .line-add__profile-name {
    font-size: 22px;
  }
}

.line-add__profile-sub {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5em;
  color: #000;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .line-add__profile-sub {
    font-size: 16px;
  }
}

.line-add__qr {
  margin: 40px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .line-add__qr {
    margin: 30px 0;
  }
}

.line-add__qr-code {
  width: 100px;
  height: 100px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .line-add__qr-code {
    width: 100px;
    height: 100px;
  }
}

.line-add__instruction {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8em;
  color: #000;
  margin: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .line-add__instruction {
    font-size: 14px;
    line-height: 1.6em;
  }
}

.line-add__footer {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .line-add__footer {
    margin-top: 30px;
    font-size: 14px;
    flex-direction: column;
    gap: 8px;
  }
}

.line-add__download-link {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s;
}
.line-add__download-link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .line-add__separator {
    display: none;
  }
}

.footer__credit-link {
  color: #fa8b14;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}