@charset "UTF-8";

* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-padding-top: 50px;
}
body {
  margin: unset;
  font-size: 1.6rem;
  font-family:
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, Verdana,
    "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
  background-color: #1b1b32;
}
p {
  margin: unset;
}
img {
  vertical-align: top;
  max-width: 100%;
}
a {
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.sp_view {
  display: block;
}
.pc_view {
  display: none;
}
#btn_pagetop_wrap {
  position: fixed;
  right: 0px;
  bottom: 10px;
  z-index: 200;
  opacity: 0;
}
header {
  height: 50px;
}
.header-inner {
  height: 50px;
  position: fixed;
  z-index: 200;
  top: 0;
  width: 100%;
  background-color: #000;
}
.contents_wrap {
  width: 90%;
  margin: 0 auto;
}
.header-contents_wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.header-contents_wrap a {
  display: block;
  height: 20px;
}
.header-contents_wrap img {
  height: 100%;
}
footer {
  width: 100%;
  padding: 30px 0;
  background-color: #333;
}
footer a,
footer p {
  color: #fff;
}
footer a {
  font-size: 1.4rem;
  line-height: 2;
}
footer p {
  font-size: 1rem;
  text-align: center;
}
.footer-contents-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 30px;
}
.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 0;
  top: 50px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  width: 26px;
  height: 2px;
  margin: 3px;
  background-color: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  margin: -1px;
  background-color: #fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.hamburger.active span:nth-child(2) {
  display: none;
}
.hamburger.active span:nth-child(3) {
  margin: -1px;
  background-color: #fff;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
nav.globalMenuSp {
  position: fixed;
  z-index: 2;
  top: 100px;
  left: 0;
  background-color: #1b1b32;
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}
nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: 0.4s all;
  display: flex;
  justify-content: center;
  align-items: center;
}
nav.globalMenuSp ul li a {
  padding: 12px 30px;
  text-decoration: none;
  color: #fff;
  border-bottom: 1px solid #6e6c6c;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
nav.globalMenuSp ul li:last-child a {
  border-bottom: unset;
}
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  transform: translateX(0%);
}
.menu-icon {
  position: relative;
  display: inline-block;
  width: 10px;
  height: 10px;
}
.menu-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transform-origin: center;
}

.main {
  position: relative;
}
.main img {
  width: 100vw;
  position: relative;
}
.section {
  position: relative;
}
.section-inner {
  padding: 0 5vw;
}

.sns_box ul {
  list-style: none;
  width: 320px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.sns_box li,
.sns_box li div {
  display: flex;
  align-items: center;
}
.sns_box li > a > img {
  margin-bottom: unset;
}
.banner-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  max-width: 620px;
  margin: 0 auto;
}
.banner-contents a {
  width: 48%;
  margin: 5px 0;
  max-width: 200px;
}
.banner-contents img {
  width: 100%;
}
.banner {
  padding: 50px 0px 0;
  background-color: #f2f2f2;
}
.recruit {
  padding: 40px 0;
  display: flex;
  justify-content: center;
}
.recruit-link {
  font-weight: bold;
  color: #333;
}
.sanwa-san {
  width: 200px;
  margin: 0 auto;
  display: block;
}
@media screen and (min-width: 960px) {
  .sp_view {
    display: none;
  }
  .pc_view {
    display: block;
  }
  .contents_wrap {
    max-width: 960px;
  }
  .footer-contents_wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .footer-contents-link {
    flex-direction: unset;
    margin-bottom: unset;
  }
  footer {
    padding: 10px 0;
  }
  .partition {
    border-left: #fff 1px solid;
    height: 16px;
    margin-left: 10px;
    margin-right: 10px;
  }
  .globalMenuPc {
    width: 100vw;
    background-color: rgba(255, 255, 255, 0.7);
    position: absolute;
    bottom: 0;
  }
  .globalMenuPc ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: unset;
    padding: 25px 0;
  }
  .globalMenuPc li {
    display: flex;
    align-items: center;
    margin: 0 20px;
  }
  .globalMenuPc li img {
    width: 30px;
    z-index: 0;
  }
  .globalMenuPc a {
    text-decoration: none;
    color: #000;
    font-weight: bold;
    font-size: 16px;
    display: flex;
    align-items: center;
  }
  .globalMenuPc .menu-icon {
    margin-left: 10px;
  }
  .section-inner {
    max-width: 960px;
    margin: 0 auto;
    padding: unset;
  }
  .main {
    position: relative;
  }

  .banner {
    padding: 70px 0 0;
  }
  .banner-contents {
    max-width: 960px;
  }
  .banner-contents a {
    margin: 10px 0;
    max-width: 300px;
  }
  .recruit {
    padding: 60px 0;
  }
  .recruit-link {
    margin: unset;
    font-size: 2rem;
  }
  .sanwa-san {
    position: absolute;
    right: calc(50vw - 460px);
    bottom: 0;
    width: 220px;
  }
}
/* ----------------------------------------------------------------- 2026/01/29 */

.sec-01 {
  background-image: url(../images/sp/sec-01-bg.jpg);
  background-size: cover;
}
.h2-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 15vw 0 10vw;
}
.h2-wrap_1 img {
  height: 8.5vw;
}
.h2-wrap h2 {
  color: #fff;
  margin: -2vw 0 0;
  font-size: 5.5vw;
  letter-spacing: 0.5vw;
}
.sec-01_contents p {
  color: #fff;
  font-size: 3.5vw;
}
.sec-01_content_1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 5vw;
}
.sec-01_content_1 p {
  width: 37vw;
}
.sec-01-video-wrap {
  margin-right: 4vw;
  position: relative;
}
.sec-01-video-wrap img {
  width: 50vw;
}
.sec-01_contents video {
  width: 47.5vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.sec-01_content_2 {
  display: flex;
  align-items: flex-start;
  margin-bottom: 5vw;
}
.sec-01_content_2 > div {
  width: 40vw;
  margin-left: 4vw;
}
.sec-01_content_2 > div > .img-sec-01-01_p {
  font-size: 2.5vw;
}
.sec-01_content_2 p:first-child {
  width: 50vw;
}

.sec-02 {
  background-image: url(../images/sp/sec-02-bg.jpg);
  background-size: cover;
  padding: 11vw 0;
  display: flex;
  justify-content: center;
}
.sec-02 > div > a {
  width: 30vw;
  display: inline-block;
  position: absolute;
}
.img_sec-02-01 {
  top: 25vw;
  left: 6vw;
}
.img_sec-02-02 {
  top: 15vw;
  left: 35vw;
}
.img_sec-02-03 {
  top: 25vw;
  left: 64vw;
}
.img_sec-02-04 {
  width: 60vw;
  margin-top: 27vw;
}

.sec-03 {
  background-image: url(../images/sp/sec-03-bg.jpg);
  background-size: cover;
  height: 295vw;
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.lightbox.is-active {
  display: flex;
}

.lightbox__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.lightbox__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.lightbox__image {
  max-width: 80vw;
  display: block;
  margin: 0 auto 5vw;
  pointer-events: none;
}

.lightbox__close {
  display: inline-block;
  border: none;
  border-radius: 10vw;
  width: 10vw;
  height: 10vw;
}
.spec-item {
  position: absolute;
  width: 20vw;
}
.spec-item_1 {
  top: 38vw;
  left: 13vw;
}
.spec-item_2 {
  top: 37vw;
  left: 68vw;
}
.spec-item_3 {
  top: 74vw;
  left: 78vw;
}
.spec-item_4 {
  top: 107vw;
  left: 3vw;
}
.spec-item_5 {
  top: 111vw;
  left: 77vw;
}
.spec-item_6 {
  top: 167vw;
  left: 15vw;
}
.sec-03-table {
  position: absolute;
  top: 203vw;
  left: 5vw;
  font-size: 3.5vw;
}
.sec-03-table_item {
  display: flex;
  margin-bottom: 0.5vw;
}
.sec-03-table_item-l {
  background-color: #828058;
  color: #fff;
  font-weight: bold;
  padding: 3vw 0 3vw 3vw;
  width: 25vw;
}
.sec-03-table_item-r {
  background-color: #fff;
  padding: 3vw 0 3vw 3vw;
  width: 65vw;
}
.sec-04 {
  background-image: url(../images/sp/sec-04-bg.jpg);
  background-size: cover;
  height: 389vw;
}
.sec-05 {
  background-image: url(../images/sp/sec-05-bg.jpg);
  background-size: cover;
  color: #fff;
}
.h2-wrap_2 img {
  height: 15vw;
}
.sec-05-contents {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.sec-05-content {
  width: 47%;
  margin-bottom: 10vw;
}
.sec-05 h3 {
  font-size: 4vw;
  margin: 3vw 0 1vw;
}
.sec-05 p {
  font-size: 3.5vw;
}
.sec-05 > div > p {
  font-size: 2.9vw;
  padding-bottom: 15vw;
}
.sec-05 > div > p > a {
  color: #fff;
}
.sec-06 {
  background-image: url(../images/sp/sec-06-bg.jpg);
  background-size: cover;
  color: #fff;
  font-size: 3.5vw;
}
.sec-06-contents {
  padding-bottom: 10vw;
}
.sec-06-content {
  margin-bottom: 10vw;
}
.sec-06-content_item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 4vw;
}
.sec-06-content_item img {
  width: 9vw;
  margin-right: 3vw;
}
.sec-06-content_item a {
  color: #fff;
}
.sec-07,
.sns,
.sec-08 {
  background-color: #10101d;
  color: #fff;
  text-align: center;
  margin-top: -1px;
}
.sec-07,
.sec-08 {
  padding: 15vw 0;
}
.sec-07 p {
  font-size: 2.9vw;
}
.sec-07 img {
  width: 80vw;
  margin-bottom: 10vw;
}
.sec-08 p {
  font-weight: bold;
  font-size: 4vw;
}
.sec-08 img {
  width: 90vw;
  margin-top: 5vw;
}
.footer-grp {
  display: flex;
  align-items: center;
}
.footer-grp > a:first-child {
  margin-right: 20px;
}
#sec1,
#sec3,
#sec4,
#sec5,
#sec6,
#sec7 {
  margin-top: -50px;
  padding-top: 50px;
}

@media screen and (min-width: 960px) {
  .sec-01 {
    background-image: url(../images/pc/sec-01-bg.jpg);
    background-position-x: center;
  }
  .h2-wrap {
    padding: 100px 0 70px;
  }
  .h2-wrap_1 img {
    height: 60px;
  }
  .h2-wrap h2 {
    margin: -10px 0 0;
    font-size: 24px;
    letter-spacing: 3px;
  }
  .sec-01-video-wrap img {
    width: 470px;
  }
  .sec-01-video-wrap {
    margin-right: 40px;
  }
  .sec-01_contents video {
    width: 450px;
  }
  .sec-01_contents p {
    font-size: 16px;
  }
  .sec-01_content_1 p {
    width: 450px;
  }
  .sec-01_content_1 > div > div > div > p.img-sec-01-01_p {
    font-size: 12px;
  }
  .sec-01_content_1 > div > div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .sec-01_content_1 > div > div > div > p {
    width: 150px;
  }
  .img-sec-01-01 {
    width: 260px;
  }
  .sec-01_content_1 > div > p {
    margin-bottom: 20px;
  }
  .sec-01_content_1 {
    margin-bottom: -1px;
    align-items: center;
  }
  .sec-02 {
    background-image: url(../images/pc/sec-02-bg.jpg);
    background-position: center;
    padding: 120px 0;
  }
  .sec-02 > div > a {
    width: 300px;
    left: 50%;
  }
  .img_sec-02-01 {
    top: 380px;
    transform: translate(-50%, -50%) translateX(-320px);
  }
  .img_sec-02-02 {
    top: 270px;
    transform: translate(-50%, -50%) translateX(0px);
  }
  .img_sec-02-03 {
    top: 380px;
    transform: translate(-50%, -50%) translateX(320px);
  }
  .img_sec-02-04 {
    width: 580px;
    margin-top: 250px;
  }
  .sec-03 {
    background-image: url(../images/pc/sec-03-bg.jpg);
    background-position-x: center;
    height: unset;
  }
  .sec-03-table {
    position: unset;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    padding: 60px 0 120px;
  }
  .sec-03-table_item {
    margin-bottom: 3px;
  }
  .sec-03-table_item-l {
    padding: 15px 0 15px 30px;
    width: 160px;
  }
  .sec-03-table_item-r {
    padding: 15px 0 15px 30px;
    width: 310px;
  }
  .sec-04 {
    background-image: url(../images/pc/sec-04-bg.jpg);
    height: 146vw;
    margin-bottom: calc(-30vw + 400px);
  }
  .sec-05 {
    background-image: url(../images/pc/sec-05-bg.jpg);
    background-position-x: center;
  }
  .h2-wrap_2 img {
    max-height: 60px;
  }
  .sec-05-content {
    width: 30%;
    margin-bottom: 40px;
  }
  .sec-05 h3 {
    font-size: 24px;
    margin: 30px 0 10px;
  }
  .sec-05 p {
    font-size: 16px;
  }
  .sec-05 > div > p {
    font-size: 14px;
    padding: 30px 0 100px;
    text-align: center;
  }
  .sec-06 {
    background-image: url(../images/pc/sec-06-bg.jpg);
    background-position-x: center;
    font-size: 16px;
  }
  .sec-06-content_item img {
    width: 40px;
    margin-right: 15px;
  }
  .sec-06-content {
    margin-bottom: 40px;
    width: 48%;
  }
  .sec-06-content_item {
    margin-bottom: 20px;
  }
  .sec-06-contents {
    padding-bottom: 50px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .sec-07,
  .sec-08 {
    padding: 90px 0;
  }
  .sec-07 p {
    font-size: 14px;
  }
  .sec-07 img {
    width: 500px;
    margin-bottom: 50px;
  }
  .sec-08 p {
    font-size: 20px;
  }
  .sec-08 img {
    width: 500px;
    margin-top: 20px;
  }
  .footer-grp > a:first-child {
    margin-right: 0;
  }
}
