@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;600&family=Zen+Kaku+Gothic+Antique:wght@500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.1.1/dist/css/yakuhanjp.css');

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.zen-kaku-gothic-antique-medium {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.zen-kaku-gothic-antique-bold {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.zen-kaku-gothic-antique-black {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 900;
  font-style: normal;
}

body {
  background: #a8afb5 url(../img/bg_body.png) no-repeat center top;
  background-size: 1800px;
  background-attachment: fixed;
  color: #3c3a39;
  font-family: YakuHanJP, "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-style: normal;
  text-align: justify;
}

.content_wrapper {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
  border-left: 4px solid #ebff00;
  border-right: 4px solid #ebff00;
}

@media screen and (max-width: 500px) {
  body {
    background-image: none;
  }
  .content_wrapper {
    max-width: 100%;
    border-left: 2px solid #ebff00;
    border-right: 2px solid #ebff00;
  }
  header .logo {
    width: 69px;
    position: relative;
    left: 26px;
    top: 3px;
    z-index: 1;
  }
}

/* ---------------------------------------
  parts
-----------------------------------------*/

.btn_1day a {
  background: #ff4950;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  padding: 22px 44px;
  font-size: 1.4rem;
  text-align: center;
  border: 2px solid #3c3a39;
}

.btn_1day a .en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 3.4rem;
}

.btn_1day a span {
  position: relative;
}

header .btn_1day a {
  color: #ebff00;
  background-color: #3c3a39;
}
header .btn_1day a.btn_animation.arrow-large::after {
  background: url(../img/arrow_yl.svg) no-repeat right center;
  background-size: 100%;
}

header .btn_1day a.btn_animation.arrow-large:hover::after {
  background: url(../img/arrow_bk.svg) no-repeat right center;
  background-size: 100%;
}

header .btn_1day a::before {
  background: #ebff00;
}

header .btn_1day a:hover {
  color: #3c3a39;
}

header .btn_corporate a {
  background: #ebff00;
  color: #3c3a39;
}

.btn_corporate a {
  font-weight: bold;
  text-align: center;
  display: flex;
  justify-content: center;
  height: 60px;
  align-items: center;
  letter-spacing: 0;
  background-color: #3c3a39;
  color: #fff;
}

.btn_corporate a:hover {
  color: #fff;
}

.btn_corporate a span {
  position: relative;
}

.btn_corporate a::before {
  background-color: #3c3a39;
}

.btn_corporate a::after {
  background: url(../img/arrow_bk.svg) no-repeat center right !important;
}
.btn_corporate a:hover::after {
  background: url(../img/arrow_wh.svg) no-repeat center right !important;
}

.btn_mynavi a{
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .2s ease;
}

@media screen and (min-width: 768px) {
  .btn_mynavi a:hover {
     opacity: .8;
  } 
}

.event-tokuten {
  display: block;
  height: 0;
  padding-top: 74%;
  overflow: hidden;
  background: url(../img/event_tokuten.png) no-repeat center top;
  background-size: contain;
  position: relative;
}

.btn_animation {
  display: inline-flex; /* or flex, for alignment */
  align-items: center;
  justify-content: space-between;
  color: #3c3a39; /* Text color */
  position: relative;
  overflow: hidden; /* Crucial for the slide effect */
  transition: color 0.3s ease; /* Smooth transition for text color */
}

.btn_animation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3a39; /* Hover background color (dark grey from your image) */
  transform: translateX(-100%); /* Start off-screen to the left */
  transition: transform 0.3s ease; /* Smooth transition for the slide effect */
}

.btn_animation:hover::before {
  transform: translateX(0); /* Slide in from the left on hover */
}

.btn_animation.arrow::after  {
  content: "";
  display: block;
  width: 22px;
  height: 7px;
  background: url(../img/arrow_bk.svg) no-repeat center right;
  top: calc(50% - 3px);
  right: 16px;
  position: absolute;
}

.btn_animation.arrow-large::after {
  content: "";
  display: block;
  width: 39px;
  height: 13px;
  background: url(../img/arrow_wh.svg) no-repeat right center;
  position: absolute;
  right: 22px;
  top: calc(50% - 5px);
  background-size: 100%;
}

.btn_animation:hover {
  color: #fff;
}

.btn_animation.arrow:hover::after,
.btn_animation.arrow-large:hover::after {
  background: url(../img/arrow_wh.svg) no-repeat center right;
  position: absolute;
}

.btn_animation.arrow-large:hover::after {
  width: 39px;
  height: 13px;
  background-size: 100%;
}

@media screen and (max-width: 500px) {
  .btn_animation.arrow-large::after {
    width: 7vw;
    height: 2vw;
    right: 5vw;
  }
}

header .menuwrap ul.snslink,
.snslink {
  margin-top: 40px;
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}

header .menuwrap ul.snslink li + li,
.snslink li + li {
    margin-left: 4.3rem;
}

header .menuwrap ul.snslink a {
  transition: .2s ease;
  align-items: center;
  display: flex;
}

header .menuwrap ul.snslink a:hover {
  opacity: .8;
}

.scroll-asset {
  position: absolute;
  right: 0;
  bottom: 0;
}

.scroll-animation {
  position: absolute; /* 親要素に合わせて調整 */
  bottom: 0; /* ページ下部からの位置 */
  right: -5px;
  width: 30px; /* アイコンの幅 */
  height: 100px; /* アイコンの高さ */
  overflow: hidden; /* 線がはみ出さないように */
}

.scroll-animation-icon {
    width: 2px;
    height: 26px;
    background-color: #ebff00;
    position: absolute;
    top: -100%;
    left: 12px;
    transform: translateX(-4px);
    animation: scrollLine 3s infinite cubic-bezier(0.65, 0.05, 0.36, 1);
    bottom: 0;
    position: absolute;
}

.scroll-animation-txt {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  color: #ebff00;
  writing-mode: tb;
  font-size: 1.4rem;
  background-color: #a8afb5;
  position: absolute;
  bottom: 0;
  padding: 4px 0 0;
  left: 5px;
}

@keyframes scrollLine {
  0% {
    top: -100%;
    opacity: 0;
  }
  20% {
    top: -50%;
    opacity: 1;
  }
  80% {
    top: 100%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

.slick-arrow {
  position: absolute;
  background: url(../img/arrow_yl.svg) no-repeat center;
  background-size: contain;
  top: 33%;
  z-index: 1;
  width: 40px;
  height: 0;
  padding-top: 14px;
  overflow: hidden;
  transition: .2s;
}

.slick-prev.slick-arrow {
  left: 15px;
  transform: scale(-1, 1);
}

.slick-next.slick-arrow {
  right: 15px;
}

@media screen and (min-width: 500px) {
  .slick-prev.slick-arrow:hover {
    left: 11px;
  }

  .slick-next.slick-arrow:hover {
    right: 11px;
  }
}

ul.slick-dots {
  position: absolute;
  display: flex;
  justify-content: center;
  pointer-events: none;
  top: 60%;
  width: 100%;
}

ul.slick-dots li {
  justify-content: center;
  text-indent: 9999px;
  background-color: #d3d7da;
  width: 50px;
  height: 3px;
}

ul.slick-dots li + li {
  margin-left: 7px;
}

ul.slick-dots li.slick-active {
  background: #ebff00;
}

.cta .event-tokuten {
  background: url(../img/event_tokuten2.png) no-repeat center top;
  background-size: 100%;
  padding-top: 74%;
  margin-top: 70px;
}

.cta .btn_1day a {
  height: 110px;
  text-align: left;
  font-weight: bold;
  font-size: 2.4rem;
  padding: 0 41px;
  align-items: flex-start;
  letter-spacing: -0.01em;
  border: none;
}

@media screen and (max-width: 500px) {
  .cta .btn_1day a {
    font-size: 4.4vw;
    padding: 0 9vw;
    height: 22vw;
  }
}

/* ---------------------------------------
  header
-----------------------------------------*/

header {
	width: 100%;
	z-index: 100;
	position: fixed;
	left: 0;
	top: 0;
	transition: .5s;
}

header .logo,
header .site_title {
  z-index: 9999;
  position: relative;  
}

header .site_title {
  top: 16px;
  left: calc(50% - 90px);
  position: absolute;
}

.fixed header .site_title {
  position: fixed;
}

header .menuwrap {
  background-color: #ebff00;
}

header .btn_corporate {
  border: 2px solid #3c3a39 ;
}

header.bgnone {
	background-color: transparent;
}

header .wrap {
	width: 100%;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header nav {
	font-size: 0;
	line-height: 1;
	width: 100%;
	height: 100%;
	display: flex;
  flex-direction: column;
	align-items: center;
}

header .menuwrap {
	width: 100%;
	height: 100%;
}

header .menuwrap ul {
	width: 100%;
	height: 100%;
	display: flex;
  flex-direction: column;
	align-items: center;
	justify-content: flex-end;
}

header .menuwrap .gnavi li {
	color: #0b318f;
	letter-spacing: 0.075em;
}

header .menuwrap .gnavi li .en {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 2.7rem;
  letter-spacing: 0.1em;
}
  

header .menuwrap .gnavi li + li {
	margin-left: 2.1em;
}

header .menuwrap .gnavi li a {
	display: block;
	transition: .3s ease;
	font-weight: bold;
}

header .menuwrap .sns {
	margin-left: 40px;
}

@media screen and (max-width: 1280px) {
	header .menuwrap .gnavi li + li {
		margin-left: 1.5em;
	}

}

header {
  min-width: inherit;
  height: 60px;
  position: relative;
  top: 0;
  right: 0;
  padding: 0;
}

header .wrap {
  width: 100%;
  height: 100%;
  padding: 0;
  align-items: center;
}

header .logo {
  width: 91px;
  position: relative;
  left: 30px;
  top: 8px;
  z-index: 1;
}

header .menu-trigger {
  display: block;
  width: 70px;
  height: 60px;
  z-index: 999;
  text-align: center;
  position: fixed;
  /* right: 22px; */
  top: 10px;
  left: calc(50% + 160px);
}

header .menu-trigger span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 45px;
  height: 3px;
  background: #ebff00;
}

header.bgnone .menu-trigger span {
  background: #3c3a39;
}

header .menu-trigger span:nth-of-type(1) {
  top: 20px;
}

header .menu-trigger span:nth-of-type(2) {
  top: 29px;
}

header .menu-trigger span:nth-of-type(3) {
  top: 38px;
}

header.navOpen .menu-trigger span {
  background: #3c3a39;
}

header.navOpen .menu-trigger span:nth-of-type(1) {
  top: 28px;
  transform: rotate(-29deg);
}

header.navOpen .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}

header.navOpen .menu-trigger span:nth-of-type(3) {
  top: 28px;
  transform: rotate(29deg);
}

header #menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 990;
  overflow-y: scroll;
  width: 100%;
  max-height: 100%;
  padding: 0;
  -webkit-overflow-scrolling: touch;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}

header #menu::-webkit-scrollbar{
  display:none;
}

header .menuwrap {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  min-height: 100%;
  display: block;
  padding: 106px 34px 10px;
  position: relative;
}

header .menuwrap .logo {
  width: 91px;
  position: absolute;
  left: 34px;
  top: 11px;
  z-index: 1;
  transition: .2s ease;
}
@media screen and (min-width: 501px) {
  header .menuwrap .logo:hover {
    opacity: .8;
  }
}
@media screen and (max-width: 500px) {
  header .menuwrap {
    padding: 15vw 34px 12vw;
  }
  header .menuwrap .logo {
    width: 73px;
    left: 27px;
    top: 11px;
    z-index: 1;
  }
}
header .menuwrap ul {
  display: block;
}

header .menuwrap .gnavi li {
  color: #fff;
  font-size: 5.2vw;
  line-height: 1.4;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
}

header .menuwrap .gnavi li + li {
  margin-left: 0;
  border-top: 2px solid #fff;
}

header .menuwrap .gnavi li.link-recruitment a {
  color: #f4d620;
}

header .menuwrap .gnavi li a {
  display: block;
  padding: 0.5em 0;
  transition: .2s ease;
  position: relative;
  color: #3c3a39;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  header .menuwrap .gnavi li a:hover {
    opacity: .7;
  }
}

header .menuwrap .gnavi li a span {
  display: block;
  font-size: 1.4rem;
  letter-spacing: 0;
  font-size: 1.7rem;
}

header .btnwrap {
  margin-top: 10px;
}

header .btnwrap > * + * {
  margin-top: 25px;
}

@media screen and (max-width: 500px) {
  header .menuwrap {
    max-width: 100%;
    transform: translateX(0);
  }
  header #menu::before {
    content: "";
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 17vw;
    background: #ebff00;
    z-index: -1;
  }
  header .logo {
    width: 73px;
    position: relative;
    left: 25px;
    top: 3px;
    z-index: 999;
  }
  header .site_title {
    width: 39vw;
    left: 52%;
    transform: translateX(-50%);
  }
  header .menu-trigger {
    right: 10px;
    left: inherit;
    top: 3px;
  }
  header .menu-trigger span {
    width: 35px;
  }
  header .menuwrap .gnavi li .en {
    font-size: 2rem;
  }
  header .menuwrap .gnavi li a span {
    font-size: 1.3rem;
  }
  .btn_corporate a span {
    margin-left: -7vw;
  }
  header .menuwrap ul {
    margin-top: 6vw;
  }
  header .menuwrap ul.btnwrap {
    margin-top: 2vw;
  }
  header .btn_1day a {
    height: 21vw;
  }
  header .btn_1day a span.en {
    font-size: 6.4vw;
  }
  header .btn_1day a span {
    font-size: 3vw;
  }
  header .btnwrap > * + * {
    margin-top: 5vw;
  }
  header .btn_corporate a {
    height: 10vw;
  }
  header .btn_mynavi a {
    height: 13vw;
  }
  header .btn_mynavi a img {
    width: 64%;
  }
  header .menuwrap ul.snslink img {
    width: 6vw;
  }
  header .menuwrap ul.snslink li + li,
  .snslink li + li {
    margin-left: 8vw;
  }
  header .menuwrap ul.snslink {
    margin-top: 7vw;
  }
}

/* ---------------------------------------
  main
-----------------------------------------*/

main {
  padding-top: 34px;
  padding-bottom: 60px;
}

@media screen and (max-width: 500px) {
  main {
    padding-top: 4vw;
    padding-bottom: 13vw;
  } 
}

#hero {
  margin-bottom: 28px;
}

#hero h2 {
  margin-left: 30px;
}

#hero .d-demo__list {
  display: flex;
  margin-top: -15px;
  margin-bottom: 24px;
  position: relative;
  width: 2120px;
  z-index: -1;
}

#hero .d-demo__item {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
  width: 100%;
  height: 174px;
  background-image:url(../img/hero_img_01.png);
  background-repeat: repeat-x;
  background-size: 100% auto;
}

@keyframes infinity-scroll-left {
    from {
        background-position: 0 0;
    }

    to {
         background-position: -2120px 0;
    }
}

@media screen and (max-width: 500px) { 
  #hero {
    margin-bottom: 5vw;
  }
  #hero h2 {
    margin-left: auto;
    width: 87vw;
    margin-right: auto;
  }
  #hero .d-demo__list {
    margin-bottom: 5vw;
    margin-top: -3.5vw;
    width: 420vw;
  }
  #hero .d-demo__item {
    animation: infinity-scroll-left-sp 20s infinite linear 0.5s both;
    height: 35vw;
    background-size: 422vw;
  }

  @keyframes infinity-scroll-left-sp {
      from {
          background-position: 0 0;
      }
      to {
          background-position: -422vw 0;
      }
  }


  .scroll-animation {
    height: 20vw;
  }
  .scroll-animation-txt {
    font-size: 1rem;
  }
  .scroll-animation-icon {
    width: 1px;
    left: 14px;
    transform: translateX(-4px);
  }
}

#message {
  position: relative;
  padding: 0 0 82px 30px
}

#message h2 {
  color: #ebff00;
  margin-bottom: 15px;
}

#message h3 {
  position: absolute;
  top: 80px;
  right: 0;
}

#message img {
  margin-bottom: 56px;
  margin-left: -30px;
}

#message .txtwrap p {
  line-height: 1.75;
  letter-spacing: normal;
  font-weight: 700;
}

#message .txtwrap ul {
  margin: 13px 0;
}

#message .txtwrap ul li {
  font-weight: 900;
  font-size: 1.7rem;
  line-height: 2;
}

@media screen and (max-width: 500px) {
  #message {
    padding: 0 0 16vw 6vw;
  }
  #message h2 {
    font-size: 5vw;
    margin-bottom: 3vw;
  }
  #message h3 {
    top: 16vw;
  }
  #message img {
    margin-bottom: 11vw;
    margin-left: -6vw;
  }
  #message .txtwrap ul li {
    font-size: 3.2vw;
  }
  .vertical-lr span.vertical-box {
      line-height: 1.55;
      font-size: 2rem;
  }
}

#sec_program {
  padding-top: 40px;
  margin-top: -40px;
}

#program {
  padding-bottom: 140px;
}

#program .wrap {
  padding: 0 30px;
}

#program p {
  font-weight: bold;
}

#program .secttl {
  text-align: center;
}

#program .ttl {
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: 0;
    margin-top: 15px;
    margin-bottom: 76px;
}

#program .ttl span {
  border-bottom: 3px solid #3c3a39;  
  display: inline-block;
}

#program .item {
  position: relative;
}

#program .item + .item {
  margin-top: 94px;
}

#program .item .num {
  position: absolute;
  color: #ebff00;
  font-size: 6rem;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  top: -7px;
}

#program .item h3 {
  position: absolute;
  top: -20px;
}

#program .item img {
  position: relative;
  z-index: -1;
  margin-bottom: 22px;
}

#program .item:nth-of-type(odd) h3 {
  right: -34px;
}

#program .item:nth-of-type(even) h3 {
  left: -34px;
}

#program .item:nth-of-type(odd) .num {
  left:0;
}

#program .item:nth-of-type(even) .num {
  right:0;
}

#program .item p {
  line-height: 1.8;
  letter-spacing: normal;
}

@media screen and (max-width: 500px) {
  #program .secttl {
    font-size: 5.1vw;
  }
  #program .ttl {
    font-size: 4.2vw;
    letter-spacing: .12em;
    margin-bottom: 16vw;
  }
  #program .wrap {
    padding: 0 6vw;
  }
  #program .item .num {
    font-size: 4.5rem;
  }
  #program .item h3 {
    top: -5.5vw;
  }
  #program .item:nth-of-type(odd) h3 {
    right: -6vw;
  }
  #program .item:nth-of-type(even) h3 {
    left: -6vw;
  }
  #program .item + .item {
    margin-top: 18vw;
  }
  #program .cta .event-tokuten {
    margin-top: 14vw;
  }
  #program {
    padding-bottom: 30vw;
  }
}

#sec_voice {
  margin-top: -40px;
  display: block;
}

#voice .wrap {
  padding: 0 30px;
}

.intern-voice {
  background: url(../img/bg_voice.jpg) no-repeat center;
  background-size: cover;
  padding-top: 60px;
  padding-bottom: 70px;
}

#voice .secttl {
  margin-bottom: 17px;
}

#voice .ttl {
  font-size: 2.45rem;
  letter-spacing: 0.0;
  font-weight: bold;
  line-height: 2.3;
  display: inline;
}

#voice .ttl span {
  border-bottom: 3px solid #3c3a39;
  padding-bottom: 5px;
}

#voice .ttlwrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: .65rem;
}

#voice .item {
  display: flex;
  justify-content: space-between;
}

#voice .item .name {
  text-align: center;
  width: 90px;
  margin-top: .5em;
}

#voice .item .name h3 {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2;
}
#voice .item .name img {
  border-radius: 50%;
  width: 90px;
  height: 90px;
  border: 2px solid #ebff00;
}

#voice .item:nth-child(even) .name {
  order: 2;
}

#voice .item .name p {
  font-size: 1.28rem;
  letter-spacing: 0;
  line-height: 1.8;
}

#voice .item .txt {
  width: calc(100% - 125px);
  border: 2px solid #ebff00;
  padding: 1em 2em;
  position: relative;
}

#voice .item .txt::after {
  content: "";
  position: absolute;
  top: 0;
  width: 14px;
  height: 100%;
}

#voice .item:nth-of-type(odd) .txt{
  border-right: none;
}

#voice .item:nth-of-type(even) .txt{
  border-left: none;  
}

#voice .item:nth-of-type(odd) .txt:after {
  background: url(../img/bg_fukidashi_r.svg) no-repeat center top;
  right: -12px;
}

#voice .item:nth-of-type(even) .txt:after {
  background: url(../img/bg_fukidashi_l.svg) no-repeat center top;
  left: -12px;
}

#voice .item .txt p {
  font-weight: bold;
  line-height: 2;
  font-size: 1.5rem;
  letter-spacing: 0;
}

#voice .item + .item {
 margin-top: 34px; 
}

#voice .staff-voice {
  padding-top: 90px;
}

#voice {
  margin-bottom: 10rem;
}

#interview_slider {
  margin-top: -20px;
  margin-left: -30px;
  margin-right: -30px;
}

#interview_slider .slick-list {
  padding: 0 !important;
}

#interview_slider .item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 470px;
  padding: 0 15px;
}

#interview_slider .pager_num {
  color: #ebff00;
  font-weight: bold;
  font-family: "Poppins", sans-serif;  
  margin-left: auto;
  display: flex;
  align-items: flex-start;
  line-height: 1;
  position: relative;
  z-index: 1;
}

#interview_slider .pager_num .large{
  font-size: 5.5rem;
}

#interview_slider .pager_num .small {
  font-size: 2rem;
  margin-bottom: auto;
  margin-top: 0.2em;
  margin-right: .3em;
}

#interview_slider .item img {
  margin-bottom: 50px;
  margin-top: -22px;
}

#interview_slider .item h3 {
  background: #ebff00;
  color: #3c3a39;
  display: inline-block;
  font-size: 2.4rem;
  padding: 0 .7em;
  letter-spacing: 0.05em;
  margin-bottom: 14px;
  font-weight: bold;
}

#interview_slider .item p {
  line-height: 1.8;
  letter-spacing: normal;
  font-weight: bold;
}

#interview_slider .item p.tar {
  display: block;
  margin-left: auto;
  line-height: 1.5;
}

#sec_information {
  padding-top: 40px;
  margin-top: -40px;
}

#information .ttlwrap {
  text-align: center;
  margin-bottom: 34px;
}

#information .secttl {
  margin-right: 0;
  margin-bottom: 15px;
}

#information .ttl {
  font-size: 2.45rem;
  letter-spacing: 0.0;
  font-weight: bold;
  line-height: 2.4;
  display: inline;
}

#information .ttl span {
  border-bottom: 3px solid #3c3a39;
  padding-bottom: 5px;
}

#information .wrap {
  padding: 0 30px;
}

#information dl dt {
  font-weight: 900;
  font-size: 1.8rem;
  letter-spacing: normal;
}

#information dl dt::before {
  content: "";
  width: 15px;
  height: 15px;
  background-color: #ebff00;
  display: inline-block;
  margin-right: 0.5em;
}

#information dl dd {
  border-bottom: 2px solid #c6cbcf;
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  line-height: 2;
  padding-bottom: 1.7rem;
  margin-bottom: 1.5em;
  font-weight: 700;
}

#information dl dd a {
  text-decoration: underline;
}

#information {
  margin-bottom: 100px;
}

@media screen and (max-width: 500px) {
  #voice .wrap {
    padding: 0 6vw;
  }
  .intern-voice {
    padding-top: 12vw;
    padding-bottom: 14vw;
  }
  #voice .secttl {
    font-size: 5.2vw;
    margin-bottom: 1vw;
  }
  #voice .ttl {
    font-size: 5vw;
  }
  #voice .ttlwrap {
    margin-bottom: 9vw;
  }
  #voice .ttlwrap img {
    width: 31vw;
    margin-top: 3vw;
  }
  #voice .item .name {
    width: 20vw;
  }
  #voice .item .name img {
    width: 18vw;
    height: 18vw;
  }
  #voice .item .name h3 {
    font-size: 3vw;
  }
  #voice .item .name p {
    font-size: 2.6vw;
  }
  #voice .item .txt {
    width: calc(100% - 25vw);
  }
  #voice .item .txt p {
    font-size: 3vw;
  }
  #voice .item + .item {
    margin-top: 6vw;
  }
  #voice .staff-voice {
    padding-top: 18vw;
  }
  #voice .staff-voice .secttl {
    margin-bottom: 3vw;
  }
  #voice .staff-voice .ttlwrap {
    margin-bottom: 7vw;
  }
  #voice {
    margin-bottom: 0;
  }
  #interview_slider {
    margin-left: auto;
    margin-right: auto;
  }
  #interview_slider .item {
    width: 94vw;
    margin-top: 0 !important;
  }
  #interview_slider .pager_num .large {
    font-size: 11.2vw;
  }
  #interview_slider .pager_num .small {
    font-size: 4vw;
    margin-bottom: auto;
    margin-top: 0.3em;
    margin-right: 0em;
  }
  #interview_slider .item img {
    margin-bottom: 9vw;
    margin-top: -4vw;
  }
  #interview_slider .item h3 {
    font-size: 4.8vw;
  }
  ul.slick-dots {
    top: 68vw;
  }
  ul.slick-dots li {
    width: 10vw;
  }
  .slick-arrow {
    width: 8vw;
    top: 34.5vw;
  }
  .slick-prev.slick-arrow {
    left: -3vw;
  }
  .slick-next.slick-arrow {
    right: -3vw;    
  }
  #sec_information {
    margin-bottom: 18vw;
  }
}

#entry .wrap {
  padding: 0 30px;
  text-align: center;
  line-height: 1;
  margin-top: -10.4rem;
}

#entry .secttl {
  text-align: center;
  font-size: 13.2rem;
  line-height: 1;
  margin-top: -8.4rem;
  margin-right: 0;
  margin-bottom: 40px;
  text-align-last: left;
}

#entry .ttl {
  font-size: 2.45rem;
  letter-spacing: 0.0;
  font-weight: bold;
  line-height: 2.4;
  display: block;
  margin-bottom: 0;
  text-align: left;
}

#entry .ttl span {
  border-bottom: 3px solid #3c3a39;
  padding-bottom: 5px;
}

#entry .cta {
  margin-top: -3rem;
}

#entry .cta .event-tokuten {
  background: url(../img/event_tokuten2.png) no-repeat center top;
  background-size: 100%;
}

#entry .cta .btn_1day {
  margin-bottom: 55px;
  justify-content: flex-start;
}

#entry .btn_animation.arrow::after {
  content: "";
  display: block;
  background: url(../img/arrow_wh.svg) no-repeat center right;
  width: 38px;
  height: 15px;
  top: calc(50% - 7px);
  right: 26px;
  position: absolute;
  background-size: 100%;
} 

@media screen and (max-width: 500px) {
  #entry .btn_animation.arrow::after {
    width: 7vw;
    height: 2vw;
    right: 22px;
  }
}

#entry .btn_animation.arrow:hover::after {
  background: url(../img/arrow_wh.svg) no-repeat center right;
  width: 38px;
  height: 15px;
  top: calc(50% - 7px);
  right: 26px;
  background-size: 100%;
}

@media screen and (max-width: 500px) {
  #information {
    margin-bottom: 20vw;
  }
  #information .secttl {
    font-size: 5.2vw;
    margin-bottom: 2vw;
  }
  #information .wrap {
    padding: 0 7vw;
  }
  #information .ttl {
    font-size: 5vw;
  }
  #information .ttlwrap {
    margin-bottom: 7vw;
  }
  #information dl dt {
    font-size: 3.5vw;
    letter-spacing: .1em;
  }
  #information dl dt::before {
    width: 3vw;
    height: 3vw;
    margin-right: 0.2em;
  }
  #information dl dd {
    font-size: 2.9vw;
  }
  #entry .wrap {
    padding: 0 6vw;
    margin-top: -15vw;
  }
  #entry .secttl {
    margin-top: 0;
    margin-bottom: 7vw;
    height: 21vw;
    font-size: 0;
  }
  #entry .secttl img {
    
  }
  #entry .ttl {
    font-size: 5vw;
  }
  #entry .cta .event-tokuten {
    margin-top: 16vw;
  }
  #entry .cta .btn_1day {
    margin-bottom: 10vw;
  }
}

.contact {
  
}

.contact h3 {
  font-size: 2.45rem;
  letter-spacing: 0.0;
  font-weight: bold;
  line-height: 2.4;
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

.contact h3 span {
  border-bottom: 3px solid #3c3a39;
  padding-bottom: 5px;
}

.contact .tel {
  font-family: "Poppins", sans-serif;
  font-weight: 600;  
  text-align: center;
  font-weight: bold;
  font-size: 3.8rem;
  letter-spacing: 0;
}

.contact .tel span{
  font-size: 3rem;
}

@media screen and (min-width: 768px) {
  .contact .tel a {
    pointer-events: none;
  }
}

.contact .recruitment {
  text-align: center;
  letter-spacing: 0;
}

@media screen and (max-width: 500px) {
  .contact h3 {
    font-size: 5vw;
    margin-bottom: 0;
  }
  .contact .tel {
    font-size: 8vw;
  }
  .contact .tel span {
    font-size: 6vw;
  }
}


/* ---------------------------------------
  footer
-----------------------------------------*/

#footer-fixed {
  width: 100%;
  display: inline-block;
  position: fixed;
  left: 0;
  top: auto;
  bottom: 0;
  z-index: 1;
  opacity: 0; /* 初期状態では非表示 */
  transition: opacity 1s ease-in-out; /* 1秒かけてフェードイン */
}

#footer-fixed.fixed {
  opacity: 1;
  visibility: visible; 
}

.footer-fixed-banner {
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  background: #3c3a39;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) { 
  .footer-fixed-banner a {
    transition: .2s;
  }
  .footer-fixed-banner a:hover {
    opacity: .8;
  }
}

footer {
  background-color: #ebff00;
  text-align: center;
  padding: 64px 30px 96px;
}

footer .btn_1day a {
    background-color: #ebff00;
    color: #3c3a39;
    font-size: 2.4rem;
    font-weight: bold;
    text-align: left;
    padding: 0 36px;
    align-items: flex-start;
    letter-spacing: 0;
}

footer .btnwrap .btn_1day a:after {
    content: "";
    display: block;
    width: 38px;
    height: 13px;
    background: url(../img/arrow_bk.svg) no-repeat center right;
    top: calc(50% - 6px);
    right: 24px !important;
    position: absolute;
    background-size: 100% !important;
}

footer .company-logo {
  margin-bottom: 68px;
}

footer .btnwrap li + li {
  margin-top: 25px;
}

footer .btnwrap li a {
  height: 110px;
}

footer .snslink {
  justify-content: center;
  margin-top: 70px;
  margin-bottom: 63px;
}

@media screen and (min-width: 768px) {
  footer .snslink a:hover {
    opacity: .8;
  }
}

footer .copyrights {
  letter-spacing: .1em;
  font-size: 1.3rem;
}

@media screen and (max-width: 500px) {
  footer {
    padding: 12vw 7vw 20vw;
  }
  footer .company-logo {
    width: 41vw;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 14vw;
  }
  footer .btnwrap li a {
    height: 22vw;
    padding: 0 7vw;
    font-size: 4.5vw;
  }
  footer .snslink {
    margin-top: 13vw;
    margin-bottom: 13vw;
  }
  footer .snslink li {
    display: flex;
    align-items: center;
  }
  footer .snslink li + li {
    margin-left: 8vw;
  }
  footer .snslink li.youtube {
    width: 7vw;
  }
  footer .snslink li.tiktok {
    width: 6vw;
  }
  footer .snslink li.instagram {
    width: 7vw;
    align-items: center;
    display: flex;
  }
  footer .copyrights {
    font-size: 2.8vw;
    letter-spacing: 0.05em;
    font-weight: bold;
  }
  footer .btnwrap .btn_1day a:after {
    width: 8vw;
    right: 3vw !important;
    height: 2vw;
  }
}