@charset "UTF-8";
html {
  scroll-behavior: smooth;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  font-style: normal;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  max-width: 2800px;
  width: 100%;
}

.wrapper {
  margin-top: 110px;
}

.main {
  width: 100%;
}
@media (width < 750px) {
  .main {
    position: relative;
  }
}

.mainVisual {
  position: relative;
  background: rgba(255, 226, 122, 0.9411764706);
  padding: 100px 5% 0 5%;
  width: 100%;
  overflow-x: hidden;
}
@media (width < 750px) {
  .mainVisual {
    padding: 0px;
  }
}
.mainVisual__title {
  padding: 20px 0 0 20px;
}
.mainVisual a {
  color: black;
}
.mainVisual__flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding: 5rem 5rem 10% 5rem;
  background: rgba(255, 226, 122, 0.9411764706);
  width: 100%;
}
.mainVisual .design {
  width: 100%;
  bottom: 3rem;
  margin-top: 12%;
  padding: 0 5% 2.5% 5%;
}
.mainVisual .design__title {
  font-size: 1.5rem;
  padding-bottom: 3rem;
  letter-spacing: 0.5rem;
  z-index: 100;
}
.mainVisual .design__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mainVisual .design__flex img {
  width: 22%;
}
@media (width < 750px) {
  .mainVisual .design {
    display: none;
  }
}
.mainVisual__space {
  display: none;
}
@media (width < 750px) {
  .mainVisual__space {
    display: flex;
    padding: 0 0 12% 0;
  }
}

/* スライド全体のラッパー */
.swiper-box {
  display: none;
}
@media (width < 750px) {
  .swiper-box {
    margin: 100px 0 50px 0;
    display: block;
  }
}

.swiper {
  overflow: hidden; /* 子要素がはみ出さないように */
  padding: 0 1%; /* 両サイドに余白を追加 */
  position: relative; /* 位置調整 */
}
.swiper-title {
  padding-left: 20px;
  margin-bottom: 40px;
}

/* スライドのラッパー */
.swiper-wrapper {
  display: flex;
  transition: transform 0.3s ease; /* アニメーション */
  align-items: center; /* 垂直方向に中央寄せ */
}

/* スライドの設定 */
.swiper-slide {
  width: 100%;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* 中央のスライドを少し大きく見せる */
.swiper-slide-active {
  transform: scale(1.1); /* 中央のスライドを大きく見せる */
}

/* スマホ用設定 (300px～650px): 真ん中1枚＋両サイド少し見える */
@media (max-width: 650px) {
  .swiper-slide {
    width: 70% !important; /* 中央スライドの幅を70%に */
    margin-right: 0 !important;
    padding: 0 20px;
  }
  .swiper-wrapper {
    padding: 0 15px;
  }
  .swiper-slide-prev,
.swiper-slide-next {
    opacity: 1;
    transform: scale(0.8);
  }
  .swiper-slide-prev {
    margin-left: -10px;
  }
  .swiper-slide-next {
    margin-right: -10px;
  }
}
/* タブレット～PC用設定 (651px～900px): 中央2枚＋両サイド少し見える */
@media (min-width: 651px) and (max-width: 900px) {
  .swiper-slide {
    width: 42% !important; /* 中央スライドの幅を35%に */
    margin: 0 2% !important; /* スライド間の間隔 */
  }
  .swiper-wrapper {
    justify-content: space-between; /* スライド間のスペースを均等に配置 */
  }
}
.createdArea {
  margin-top: 50px;
  width: 100%;
}
.createdArea__items {
  width: 80%;
  margin: 0 auto;
}
.createdArea__items img {
  width: 100%;
}

.cardArea {
  width: 61.29%;
  margin: 3rem auto 0 auto;
}
.cardArea__flex {
  display: flex;
  justify-content: space-between;
}
.cardArea li:nth-child(2) {
  margin: 0 3rem;
}
.cardArea li img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
@media (width < 750px) {
  .cardArea li img {
    height: 30vh;
  }
}

.aboutArea {
  position: relative;
  width: 61.29%;
  margin: 220px auto 0 auto;
}
.aboutArea__title {
  flex: 0 0 22%;
  font-size: 1.5rem;
}
.aboutArea p {
  margin-top: 40px;
}
.aboutArea .arrow {
  position: absolute;
  bottom: -100px;
  right: 30px;
}

footer {
  position: relative;
  width: 100%;
  height: 200px;
  margin-top: 200px;
  text-align: center;
  background-image: url(/img/footer.png);
}
@media (width < 750px) {
  footer {
    margin-top: 240px;
  }
}
footer p {
  line-height: 200px;
}

.arrow {
  position: absolute;
  width: 3rem;
  bottom: 14rem;
  right: 125px;
}
@media (width < 750px) {
  .arrow {
    bottom: 18rem;
  }
}

.custom-style {
  width: 50px !important;
}

footer {
  position: relative;
  text-align: center;
  height: 90px;
  background: #fff597;
  padding-top: 10px;
}
footer p {
  line-height: 80px;
  height: 80px;
  background: #ffe27a;
}
/*# sourceMappingURL=graphic-design.css.map */