@charset 'UTF-8';

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■

	トップページ

■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */



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

	レイアウト

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


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

	メイン画像

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

/* ===== Hero ===== */
.hero {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-inner {
  position: relative;
  z-index: 2;
}
.hero-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  text-align: left;
  width: 800px;
}
.hero p.hero-main {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  background-color: #333;
  display: inline-block;
  padding: 0 14px;
}
.hero p.hero-main:not(:first-of-type) {
  margin: 10px 0;
}
.hero p.hero-sub {
  font-size: 32px;
  font-weight: 700;
  color: #000;
  background-color: #fff;
  display: inline-block;
  padding: 0 14px;
  margin-top: 10px;
}
.hero .n2-ss-layer {
  cursor: default;
}

.tb_slider,
.sp_slider {
  display: none;
}

/* PC設定
----------------------------------------------- */
@media (max-width: 1366px) {
  
  .hero-inner {
  }
  .hero-text {
    max-width: 600px;
    top: 55%;
    left: 45%;
  }
  .hero p.hero-main {
    font-size: 36px;
  }
  .hero p.hero-sub {
    font-size: 24px;
  }
  
}


/* TB設定
----------------------------------------------- */
@media (max-width: 960px) {
  
  .hero-inner {
  }
  .hero-text {
    width: 500px;
  }
  .hero p.hero-main {
    font-size: 32px;
  }
  .hero p.hero-sub {
    font-size: 20px;
  }
  
  .pc_slider,
  .sp_slider {
    display: none;
  }
  .tb_slider {
    display: block;
  }
  .tb_slider .n2-ss-slide {
    height: 600px;
  }
  
}


/* SP設定
----------------------------------------------- */
@media (max-width: 768px) {
  
  .hero-inner {
    padding: 0;
  }
  .hero-text {
    top: inherit;
    bottom: 6%;
    left: inherit;
    right: 4%;
    transform: none;
    width: 413px;
  }
  
  .tb_slider {
    display: none;
  }
  .sp_slider {
    display: block;
  }
  .sp_slider .n2-ss-slide {
    height: auto;
  }
  
}


/* SP設定
----------------------------------------------- */
@media (max-width: 450px) {
  
  .hero-inner {
    padding: 0;
  }
  .hero-text {
    top: inherit;
    bottom: 6%;
    left: inherit;
    right: 4%;
    transform: none;
    width: 70vw;
  }
  .hero p.hero-main {
    font-size: 5.5vw;
    padding: 0 2vw;
  }
  .hero p.hero-main:not(:first-of-type) {
    margin: 2vw 0;
  }
  .hero p.hero-sub {
    font-size: 4vw;
    padding: 0 2vw;
    margin-top: 2vw;
  }
  
}





/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★

	ここからコンテンツ内容

★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */



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

	About

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

.about-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.about-content > div {
  width: 50%;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
  
  .about-content {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .about-content > div {
    width: 100%;
  }
  
}





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

	Service

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

.service-content {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
}
.service-content > div {
  width: 50%;
}

.service-item img {
  margin-bottom: 20px;
}

.service .btn {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
  .service-content {
    gap: 40px;
    flex-wrap: wrap;
    flex-direction: column;
  }
  .service-content > div {
    width: 100%;
  }
  
}





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

	Recruit

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

.recruit-content {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: nowrap;
}
.recruit-content > div {
  width: 50%;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
  .recruit-content {
    gap: 20px;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  .recruit-content > div {
    width: 100%;
  }
  
}





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

	News

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

.news-list li {
  display: flex;
  justify-content: space-between;
}
.news-list li:not(:first-of-type) {
  margin-top: 10px;
}
.news-list li span.date {
  margin-right: 16px;
  flex-shrink: 0;
  white-space: nowrap;   
}
.news-list .title {
  flex: 1;
  display: inline-block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.4;
}
.news-list li a {
  background-color: #fff;
  flex: 1;
  transition: color 0.3s;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
}

.news .btn {
  width: auto;
  margin-left: auto;
}

/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
  
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
  
  .news-list li a {
    flex-direction: column;
    align-items: flex-start;
  }

  .news-list li span.date {
    margin-right: 0;
  }

  .news-list .title {
    width: 100%;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  
  .news .btn {
    margin-left: inherit;
  }
  
}





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

	〇〇

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


/* PC設定
----------------------------------------------- */
@media (min-width: 768px) {
	
}


/* SP設定
----------------------------------------------- */
@media (max-width: 767px) {
	
}
