@charset "UTF-8";
/* CSS Document */
/*========= LoadingのためのCSS ===============*/
/* Loading背景画面設定　*/
#splash {
  /*fixedで全面に固定*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background:#333;
  text-align:center;
  color:#fff;
}
/* Loadingバー中央配置　*/
#splash_text {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  width: 100%;
  transform: translate(-50%, -50%);
  color: #fff;
}
/*IE11対策用バーの線の高さ※対応しなければ削除してください*/
#splash_text svg{
  height: 2px;
}
/* --------------- main --------------- */
.main{
  width: 100%;
  margin-top: 60px;
}
.main-top {
  padding: 60px 20px 0;
}
.main-top h1 {
  font-size: 6rem;
  text-align: left;
  line-height: 5rem;
}
.main-top h2 {
  font-size: 6rem;
  text-align: left;
  line-height: 5rem;
}
.main-subtitle {
  width: 89%;
  margin: 25px auto 0;
  text-align: right;
}
.main-subtitle h3 {
  font-size: 1.6rem;
}
.main-subtitle h4 {
  font-size: 1.6rem;
}
.main-text {
  margin-top: 20px;
  padding: 0 20px;
}
.main-text1 {
  font-size: 1.4rem;
}
@media(min-width:960px){
  .main {
    margin-top: 100px;
  }
  .main-top {
    padding: 100px 100px 0;
  }
  .main-top h1 {
    font-size: 14rem;
    line-height: 10rem;
  }
  .main-top h2 {
    font-size: 14rem;
    line-height: 10rem;
  }
  .main-subtitle {
    width: 86%;
    margin: 0 auto;
    padding: 40px 0;
  }
  .main-subtitle h3 {
    font-size: 2rem;
    padding-right: 120px;
  }
  .main-subtitle h4 {
    font-size: 2rem;
    display: inline-block;
    padding-right: 0;
  }
  .main-text {
    width: 86%;
    margin: 0 auto;
  }
  .main-text1 {
    font-size: 2rem;
    display: inline-block;
  }
}

/* --------------- Produce --------------- */
.produce {
  position: relative;
  width: 78%;
  max-width: 1123px;
  margin: 60px auto 0;
}
.produce-top-line-pink hr {
  height: 1rem;
  width: 65%;
  border-width: 0;
  background-color: #E42D9F;
  margin-bottom: 20px;
}
.produce-top-line-yellow hr {
  height: 1rem;
  width: 65%;
  border-width: 0;
  background-color: #D7DD35;
  margin-right: 0;
  margin-bottom: 60px;
}
.produce-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.produce-img-container {
  width: 100%;
  overflow-x: auto; /* 横スクロールを有効化 */
  overflow-y: hidden; /* 縦スクロールを無効化 */
  white-space: nowrap; /* 画像が折り返されないように */
  scrollbar-width: thin; /* Firefox用のスクロールバー調整 */
}
.produce-img-container::-webkit-scrollbar {
  height: 6px; /* 横スクロールバーの高さ */
}
.produce-img-container::-webkit-scrollbar-thumb {
  background-color: #D7DD35; /* スクロールバーの色 */
  border-radius: 3px; /* 角を丸くする */
}
.produce-img-box {
  display: flex;
  flex-direction: row; /* 横並び */
  gap: 15px;
  width: max-content; /* コンテンツの幅を自動調整 */
}
.produce-img-box img {
  width: 200px;
  height: 250px;
  margin-bottom: 9px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 8px 8px 0 #D7DD35;
}
.produce-text-box {
  max-width: 350px;
  text-align: left;
  margin-top: 20px;
}
.produce-text-box h1 {
  font-size: 3rem;
}
.produce-text-box p {
  margin-top: 20px;
  font-size: 1.2rem;
}
/* 画面幅が768px以上（タブレット・PC向け）のとき */
@media (min-width: 768px) {
  .produce {
    margin-top: 100px;
  }
  .produce-top-line-yellow hr {
    margin-bottom: 100px;
  }
  .produce-content {
    flex-direction: row-reverse;
    align-items: center; /* 縦方向の位置を揃える */
    gap: 60px;
  }
  .produce-img-box img {
    width: 250px;
    height: 300px;
  }
  .produce-text-box {
    width: 35%; /* 左半分を使用 */
  }
  .produce-img-container {
    width: 65%; /* 右半分を使用 */
    overflow-x: auto; /* 横スクロールを許可 */
    white-space: nowrap;
  }
  .produce-img-box {
    display: flex;
    flex-direction: row;
    gap: 20px; /* 画像間の余白 */
    width: max-content;
  }
  .produce-text-box h1 {
    font-size: 6rem;
    margin-bottom: 60px;
  }
  .produce-text-box p {
    font-size: 1.4rem;
    line-height: 1.8rem;
  }
}

/* -- btn -- */
.produce-btn {
  margin-top: 40px;
  margin-bottom: 60px;
}
.produce-btnarrow5 {
  position: relative;
  border-radius: 100vh;
  background-color: #D7DD35;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: all .2s linear;
}
.produce-btnarrow5:hover {
  background:#575DA9;
  color:#fff;
}
.produce-btnarrow5::before {
  content:"";
  position: absolute;
  top:50%;
  right:-20px;
  width:30px;
  height:2px;
  background:#575DA9;
  transition: all .2s linear;
}
.produce-btnarrow5::after {
  content:"";
  position: absolute;
  top: 20%;
  right: -16px;
  width:2px;
  height:12px;
  background:#575DA9;
  transform:skewX(45deg);
  transition: all .2s linear;
}
/*hoverした際の移動*/
.produce-btnarrow5:hover::before {
  right:-30px;
}
.produce-btnarrow5:hover::after {
  right:-25px;
}
.produce-top-line-blue hr {
  height: 1rem;
  width: 65%;
  border-width: 0;
  background-color: #575DA9;
}
/* 画面幅が768px以上（タブレット・PC向け）のとき */
@media (min-width: 768px) {
  .produce-btn {
    margin-top: 60px;
    margin-bottom: 100px;
  }
}

/* --------------- about --------------- */
.about {
  position: relative;
  width: 100%;
  margin-top: 100px;
  padding-bottom: 20px;
}
.about-img-pc {
  display: none;
}
.about-top-menu {
  margin: 60px 40px 0;
  text-align: left;
}
.about-top-menu h1 {
  font-size: 3rem;
}
.about-top-text {
  margin: 40px 40px 0;
  text-align: left;
}
.about-top-text p {
  font-size: 1.4rem;
}
/* -- btn -- */
.about-btn {
  margin-top: 40px;
  margin-bottom: 40px;
}
.about-btnarrow5 {
  position: relative;
  border-radius: 100vh;
  background-color: #575DA9;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: all .2s linear;
}
.about-btnarrow5:hover {
  background:#E42D9F;
  color:#fff;
}
.about-btnarrow5::before {
  content:"";
  position: absolute;
  top:50%;
  right:-20px;
  width:30px;
  height:2px;
  background:#E42D9F;
  transition: all .2s linear;
}
.about-btnarrow5::after {
  content:"";
  position: absolute;
  top: 20%;
  right: -16px;
  width:2px;
  height:12px;
  background:#E42D9F;
  transform:skewX(45deg);
  transition: all .2s linear;
}
/*hoverした際の移動*/
.about-btnarrow5:hover::before {
  right:-30px;
}
.about-btnarrow5:hover::after {
  right:-25px;
}
@media(min-width:960px){
  .about {
    width: 78%;
    max-width: 1123px;
    margin: 100px auto;
  }
  .about-top-line-pink hr {
    width: 60%;
    margin-bottom: 60px;
  }
  .about-top-line-yellow hr {
    display: none;
  }
  .about-pc {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10%;
    padding-top: 60px;
  }
  .about-img-pc {
    display: block;
  }
  .about-img-pc img {
    width: 350px;
    height: 320px;
    object-fit: cover;
    border-radius: 20%;
    box-shadow: 10px 10px 0px #575DA9;
  }
  .about-pc-text {
    padding-top: 40px;
  }
  .about-top-menu {
    margin: 0;
  }
  .about-top-menu h1 {
    font-size: 6rem;
  }
  .about-top-text {
    margin: 40px 0 0;
  }
  .about-top-text p {
    font-size: 2rem;
  }
  .about-btn {
    margin: 40px 100px 0 0;
    text-align: right;
  }
}

/* --------------- service --------------- */
.service {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.service-top-line-blue hr {
  position: absolute;
  width: 5px;
  height: 450px;
  margin-left: 20px;
  border-width: 0;
  background-color: #E42D9F;
}
.service-top-menu {
  width: 78%;
  margin: 0 auto;
  text-align: left;
  padding-top: 40px;
}
.service-top-menu h1 {
  font-size: 3rem;
}
.service-list-box {
  width: 79%;
  max-width: 1140px;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
  overflow-x: scroll;
  gap: 40px;
}
.service-list-box-detail {
  width: 295px;
  padding-bottom: 20px;
  text-align: left;
  flex-shrink: 0;
}
.service-list-box-detail h1 {
	display: inline-block;
	font-size: 30px;
	border-bottom: 2px solid #E42D9F;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.service-list-box-detail h2 {
  font-size: 2.4rem;
  line-height: 2.8rem;
  margin-bottom: 5px;
}
.service-list-box-detail h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.service-list-box-detail p {
  font-size: 1.2rem;
  line-height: 1.4rem;
  margin-bottom: 20px;
}
.service-list-box-detail-btn {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.service-list-box-detail-btn li {
  padding: 8px;
  border-radius: 10px;
  border: 1px solid #E42D9F;
  font-size: 1rem;
  line-height: 1.2rem;
}
/* -- btn -- */
.service-btn {
  margin-top: 20px;
  margin-bottom: 40px;
}
.service-btnarrow5 {
  position: relative;
  border-radius: 100vh;
  background-color: #E42D9F;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: all .2s linear;
}
.service-btnarrow5:hover {
  background:#D7DD35;
  color:#fff;
}
.service-btnarrow5::before {
  content:"";
  position: absolute;
  top:50%;
  right:-20px;
  width:30px;
  height:2px;
  background:#02558B;
  transition: all .2s linear;
}
.service-btnarrow5::after {
  content:"";
  position: absolute;
  top: 20%;
  right: -16px;
  width:2px;
  height:12px;
  background:#02558B;
  transform:skewX(45deg);
  transition: all .2s linear;
}
/*hoverした際の移動*/
.service-btnarrow5:hover::before {
  right:-30px;
}
.service-btnarrow5:hover::after {
  right:-25px;
}
@media(min-width:960px){
  .service {
    width: 78%;
    max-width: 1123px;
    margin: 0 auto 200px;
  }
  .service-top-line-blue hr {
    width: 10px;
    height: 650px;
    margin-left: 0;
  }
  .service-top-menu {
    width: 72%;
    padding-top: 100px;
  }
  .service-top-menu h1 {
    font-size: 6rem;
  }
  .service-list-box {
    margin: 100px auto;
    gap: 60px;
  }
  .service-list-box-detail {
    padding-bottom: 40px;
    width: 345px;
  }
  .service-list-box-detail h1 {
    font-size: 34px;
    border-bottom: 1px solid #E42D9F;
    padding-bottom: 5px;
    margin-bottom: 20px;
  }
  .service-list-box-detail h2 {
    font-size: 3rem;
    line-height: 3.2rem;
    margin-bottom: 5px;
  }
  .service-list-box-detail h3 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  .service-list-box-detail p {
    font-size: 1.4rem;
    line-height: 1.8rem;
    margin-bottom: 20px;
  }
  .service-list-box-detail-btn {
    gap: 15px;
  }
  .service-list-box-detail-btn li {
    padding: 8px;
    border-radius: 10px;
    border: 1px solid #575DA9;
    font-size: 1.4rem;
    line-height: 1.4rem;
  }
}
/* --------------- Creative Works --------------- */
.creative-works {
  position: relative;
  width: 100%;
  padding-bottom: 60px;
}
.creative-works-top-menu {
  width: 78%;
  margin: 0 auto;
  text-align: left;
}
.creative-works-top-menu h1 {
  font-size: 3rem;
  display: inline-block;
}
.creative-works-top-line-pink hr {
  height: 1rem;
  width: 53%;
  border-width: 0;
  background-color: #02558B;
  margin-top: 0;
  margin-right: 0;
}

/* --- スライダー --- */
.creative-works-slider {
  margin: 40px 20px 0px;
}
.creative-works-slider img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  box-shadow: 2px 2px 3px #02558B;
  margin: 5px;
}
.creative-works-slider .slick-slide {
  margin:0;/*スライド左右の余白調整*/
}
.creative-works-slider p {
  width: 100px;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: left;
  padding-left: 5px;
}
.creative-works-slider-1 {
  margin: 20px 20px 40px;
}
.creative-works-slider-1 img {
  width: 100px;
  height: 70px;
  object-fit: cover;
  box-shadow: 2px 2px 3px #02558B;
  margin: 5px;
}
.creative-works-slider-1 .slick-slide {
  margin:0;/*スライド左右の余白調整*/
}
.creative-works-slider-1 p {
  width: 100px;
  font-size: 1rem;
  line-height: 1.2rem;
  text-align: left;
  padding-left: 5px;
}

/* -- btn -- */
.creative-works-btn {
  margin-top: 20px;
  margin-bottom: 40px;
}
.creative-works-btnarrow5 {
  position: relative;
  border-radius: 100vh;
  background-color: #02558B;
  color: #fff;
  padding: 5px 20px;
  display: inline-block;
  text-align: center;
  outline: none;
  transition: all .2s linear;
}
.creative-works-btnarrow5:hover {
  background:#D7DD35;
  color:#fff;
}
.creative-works-btnarrow5::before {
  content:"";
  position: absolute;
  top:50%;
  right:-20px;
  width:30px;
  height:2px;
  background:#D7DD35;
  transition: all .2s linear;
}
.creative-works-btnarrow5::after {
  content:"";
  position: absolute;
  top: 20%;
  right: -16px;
  width:2px;
  height:12px;
  background:#D7DD35;
  transform:skewX(45deg);
  transition: all .2s linear;
}
/*hoverした際の移動*/
.creative-works-btnarrow5:hover::before {
  right:-30px;
}
.creative-works-btnarrow5:hover::after {
  right:-25px;
}
@media(min-width:960px){
  .creative-works {
    margin-bottom: 100px;
  }
  .creative-works-top-menu {
    width: 79%;
  }
  .creative-works-top-menu h1 {
    font-size: 6rem;
  }
  .creative-works-top-line-pink {
    width: 79%;
    margin: -25px auto;
  }
  .creative-works-top-line-pink hr {
    width: 55%;
  }
  /* --- スライダー --- */
  .creative-works-slider {
    margin: 150px 200px 0px;
  }
  .creative-works-slider img {
    width: 250px;
    height: 150px;
    box-shadow: 4px 4px 5px #02558B;
    margin: 5px;
  }
  .creative-works-slider p {
    width: 150px;
    font-size: 2rem;
    line-height: 1.8rem;
    padding-left: 10px;
  }
  .creative-works-slider-1 {
    margin: 60px 200px 150px;
  }
  .creative-works-slider-1 img {
    width: 250px;
    height: 150px;
    box-shadow: 4px 4px 5px #02558B;
    margin: 10px;
  }
  .creative-works-slider-1 p {
    width: 150px;
    font-size: 2rem;
    line-height: 1.8rem;
    padding-left: 10px;
  }
  /* -- btn -- */
  .creative-works-btn {
    text-align: right;
    margin-top: 40px;
    margin-bottom: 60px;
    margin-right: 200px;
  }
}

/* --------------- Menu --------------- */
.menu {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}
.menu-top-line-blue hr {
  height: 1rem;
  width: 53%;
  border-width: 0;
  background-color: #D7DD35;
  margin-bottom: 60px;
}
.menu-top {
  width: 68%;
  margin: 0 auto;
}
.menu-top h2 {
  font-size: 2.4rem;
  text-align: left;
  padding-bottom: 20px;
}
.menu-list {
  width: 68%;
  margin: 0 auto;
  padding-bottom: 60px;
}
.menu-top-flex {
  display: flex;
  display: -ms-flexbox;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  width: 100%;
  justify-content: space-between;
}
.menu-tab-reader {
  padding-bottom: 10px;
}
.menu-tab-reader h2 {
  font-size: 2.4rem;
}
.menu-top-flex {
  padding-bottom: 5px;
}
.menu-tab-reader-1 {
  font-size: 1.6rem;
  font-weight: 600;
}
hr.menu-line {
  position: relative;
  top: 55%;
  margin: 0 10px;
  border: none;
  border-top: dotted 1px #333;
}
.menu-tab-reader-2 {
  flex: auto;
}
.menu-tab-reader-3 {
  font-size: 1.4rem;
}
@media(min-width:960px){
  .menu {
    margin-bottom: 100px;
  }
  .menu-top-line-blue hr {
    width: 43%;
  }
  .menu-top {
    width: 72%;
  }
  .menu-list {
    width: 37%;
    max-width: 1140px;
    margin-top: 100px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .menu-list-flex2 {
    width: 50%;
    margin-top: 20px;
  }
  .menu-tab-reader h2 {
    font-size: 6rem;
  }
  .menu-top-flex {
    padding-bottom: 15px;
  }
  .menu-tab-reader {
    padding-bottom: 40px;
  }
  .menu-tab-reader-1 {
    font-size: 2rem;
  }
  hr.menu-line {
    margin: 0 30px;
  }
  .menu-tab-reader-3 {
    font-size: 1.8rem;
  }
}
/* --------------- Contact --------------- */
.contact-box {
  width: 68%;
  margin: 0 auto 60px;
  background-color: #FAFAFA;
  box-shadow: 0 10px 25px 0 rgba(0, 0, 0, .3);
  border-radius: 30px;
}
.contact-top-menu {
  padding-top: 25px;
  padding-bottom: 25px;
}
.contact-top-menu h1 {
  font-size: 2.4rem;
}
.contact-text {
  width: 86%;
  margin: 0 auto;
}
.contact-text p {
  font-size: 1.2rem;
  letter-spacing: -0.05em;
  line-height: 1.8rem;
  text-align: left;
  padding-bottom: 20px;
}
.contact-btn {
  padding-bottom: 25px;
}
.contact-btn img {
  width: 37%;
}
@media(min-width:960px){
  .contact-box {
    width: 47%;
  }
  .contact-top-menu {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  .contact-top-menu h1 {
    font-size: 6rem;
    padding-bottom: 20px;
  }
  .contact-text {
    width: 68%;
  }
  .contact-text p {
    font-size: 1.8rem;
    letter-spacing: -0.01em;
    line-height: 2rem;
    padding-bottom: 40px;
  }
  .contact-btn {
    padding-bottom: 60px;
  }
  .contact-btn img {
    width: 17%;
  }
}