@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 .tokuten {
  display: block;
  height: 0;
  padding-top: 38%;
  margin: 0 30px;
  overflow: hidden;
  background: url(../img/event_tokuten_01.png) no-repeat center top;
  background-size: contain;
  position: relative;
  margin-bottom: 17px;
}
.event-tokuten .btn-gift a {
  display: block;
  height: 0;
  padding-top: 33%;
  margin: 0 30px;
  overflow: hidden;
  background: url(../img/event_tokuten_02.png) no-repeat center top;
  background-size: contain;
  transition: .4s ease;
}
.event-tokuten .btn-gift a:hover {
  opacity: .6;
}
.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: 32.5%;
  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: 59.7%;
  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 {
  margin-bottom: 20px;
}

.cta .event-tokuten .tokuten {
  background: url(../img/event_tokuten2.png) no-repeat center top;
  background-size: 100%;
  padding-top: 31%;
  margin-top: 82px;
  overflow: hidden;
  height: 0;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 2px;
}

.cta .event-tokuten .btn-gift a {
  margin-left: 0;
  margin-right: 0;
  padding-top: 37%;
}

.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;
  }
  .cta .event-tokuten .tokuten {
    margin-top: 16vw;
  }
}

/* ---------------------------------------
  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 {
  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;
    top: 0;
    left: inherit;
  }
  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: 3.7rem;
}
#hero h2 {
  margin-left: 30px;
  margin-right: 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 130px 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 p + p {
  margin-top: .75em;
}

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

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

@media screen and (min-width: 501px) {
  #message .txtwrap p {
    font-size: 1.6rem;
  }
}

@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: 100px;
}

#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: -25px;
}

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

#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 (min-width: 501px) {
  #program .item p {
    font-size: 1.5rem;
  }
}

@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: 19vw;
  }
}

#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;
  width: 80rem;
}

#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: 3.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 .staff-voice .ttlwrap {
  margin-bottom: 0;
}

#voice {
  margin-bottom: 7rem;
}

#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;
}

@media screen and (min-width: 501px) {
  #interview_slider .item p {
    font-size: 1.6rem;
  } 
}

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

#sec_information {
  padding-top: 30px;
  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: 800;
  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;
  line-height: 1.9;
  padding-bottom: 1.7rem;
  margin-bottom: 1.5em;
  font-weight: 700;
}

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

#information {
  margin-bottom: 90px;
}

#information .date {
  text-align: center;
  margin-bottom: 34px;
}
#information .date h3 {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0;
  margin-bottom: 1.2rem;
  color: #ebff00;
  border: 2px solid #ebff00;
  font-weight: bold;
}
#information .date p {
  font-size: 2.6rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.3;
}
#information .date p small {
  font-size: 1.7rem;
}

@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: 18vw;
  }
  #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: 0;
  }
  #information .date h3 {
    font-size: 5vw;
  }
  #information .date p {
    font-size: 5vw;
  }
  #information .date {
    margin-bottom: 6vw;
  }
}

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

#sec_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;
}

#sec_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;
}

#sec_entry .cta {
  margin-top: -1rem;
}

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

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

#sec_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%;
} 

#sec_entry .cta .event-tokuten .tokuten {
  margin-top: 70px;
}

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

#sec_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: 16vw;
  }
  #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: 3.2vw;
  }
  #sec_entry .wrap {
    padding: 0 6vw;
    margin-top: -15vw;
  }
  #sec_entry .secttl {
    margin-top: 0;
    margin-bottom: 7vw;
    height: 21vw;
    font-size: 0;
  }
  #sec_entry .secttl img {
    
  }
  #sec_entry .ttl {
    font-size: 5vw;
  }
  #sec_entry .cta .event-tokuten {
    margin-top: 16vw;
  }
  #sec_entry .cta .btn_1day {
    margin-bottom: 10vw;
  }
  #information .date p small {
    font-size: 3vw;
  }
}

.contact {
  
}

.contact h3 {
  font-size: 2.45rem;
  letter-spacing: 0.0;
  font-weight: 800;
  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;
  font-size: 1.5rem;
  font-weight: 800;
}

@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;
  }
  .contact .recruitment {
    font-size: 3.2vw;
  }
}


/* ---------------------------------------
  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;
  }
}

.pointer-none {
  pointer-events: none;
}

/* ---------------------------------------
  contactform
-----------------------------------------*/

#sec_entry .form {
  margin-top: 4rem;
}
#sec_entry .form .table .ttl, #sec_entry .form .table .txt {
  font-size: 1.6rem;
  text-align: left;
  font-weight: 800;
  letter-spacing: 0;  
}
#sec_entry .form .table .ttl {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 2px solid #c6cbcf;
  font-weight: 900;
}
#sec_entry .form .table .txt {
  line-height: 1.6;
}
#sec_entry .form .table .txt small {
  font-weight: normal;
}
#sec_entry .form .table .txt._graduation-year .checklist {
  display: flex;
  flex-direction: column;
}
#sec_entry .form .table .txt._graduation-year .wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}
#sec_entry .form .table .txt._graduation-year div[data-id="group-925"] {
  padding-top: .5em;  
}
#sec_entry .form .table .txt ._reason {
  margin-bottom: 1rem;
}
#sec_entry .form .table .ttl:first-child, #sec_entry .form .table .ttl._none-border {
  padding-top: 0;
  border-top: none;
}
#sec_entry .form .table .txt:last-child {
  padding-bottom: 1em;
  border-bottom: 2px solid #c6cbcf;
}
#sec_entry .form .table .grid .checklist {
  display: flex;
  flex-direction: column;
}
#sec_entry .form .table .grid._name {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
#sec_entry .form .table .grid._name .item {
  display: flex;
  align-items: center;
}
#sec_entry .form .table .grid._name .item span {
  flex: 0 0 auto;
  width: 2.5em;
}
#sec_entry .form .table .grid._name .wpcf7-form-control-wrap {
  width: calc(100% - 2.5em) !important;
}
#sec_entry .form .table .grid._birth {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
}
#sec_entry .form .table .grid._birth .item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
#sec_entry .form .table .grid._birth .item span {
  flex: 0 0 auto;
  width: 1em;
}
#sec_entry .form .table .grid._birth .item .wpcf7-form-control-wrap {
  width: calc(100% - 1.5em);
}
#sec_entry .form .table .grid._jobs .checklist {
  display: flex;
  flex-direction: column;
}
#sec_entry .form .table ._type .checklist {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
#sec_entry .form .work-status {
  display: flex;
  flex-direction: column;
  margin-top: 0.5em;
}
#sec_entry .form .required {
  color: #ebff00;
}
#sec_entry .form *::placeholder {
  color: #ccc;
}
#sec_entry .form label {
  display: inline-block;
  margin: 0.3em 0;
}
#sec_entry .form input + label {
  margin-top: 1em;
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form textarea,
#sec_entry .form select {
  font-size: 1.8rem;
  padding: 0 1em;
  background: #f7f7f7;
  color: #261d1d;
}
@media screen and (max-width: 767px) {
  #sec_entry .form input[type=text],
  #sec_entry .form input[type=email],
  #sec_entry .form input[type=tel],
  #sec_entry .form textarea,
  #sec_entry .form select {
    padding: 0 0.5em;
  }
}
#sec_entry .form textarea {
  line-height: 1.8em;
  padding: 1em;
  height: 10em;
}
@media screen and (max-width: 767px) {
  #sec_entry .form textarea {
    padding: 0.5em;
  }
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form select {
  line-height: 4em;
  height: 4em;
}
#sec_entry .form input[type=text],
#sec_entry .form input[type=email],
#sec_entry .form input[type=tel],
#sec_entry .form textarea {
  width: 100%;
}
#sec_entry .form select {
  background: #f7f7f7 url("../img/ico_select.svg") no-repeat right 0.5em center/auto 20%;
  padding-right: 2.5em;
  width: 100%;
}
#sec_entry .form input[type=radio],
#sec_entry .form input[type=checkbox] {
  display: block;
  width: 1px;
  height: 1px;
  overflow: hidden;
  visibility: hidden;
}
#sec_entry .form input[type=radio] + span,
#sec_entry .form input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 1.8em;
}
#sec_entry .form input[type=radio] + span::before, #sec_entry .form input[type=radio] + span::after,
#sec_entry .form input[type=checkbox] + span::before,
#sec_entry .form input[type=checkbox] + span::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.4em;
  height: 1.4em;
  border-radius: 100%;
  border: 1px solid #ccc;
  background: #f7f7f7;
  margin-right: 0.3em;
}
#sec_entry .form input[type=radio] + span::after,
#sec_entry .form input[type=checkbox] + span::after {
  width: 0.7em;
  height: 0.7em;
  margin: 0.35em 0 0 0.35em;
  background: transparent;
  border: none;
}
#sec_entry .form input[type=radio]:checked + span::after,
#sec_entry .form input[type=checkbox]:checked + span::after {
  background: #ebff00;
}

#sec_entry .form input[type=checkbox] + span::before {
  border-radius: 0;
}
#sec_entry .form input[type=checkbox]:checked + span::before {
  background: #ebff00;
}
#sec_entry .form input[type=checkbox]:checked + span::after {
  width: .85em;
  height: 0.55em;
  margin: 0.2em 0 0 0.2em;
  border-bottom: 3px solid #3c3a39;
  border-left: 3px solid #3c3a39;
  transform: translate(1px, 1px) rotate(-45deg);
  border-radius: 0;
  background: transparent;
}
#sec_entry .form input[type=radio]:checked + span::before {
  background: #ebff00;
}
#sec_entry .form input[type=radio]:checked + span::after {
  background: #3c3a39;  
}
#sec_entry .form .privacy {
  text-align: center;
  font-size: 1.8rem;
  margin-top: 6rem;
  font-weight: bold;
  letter-spacing: 0;
  line-height: 1.5;
}
#sec_entry .form .privacy a {
  color: #d3d7da;
  text-decoration: underline;
  font-weight: bold;
}
#sec_entry .form .btn_wrap {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 6rem;
}
#sec_entry .form .btn_wrap .btn {
  position: relative;
  background-color: #ebff00;
  overflow: hidden;
  height: 90px;
}
#sec_entry .form .btn_wrap .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3a39;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
}
#sec_entry .form .btn_wrap .btn.btn_small::before {
  right: 0;
  transform: translateX(100%);
}
#sec_entry .form .btn_wrap .btn::after {
  content: "";
  display: block;
  width: 39px;
  height: 13px;
  background: url(../img/arrow_bk.svg) no-repeat right center;
  position: absolute;
  right: 22px;
  top: calc(50% - 5px);
  background-size: 100%;
}
#sec_entry .form .btn_wrap .btn._back::after {
  left: 18px;
  right: 0;
  top: calc(50% - 7px);
  transform: rotate(180deg);
  width: 26px;
}
#sec_entry .form .btn_wrap .btn:hover::after {
  background: url(../img/arrow_wh.svg) no-repeat right center;
  background-size: 100%;
}
#sec_entry .form .btn_wrap .btn:hover {
  color: #fff;
}
#sec_entry .form .btn_wrap .btn:hover::before {
    transform: translateX(0);
}
#sec_entry .form .btn_wrap .btn._submit input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  color: #3c3a39;
  font-size: 2.4rem;
  cursor: pointer;
  font-weight: bold;
  transition: transform 0.3s ease;
}
#sec_entry .form .btn_wrap .btn:hover input {
  color: #fff;
}
#sec_entry .form .btn_wrap .btn._back {
  background: none;
  height: 63px;
  width: 58%;
  margin: 0 auto;
}
#sec_entry .form .attention {
  margin-top: 6rem;
  margin-bottom: 6rem;
}
#sec_entry .form .attention li {
  line-height: 1.4;
  text-align: left;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0;
}
#sec_entry .form .attention li::before {
  content: "※";
}
#sec_entry .thanks .ttl {
  color: #ebff00;
  font-size: 3rem;
  line-height: 1.7;
  font-weight: 600;
  text-align: center;
}
#sec_entry .thanks .txt {
  font-size: 1.8rem;
  margin-top: 1em;
  text-align: left;
}
#sec_entry .thanks .small {
  font-size: 1.4rem;
  line-height: 1.4;
  margin-top: 1em;
  text-align: left;
  letter-spacing: 0;
  font-weight: 600;
}
#sec_entry .wpcf7-list-item {
  margin-left: 0 !important;
  text-align: left;
}
#sec_entry .wpcf7-not-valid-tip {
  width: 100% !important;
}
#sec_entry .wpcf7-response-output {
  font-size: 1.6rem;
  line-height: 1.8;
  padding: .5em;
  margin-left: 0;
  margin-right: 0;
}
#sec_entry .wpcf7-form.validating .wpcf7-response-output {
  display: none;
}
#page_thanks #sec_entry .form .btn_wrap .btn a {
  background: none;
  border: none;
  width: 100%;
  color: #3c3a39;
  font-size: 1.5rem;
}
#page_thanks #sec_entry .form .btn_wrap .btn:hover a {
  color: #fff;
}
#page_thanks #sec_entry .form .btn_wrap .btn::after {
  width: 22px;
}
#sec_entry .form .wpcf7-spinner {
  left: calc(50% - 12px);
  top: 68%;
  position: absolute;
  margin: 0;
}
@media screen and (max-width: 500px) {
  #sec_entry .form input[type=text],
  #sec_entry .form input[type=email],
  #sec_entry .form input[type=tel],
  #sec_entry .form textarea,
  #sec_entry .form select {
    font-size: 16px;
  }
  #sec_entry .form .privacy {
    font-size: 1.4rem;
    margin-top: 5vw;
    line-height: 2;
  }
  #sec_entry .form .privacy + div {
    margin-top: 7vw;
  }
  #sec_entry .form .btn_wrap .btn._submit input {
    font-size: 2rem;
  }
  #sec_entry .form .btn_wrap .btn {
    height: 18vw;
  }
  #sec_entry .form .attention li {
    font-size: 2.8vw;
  }
  #sec_entry .form .attention {
    margin-top: 9vw;
    margin-bottom: 9vw;
  }
}

/* ------------------------------
    POPUP
------------------------------ */
#popup {
  display: none; /* 初期状態では非表示 */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* 背景を少し暗くする */
  z-index: 1000;
  overflow-y: auto; /* ポップアップの内容が画面に収まらない場合にスクロール可能にする */
  justify-content: center;
  align-items: center;
}
#popup.privacy-policy-recruitment {
  display: block;
  position: static;
  background-color: #fff;
}

/* ポップアップが表示された時のスタイル */
#popup.is-open {
  display: flex; /* ポップアップを表示 */
}

/* ポップアップのコンテンツ部分 */
#popup > div {
  max-width: 640px;
  background: white;
  padding: 30px;
  border-radius: 5px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
  margin: 20px;
}

/* 閉じるボタンのスタイル */
#btn-close {
  cursor: pointer;
  position: absolute;
  top: -15px;
  right: -12px;
  border: none;
  background: none;
  width: 30px;
  height: 0;
  padding-top: 38px;
  overflow: hidden;
  background: url(../img/ico_close.svg) no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 960px) {
  #btn-close {
    width: 38px;
    height: 38px;
    top: -16px;
    right: -16px;
  }
}

#popup h3 {
  font-size: 2.7rem;
  color: #3c3a39;
  padding: 1.1em 6vw;
  border-bottom: 1px solid #ccc;
  margin-bottom: 1.1em;
  font-weight: bold;
  letter-spacing: -0.05em;
}
@media screen and (min-width: 960px) {
  #popup h3 {
    padding: 1em 4rem 1em;
    font-size: 2.2rem;
  }
}
#popup h4 {
  font-size: 2rem;
  letter-spacing: 0;
}
#popup p {
  line-height: 1.4;
  font-size: 2rem;
  letter-spacing: 0;
}
@media screen and (min-width: 960px) {
  #popup p {
    line-height: 1.6;
    font-size: 1.4rem;
  }
}
#popup p + h4 {
  margin-top: 1em;
}
#popup .simplebar-track,
#popup .simplebar-scrollbar {
  border-radius: 3px;
}
#popup .simplebar-track {
  background: #e9e8e8;
  width: 3px;
}
#popup .simplebar-scrollbar {
  background: #ccc;
  width: 3px;
}
#popup .close.btn_small {
  margin-top: 4rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 960px) {
  #popup .close.btn_small {
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
#popup .inner {
  margin: 0 auto;
  padding: 0;
  width: 87vw;
  position: absolute;
  top: 19vw;
  text-align: justify;
}
@media screen and (min-width: 960px) {
  #popup .inner {
    max-height: 76vh;
    height: auto;
    top: auto;
  }
}
#popup .txt {
  max-height: 60vw;
  overflow-y: auto;
  margin-left: 6vw;
  margin-right: 2.4vw;
  padding-right: 3em;
}
@media screen and (min-width: 960px) {
  #popup .txt {
    margin-bottom: 3rem;
    max-height: 36vh;
    margin-left: 4rem;
    margin-right: 4rem;
  }
}

#popup.privacy-policy-recruitment .policy-txt {
  box-shadow: none;
  padding: 0;
  margin-left: 4rem;
  margin-right: 4rem;
}
#popup.privacy-policy-recruitment h3 {
  font-size: 3.6rem;
  padding-left: 4rem;
  padding-right: 4rem;
  text-align: center;
}
#popup.privacy-policy-recruitment h4 {
  font-size: 3.6rem;
  margin-bottom: 0.5em;
}
#popup.privacy-policy-recruitment p {
  line-height: 1.6;
  font-size: 2.8rem;
}
#popup.privacy-policy-recruitment p + h4 {
  margin-top: 1.4em;
}

@media screen and (max-width: 500px) {
  #popup h3 {
    font-size: 1.6rem;
  }
  #popup h4 {
    font-size: 1.6rem;
    line-height: 1.4;
  }
  #popup p {
    font-size: 1.12rem;
  }
  #popup .btn_small button {
    font-size: 1.6rem;
  }
}

.page-pprecruitment h1.logo {
  width: 120px;
  margin: 40px auto 20px;
}
@media screen and (max-width: 767px) {
  .page-pprecruitment h1.logo {
    width: 26vw;
    margin: 4vw auto 0;
  }
}
.page-pprecruitment main {
  padding-top: 0;
}

.btn_small {
  text-align: center;
}
.btn_small a, .btn_small p, .btn_small button, .btn_small .btn_prev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #3c3a39;
  color: #3c3a39;
  font-weight: bold;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
}

.btn_small._back input {
  color: #3c3a39;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  font-size: 1.6rem;
  width: 100%;
  height: 100%;
  line-height: 2.2;
}
.btn_small._back .btn_prev {
  cursor: pointer;
}
.btn_small._back a::before, .btn_small._back p::before, .btn_small._back button::before, .btn_small._back .btn_prev::before {
  content: "";
  background: url("../img/ico_arrow_o.svg") no-repeat center/contain;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
  width: 0.5em;
  height: 0.5em;
  scale: -1 1;
}
.btn_small._back .btn_prev:hover input {
  color: #fff;
}

#popup .btn_small button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 2px solid #a8afb5;
    color: #3c3a39;
    font-size: 1.8rem;
    height: 4.4rem;
    padding: 0 3em;
    border-radius: 100px;
    position: relative;
    transition: border 0.3s ease;
    width: auto;
}
html.pp-recruit {
  background: none;
}
body.no-scroll {
  overflow: hidden;
}
#page_confirm,
#page_thanks {
  margin-top: -17px;
}
#page_confirm #sec_entry .secttl,
#page_thanks #sec_entry .secttl {
  width: 54%;
  margin: 0 auto 24px;
  font-size: inherit;
  font-weight: bold;
}
#page_thanks #sec_entry .secttl {
  width: 100%;
}
#page_confirm #sec_entry .wrap,
#page_thanks #sec_entry .wrap {
  margin-top: -3.5rem;
}
#page_confirm #sec_entry .ttl_sec h2,
#page_thanks #sec_entry .ttl_sec h2 {
  font-weight: 800;
  font-size: 1.6rem;
}
#page_thanks #sec_entry .form {
  margin-top: 5rem;
  margin-bottom: 5em;
}
#page_thanks #sec_entry .thanks .txt {
  margin-top: 4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0;
}
#page_thanks #sec_entry .form .btn_wrap .btn {
  height: auto;
}

@media screen and (max-width: 500px) {
  #page_thanks #sec_entry .secttl {
    height: 10vw;
  }
  #page_thanks #sec_entry .form {
    margin-top: 7vw;
  }
  #page_thanks #sec_entry .thanks .txt {
    font-size: 3.6vw;
  }
  #sec_entry .thanks .small {
    font-size: 2.8vw;
  }
  #sec_entry .form .btn_wrap {
    margin-top: 14vw;
  }
  #sec_entry .thanks .ttl {
    font-size: 4.8vw;
  }
  #page_thanks #sec_entry .form .btn_wrap .btn a {
    height: 100%;
    font-size: 3.2vw;
    letter-spacing: 0;
  }
  #page_thanks #sec_entry .form .btn_wrap .btn::after {
    width: 19px;
    right: 14px;
  }
  #page_thanks #sec_entry .form .btn_wrap .btn {
    height: 13vw;
  }
  #page_confirm #sec_entry .secttl {
    height: 11vw;
  }
  #page_confirm #sec_entry .wrap {
    margin-top: -3.2rem;
  }
  #page_confirm #sec_entry .form .btn_wrap .btn {
    height: 18vw;
  }
  #page_confirm #sec_entry .form .btn_wrap .btn._back {
    height: 12vw;
    font-size: 3vw;
  }
  #page_confirm #sec_entry .form .btn_wrap .btn._submit input {
    font-size: 4.8vw;
    line-height: 2;
  }
  #page_confirm #sec_entry .form .btn_wrap .btn::after {
    width: 28px;
    height: 10px; 
  }
  #page_confirm #sec_entry .form .btn_wrap .btn._back::after {
    width: 18px;
    height: 8px;
    left: 14px;
    top: calc(50% - 5px);
  }
  #page_confirm #sec_entry .form .btn_wrap .btn._back input {
    font-size: 3.3vw;
  }
  #page_confirm #sec_entry .form .btn_wrap {
    gap: 2.4rem;
  }
  #popup .close.btn_small {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
}