@charset "utf-8";

.company {}

.company__inner {}

.company__content {}

.company__info {}

.company__infoCount {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 40px;
  margin-top: 60px;
  
  @media screen and (min-width: 768px) {
    margin-top: 71px;
  }

  @media screen and (min-width: 768px) {
    flex-direction: row;
  }
}

.company__infoLeft {
  width: 100%;
  
  @media screen and (min-width: 1024px) {
    width: 509px;
  }
}

.company__infoImgWrap {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 509 / 640;
  border-radius: 10px;
  overflow: hidden;
  
  @media screen and (min-width: 768px) {
    max-width: unset;
    aspect-ratio: 509 / 770;
  }
}

.company__infoRight {
  width: 100%;
  
  @media screen and (min-width: 1024px) {
    width: 583px;
  }
}

.company__infoTextWrap {
  max-width: 600px;
  margin-inline: auto; 
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  
  @media screen and (min-width: 1024px) {
    max-width: unset;
    margin-top: 37px;
  }
}

.company__infoRow {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5px;
  padding-block: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
  
  @media screen and (min-width: 1024px) {
    padding-block: 18px;
    flex-direction: row;  
    gap: 0;
  }
}

.company__infoTitle {
  width: 100px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;

  @media screen and (min-width: 1024px) {
    line-height: calc(33 / 14);
  }
}

.company__infoText {
  width: 100%;
  flex-shrink: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  
  @media screen and (min-width: 1024px) {
    line-height: calc(33 / 14);
    width: 435px;
  }
}

.company__infoTextWrap_20260615 .company__infoTitle{
  width: 50%;
  @media screen and (max-width: 768px){
    width: 100%;
  }
}
.company__infoTextWrap_20260615 .company__infoText{
  width: 50%;
  @media screen and (max-width: 768px){
    width: 100%;
  }
}

.company__policy {
  width: 100vw;
  margin-inline: calc(50% - 50vw);
  border-radius: 20px;
  padding-block: 80px 60px;
  background: #383E43 url("../images/company-policy-filter.png") no-repeat center center / cover;
  text-align: center;
  margin-top: 60px;
  
  @media screen and (min-width: 768px) {
    border-radius: 30px;
    padding-block: 100px 85px;
    margin-top: 140px;
  }
}

.company__policyContent {
  width: 90%;
  margin-inline: auto;
  color: #FFF;
  
  @media screen and (min-width: 768px) {
    width: fit-content;
  }
}

.company__policyTitle {
  font-family: var(--ff-type2);
  font-size: 90px;
  line-height: calc(105 / 120);
  letter-spacing: 0.05em;
  text-box: trim-both cap alphabetic;
  
  @media screen and (min-width: 768px) {
    font-size: 120px;
  }
}

.company__policyText {
  font-size: clamp(18px,calc(20 / 375 * 100vw),20px);
  font-weight: 800;
  line-height: calc(47 / 28);
  letter-spacing: 0.05em;
  margin-top: 40px;
  text-box-trim: trim-both;
  
  @media screen and (min-width: 768px) {
    font-size: 28px;
    margin-top: 50px;
  }
}

.company__policyText br:nth-of-type(2) {
  display: block;

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

.company__policyListWrap {
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 40px;
  
  @media screen and (min-width: 768px) {
    gap: 24px;
    margin-top: 50px;
  }
}

.company__policyList {
  display: flex;
  gap: 5px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: left;

  @media screen and (min-width: 768px) {
    font-size: 20px;
    line-height: 1;
    text-align: center;
    justify-content: center;
  }

  &::before {
      content: "一.";
  }
}

.company__greeting {
  margin-top: 120px;
  position: relative;
  
  @media screen and (min-width: 768px) {
    margin-top: 170px;
  }
}

.company__greetingImg {
  max-width: 400px;
  width: 100%;
  margin-inline: auto;
  aspect-ratio: 440 / 513;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 60px;

  @media screen and (min-width: 768px) {
    max-width: unset;
    width: min(calc(350 / 768 * 100vw),400px);
    translate: 40%;
  }
  
  @media screen and (min-width: 1024px) {
    width: clamp(380px,calc(440 / 1366 * 100vw),440px);
    position: absolute;
    top: 0;
    right: 0;
    margin: unset;
    translate: unset;
  }
}

.company__greetingContent {
  max-width: 1000px;
  padding: 40px 7%;
  background: #FFF;
  border-radius: 10px;
  margin-top: 40px;
  
  @media screen and (min-width: 768px) {
    padding: 70px 40px;
    margin-top: -125px;
  }
  
  @media screen and (min-width: 1024px) {
    padding: 70px 75px;
    margin-top: 87px;
  }
}

.company__greetingTextWrap {
  max-width: 720px;
  width: 100%;
  
  @media screen and (min-width: 1024px) {
    max-width: unset;
    width: min(calc(575 / 1366 * 100vw),575px);
  }
}

.company__greetingTitle {
  font-family: var(--ff-type2);
  font-size: 69px;
  line-height: calc(74 / 69);
  letter-spacing: 0.05em;
}

.company__greetingTitle strong {
  color: var(--acsent-color2);
  font-weight: 500;
}

.company__greetingText {
  font-size: 16px;
  font-weight: 600;
  line-height: calc(29 / 16);
  letter-spacing: 0.05em;
  margin-top: 21px;
}

.company__greetingName {
  font-size: 18px;
  font-weight: 600;
  line-height: cacl(26 / 18);
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 19px;
}


.company__access {
  margin-top: 120px;
  padding-bottom: 120px;
  
  @media screen and (min-width: 768px) {
    margin-top: 170px;
    padding-bottom: 164px;
  }
}

.company__accessContent {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin-top: 80px;
  
  @media screen and (min-width: 768px) {
    margin-top: 93px;
    gap: 80px;
  }
}

.company__accessItem {}

.company__accessTitle {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: calc(35 / 24);
  letter-spacing: 0.08em;
  
  @media screen and (min-width: 768px) {
    font-size: 24px;
  }

  &::before {
    content: "";
    width: 18px;
    height: auto;
    aspect-ratio: 1 / 1;
    background: #2A5FD2;
    border-radius: 5px;
  }
}

.company__accessMap {
  width: 100%;
  aspect-ratio: 375 / 300;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 25px;
  
  @media screen and (min-width: 500px) {
    aspect-ratio: 1000 / 397;
    margin-top: 33px;
  }
}

.company__accessMap > div {
  width: 100%;
  height: 100%;
  min-width: unset;
  min-height: unset;
}

.company__accessMap iframe {
  width: 100%;
  height: 100%;
  border: unset;
}

.company__accessText {
  font-size: 16px;
  font-weight: 400;
  line-height: calc(24 / 16);
  margin-top: 18px;
  word-break: keep-all;
  
  strong {
    font-weight: 400;
    white-space: nowrap;
  }
}