@charset "utf-8";

/* ======================
header
====================== */
@media screen and (min-width: 1024px) {
  .header__logo {
    display: block;
    position: absolute;
    top: 72px;
    left: 96px;
    width: max(16.6666666667vw, 200px);
    transform: translateX(0);
  }

  .nav {
    position: fixed;
    top: 14px;
    right: 14px;
  }

  .nav.active {
    top: 14px;
    right: 14px;
  }
}

/* ======================
company
====================== */
.company__visual {
  margin: 0 auto;
}

.visualImg__top {
  padding-top: 118px;
  text-align: center;
}

.visualImg__title {
  font-size: 2rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.03em;
}

.visualImg__sub {
  margin-top: 4px;
  font-size: 1.2rem;
  display: block;
  font-family: var(--subFont);
  font-weight: var(--weight-black);
  color: var(--subColor);
}

.visualImg--01 {
  display: none;
}

.visualImg__bottom {
  margin-top: 18px;
  text-align: center;
}

.visualImg__slogan {
  margin-top: 18px;
  font-size: 1.5rem;
  font-weight: var(--weight-semibold);
  line-height: 2.4;
  letter-spacing: 0.03em;
}

.visualImg__name {
  margin-top: 18px;
  font-size: 1.9rem;
  font-weight: var(--weight-semibold);
  /* line-height: 2.4; */
  letter-spacing: 0.02em;
}

.visualImg__nameEng {
  font-size: 1rem;
  font-family: var(--subFont);
  font-weight: var(--weight-bold);
  line-height: 2.4;
}

@media screen and (min-width: 769px) {
  .company__visual {
    width: 1024px;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .visualImg__top {
    padding-top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .visualImg__title {
    padding: 0 122px;
    font-size: 3.2rem;
  }

  .visualImg__sub {
    display: block;
    font-size: 1.6rem;
  }

  .visualImg--01,
  .visualImg--02 {
    border-radius: 10px;
    width: 648px;
  }

  .visualImg--01 {
    display: block;
  }

  .visualImg__bottom {
    margin-top: 40px;
    display: flex;
  }

  .visualImg__bottom__txt {
    padding: 0 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .visualImg__slogan {
    margin-top: 0;
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 769px) and (max-width: 1024px) {
  .company__visual {
    width: 100%;
  }

  .visualImg__title {
    padding: 0 12.3046875vw;
    font-size: min(2.9296875vw, 3rem);
  }

  .visualImg__sub {
    margin-top: 4px;
    display: block;
    font-size: min(1.46484375vw, 1.5rem);
  }

  .visualImg--01,
  .visualImg--02 {
    width: 63.28125vw;
    height: 26.5625vw;
  }

  .visualImg--01 {
    display: block;
    border-radius: 10px 0 0 10px;
  }

  .visualImg--02 {
    border-radius: 0 10px 10px 0;
  }

  .visualImg__bottom__txt {
    padding: 0 4.58984375vw;
  }

  .visualImg__slogan {
    margin-top: 0;
    font-size: min(1.5625vw, 1.6rem);
  }
}

/* ======================
message
====================== */
.section--message {
  padding: 70px 20px 48px;
}

.message__visual {
  position: relative;
  margin: 0 auto;
}

.message__visual img {
  border-radius: 6px;
}

.message__visual::before {
  display: inline-block;
  content: "東乃 一郎";
  width: 64px;
  height: 12px;
  position: absolute;
  right: 16px;
  bottom: 41px;
  z-index: 10;
  color: var(--baseColor);
  font-weight: var(--weight-medium);
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 4px rgba(23, 122, 171, 1);
}

.message__visual::after {
  display: inline-block;
  content: "Ichiro Higashino, CEO";
  width: 110px;
  height: 12px;
  position: absolute;
  right: 16px;
  bottom: 18px;
  z-index: 10;
  color: var(--baseColor);
  font-family: var(--subFont);
  font-weight: var(--weight-semibold);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 4px rgba(23, 122, 171, 1);
}

.message__txt {
  margin-top: 24px;
  display: flex;
  max-width: 402px;
  flex-direction: column;
  align-items: center;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

.message__txt--lead {
  display: flex;
  color: var(--baseColor);
  font-size: min(5.3333333333vw, 2.4rem);
  font-weight: var(--weight-medium);
  letter-spacing: 0.01em;
  line-height: 1.4;
}

.message__txt--wrap {
  background-color: var(--mainColor);
  /* white-space: nowrap; */
}

.message__txt--wrap01 {
  border-radius: 2px 0 0 2px;
}

.message__txt--wrap02 {
  border-radius: 0 2px 2px 0;
}

.message__txt--desc {
  margin-top: 16px;
  font-size: 1.2rem;
  font-weight: var(--weight-regular);
  line-height: 2.4;
  letter-spacing: 0.02em;
}

@media screen and (min-width: 769px) {
  .section--message {
    padding: 0 20px 48px;
  }

  .message__visual {
    max-width: 1024px;
  }

  .message__visual img {
    border-radius: 10px;
  }

  .message__visual::before {
    width: 146px;
    height: 64px;
    position: absolute;
    right: 40px;
    bottom: 48px;
    font-size: 3.2rem;
  }

  .message__visual::after {
    width: 177px;
    height: 12px;
    position: absolute;
    right: 40px;
    bottom: 48px;
    font-size: 1.6rem;
  }

  .message__txt {
    margin-top: 30px;
    max-width: 1024px;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }

  .message__txt--lead {
    margin-left: 40px;
    display: inline-block;
    text-align: right;
    flex-direction: column;
    font-size: min(3.125vw, 3.2rem);
    line-height: 2;
    white-space: nowrap;
  }

  .message__txt--wrap {
    padding: 3px 0;
    border-radius: 2px;
  }

  .message__txt--desc {
    margin: 0 40px 0 48px;
    font-size: 1.4rem;
    line-height: 2.4;
    letter-spacing: 0.02em;
  }
}

/* ======================
information
====================== */
.section__information {
  padding: 0 20px 48px;
}

.information__content {
  padding: 34px 24px 56px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #FCFCFC;
  border: 1px solid var(--subColor);
  border-radius: 10px;
}

.information__title {
  font-size: 2rem;
  font-weight: var(--weight-semibold)
}

.information__table {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 700;
  line-height: 1.3;
  z-index: 1;
  font-weight: var(--weight-medium);
}

.information__table dt {
  padding-top: 11px;
  font-size: 1.6rem;
  font-weight: var(--weight-semibold);
  color: #3EB993;
}

.information__table dd {
  font-size: 1.5rem;
  border-bottom: 1px dashed var(--mainColor);
  padding: 11px 0 11px;
}

.dd--address {
  padding-bottom: 0;
}

.dd--tel {
  line-height: 2;
}

@media screen and (min-width: 769px) {
  .section__information {
    padding: 40px 20px 108px;
  }

  .information__content {
    padding: 38px 24px 62px;
    max-width: 1024px;
  }

  .information__title {
    font-size: 2.8rem;
    font-weight: var(--weight-semibold)
  }

  .information__table dl {
    display: flex;
    flex-direction: row;
    border-bottom: 0.5px dashed var(--mainColor);
  }

  .information__table dl:nth-of-type(7) {
    border-bottom: none;
  }

  .information__table dt {
    font-size: 1.8rem;
    padding-top: 12px;
    width: max(11.1111111111vw, 140px);
    max-width: 168px;
    text-align: center;
    background-color: #F4F4F4;
  }

  .information__table dd {
    padding: 12px 58px 11px 58px;
    border-bottom: none;
    font-size: 1.8rem;
  }

  .dd--address {
    padding-bottom: 6px !important;
  }
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  .information__table {
    margin-top: 19px;
  }

  .information__title {
    font-size: 2.4rem;
  }

  .information__table dt {
    font-size: 1.6rem;
  }

  .information__table dd {
    font-size: 1.6rem;
  }
}