/*初期設定*/
*{padding:0; margin:0%;}
/*font-size:16PX*/
html{font-size:100%; overflow: auto;}
*,
*::before,
*::after {
  box-sizing: border-box;
}
body {
  font-family: 'Noto Serif JP', serif;
}
body.menu-open {
  overflow: hidden;
}
body.menu-open main,
body.menu-open section,
body.menu-open footer {
  pointer-events: none;
}
body.menu-open .header,
body.menu-open .mobile-menu {
  pointer-events: auto;
}
body.menu-open::before {
  content: "";
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: calc(100dvh - 80px);
  background: transparent;
  z-index: 2400;
  pointer-events: auto;
}
/*各種font設定*/
li{
    list-style: none;}
a{
    text-decoration:none;}



/*header*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3000;
  width: 100%;
  height: 80px;
  background: #646363f8;

  transition: 0.3s ease;
}


.header__inner {
  width: 100%;
  max-width: 1180px;
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.header__logo {
  margin-right: auto;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.header__logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ef5b4f;
  font-size: 15px;
  font-weight: 700;
}

.header__logo-text strong {
  display: block;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.header__logo-text small {
  display: block;
  margin-top: 2px;
  font-size: 10px;
  line-height: 1;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header__nav a {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.header__nav a:hover,
.header__nav a.is-active {
  color: #ef5b4f;
}

.header__request {
  padding: 12px 22px;
  border-radius: 999px;
  background: #ef5b4f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.header__request::after {
  content: " →";
}

.header__hamburger {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  margin: 6px auto;
  background: #fff;
  transition: 0.3s ease;
}

.header__hamburger.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 80px;
  right: 0;
  z-index: 2500;
  width: min(360px, 86%);
  height: calc(100dvh - 80px);
  padding: 40px 32px;
  background: rgba(35, 28, 22, 0.96);
  transform: translateX(100%);
  transition: transform 0.35s ease;
}
.mobile-menu.is-active {
  transform: translateX(0);
}

.mobile-menu__nav {
  display: grid;
  gap: 22px;
}

.mobile-menu__nav a {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.mobile-menu__request {
  margin-top: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  background: #ef5b4f;
  text-align: center;
}


@media (max-width: 1024px) {
  .header__nav,
  .header__request {
    display: none;
  }

  .header__hamburger {
    display: block;
  }

}

@media (max-width: 640px) {
  body {
    padding-top: 70px;
  }

  body.menu-open::before {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .mobile-menu {
    top: 70px;
    height: calc(100dvh - 70px);
  }

  .header {
    height: 70px;
  }

}



/* section-ceo */
.section-ceo {
  background: #fbfaf7;
  color: #102236;
}

/* fv */
.section-ceo__fv {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image:
    linear-gradient(
      90deg,
      rgba(20, 20, 20, 0.68) 0%,
      rgba(20, 20, 20, 0.4) 48%,
      rgba(20, 20, 20, 0.16) 100%
    ),
    url("../img/ceo/ceo-fv.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-ceo__fv::after {
  content: "";
  position: absolute;
  left: -5%;
  bottom: -120px;
  width: 110%;
  height: 220px;
  border-radius: 50%;
  background: #fbfaf7;
}

.section-ceo__fv-inner {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 62px 0 90px;
}

.section-ceo__breadcrumb {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  line-height: 1.6;
}

.section-ceo__en {
  margin-bottom: 10px;
  color: #ef5b4f;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-ceo__title {
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-ceo__lead {
  max-width: 620px;
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
}

/* message */
.section-ceo__message {
  padding: 70px 0 100px;
}

.section-ceo__message-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.section-ceo__image img {
  width: 100%;
  border-radius: 12px;
  display: block;
  object-fit: cover;
  box-shadow: 0 18px 50px rgba(31, 23, 18, 0.08);
}

.section-ceo__image-name {
  margin-top: 24px;
  text-align: center;
}

.section-ceo__image-name strong {
  display: block;
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

.section-ceo__image-name span {
  display: block;
  margin-top: 4px;
  color: #66717b;
  font-size: 13px;
  line-height: 1.5;
}

.section-ceo__content-en {
  margin-bottom: 12px;
  color: #ef5b4f;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-ceo__content-title {
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.35;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-ceo__text {
  margin-top: 34px;
}

.section-ceo__text p {
  margin-bottom: 24px;
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-ceo__signature {
  margin-top: 42px;
  padding-top: 26px;
  border-top: 1px solid #e6e1dc;
  text-align: right;
}

.section-ceo__signature p {
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 700;
}

.section-ceo__signature strong {
  font-size: 22px;
  line-height: 1.4;
  font-weight: 700;
}

/* responsive */
@media (max-width: 900px) {
  .section-ceo__message-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }

  .section-ceo__image {
    max-width: 320px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .section-ceo__fv {
    min-height: 300px;
    background-position: center;
  }

  .section-ceo__fv-inner,
  .section-ceo__message-inner {
    width: calc(100% - 32px);
  }

  .section-ceo__fv-inner {
    padding: 58px 0 86px;
  }

  .section-ceo__lead {
    font-size: 13px;
    line-height: 1.8;
  }

  .section-ceo__message {
    padding: 54px 0 72px;
  }

  .section-ceo__content-title {
    line-height: 1.45;
  }

  .section-ceo__text p {
    font-size: 13px;
    line-height: 2;
  }

  .section-ceo__signature strong {
    font-size: 20px;
  }
}

/* section-promises */
.section-promises {
  padding: 86px 0 90px;
  background: #f8f7f4;
  color: #102236;
}

.section-promises__inner,
.section-vision__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.section-promises__head,
.section-vision__head {
  text-align: center;
}

.section-promises__en,
.section-vision__en {
  margin-bottom: 10px;
  color: #ef5b4f;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.section-promises__title,
.section-vision__title {
  font-size: clamp(30px, 3.6vw, 42px);
  line-height: 1.25;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-promises__lead {
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.9;
  font-weight: 700;
}

.section-promises__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 56px;
}

.section-promises-card {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 30px 34px;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 16px 50px rgba(31, 23, 18, 0.04);
}

.section-promises-card__icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ffe8e6;
  color: #ef5b4f;
  font-size: 22px;
  font-weight: 700;
}

.section-promises-card h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-promises-card p {
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.03em;
  font-weight: 700;
}

/* section-vision */
.section-vision {
  padding: 86px 0 96px;
  background: #fff;
  color: #102236;
}

.section-vision__list {
  width: min(760px, 100%);
  margin: 50px auto 0;
  display: grid;
  gap: 26px;
}

.section-vision-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 34px;
  border-radius: 14px;
  background: #f8f7f4;
}

.section-vision-item__year {
  flex: 0 0 auto;
  width: 62px;
  height: 62px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #ef5b4f;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
}

.section-vision-item__body h3 {
  margin-bottom: 8px;
  font-size: 22px;
  line-height: 1.4;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.section-vision-item__body p {
  font-size: 13px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  font-weight: 700;
}

.section-promises-card,
.section-vision-item {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.section-promises-card.is-show,
.section-vision-item.is-show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 760px) {
  .section-promises__grid {
    grid-template-columns: 1fr;
  }

  .section-promises-card {
    padding: 26px 22px;
  }
}

@media (max-width: 640px) {
  .section-promises,
  .section-vision {
    padding: 72px 0;
  }

  .section-promises__inner,
  .section-vision__inner {
    width: calc(100% - 32px);
  }

  .section-promises__lead {
    text-align: left;
  }

  .section-promises__grid {
    margin-top: 40px;
    gap: 20px;
  }

  .section-promises-card {
    gap: 18px;
  }

  .section-vision__list {
    margin-top: 40px;
    gap: 18px;
  }

  .section-vision-item {
    align-items: flex-start;
    gap: 18px;
    padding: 24px 20px;
  }

  .section-vision-item__year {
    width: 56px;
    height: 56px;
    font-size: 17px;
  }

  .section-vision-item__body h3 {
    font-size: 19px;
  }
}




/* footer */
.footer {
  background: #153f35;
  color: #fff;
}

.footer__inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr 2.3fr;
  gap: 80px;
  padding: 90px 0 56px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.footer__logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #ef5b4f;
  font-size: 16px;
  font-weight: 700;
}

.footer__logo strong {
  display: block;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

.footer__logo small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  line-height: 1;
}

.footer__description {
  margin-top: 26px;
  color: #d7e5df;
  font-size: 13px;
  line-height: 1.8;
  font-weight: 700;
}

.footer__sns {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.footer__sns a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition: 0.3s ease;
}

.footer__sns a:hover {
  background: #ef5b4f;
}

.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
}

.footer__group-title {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  pointer-events: none;
}

.footer__group-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.footer__group-list a {
  color: #c8d9d3;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.3s ease;
}

.footer__group-list a:hover {
  color: #ef5b4f;
}

.footer__info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 34px 0 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__info-item {
  display: flex;
  gap: 14px;
}

.footer__info-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.12);
  color: #ef5b4f;
  font-size: 13px;
}

.footer__info-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.4;
}

.footer__info-item p {
  color: #d7e5df;
  font-size: 13px;
  line-height: 1.7;
  font-weight: 700;
}

.footer__bottom {
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer__bottom p {
  color: #a9c2ba;
  font-size: 12px;
  line-height: 1.6;
}

/* responsive */
@media (max-width: 900px) {
  .footer__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__nav {
    gap: 32px;
  }

  .footer__info {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

@media (max-width: 640px) {
  .footer__inner {
    width: calc(100% - 32px);
  }

  .footer__top {
    padding: 64px 0 36px;
  }

  .footer__nav {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .footer__group {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer__group:last-child {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .footer__group-title {
    position: relative;
    padding: 20px 0;
    cursor: pointer;
    pointer-events: auto;
  }

  .footer__group-title::after {
    content: "+";
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 400;
  }

  .footer__group.is-open .footer__group-title::after {
    content: "−";
  }

  .footer__group-list {
    max-height: 0;
    overflow: hidden;
    margin-top: 0;
    gap: 0;
    transition: max-height 0.35s ease;
  }

  .footer__group-list li {
    padding-bottom: 16px;
  }

  .footer__group.is-open .footer__group-list {
    max-height: 220px;
  }

  .footer__info {
    padding: 34px 0 42px;
  }
}

