@charset "UTF-8";

/*
こちらのCSSファイルを使用してください！

以下、CSS記述の注意事項

■色の指定
下記はデザイン上で使用している色の名前と同じです！
CSS変数と言われるものです。
var(--color-primary)
var(--color-accent)
var(--color-back)
var(--color-black)
var(--color-white)

下記のように使用してください！
.example {
  color:var(--color-primary);
}

■フォントサイズの指定
フォントサイズの指定には「rem」を使用します。

1remが10pxになるように調整していますので、
デザイン上で16pxの箇所は
font-size:1.6rem:
のように記述してください！

■cssの記述について
必ず最初に
「#_ #セクションのid」 を記載してください！

↓例
aboutセクションの場合。
#_ #about {
  margin:100px;
}

aboutセクションの小要素の場合
#_ #about .heading {
  display:none;
}
*/

#_ #vision {
  position: relative;
  overflow: hidden;
  background-image: url('../img/vision-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 100px;
  color: var(--color-white);
}

@media screen and (max-width: 767px) {
  #_ #vision {
    background-image: url('../img/vision-back-sp.jpg');
    padding-block: 60px;
  }
}

/* #_ #vision .vision-bg {
  不要なため削除
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  height: 100%;
  min-height: 800px;

  background-image: url('asset/img/Rectangle92.png'),
    url('asset/img/Rectangle93.png');
  background-repeat: no-repeat, no-repeat;
  background-position: top center, bottom center;
  background-size: 100% auto, 100% auto;
  opacity: 0.9;
  z-index: 1;
} */

#_ #vision .vision-container {
  /* 不要なため削除 */
  /* position: relative;
  z-index: 2; */
}

#_ #vision .vision-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  max-width: 960px;
  margin-inline: auto;
  /* margin-bottom: 10rem; */
}

@media screen and (max-width: 767px) {
  #_ #vision .vision-flex {
    display: block;
  }
}

#_ #vision .vision-flex .heading {
  text-align: left;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-flex .heading {
    text-align: center;
  }
}

/* #_ #vision .vision-sub {
  不要なため削除
  font-size: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
} */

#_ #vision .vision-right {
  max-width: 480px;
  /* font-size: 1.6rem;
  line-height: 3rem; */
  margin-top: 17px;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-right {
    max-width: 100%;
    margin-top: 40px;
  }
}

#_ #vision .vision-lead {
  font-size: 1.8rem;
  line-height: 1.75;
}

@media screen and (max-width: 767px) {
  #_ #vision .vision-lead {
    font-size: 1.6rem;
    width: fit-content;
    margin-inline: auto;
  }
}

#_ #vision .vision-desc {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.75;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-desc {
    font-size: 1.4rem;
    margin-top: 21px;
  }
}

#_ #vision .vision-diagram {
  max-width: 723px;
  width: 100%;
  background-color: var(--color-white);
  border-radius: 10px;
  padding: 20px;
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  #_ #vision .vision-diagram {
    border-radius: 5px;
    overflow-x: scroll;
    padding: 5px;
    margin-top: 40px;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #_ #vision .vision-diagram::-webkit-scrollbar {
    display: none;
  }
}

/* #_ #vision .vision-diagram img {
  max-width: 780px;
  width: 100%;
  display: block;
  margin: 0 auto;
} */
@media screen and (max-width: 767px) {
  #_ #vision .vision-diagram img {
    min-width: 403px;
  }
}

#_ #contact {
  position: relative;
  overflow: hidden;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #_ #contact {
    margin-top: 70px;
  }
}

/* #_ #contact .contact-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);

  width: 100vw;
  height: 100%;
  min-height: 700px;
  background: url('asset/img/Rectangle136.png') center/cover no-repeat;
  opacity: 0.85;
  z-index: 1;
} */

#_ #contact .contact-marquee {
  position: relative;
  z-index: 2;
}

#_ #contact .contact-marquee-text {
  color: transparent;
  font-family: var(--font-serif);
  font-size: 12rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  max-width: unset !important;
  width: auto !important;
  background: linear-gradient(90deg, #c1d9e5 0%, #5daa68 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-marquee-text {
    font-size: 8rem;
  }
}

#_ #contact .contact-inner {
  background-image: url('../img/contact-back.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-block: 70px;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-inner {
    background-image: url('../img/contact-back-sp.jpg');
    padding-top: 0;
    margin-top: 70px;
  }
}

#_ #contact .contact-container {
  position: relative;
  z-index: 2;
}

#_ #contact .contact-flex {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 960px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-flex {
    display: block;
  }
}

#_ #contact .contact-logo {
  display: flex;
  flex-wrap: wrap;
  column-gap: 0.3em;

  font-size: 6.7rem;
  font-family: var(--font-serif);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  max-width: 430px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-logo {
    justify-content: center;
    font-size: 3.2rem;
    text-align: center;
    max-width: 100%;
    width: 100%;
  }
}

#_ #contact .contact-logo span {
  display: inline-block;
}

#_ #contact .contact-info {
  display: grid;
  row-gap: 15px;
  margin-top: 24px;
}
@media screen and (max-width: 767px) {
  #_ #contact .contact-info {
    text-align: center;
    margin-top: 30px;
  }
}

#_ #contact .contact-info-item dt {
  font-size: 1.8rem;
}

#_ #contact .contact-info-item dd {
  font-size: 1.6rem;
  margin-top: 4px;
}

@media screen and (max-width: 767px) {
  #_ #contact .button {
    gap: 10px;
  }
}
