@charset "UTF-8";
/* ------------------------------------------------------------
// index
------------------------------------------------------------ */
/* 全体の設定 */
.main-visual {
  position: relative;
  overflow: hidden;
  padding: 0 15px 15px;
}
@media print, screen and (max-width: 767px) {
  .main-visual {
    padding: 0 10px 15px;
  }
}

.slider {
  max-width: 1110px;
  max-height: 740px;
  margin: 140px auto 0;
}
@media print, screen and (max-width: 767px) {
  .slider {
    margin: 120px auto 0;
  }
}

/* slick-list と slick-track の高さを親要素にフィットさせる */
.slick-list {
  height: 100%;
  border-radius: 10px;
}

.slick-track {
  height: 100%;
}

.slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 1.5s ease-in-out, transform 3s ease-in-out;
}

.main-visual {
  /* text */
}
.main-visual .overlay-text {
  position: absolute;
  bottom: 0;
  left: 5%;
  padding-right: 300px;
}
@media print, screen and (max-width: 991px) {
  .main-visual .overlay-text {
    left: 0;
    width: 100%;
    padding: 0 20px;
  }
}
.main-visual .text {
  position: absolute;
  top: 260px;
  left: 80px;
}
.main-visual .background-dot-1 {
  position: absolute;
  top: 155px;
  right: 110px;
  z-index: -1;
}
.main-visual .background-dot-1 img {
  width: 160px;
  height: 155px;
}
.main-visual .background-dot-2 {
  position: absolute;
  bottom: 130px;
  left: 226px;
  z-index: -1;
}
.main-visual .background-dot-2 img {
  width: 194px;
  height: 187px;
}
.main-visual .background-illust-1 {
  position: absolute;
  top: 210px;
  left: 0;
  z-index: -2;
}
.main-visual .background-illust-1 img {
  width: 212px;
  height: 242px;
}
.main-visual .background-illust-2 {
  position: absolute;
  top: 145px;
  right: 0;
  z-index: -2;
}
.main-visual .background-illust-2 img {
  width: 275px;
  height: 545px;
}
.main-visual .scroll-down {
  position: absolute;
  right: 60px;
  bottom: 0;
}
@media print, screen and (max-width: 991px) {
  .main-visual .text,
  .main-visual .scroll-down {
    display: none;
  }
  .main-visual .background-dot-1 {
    display: none;
  }
  .main-visual .background-dot-2 {
    display: none;
  }
  .main-visual .background-illust-1 {
    top: 210px;
    left: 0;
  }
  .main-visual .background-illust-1 img {
    width: 106px;
    height: 121px;
  }
  .main-visual .background-illust-2 {
    top: auto;
    bottom: 0;
    right: 0;
  }
  .main-visual .background-illust-2 img {
    width: 240px;
    height: 320px;
  }
}

.news-wrap {
  position: relative;
  padding: 160px 0 25px;
}
.news-wrap .background-illust-3 {
  position: absolute;
  top: -110px;
  right: 0;
  z-index: -2;
}
.news-wrap .background-illust-3 img {
  width: 696px;
  height: 965px;
}
.news-wrap .background-illust-4 {
  position: absolute;
  bottom: -640px;
  left: 0;
  z-index: -2;
}
.news-wrap .background-illust-4 img {
  width: 1186px;
  height: 1544px;
}
@media print, screen and (max-width: 991px) {
  .news-wrap {
    padding: 50px 0 25px;
  }
  .news-wrap .background-illust-3 {
    top: 40px;
    right: 0;
  }
  .news-wrap .background-illust-3 img {
    width: 348px;
    height: 482px;
  }
  .news-wrap .background-illust-4 {
    bottom: -500px;
    left: 0;
  }
  .news-wrap .background-illust-4 img {
    width: 593px;
    height: 767px;
  }
}

.news-white-box {
  max-width: 1220px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 95px;
  background: #ffffff; /* 背景色 */
  background-image: radial-gradient(circle, #f9f8f9 1px, transparent 1px); /* ドット */
  background-size: 10px 10px; /* ドットの間隔 */
  border-radius: 60px;
}
.news-white-box .news-scroll-box {
  width: 100%;
  height: 710px;
  padding: 60px 60px 60px 0;
  overflow-y: auto; /* 縦スクロールを有効化 */
  overflow-x: hidden; /* 横スクロールを無効化 */
}
.news-white-box .news-scroll-box .box {
  display: flex;
  gap: 46px;
}
.news-white-box .news-scroll-box .box .date {
  display: flex;
  gap: 30px;
  font-size: 20px;
  font-weight: 700;
  width: 210px;
}
.news-white-box .news-scroll-box .box .date .new {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #ffffff;
  width: 60px;
  height: 33px;
  background: #00a99d;
  border-radius: 6px;
}
.news-white-box .news-scroll-box .box .content {
  flex: 1;
}
.news-white-box .news-scroll-box .box .content .title {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
}
.news-white-box .news-scroll-box .box .content p {
  font-size: 16px;
  margin-bottom: 20px;
}
.news-white-box .news-scroll-box .box .content .images {
  display: flex;
  gap: 10px 30px;
  margin: 30px 0;
}
.news-white-box .news-scroll-box .box .content .images .image {
  width: calc((100% - 60px) / 3);
}
.news-white-box .news-scroll-box .box .content .images .image img {
  border-radius: 6px;
}
.news-white-box .news-scroll-box .box .content .file {
  display: flex;
  gap: 20px;
}
.news-white-box .news-scroll-box .box .content .file a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 700;
  width: 180px;
  height: 60px;
  background: #f6dc69;
  border-radius: 10px;
  box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.6), inset 8px 8px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
.news-white-box .news-scroll-box .box .content .file a:hover {
  color: #ffffff;
}
.news-white-box .news-scroll-box .diagonal-line-background {
  width: 100%;
  height: 16px;
  margin: 50px 0;
  background-size: auto auto;
  background: #ffffff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #f5f5f5 6px, #f5f5f5 8px);
}
@media print, screen and (max-width: 991px) {
  .news-white-box {
    padding: 30px 20px;
  }
}
@media print, screen and (max-width: 767px) {
  .news-white-box {
    border-radius: 10px;
  }
  .news-white-box .news-scroll-box {
    height: 400px;
    padding: 30px 15px 30px 0;
  }
  .news-white-box .news-scroll-box .box {
    flex-direction: column;
    gap: 20px;
  }
  .news-white-box .news-scroll-box .box .date {
    align-items: center;
    gap: 20px;
    width: 100%;
  }
  .news-white-box .news-scroll-box .box .date .new {
    height: 24px;
  }
  .news-white-box .news-scroll-box .box .content .images {
    gap: 10px;
    margin: 20px 0 25px;
  }
  .news-white-box .news-scroll-box .box .content .images .image {
    width: calc((100% - 30px) / 3);
  }
  .news-white-box .news-scroll-box .box .content .file {
    flex-direction: column;
    gap: 10px;
  }
  .news-white-box .news-scroll-box .box .content .file a {
    height: 40px;
  }
  .news-white-box .news-scroll-box .diagonal-line-background {
    height: 10px;
  }
}

.serice-top-background {
  position: relative;
  z-index: -2;
}

.service-wrap {
  position: relative;
  background: #ede6ed;
}
.service-wrap .background-dot-3 {
  position: absolute;
  top: -280px;
  right: 227px;
  z-index: -1;
}
.service-wrap .background-dot-3 img {
  width: 200px;
  height: 194px;
}
.service-wrap .service-text {
  font-size: 20px;
}
.service-wrap .service-text .studio {
  display: inline-block;
  font-size: 15px;
  font-weight: 700;
  padding: 0 6px;
  background: #f6f4f6;
  border-radius: 6px;
}
.service-wrap .service-text .studio span {
  font-size: 20px;
}
.service-wrap .service-text .large {
  font-size: 32px;
  font-weight: 700;
  margin: 0 5px;
  text-shadow: 2px 2px 0 white, -2px 2px 0 white, 2px -2px 0 white, -2px -2px 0 white; /* 左上 */
}
.service-wrap .service-box {
  position: relative;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  z-index: 2;
}
.service-wrap .service-box .image {
  width: 60%;
}
.service-wrap .service-box .content {
  flex: 1;
}
.service-wrap .service-box .content .link-button a {
  margin-left: auto;
}
@media print, screen and (max-width: 991px) {
  .service-wrap {
    padding: 50px 0 150px;
  }
  .service-wrap .background-dot-3 {
    display: none;
  }
  .service-wrap .service-text {
    font-size: 16px;
  }
  .service-wrap .service-text .studio {
    margin-bottom: 10px;
  }
  .service-wrap .service-text .studio span {
    font-size: 18px;
  }
  .service-wrap .service-text .large {
    font-size: 24px;
    font-weight: 500;
  }
  .service-wrap .service-box {
    flex-direction: column;
    gap: 20px;
  }
  .service-wrap .service-box .image {
    text-align: center;
    width: 100%;
  }
  .service-wrap .service-box .content .link-button a {
    margin: 0 auto;
  }
}

.about-top-background {
  position: relative;
  margin-top: -275px;
  z-index: 1;
}
@media print, screen and (max-width: 991px) {
  .about-top-background {
    margin-top: -150px;
  }
}

.about-wrap {
  position: relative;
  padding-top: 180px;
  background: #ffffff;
}
.about-wrap .background-illust-5 {
  position: absolute;
  top: -200px;
  right: 30%;
  z-index: 1;
}
.about-wrap .background-illust-5 img {
  width: 358px;
  height: 323px;
}
.about-wrap .about-text {
  font-size: 18px;
  font-weight: 500;
}
.about-wrap .about-box {
  position: relative;
  display: flex;
  gap: 40px;
  margin-top: 50px;
  z-index: 2;
}
.about-wrap .about-box .image {
  width: 60%;
}
.about-wrap .about-box .content {
  flex: 1;
}
.about-wrap .about-box .content .link-button a {
  margin-left: auto;
}
.about-wrap .about-box .background-dot-4 {
  position: absolute;
  top: 41%;
  right: 35%;
  z-index: 1;
}
.about-wrap .about-box .background-dot-4 img {
  width: 160px;
  height: 155px;
}
@media print, screen and (max-width: 991px) {
  .about-wrap {
    padding-top: 50px;
  }
  .about-wrap .background-illust-5 {
    position: absolute;
    top: -200px;
    right: 15px;
    z-index: 1;
  }
  .about-wrap .background-illust-5 img {
    width: 179px;
    height: 162px;
  }
  .about-wrap .about-text {
    font-size: 16px;
  }
  .about-wrap .about-box {
    flex-direction: column;
    gap: 20px;
  }
  .about-wrap .about-box .image {
    text-align: center;
    width: 100%;
  }
  .about-wrap .about-box .content .link-button a {
    margin: 0 auto;
  }
  .about-wrap .about-box .background-dot-4 {
    display: none;
  }
}

.recruit-top-background {
  position: relative;
  margin-top: -200px;
  background: #ffffff;
  z-index: 1;
}
@media print, screen and (max-width: 991px) {
  .recruit-top-background {
    margin-top: -110px;
  }
}

.recruit-wrap {
  position: relative;
  padding-top: 180px;
  background: #f6f4f6;
}
.recruit-wrap .background-dot-5 {
  position: absolute;
  bottom: 364px;
  left: 80px;
  z-index: 2;
}
.recruit-wrap .background-dot-5 img {
  width: 271px;
  height: 262px;
}
.recruit-wrap .background-illust-6 {
  position: absolute;
  top: -200px;
  right: 0;
  z-index: 1;
}
.recruit-wrap .background-illust-6 img {
  width: 192x;
  height: 347px;
}
.recruit-wrap .background-illust-7 {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.recruit-wrap .background-illust-7 img {
  width: 286px;
  height: 545px;
}
.recruit-wrap .recruit-box {
  position: relative;
  margin: 0 auto;
  max-width: 1047px; /* 画像サイズ */
  max-height: 1047px; /* 画像サイズ */
  padding: 40px 36.5px;
  z-index: 3;
}
.recruit-wrap .recruit-box .circle-text {
  position: absolute;
  top: 0;
  left: 0;
}
.recruit-wrap .recruit-box .circle-text .rotating-image {
  width: 1047px; /* 画像サイズ */
  height: 1047px; /* 画像サイズ */
  animation: rotate 60s linear infinite; /* 回転アニメーション */
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.recruit-wrap .recruit-box .recruit-background {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 967px;
  background: url(../images/index/recruit-background.png) no-repeat center center/contain;
}
.recruit-wrap .recruit-box .recruit-background .recruit-text {
  font-size: 24px;
  font-weight: 500;
  color: #ffffff;
}
.recruit-wrap .recruit-box .recruit-background .recruit-image {
  margin: 20px 0 50px;
}
.recruit-wrap .recruit-box .recruit-background .link-button a {
  margin: 0 auto;
  background: #70eec0;
}
@media print, screen and (max-width: 1199px) {
  .recruit-wrap .recruit-box {
    padding: 0;
  }
  .recruit-wrap .recruit-box .circle-text {
    display: none;
  }
}
@media print, screen and (max-width: 991px) {
  .recruit-wrap {
    padding-top: 150px;
  }
  .recruit-wrap .background-dot-5 {
    display: none;
  }
  .recruit-wrap .background-illust-6 {
    position: absolute;
    top: -200px;
    right: 0;
    z-index: 1;
  }
  .recruit-wrap .background-illust-6 img {
    width: 86x;
    height: 173px;
  }
  .recruit-wrap .background-illust-7 {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
  }
  .recruit-wrap .background-illust-7 img {
    width: 143px;
    height: 267px;
  }
  .recruit-wrap .recruit-box .recruit-background {
    height: auto;
    padding: 30px 20px;
    background: none;
    background: #fe996c; /* 背景色 */
    background-image: radial-gradient(circle, #fcaf8d 1px, transparent 1px); /* ドット */
    background-size: 10px 10px; /* ドットの間隔 */
    border-radius: 10px;
  }
  .recruit-wrap .recruit-box .recruit-background .recruit-text {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
  }
  .recruit-wrap .recruit-box .recruit-background .recruit-image {
    margin: 20px 0;
  }
  .recruit-wrap .recruit-box .recruit-background .link-button a {
    margin: 0 auto;
    background: #70eec0;
  }
}

.contact-top-background {
  margin-top: 60px;
}
.contact-top-background img {
  vertical-align: bottom;
}

.contact-wrap {
  background: #ffffff;
}
.contact-wrap .contact-text {
  font-size: 24px;
  text-align: center;
}
.contact-wrap .contact-text span {
  font-family: "Signika", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Arial, "Yu Gothic", Meiryo, sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.contact-wrap .link-button {
  margin: 30px 0 60px;
}
.contact-wrap .link-button a {
  margin: 0 auto;
}
.contact-wrap .contact-studio {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 90px;
}
.contact-wrap .contact-studio .box {
  text-align: center;
  max-width: 345px;
  width: 100%;
}
.contact-wrap .contact-studio .box .studio-name {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  color: #b37c7c;
  max-width: 240px;
  width: 100%;
  height: 36px;
  margin: 0 auto 10px;
  border: 1px solid #b37c7c;
  border-radius: 6px;
}
.contact-wrap .contact-studio .box .studio-name span {
  font-size: 20px;
}
.contact-wrap .contact-studio .box .tel-box-1,
.contact-wrap .contact-studio .box .tel-box-2,
.contact-wrap .contact-studio .box .tel-box-3,
.contact-wrap .contact-studio .box .tel-box-4 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 32px;
  max-width: 345px;
  width: 100%;
  height: 90px;
  border-radius: 10px;
}
.contact-wrap .contact-studio .box .tel-box-1 .label,
.contact-wrap .contact-studio .box .tel-box-2 .label,
.contact-wrap .contact-studio .box .tel-box-3 .label,
.contact-wrap .contact-studio .box .tel-box-4 .label {
  font-size: 20px;
  padding-top: 8px;
}
.contact-wrap .contact-studio .box .tel-box-1 span,
.contact-wrap .contact-studio .box .tel-box-1 a,
.contact-wrap .contact-studio .box .tel-box-2 span,
.contact-wrap .contact-studio .box .tel-box-2 a,
.contact-wrap .contact-studio .box .tel-box-3 span,
.contact-wrap .contact-studio .box .tel-box-3 a,
.contact-wrap .contact-studio .box .tel-box-4 span,
.contact-wrap .contact-studio .box .tel-box-4 a {
  color: #ac5e5e;
}
.contact-wrap .contact-studio .box .tel-box-1 {
  background: #c8f3ca;
}
.contact-wrap .contact-studio .box .tel-box-2 {
  background: #b3e5f6;
}
.contact-wrap .contact-studio .box .tel-box-3 {
  background: #f9ecc1;
}
.contact-wrap .contact-studio .box .tel-box-4 {
  background: #fdd6b1;
}
@media print, screen and (max-width: 1199px) {
  .contact-wrap {
    padding-top: 50px;
  }
  .contact-wrap .contact-studio {
    flex-wrap: wrap;
    gap: 30px 20px;
  }
  .contact-wrap .contact-studio .box {
    max-width: none;
    width: calc((100% - 20px) / 2);
  }
  .contact-wrap .contact-studio .box .tel-box-1,
  .contact-wrap .contact-studio .box .tel-box-2,
  .contact-wrap .contact-studio .box .tel-box-3,
  .contact-wrap .contact-studio .box .tel-box-4 {
    max-width: none;
    width: 100%;
    height: 80px;
  }
  .contact-wrap .contact-studio .box .tel-box-1 .label,
  .contact-wrap .contact-studio .box .tel-box-2 .label,
  .contact-wrap .contact-studio .box .tel-box-3 .label,
  .contact-wrap .contact-studio .box .tel-box-4 .label {
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .contact-wrap {
    background: #ffffff;
  }
  .contact-wrap .contact-text {
    font-size: 20px;
    text-align: left;
  }
  .contact-wrap .contact-text span {
    font-size: 15px;
  }
  .contact-wrap .contact-studio .box {
    width: 100%;
  }
  .contact-wrap .contact-studio .box .studio-name {
    font-size: 15px;
    width: 100%;
    height: 40px;
  }
  .contact-wrap .contact-studio .box .studio-name span {
    font-size: 20px;
  }
}