@charset "UTF-8";
/* CSS Document */

/* ====================================================
Common
==================================================== */
body {
  /* font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif; */
  font-family: "Zen Kaku Gothic New", "sans-serif";
  color: #262626;
  text-size: 15px;
  overflow-x: hidden;
}

/* トップスクロールボタン */
.pagetop a {
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  background-color: #E60010;
  color: #fff;
  text-align: center;
  position: fixed;
  right: 0;
  bottom: 15px;
  z-index: 100;
  font-size: 15px;
}

@media print,
screen and (max-width: 767px) {
  /* スマホ表示 */
  .hidden-sp {
    display: none;
  }
  /* スマホ表示 */
  .sp-hidden {
    display: none;
  }
}

@media print, screen and (min-width: 768px) {
  /* PC表示 */
  .hidden-pc {
    display: none;
  }
  /* PC表示 */
  .pc-hidden {
    display: none;
  }
}

.inline-block {
  display:inline-block;
}

.cont {
  width: 100%;
  overflow:hidden;
}

.cont-wrap {
  display: flex;
  width: 100%;
  max-width: 1130px;
  /* Figmaのコンテンツ最大幅に合わせて調整 */
  flex-direction: column;
  column-gap: 80px;
  margin-top: 95px;
  /* cont0の下からの余白（必要に応じて調整）*/
  margin-inline: auto;
}

.cont p {
  font-size: 15px;
  line-height: 1.8;
}

h2 {
  line-height: 0.9;
}

.cont .concept-label {
  position: relative;
  padding-left: 15px; /* 画像の幅＋余白分 */
  color: #E60010;
  /* 赤色 */
  font-size: 15px;
  font-weight: bold;
  font-style: italic;
  margin-bottom: 8px;
  font-family: "Roboto Condensed", sans-serif;
  letter-spacing: 0.05em;
}

.cont .concept-label::before {
  content: "";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 45%;
  transform: translateY(-50%);
  width: 18px;   /* 画像の幅 */
  height: 24px;  /* 画像の高さ（適宜調整） */
  background: url("../images/h3_before.png") no-repeat left center;
  background-size: contain;
}

.cont .cont-heading {
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(30px, 7vw, 70px);
  font-weight: bold;
  font-style: italic;
  margin-bottom: 10px;
  color: #262626;
  letter-spacing: -1px;
}

.cont-subtext {
  font-size: clamp(15px, 2vw, 18px);
  font-weight: bold;
  color: #262626;
  font-family: "Zen Kaku Mincho", serif;
}

.text-line {
  background: linear-gradient(transparent 0%, #fff263 50%);
}

.yellow-text {
  color: #fff263;
}

@media print,
screen and (max-width: 767px) {
  .cont p {
    font-size: 13px;
  }

  .cont-wrap {
    padding-left: 25px;
    padding-right: 25px;
    margin-top: 50px;
  }
}

/* ====================================================
Header
==================================================== */
.cont0 {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 780px;
  background: url("../images/mainvisual.png") center right/cover no-repeat;
  color: #fff;
  overflow: hidden;
  /* clip-path: polygon(0 0, 100% 0, 100% 93%, 50% 97%, 0 93%); */
  clip-path:polygon(0 0, 100% 0, 100% 85%, 50% 95%, 0 85%);
  padding-top: 84px; /* ヘッダーの高さ分のパディングを追加 */
  z-index: 1; /* セクションのz-indexを設定 */
}

.cont0::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(21, 20, 51, 0.25);
  /* #151433 の25%透明度 */
  background-color: rgba(21, 20, 51, 0.2);
  z-index: 1;
  /* 背景画像の上に重ねる */
  clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 95%, 0 85%);
}

.main-header {
  width: 100%;
  max-width: 1300px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 50px 0 50px;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999; /* z-indexを最大値に近い値に変更 */
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background-color: rgba(0, 0, 0, 1);
  padding: 0px 50px;
  z-index: 10000;
}

.main-header.scrolled::before {
  content: "";
  background-color: rgba(0, 0, 0, 1);
  width: 1000%;
  height: 54px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  transition: all 1s ease;
}

.logo img {
  height: 84px;
}

.main-header.scrolled .logo img{
  height: 54px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.main-nav a {
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}
.main-nav a:hover {
  color: #ff2d2d;
}

.main-nav a:not(.line-btn) img {
  width: 20px;
  height: 20px;
  display: block;
}

.main-nav a.active {
  color: #ff2d2d;
  font-weight: bold;
}

.main-nav .line-btn {
  width: 120px;
  height: 32px;
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
  padding: 10px 10px;
  font-size: 1rem;
  font-family: "Zen Kaku Gothic New", "sans-serif";
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  box-shadow: none;
  display: inline-block;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-nav .line-btn img {
  width: 100%;
}

.main-nav .line-btn:hover {
  background: #222;
  color: #fff;
  border-color: #222;
}

.main-copy {
  position: absolute;
  top: 35%;
  left: 7%;
  transform: translateY(-35%);
}

.main-copy h2 {
  font-family: "Roboto Condensed", "Roboto", "Zen Kaku Gothic New", sans-serif;
  font-size: clamp(52px, 8vw, 90px);
  font-weight: bold;
  font-style: italic;
  line-height: 0.9;
  margin-bottom: 18px;
  letter-spacing: 1px;
}

.main-copy p {
  font-size: clamp(21px, 2vw, 22px);
  letter-spacing: 0.1em;
  font-family: "Zen Kaku Mincho", serif;
}

.topimage {
  position: relative;
  display: flex;
  align-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  /* height: 400px; */
}

.logo-wrap {
  width: 70%;
  padding: 50px 50px;
  display: flex;
  align-content: space-between;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 100;
  position: relative;
}

.logo-wrap h1 {
  display: block;
  overflow: hidden;
}

.logo-wrap img {
  width: 100%;
  padding: 50px;
}

.topimage-a {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.logo-wrap a {
  width: 45%;
  padding: 10px 10px;
  margin-bottom: 50px;
  display: block;
  text-align: center;
  background-color: #fff;
  border: 2px solid #006454;
  outline: 2px solid #fff;
  text-decoration: none;
  color: #006454;
  font-weight: bold;
  font-size: 16px;
}

.mainvisual {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media print,screen and (max-width: 767px) {

  /* スマホ表示 */
  .cont1 {
  }

  .logo-wrap img {
    padding: 0;
    margin: 120px 0 120px 0;
  }

  .logo-wrap {
    width: 100%;
    padding: 0;
  }

  .logo-wrap a {
    font-size: 14px;
    width: 48%;
  }

  .main-copy {
    text-align: center;
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 20px;
  }

  .mainvisual {
    align-items: center;
  }

  .cont0 {
    height: 100vh;
    min-height: 605px;
    padding-top: 84px;
    background: url("../images/mainvisual.png") 85% center/cover no-repeat;
  }
}

/* ====================================================
Footer
==================================================== */

/* ====================================================
contents
==================================================== */
/* cont1 */
.cont1 {
  width: 100%;
  position: relative;
  z-index: 3;
  text-align: left;
  overflow:hidden;
}

.cont1-wrap {
  display: flex;
  flex-direction: column;
  /* align-items:center; */
}
.cont1-content {
  width:100%;
  max-width:1080px;
  padding:0 80px;
  margin:0 auto;
  display: flex;
  column-gap: 80px;
  align-items: flex-start;
  text-align: left;
  position:relative;
}

.cont1-1-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  /* padding-left: 140px; */
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont1-1-right {
  width: 50%;
  /* padding-right: 80px; */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont1-1-left.active,
.cont1-1-right.active {
  opacity: 1;
  transform: translateX(0);
}

.cont1-text {
  font-size: 15px;
  line-height: 1.8;
  color: #262626;
  margin-bottom: 20px;
}

.cont1-img4 {
  position: absolute;
  width: auto;
  height: 235px;
  object-fit: cover;
  right: -170px;
  right:-160px;
  right:calc( 50% - 700px );
  bottom: 0;
}

.cont1-images {
  display: flex;
  gap: 20px;
  width: 100%;
}

.cont1-image-left,
.cont1-image-right {
  flex: 1;
}

.cont1-images img {
  display: block;
  width: 100%;
  height: auto;
}

/* contents - cont1 - 夢を叶える可能性 */
.cont1-dream {
  margin-top: 30px;
  display: flex;
  align-items: center;
  column-gap: 80px;
  text-align: left;
  flex-direction: row-reverse;
}

.cont1-2-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  height: 400px;
  position: relative;
  /* background-image: url('../images/cont1_img2.png');
  background-size: cover;
  background-position: leftcenter;
  background-repeat: no-repeat; */
}

.cont1-2-left img {
  position: absolute;
  width: auto;
  height: 405px;
  object-fit: cover;
  right: 0;
}

.cont1-2-right {
  width: 50%;
  padding-right: 80px;
}

.cont1-dream-heading {
  font-family: "Zen Kaku Mincho", serif;
  font-size: 28px;
  font-weight: bold;
  color: #262626;
  margin-bottom: 10px;
  text-align: left;
  padding-left:0.5em;
  text-indent:-1em;
}
.cont1-dream-heading:last-of-type {
  margin-bottom:20px;
}

.cont1-dream-heading .inline-block {
  text-indent:0;
}

.cont1-dream-text {
  font-size: 15px;
  line-height: 1.8;
  color: #262626;
  margin-bottom: 20px;
  text-align: left;
}

.cont1-image {
  margin-top: 30px;
  display: flex;
  align-items: center;
  column-gap: 80px;
  text-align: right;
  align-items: center;
}

.cont1-image img {
  width: 100%;
  height: auto;
}

.cont1-3-left {
  width: 50%;
}

.cont1-3-left img {
  width: 100%;
  height: auto;
}

.cont1-3-right img {
  width: 100%;
  max-width: 405px;
  height: auto;
}

.cont1-3-right {
  width: 50%;
}

.cont1-sp-img {
  display: none;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .cont1-content {
    padding:0;
    flex-direction: column;
    gap: 10px;
  }

  .cont1-1-left {
    width: 100%;
    min-width: auto;
    padding-left: 0;
  }

  .cont1-1-right {
    width: 100%;
    min-width: auto;
    padding-right: 0;
  }

  .cont1-img4 {
    display: none;
  }

  .cont1-image {
    display: none;
  }

  .concept-label {
    font-size: 12px;
  }

  .cont1-heading {
    font-size: 36px;
  }

  .cont1-subtext {
    font-size: 15px;
  }

  .cont1-text {
    font-size: 14px;
  }

  .cont1-dream {
    margin-top: 40px;
    flex-direction: column;
  }

  .cont1-2-left {
    width: 100%;
    height: auto;
  }

  .cont1-2-right {
    width: 100%;
    padding-right: 0;
  }

  .cont1-2-left img {
    position: relative;
    width: calc(100% + 50px);
    height: auto;
    left: -25px;
  }


  .cont1-dream-heading {
    font-size: 24px;
    /* margin-bottom: 15px; */
  }

  .cont1-dream-heading:last-of-type {
    margin-bottom:15px;
  }

  .cont1-dream-text {
    font-size: 14px;
  }

  .cont1-sp-img {
    position: relative;
    width: calc(100% + 50px);
    left: -25px;
    display: flex;
    flex-direction: row;
  }

  .cont1-sp-img img {
    width: 50%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }
}

/* cont2
========================================== */
.cont2 {
  width: 100%;
  position: relative;
  z-index: 3;
  text-align: left;
}
.cont2 .bg-area {
  width:100%;
  height:100%;
  position:absolute;
  top:0;
  left:0;
  z-index:0;
  background-position:center;
  background-repeat:no-repeat;
  background-size:cover;
  display:none;
  filter: brightness(0.7);
}
.cont2 .bg-area.card01 {
  background-image:url('../images/cont2_img1.png');
}
.cont2 .bg-area.card02 {
  background-image:url('../images/cont2_img2.png');
}
.cont2 .bg-area.card03 {
  background-image:url('../images/cont2_img3.png');
}
.cont2 .bg-area.card04 {
  background-image:url('../images/cont2_img4.png');
}

.cont2 .cont2-wrap {
  max-width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cont2 .cont2-content {
  width: 100%;
}

.cont2 .cont2-top {
  width: 100%;
  max-width: 1130px;
  padding-left: 140px;
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont2 .cont2-bottom {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
  position: relative;
}

.cont2 .cont2-card {
  flex: 1 1 0;
  min-width: 0;
  position: relative;
  height: 450px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.cont2 .cont2-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  filter: brightness(0.7);
}

.cont2 .cont2-card-content {
  position: relative;
  z-index: 2;
  color: #fff;
  /* padding: 0 15px 32px 15px; */
  padding: 0 15px 20px 15px;
  width: 100%;
  /* min-height: 171px; */
}

.cont2 .cont2-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cont2 .cont2-desc {
  font-size: 13px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height:3.5em;
}
/* @media screen and (max-width:1325px) { */
@media screen and (max-width:1375px) {
  .cont2 .cont2-desc {
    height:5.2em;
  }
}
/* @media screen and (max-width:910px) { */
@media screen and (max-width:960px) {
  .cont2 .cont2-desc {
    height:6.9em;
  }
}
@media screen and (max-width:767px) {
  .cont2 .cont2-desc {
    height:auto;
  }
}

.cont2-top.active,
.cont2-bottom.active {
  opacity: 1;
  transform: translateX(0);
}

.cont2 .cont2-card {
  border:0.5px solid rgba(255,255,255,0.75);
}
/* .cont2 .cont2-card.card-off .cont2-img {
  display:none;
} */
.cont2 .cont2-card.card-off .cont2-card-content {
  /* display:none; */
  animation: 1s linear forwards fadeout;
}
.cont2 .cont2-card.card-off.card-on .cont2-card-content {
  /* display:block; */
  animation: 1s linear forwards fadein;
}
@keyframes fadeout {
  0% { opacity:1; }
  100% { opacity:0.5; }
}
@keyframes fadein {
  0% { opacity:0.5; }
  100% { opacity:1; }
}


@media (max-width: 767px) {
  .cont2 .cont2-top {
    padding-left: 0;
  }

  .cont2 .cont2-bottom {
    flex-direction: column;
    width: calc(100% + 50px);
    left: -25px;
    position: relative;
  }

  .cont2 .cont2-card {
    min-height: 375px;
  }

  .cont2 .cont2-card-content {
    padding: 0 16px 16px 16px;
    min-height: auto;

  }

}

/* cont3
========================================== */
.cont3 {
  width: 100%;
  position: relative;
  z-index: 3;
  text-align: left;
}

.cont3-wrap {
  width:100%;
  max-width:1080px;
  padding:0 80px;
  display: flex;
  flex-direction: column;
}

.cont3-content {
  display: flex;
  column-gap: 80px;
  align-items: flex-start;
  text-align: left;
}

.cont3-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  /* padding-left: 140px; */
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont3-right {
  width: 50%;
  height: 530px;
  position: relative;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont3-right img {
  position: absolute;
  width: calc( 50vw - 40px );
  max-width:655px;
  height: 100%;
  object-fit:cover;
}

.cont3-left.active,
.cont3-right.active {
  opacity: 1;
  transform: translateX(0);
}

.cont3-text {
  font-size: 15px;
  line-height: 1.8;
  color: #262626;
  margin-top: 30px;
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .cont3-wrap {
    padding:0 25px;
  }

  .cont3-content {
    flex-direction: column;
  }

  .cont3-left {
    width: 100%;
    padding-left: 0;
  }

  .cont3-right {
    width: 100%;
    height: auto;
  }

  .cont3-right img {
    position: relative;
    width: 100%;
    max-width:none;
    height: auto;
  }

  .cont3-text {
    margin-top: 10px;
  }

}

/* cont4
========================================== */
.cont4 {
  width: 100%;
  margin-top:50px;
  position: relative;
  z-index: 3;
  text-align: left;
  background-image: url("../images/cont4_bg_blur.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  clip-path: polygon(50% 7%, 100% 0, 100% 93%, 50% 100%, 0 93%, 0% 0%);
}

.cont4::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  filter: blur(8px);
  z-index: 1;
  /* 背景画像の上に重ねる */
  clip-path: polygon(50% 7%, 100% 0, 100% 93%, 50% 100%, 0 93%, 0% 0%);
}


.cont4-wrap {
  width:100%;
  max-width:1080px;
  min-height:575px;
  /* height: 575px; */
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  z-index: 2;
  position: relative;
  padding:120px 80px;
}

.cont4-content {
  display: flex;
  column-gap: 80px;
  text-align: left;
  justify-items: center;
  align-items: center;
  z-index: 2;

}

.cont4-left {
  width: 50%;
  width:calc( 50% - 40px );
  display: flex;
  flex-direction: column;
  align-items: left;
  justify-content: center;
  text-align: left;
  /* padding-left: 140px; */
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont4-right {
  width: 50%;
  width:calc( 50% - 40px );
  /* padding-right: 80px; */
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont4-left.active,
.cont4-right.active {
  opacity: 1;
  transform: translateX(0);
}

.cont4-text {
  font-size: 15px;
  line-height: 1.8;
  color: #fff;
  margin-bottom: 20px;
}
.cont4-text:last-of-type {
  margin-bottom:0;
}

.cont4.concept-label {
  color: #fff;
}

.cont4 .cont-heading {
  color: #fff;
}

.cont4 .cont-subtext {
  color: #fff;
}

@media (max-width: 767px) {
  .cont4 {
    background-position: left;
  }

  .cont4-wrap {
    min-height:auto;
    padding:70px 25px 75px;
    flex-direction: column;
    /* height: 445px; */
  }

  .cont4-left {
    width: 100%;
    padding-left: 0;
  }

  .cont4-right {
    width: 100%;
    padding-right: 0;
  }

  .cont4-left img {
    width: 100%;
  }
}

/* footer
========================================== */
.site-footer {
  background: #fff;
  color: #444;
  padding: 40px 0 100px 0;
  position: relative;
  width: 100%;
  font-family: "Zen Kaku Gothic New", "sans-serif";
  background-image: url("../images/footer_bottom.png");
  background-size: auto;
  background-position: bottom;
  background-repeat: repeat-x;
}

.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 50px;
  text-align: center;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
  gap: 80px;
  margin-bottom: 90px;
  flex-wrap: wrap;
}

.footer-menu-block {
  /* min-width: 200px; */
  text-align: left;
}

@media screen and (min-width:938px) {
  .footer-menu-block:nth-of-type(1) {
    width:231.78px;
  }
}

.footer-menu-block:nth-of-type(1) img {
  width: 100%;
  max-width: 185px;
}

.footer-menu-block:nth-of-type(2) {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: min(90px, 5vw);
  font-family: "Roboto Condensed", "Roboto", "Zen Kaku Gothic New", sans-serif;
}

.footer-menu-block:nth-of-type(3) {
}

.footer-menu-block:nth-of-type(2) ul {
  list-style: none;
  padding: 0;
  margin-bottom: 20px;
}

.footer-menu-block:nth-of-type(2) ul li {
  text-align:center;
  margin-bottom: 10px;
}

.footer-menu-block:nth-of-type(2) ul li a {
  color: #444;
  text-decoration: none;
  font-size: 12px;
  transition: color 0.2s;
}

.footer-menu-block:nth-of-type(2) ul li a:hover {
  opacity: 0.8;
}

.footer-line-title {
  margin-bottom: 10px;
  font-size: 15px;
  color: #444;
  font-family: "Zen Kaku Mincho", serif;
}

.footer-line-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-line-btn .line-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 8px;
  background: transparent;
  border: 1px solid #444;
  color: #fff;
  margin-bottom: 16px;
  text-align: center;
}
.line-btn img {
  width: 100%;
  max-width: 117px;
}

.footer-social-icons {
  display: flex;
  gap: 20px;
  background: url("../images/cont4_bg.png") center center/auto no-repeat;
  padding: 20px;
  justify-content: center;
  align-items: center;
}

.footer-social-icons a img {
  width: 20px;
  height: 20px;
  display: block;
}

.footer-corp {
  color: #888;
  margin-bottom: 8px;
  font-size: 15px;
}

.footer-logo {
  width: 100%;
  max-width: 165px;
  margin-bottom: 10px;
}

.footer-copyright {
  color: #888;
  font-size: 13px;
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  .footer-menu-block:nth-of-type(2) {
    display: none;
  }
}


@media (max-width: 937px) {
  .footer-menu {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .footer-inner {
    padding: 0 10px;
  }
  
}

/* ====================================================

==================================================== */

/* 
========================================== */

/*  
------------------------------ */

/* アニメーション用のクラス */
.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.fade-in-left.active,
.fade-in-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* 各セクションのコンテンツにアニメーションクラスを適用 */
.cont1-content {
  display: flex;
  column-gap: 80px;
  align-items: flex-start;
  text-align: left;
  position:relative;
}

.cont1-1-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont1-1-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont1-1-left.active,
.cont1-1-right.active {
  opacity: 1;
  transform: translateX(0);
}

.cont2-top {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont2-bottom {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont2-top.active,
.cont2-bottom.active {
  opacity: 1;
  transform: translateX(0);
}

.cont3-content {
  display: flex;
  column-gap: 80px;
  align-items: flex-start;
  text-align: left;
}

.cont3-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont3-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont3-left.active,
.cont3-right.active {
  opacity: 1;
  transform: translateX(0);
}



.cont4-content {
  display: flex;
  column-gap: 80px;
  text-align: left;
  justify-items: center;
  align-items: center;
}

.cont4-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

.cont4-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

.cont4-left.active,
.cont4-right.active {
  opacity: 1;
  transform: translateX(0);
}



/* スクロールアニメーション */
#concept .cont1-1-left,
#social .cont2-top,
#profile .cont3-left,
#ferrari .cont4-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.8s ease;
}

#concept .cont1-1-right,
#social .cont2-bottom,
#profile .cont3-right,
#ferrari .cont4-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.8s ease;
}

#concept .cont1-1-left.active,
#concept .cont1-1-right.active,
#social .cont2-top.active,
#social .cont2-bottom.active,
#profile .cont3-left.active,
#profile .cont3-right.active,
#ferrari .cont4-left.active,
#ferrari .cont4-right.active {
  opacity: 1;
  transform: translateX(0);
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  width: 30px;
  height: 20px;
  position: relative;
  cursor: pointer;
  z-index: 1000;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: all 0.4s ease;
}

.hamburger span:nth-child(1) {
  top: 5px;
}

.hamburger span:nth-child(2) {
  bottom: 5px;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
  width: 100%;
  opacity: 0;
}

.hamburger.active span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
  width: 100%;
  opacity: 0;
}

.hamburger.active::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
  opacity: 1;
  transition: all 0.4s ease;
}

@media print,
screen and (max-width: 937px) {
  .hamburger {
    display: block;
  }

  .main-header {
    padding: 0px 15px;
  }

  .main-header.scrolled {
    padding: 0px 15px;
  }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    transition: all 0.3s;
    padding: 20px;
  }

  .main-nav.active {
    right: 0;
  }

  .main-nav a {
    font-size: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
  }

  .main-nav.active a {
    opacity: 1;
    transform: translateY(0);
  }

  .main-nav a:nth-child(1) { transition-delay: 0.1s; }
  .main-nav a:nth-child(2) { transition-delay: 0.2s; }
  .main-nav a:nth-child(3) { transition-delay: 0.3s; }
  .main-nav a:nth-child(4) { transition-delay: 0.4s; }
  .main-nav a:nth-child(5) { transition-delay: 0.5s; }
  .main-nav a:nth-child(6) { transition-delay: 0.6s; }
  .main-nav a:nth-child(7) { transition-delay: 0.7s; }
  .main-nav a:nth-child(8) { transition-delay: 0.8s; }

  .main-header.scrolled .main-nav {
    background-color: rgba(0, 0, 0, 0.95);
  }

  .main-nav a:not(.line-btn) img {
    width: 40px;
    height: 40px;
    display: block;
  }

  .footer-social-icons a img {
    width: 40px;
    height: 40px;
    display: block;
  }

  .main-header.scrolled::before {
    display: none;
  }
}