@charset "UTF-8";
/* ============================================================
// company.scss
============================================================ */
/* ------------------------------------------------------------
// Fluid Design Function
// 最小値〜最大値の間で数値を可変させる共通関数
------------------------------------------------------------ */
/* ------------------------------------------------------------
// design
------------------------------------------------------------ */
.page-header {
  position: relative;
  width: 100%;
  height: clamp(260px, 9.1324200913vw + 225.7534246575px, 360px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: url("../images/company/bg-header.webp") no-repeat center center/cover;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.page-header__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 4%;
}
.page-header__title-area {
  position: relative;
  display: inline-block;
}
.page-header__en {
  font-family: "Quicksand", sans-serif;
  font-size: clamp(60px, 3.6529680365vw + 46.301369863px, 100px);
  font-weight: 700;
  line-height: 1;
  color: rgba(87, 161, 54, 0.25);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.page-header__jp {
  position: absolute;
  bottom: 0;
  left: 4px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: clamp(24px, 0.7305936073vw + 21.2602739726px, 32px);
  font-weight: 700;
  color: #fff;
}
.page-header__deco {
  position: absolute;
  right: 5%;
  bottom: 10px;
  width: clamp(100px, 7.3059360731vw + 72.602739726px, 180px);
  z-index: 2;
  opacity: 0.8;
}
.page-header__deco img {
  width: 100%;
  height: auto;
}

.company-info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  max-width: 940px;
  margin-inline: auto;
}
.company-info .info-list {
  width: 100%;
  border-top: 2px solid #ddd;
}
.company-info .info-list__item {
  display: flex;
  gap: 20px;
  padding-block: 15px;
  border-bottom: 2px solid #ddd;
}
@media screen and (max-width: 575px) {
  .company-info .info-list__item {
    flex-direction: column;
    gap: 10px;
  }
}
.company-info .info-list__item dt {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: clamp(120px, 5.4794520548vw + 99.4520547945px, 180px);
  font-weight: 700;
  padding: 10px 15px;
  background-color: #ddebcd;
  border-radius: 6px;
}
@media screen and (max-width: 575px) {
  .company-info .info-list__item dt {
    width: -moz-fit-content;
    width: fit-content;
    padding: 4px 12px;
  }
}
.company-info .info-list__item dd {
  flex: 1;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.company-info .info-list__item dd .u-list-dot li {
  position: relative;
  padding-left: 1.2em;
}
.company-info .info-list__item dd .u-list-dot li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.c-google-maps {
  max-width: 940px;
  margin-inline: auto;
  border-radius: 10px;
}
.c-google-maps iframe {
  border-radius: 10px;
}

.company-contact__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 1.8264840183vw + 13.1506849315px, 40px);
  max-width: 940px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .company-contact__inner {
    grid-template-columns: 1fr;
  }
}
.company-contact__box {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 200px;
  padding: clamp(30px, 1.8264840183vw + 23.1506849315px, 50px) 20px;
  background-color: #fff;
  border-radius: 20px;
}
.company-contact__box::before, .company-contact__box::after {
  content: "";
  position: absolute;
  width: 60px;
  height: 60px;
  border: 6px solid #dcedd5;
  pointer-events: none;
}
.company-contact__box::before {
  top: 0;
  left: 0;
  border-right: none;
  border-bottom: none;
  border-top-left-radius: 20px;
}
.company-contact__box::after {
  bottom: 0;
  right: 0;
  border-left: none;
  border-top: none;
  border-bottom-right-radius: 20px;
}
.company-contact__title {
  font-size: clamp(18px, 0.3652968037vw + 16.6301369863px, 22px);
  font-weight: 700;
  margin-bottom: 15px;
}
.company-contact__number {
  display: block;
  font-size: clamp(28px, 1.095890411vw + 23.8904109589px, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
}
.company-contact__info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px 15px;
  font-size: clamp(13px, 0.1826484018vw + 12.3150684932px, 15px);
  font-weight: 500;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 575px) {
  .company-contact__info {
    flex-direction: column;
  }
}
.company-contact__info-item {
  white-space: nowrap;
}