/*
Theme Name:Golden Hour Group
*/

*{
  font-family: "Montserrat", sans-serif;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-style: normal;
  margin: 0;
  padding: 0;
}

body {
  opacity: 0;
  transition: opacity 0.4s ease;
  background-color: #575757;
}


html {
  -webkit-text-size-adjust: 100%;
}


html.wf-active body {
  opacity: 1;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}


/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 480px) {
.pc { display: none !important; }
.sp { display: block !important; }
}

p{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #333333;
  font-weight: 400;
}

h1{color: #212125;}
h2{color: #212125;}
h3{
  color: #212125;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}
h4{color: #212125;}
h5{color: #212125;}
h6{color: #212125;}
span{color: #212125;}


.loader {
  position: fixed;
  inset: 0;
  background: #333333;       
  z-index: 1000;               
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.8s ease;
}

.loader__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 6% 10% 10%;
  box-sizing: border-box;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.loader__inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 12% 8% 10%;
  box-sizing: border-box;
}
}

.loader__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.loader__logo img {
  height: 30px;
}

.loader__circle {
  width: 35px;
  height: 35px;
  position: relative;
}

.loader__circle::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid #ffffffb0;
  border-top-color: transparent;      
  animation: loader-spin 1s linear infinite;
}

.loader__bottom {
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 80px;
}

.loader__line-text{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.loader__text{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 100;
  color: #ffffff;
  letter-spacing: 1px;
}

.loader__line {
  position: relative;
  flex: 1;
  height: 1px;
  background: #dddddd;
  overflow: hidden;
}

.loader__line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background: #595959;
  transform-origin: left center;
  transform: scaleX(0);
}


.loader__percent {
  font-family: "Barlow Semi Condensed", sans-serif;
  font-size: 50px;
  color: #ffffff;
  font-weight: 300;
}

.loader__percent .percent-symbol {
  font-size: 16px;     
  font-weight: 300;
  margin-left: 4px;
}

.loader__percent,
.loader__percent .num,
.loader__percent .percent-symbol {
  color: #fff !important;
}

.loader__percent p{
  font-size: 14px;
}

.loader.is-hidden {
  opacity: 0;
  pointer-events: none;
}

@keyframes loader-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

main{
  position: relative;
}

.header {
  position: fixed;
  top: 0;
  width: 80%;
  background: transparent;
  z-index: 1000;
  transition: all 0.3s ease;
  margin: 6% 10% 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .header {
    position: fixed;
    top: 0;
    width: 84%;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
    margin: 12% 8% 0;
  }
}

.header.is-show {
  transform: translateY(0);
  opacity: 1;
}


.header.is-hide {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none; 
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container{
  z-index: 1001;
}

.logo {
  height: 30px;
  transition: all 0.3s ease;
}

.header.scrolled .hamburger-overlay span {
  background: #ffffff;
}

.hamburger-overlay {
  z-index: 1000;
  width: 35px;
  height: 35px;
  border: solid 1px #ffffff7a;
  background: transparent;
  cursor: pointer;
  position: relative;
  border-radius: 100px;

  opacity: 1;
  transform: scale(1);
  transform-origin: center center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* 初期状態：小さくて見えない */
.hamburger-overlay.hamburger-intro {
  opacity: 0;
  transform: scale(0);
}

.hamburger-overlay__line {
  position: absolute;
  width: 18px;
  height: 1px;
  background-color: #ffffff;
  transition: all .6s;
}

.hamburger-overlay__line:nth-of-type(1) { 
  top: 13px;
  right: 21%;
 }
.hamburger-overlay__line:nth-of-type(2) { display: none; }
.hamburger-overlay__line:nth-of-type(3) { 
  top: 18px; 
  right: 21%;
}

.hamburger-overlay.active .hamburger-overlay__line {
  background-color: #ffffff;
}



.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(1) {
  transform: translateY(3px) rotate(-12deg);
  background-color: #ffffff;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(2) {
  opacity: 0;
}

.hamburger-overlay.active .hamburger-overlay__line:nth-of-type(3) {
  transform: translateY(-2px) rotate(14deg);
  background-color: #ffffff;
}

.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  inset: 0;  
  width: 100%;  
  height: 100vh;
  background-color: #333333;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.nav-overlay {
  position: fixed;
  top: 0;
  right: 0;
  inset: 0;  
  width: 100%;  
  height: 100dvh;
  background-color: #333333;
  visibility: hidden;
  opacity: 0;
  transition: all .6s;
  z-index: 900;
}
}

.nav-overlay.active {
  visibility: visible;
  opacity: 1;
}

.header.menu-open {
  transform: none !important;
  opacity: 1 !important;
}

.nav-overlay__manu_list{
  position: absolute;
  bottom: 10%;
  right: 15%;
}

.nav-overlay__manu_list li{
  list-style: none;
  margin-top: 8px;
}

.nav-overlay__manu_list li a{
  font-size: 45px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .nav-overlay__manu_list li a{
  font-size: 35px;
  font-family: "Montserrat", sans-serif;
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 2px;
}

}


.nav-overlay__manu_list li a:hover{
  opacity: 0.5;
  transition: .5s;
}

.nav-overlay.active .nav-overlay__item {
  opacity: 1;
}

.nav-overlay__manu_list li {
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__manu_list li {
  opacity: 1;
}


.nav-overlay.active .nav-overlay__manu_list li:nth-child(1) { transition-delay: 0.1s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(2) { transition-delay: 0.2s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(3) { transition-delay: 0.3s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(4) { transition-delay: 0.4s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(5) { transition-delay: 0.5s; }
.nav-overlay.active .nav-overlay__manu_list li:nth-child(6) { transition-delay: 0.6s; }


.nav-overlay__list_contact{
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

/* activeになったら表示される */
.nav-overlay.active .nav-overlay__list_contact {
  opacity: 1;
}

.fv{
  position: relative;
  background-color: #EAEAEA;
}

.fv video{
  width: 100vw;
  height: 100dvh;
  object-fit: cover;
}
.fv-message{
  position: absolute;
  right: 15%;
  top: 50%;
  text-align: right;
  transition: transform 0.4s ease, opacity 0.4s ease;

  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.fv-message{
  position: absolute;
  right: 10%;
  top: 50%;
  text-align: right;
  transition: transform 0.4s ease, opacity 0.4s ease;

  opacity: 0;
  transform: translateY(25px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 0.61, 0.36, 1);
}
}

.fv-message.fv-show,
.fv-message.is-show {
  opacity: 1;
  transform: translateY(0);
}

.fv-message.is-hide {
  opacity: 0;
  transform: translateY(-20px);
  pointer-events: none;
}

.fv-message.is-show {
  opacity: 1;
}

.fv-message h5{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: 600;
  display: flex;
  align-items: center;
  color: #ffffff;
  letter-spacing: 1px;
  margin-right: 4px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.fv-message h5{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 600;
  display: grid;
  align-items: center;
  color: #ffffff;
  letter-spacing: 1px;
  margin-right: 4px;
  line-height: 35px;
}
}

.fv-message h5 span{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 26px;
  font-weight: 100;
  margin-left: 14px;
  color: #ffffffbc;
  letter-spacing: 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.fv-message h5 span{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 23px;
  font-weight: 100;
  margin-left: 14px;
  color: #ffffffbc;
  letter-spacing: 0;
}
}

.fv-message h4{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffffbd;
  font-weight: 400;
  font-size: 13px;
  margin-top: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.fv-message h4{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  color: #ffffffbd;
  font-weight: 400;
  font-size: 12px;
}
}

.scrool{
  position: absolute;
  left: 20%;
  bottom: 0%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.scrool{
  position: absolute;
  left: 24%;
  bottom: 0%;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
}

.scrool.is-show {
  opacity: 1;
}

/* ▼ 非表示状態（下スクロール時） */
.scrool.is-hide {
  opacity: 0;
  pointer-events: none;
}


.scrool p{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 100;
  color: #ffffff;
  letter-spacing: 1px;
}

.scrool .line{
  height: 120px;
  width: 1px;
  background-color: #ffffff2f;
  margin-top: 16px;
}

.top-section1{
  padding: 104px 6% 80px;
  background: #EAEAEA;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section1{
  padding: 80px 8% 80px;
  background: #EAEAEA;
}
}


.top-section1-title h5{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 600;
  margin-left: 10%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section1-title h5{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  margin-left: 0;
  margin-top: 24px;
}
}

.h5-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ビューポートに入ったら発動 */
.h5-animate.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.03); /* ちょい “ぽこっ” */
}

.top-section1-content{
  margin-left: 50%;
  margin-top: 16px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section1-content{
  margin-left: 0;
  margin-top: 32px;
}
}

.top-section1-content h4{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
}

.top-section1-link{
  margin-left: 16%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section1-link{
  margin-left: 0;
  margin-top: 32px;
}
}

.top-section1-link a{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #212125;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.top-section1-link a span{
  width: 24px;
  height: 6px;
  border: solid 1px #212125;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section1-link a span{
  width: 20px;
  height: 8px;
  border: solid 1px #212125;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}
}

.top-section1-link a:hover span{
  background: #212125;
}

.top-section1-link a:hover{
  color: #212125bd;
}

.top-section2{
  padding: 80px 6%;
  background: #EAEAEA;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2{
  padding: 40px 8%;
  background: #EAEAEA;
}
}

.top-section2-list{
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content:flex-start;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2-list{
  margin: 24px 16% 0;
  display: block;
  flex-wrap: wrap;
  justify-content:space-between;
}
}

.top-section2-list li {
  list-style: none;
  width: 26%;
  align-items: center;
  box-sizing: border-box;
  text-align: left;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-right: 1%;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;

  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); /* ちょい“のるっ”と */
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .top-section2-list li {
    list-style: none;
    width: 100%;
    align-items: center;
    box-sizing: border-box;
    text-align: left;
    word-wrap: break-word;
    overflow-wrap: break-word;
    margin-right: 0;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
    margin-bottom: 8%;

    opacity: 0;
    transform: translateY(40px) scale(0.96);
    transition:
      opacity 0.7s ease,
      transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1); /* ちょい“のるっ”と */
  }
}

.top-section2-list li.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.03);
}

.top-section2-list li:nth-child(1) {
  transition-delay: 0.0s;
}
.top-section2-list li:nth-child(2) {
  transition-delay: 0.05s;
}
.top-section2-list li:nth-child(3) {
  transition-delay: 0.1s;
}
.top-section2-list li:nth-child(4) {
  transition-delay: 0.15s;
}

.top-section2-list li img{
  width: 100%;
  transition: transform 0.5s ease;
  transform-origin: center center;
  border-radius: 5px;
}


.top-section2-list li .img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 98%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2-list li .img-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 5px;
  height: 98%;
}
}

.top-section2-list li:hover img {
  transform: scale(1.08);
}

.top-section2-list li .img-wrap::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
  pointer-events: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section2-list li .img-wrap::after {
  content: "";
  position: absolute;
  bottom: 2%;
  left: 0;
  width: 100%;
  height: 50%;
  border-radius: 5px;
  background: linear-gradient(to top, rgba(0,0,0,0.4), rgba(0,0,0,0));
  pointer-events: none;
}
}

.top-section2-link {
  position: absolute;
  bottom: 12%;
  left: 8%;
  margin-right: 8%;
  z-index: 2;
}

.top-section2-link h2 {
  margin: 0;
  padding: 0;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 300;
  font-size: 10px;
  color: #fff;
}

.top-section2-link h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 200;
  color: #fff;
  letter-spacing: 1px;
  margin-top: 6px;
  line-height: 20px;
}

.top-section3{
  padding: 80px 6%;
  background: #EAEAEA;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3{
  padding: 40px 8%;
  background: #EAEAEA;
}
}

.top-section3-list{
  margin: 40px 0 0 20%;
  border-top: solid 1px #21212518;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-list{
  margin: 40px 0 0 16%;
  border-top: solid 1px #21212518;
  list-style: none;
}
}

.top-section3-list li {
  position: relative;
  transition: transform 0.5s ease;
}

.top-section3-list li a{
  display: flex;
  align-items: flex-end;
  padding-bottom: 24px;
  padding-top: 24px;
  border-bottom: solid 1px #21212518;
  text-decoration: none;
}

.top-section3-list-img{
  width: 15%;
  margin-right: 5%;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: block;
  overflow: hidden;
  transition: transform 0.6s ease;
  transform-origin: center center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-list-img{
  width: 25%;
  margin-right: 8%;
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
    display: block;
  overflow: hidden;
  transition: transform 0.6s ease;
  transform-origin: center center;
}
}

.top-section3-list-img.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.03);
}

.top-section3-list-img img{
  width: 100%;
	height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
  transition: transform 0.6s ease;
}

.top-section3-list li:hover .top-section3-list-img {
  transform: scale(1.2);  
  border-radius: 10px;
}

.top-section3-list li:hover .top-section3-list-img img {
  transform: scale(1.15);
}


.top-section3-list-title{
  display: flex;
  align-items:flex-end;
  margin-bottom: 24px;
  width: 80%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-list-title{
  display: block;
  align-items:flex-end;
  margin-bottom: 0;
  width: 67%;
}
}

.top-section3-list-title .day{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
}

.top-section3-list-title .titile{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 11px;
  margin-left: 40px;
  line-height: 18px;
  color: #333333;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section3-list-title .titile{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 11px;
  margin-left: 0;
  line-height: 18px;
  color: #333333;
  margin-top: 4px;
}
}

.top-section3 .top-section1-link{
  margin-top: 40px;
  text-align: right;
}



.top-section3-list li a:hover .top-section3-list-title{
  opacity: .5;
  transition: .5s;
}

.top-section4{
  padding: 80px 6%;
  background: #EAEAEA;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4{
  padding: 40px 8%;
  background: #EAEAEA;
}
}

.top-section4-top{
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin: 0 16%;
  align-items: flex-end;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4-top{
  display: block;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  margin-top: 32px;
  align-items: flex-end;
}
}

.top-section4-top li h5 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 600;
  padding-bottom: 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4-top li h5 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
  padding-bottom: 40px;
}
}

.top-section4-top li:nth-child(2){
  width: 40%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4-top li:nth-child(2){
  width: 60%;
  margin-left: 40%;
}
}

.top-section4-top li img{
  width: 100%;
  border-radius: 5px;
}

.top-section4-top li .message-img-animate {
  opacity: 0;
  transform: translateY(30px) scale(0.97);
  transition:
    opacity 0.7s ease,
    transform 0.7s cubic-bezier(0.22, 0.61, 0.36, 1);
}


.top-section4-top li .message-img-animate.is-active {
  opacity: 1;
  transform: translateY(0) scale(1.03);
}

.top-section4-bottom{
  text-align: right;
  margin: 32px 16% 0 45%;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section4-bottom{
  text-align: right;
  margin: 32px 0 0;
  list-style: none;
}
}

.top-section4-bottom li:nth-child(1){
  text-align: left;
}

.top-section4-bottom li:nth-child(2){
  display: flex;
  align-items: center;
  text-transform: uppercase;
  justify-content: flex-end;
  margin: 24px 0 4px;
}

.top-section4-bottom li:nth-child(2) h1{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
}

.top-section4-bottom li:nth-child(2) p{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 400;
  margin-left: 8px;
}

.top-section4-bottom li:nth-child(3){
  line-height: 10px;
  margin-bottom: 24px;
}

.top-section4-bottom li:nth-child(3) p{
  font-size: 13px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-weight: 400;
}

.top-section4-bottom li:nth-child(3) b{
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-weight: 300;
  color: #212125c7;
  letter-spacing: 1px;
}

.top-section4-bottom li:nth-child(4){
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.top-section4-bottom li:nth-child(4) a{
  display: flex;
  align-items: center;
  font-size: 10px;
  font-family: "Montserrat", sans-serif;
  text-transform:capitalize;
  font-weight: 300;
  color: #212125;
  text-decoration: none;
  margin-left: 16px;
}

.top-section4-bottom li:nth-child(4) a img{
  width: 15px;
  margin-right: 4px;
}

.top-section4-bottom li:nth-child(4) a:hover img{
  opacity: .5;
  transition: .5s;
}

.top-section5{
  padding: 64px 16% 144px;
  display: flex;
  list-style: none;
  background: #EAEAEA;
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5{
  padding: 40px 8% 80px;
  display: block;
  list-style: none;
  background: #EAEAEA;
}
}

.top-section5 li{
  width: 50%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5 li{
  width: 100%;
}
}

.top-section5 li:nth-child(1){
  position: relative;
  overflow: hidden;
}

.top-section5 li a{
  text-decoration: none;
}

.top-section5 li a video{
  width: 100%;
  border-radius: 10px;
  height: 180px;
  object-fit: cover;
}

.top-section5 li a:hover video{
  opacity: .6;
  transition: .5s;
}

.top-section5-title{
  position: absolute;
  top: 50%;   
  transform: translate(30%, -50%);
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title{
  position: absolute;
  top: 50%;   
  transform: translate(20%, -50%);
}
}

.top-section5 li:nth-child(1){
  position: relative;
  overflow: hidden;
}


.top-section5-title h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 45px;
  font-weight: 600;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-title h3 {
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 40px;
  font-weight: 700;
}
}

.top-section5-link{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #212125;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.top-section5-link span {
  width: 24px;
  height: 6px;
  border: solid 1px #212125;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5-link span {
  width: 20px;
  height: 8px;
  border: solid 1px #212125;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

}

.top-section5 li a:hover .top-section5-link span{
  background: #212125;
}

.top-section5 li:nth-child(2){
  background-color: #ffffff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  height: 180px;
}

.top-section5 li p{
  position: absolute;
  top: 50%;   
  transform: translate(8%, -50%);
  width: 84%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.top-section5 li p{
  position: absolute;
  top: 50%;   
  transform: translate(12%, -50%);
  width: 80%;
}
}

footer{
  background-color: #333333;
  padding: 80px 8%;
}

.footer-top{
  display: flex;
  list-style: none;
  align-items: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-top{
  display: block;
  list-style: none;
  align-items: center;
}
}

.footer-top li img{
  height: 30px;
}

.footer-top li:nth-child(2){
  margin-left: 80px;
  display: flex;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-top li:nth-child(2){
  margin-left: 0;
  margin-top: 24px;
  display: flex;
  list-style: none;
}
}

.footer-top li:nth-child(2) a{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  margin-right: 16px;
  letter-spacing: 1px;
}

.footer-top li:nth-child(2) a:hover{
  opacity: .5;
  transition: .5s;
}

.footer-bottom{
  margin-top: 80px;
  text-align: right;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.footer-bottom{
  margin-top: 64px;
  text-align: right;
}
}

.footer-bottom a{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 700;
  color: #ffffff9b;
  letter-spacing: 1px;
  text-decoration: none;
}

.footer-bottom a:hover{
  color: #ffffff;
  transition: .5s;
}

.footer-bottom p{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 8px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 16px;
  margin-top: 24px;
}

/*ニュース一覧*/
.newslist-section1{
  padding: 200px 12% 0;
  display: flex;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-section1{
  padding: 160px 12% 0;
  display: block;
}
}

.newslist-h1{
  margin-right: 8%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.newslist-h1.hide {
  transform: translateY(-40px);
  opacity: 0;
  pointer-events: none;
}

.newslist-h1.show {
  transform: translateY(0);
  opacity: 1;
}

.newslist-h1 h1{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-h1 h1{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}

}

.newslist-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-list{
  display: block;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 40px;
}
}

.newslist-list li{
  list-style: none;
  width: 44%;
  align-items: center;
  box-sizing: border-box;
  margin-right: 6%;
  margin-bottom: 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-list li{
  list-style: none;
  width: 100%;
  align-items: center;
  box-sizing: border-box;
  margin-right: 6%;
  margin-bottom: 16px;
}
}

.newslist-list li:nth-child(2n) {
  margin-right: 0;
}

.newslist-list li a{
  text-decoration: none;
  color: #ffffff;
  display: flex;
  align-items: stretch;
}

.newslist-list-img{
  width: 40%;
}

.newslist-list-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 20px;
	height: 100%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-list-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
	height: 100%;
}
}

.newslist-list-title{
  margin-left: 5%;
  position: relative;
  width:55%;
  display: flex;          
  flex-direction: column;  
  justify-content: flex-start;
}

.newslist-list-title .day{
  margin-top: 16px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-list-title .day{
  margin-top: 8px;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
}
}

.newslist-list-title h2{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 11px;
  margin-top: 4px;
  line-height: 18px;
  font-weight: 400;
  color: #ffffff;
}

.newslist-list-link{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  margin-top: auto;     
  padding-bottom: 20px; 
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.newslist-list-link{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
  margin-top: auto;     
  padding-bottom: 8px; 
}
}

.newslist-list-link span{
  width: 24px;
  height: 6px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

.newslist-list li a:hover .newslist-list-link span{
  background: #ffffff;
}
.newslist-list li a:hover .newslist-list-title h2{
  opacity: .7;
  transition: .5s;
}

.pagination{
	margin:0 0 80px;
	text-align: center;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
	.pagination{
	margin:24px 0 80px;
	text-align: center;
}
	
}

.pagination a{
color:#ffffff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 11px;
	margin:0 4px;
}

.pagination a:hover{
	opacity:.5;
	transition:.5s;
}

.pagination span{
	color:#ffffff;
	font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 11px;
	margin:0 4px;
}

/*ニュース詳細*/
.news-section1{
  margin: 200px 0 0;
  display: flex;
  border-top: solid 1px #ffffff4b;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.news-section1{
  margin: 160px 0 0;
  display: block;
  border-top: solid 1px #ffffff4b;
}
}

.news-left{
  padding-top: 80px;
  width: 30%;
  padding-right: 8%;
  margin-left: 12%;
  border-right: solid 1px #ffffff4b;
	padding-bottom: 80px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.news-left{
  padding-top: 40px;
  width: 76%;
  padding-right: 12%;
  margin-left: 12%;
  border-right: none;
	padding-bottom: 0;
}
}

.news-right{
  width: 70%;
  margin-right: 12%;
  padding-top: 80px;
  padding-left: 8%;
  padding-bottom: 80px;
  color: #ffffff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.news-right{
  width: 76%;
  margin-right: 12%;
  padding-top: 40px;
  padding-left: 12%;
  padding-bottom: 80px;
  color: #ffffff;
}
}

.news-section1-link a{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.news-section1-link a span{
  width: 24px;
  height: 6px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.news-section1-link a span{
  width: 20px;
  height: 8px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}
}

.news-section1-link a:hover span{
  background: #ffffff;
}

.news-section1-link a:hover{
  color: #ffffffbd;
}

.news-left h1{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  margin-top: 4px;
  line-height: 22px;
  color: #ffffff;
  font-weight: 300;
  margin: 24px 0 16px;
}

.news-left .news-left-day{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 500;
  margin-bottom: 40px;
}

.news-left .news-left-img{
  width: 100%;
}

.news-left .news-left-img img{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
	height: 100%;
}

.news-right img {
    width: 100%;
	margin: 24px 0;
}

.news-right p{
  color: #ffffff;
}

.news-right h1{
  color: #ffffff;
  font-size: 23px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h2{
  color: #ffffff;
  font-size: 21px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h3{
  color: #ffffff;
  font-size: 19px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h4{
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h5{
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h6{
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.news-right h1{
  color: #ffffff;
  font-size: 20px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h2{
  color: #ffffff;
  font-size: 18px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h3{
  color: #ffffff;
  font-size: 17px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h4{
  color: #ffffff;
  font-size: 15px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h5{
  color: #ffffff;
  font-size: 13px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right h6{
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}
}

.news-right b{
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right a{
  color: #ffffff;
  font-size: 11px;
  font-weight: 400;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.news-right a:hover{
  opacity: .5;
  transition: .5s;
}



/*リクルート一覧*/
.recruitlist-h1 {
  padding: 200px 12% 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-h1 {
  padding: 160px 12% 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}
}

.recruitlist-h1.hide {
  transform: translateY(-40px);
  opacity: 0;
  pointer-events: none;
}

.recruitlist-h1.show {
  transform: translateY(0);
  opacity: 1;
}

.recruitlist-h1 h1 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-h1 h1 {
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .5px;
}
}

.recruitlist-section1{
  padding: 80px 18% 104px;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-section1{
  padding: 40px 12% 80px;
  list-style: none;
}
}

.recruitlist-section1 li{
  margin-bottom: 80px;
}

.recruitlist-section1 li a{
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  justify-content:space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .recruitlist-section1 li a{
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #ffffff;
    justify-content:space-between;
    flex-wrap: wrap; 
  }
}

.recruitlist-section1 li a .number{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-section1 li a .number{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  width: 25%;
  margin-right: 5%;
}

}

.recruitlist-section1 li a .recruitlist-section-img{
  width: 300px;
  margin: 0 8%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-section1 li a .recruitlist-section-img{
  width: 70%;
  margin: 0;
}
}

.recruitlist-section-img img{
   width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
	height: 100%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
  .recruitlist-section-info {
    width: 100%; 
    margin-top: 16px; 
  }
}

.recruitlist-section-info h2{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  display: inline;
  display: flex;
  align-items: center;
}

.recruitlist-section-info h2 span{
  margin-left: 8px;
  color: #ffffff9a;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: capitalize;
}

.recruitlist-section-info p{
  color: #ffffff;
  margin: 16px 0;
}

.recruitlist-section-info-link{
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  transition: opacity 0.3s ease;
}

.recruitlist-section-info-link span{
  width: 24px;
  height: 6px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruitlist-section-info-link span{
  width: 20px;
  height: 8px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}
}

.recruitlist-section1 li a:hover .recruitlist-section-info-link span{
  background: #ffffff;
}

.recruitlist-section1 li a:hover .recruitlist-section-info p{
  color: #ffffffbd;
}


/*リクルート詳細*/
.recruit-section1{
  display: flex;
  padding: 200px 12% 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1{
  display: block;
  padding: 160px 12% 104px;
}

}

.recruit-section1-left {
  width: 30%;
  padding-right: 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1-left {
  width: 100%;
  padding-right: 12%;
}
}

.recruit-section1 h2{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
}

.recruit-section1 h1{
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 14px;
  color: #ffffff;
  font-weight: 300;
  margin: 40px 0 8px;
}

.recruit-section1 h6{
  color: #ffffff9a;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  letter-spacing: .5px;
  text-transform: capitalize;
  margin-bottom: 24px;
  font-weight: 300;
}

.recruit-section1-left--img{
  width: 100%;
}

.recruit-section1-left--img img{
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
	height: 100%;
}

.recruit-section1-right{
  width: 70%;
  margin-bottom: 200px;
  color: #ffffff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1-right{
  width: 100%;
  margin-bottom: 0;
  color: #ffffff;
  margin-top: 24px;
}
}


.recruit-section1-right-info li{
  display: flex;
  align-items:flex-start;
  list-style: none;
  background-color: #5C5C5C;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 32px 40px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1-right-info li{
  display: block;
  align-items:flex-start;
  list-style: none;
  background-color: #5C5C5C;
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 24px;
}
}

.recruit-title{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffff93;
  font-weight: 400;
  width: 20%;
  margin-right: 5%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-title{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffff93;
  font-weight: 400;
  width: 100%;
  margin-right: 0;
  margin-bottom: 8px;
}
}

.recruit-section1-right-info li p{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffff;
  font-weight: 400;
  width: 75%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1-right-info li p{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffff;
  font-weight: 400;
  width: 100%;
}
}

.recruit-section1-right-entry{
  background-color: #1F1F1F;
  width: 100%;
  margin-top: 16px;
}

.recruit-section1-right-entry a{
  font-family: "Montserrat", sans-serif;
  text-transform:uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff93;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.recruit-section1-right-entry a{
  font-family: "Montserrat", sans-serif;
  text-transform:uppercase;
  font-size: 10px;
  font-weight: 400;
  color: #ffffff93;
  text-decoration: none;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  padding: 40px 24px;
  display: flex;
  justify-content: space-between;
}
}

.recruit-section1-right-entry a p{
  color: #ffffff;
}

.recruit-section1-right-entry a p span{
  font-size: 13px;
  margin-left: 8px;
  color: #ffffffde;
  font-weight: 200;
  width: 35px;
  height: 35px;
  border: 1px solid #ffffff53;
  border-radius: 50%;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s, color 0.3s;
}


.recruit-section1-right-entry:hover{
  background-color: #1f1f1fbc;
  transition: .5s;
}

.recruit-section1-right-entry a:hover p span{
  background-color: #ffffff;
  color: #333333;
  transition: .5s;
}



/*エントリー*/
.entry-section1{
  display: flex;
  padding: 200px 12% 0;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1{
  display: block;
  padding: 160px 12% 0;
}
}

.entry-section1-left {
  width: 20%;
  padding-right: 12%;
  transition: transform 0.4s ease, opacity 0.4s ease;
  will-change: transform, opacity;
}

.entry-section1-left.hide {
  transform: translateY(-40px);
  opacity: 0;
  pointer-events: none;
}

.entry-section1-left.show {
  transform: translateY(0);
  opacity: 1;
}

.entry-section1-left h1{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
}

.entry-section1-right{
  width: 68%;
  margin-bottom: 200px;
  color: #ffffff;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1-right{
  width: 100%;
  margin-bottom: 104px;
  color: #ffffff;
}
}

.entry-section1-right-flow{
  display: flex;
  align-items: center;
  list-style: none;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1-right-flow{
  display: flex;
  align-items: center;
  list-style: none;
  margin-top: 24px;
}
}

.entry-section1-right-flow li{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffffe4;
  font-weight: 300;
  margin-right: 5%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1-right-flow li{
  font-size: 11px;
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  line-height: 18px;
  color: #ffffffe4;
  font-weight: 300;
  margin-right: 8%;
}
}

.entry-section1-right-flow li span {
  width: 20px;
  height: 6px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1-right-flow li span {
  width: 20px;
  height: 8px;
  border: solid 1px #ffffff;
  background: transparent;
  border-radius: 100px;
  display: inline-flex;
  margin-right: 8px;
  transition: background 0.3s ease;
}
}

.entry-section1-right-flow .active span{
  background: #ffffff;
}

.entry-section1-right-info{
  margin-top: 80px;
  border-top: solid 1px #ffffff4b;
  padding-top: 32px;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.entry-section1-right-info{
  margin-top: 64px;
  border-top: solid 1px #ffffff4b;
  padding-top: 32px;
}
}

.entry-section1-right-info p{
  color: #ffffff;
}

/*プライバシーポリシー*/
.privacypolicy-section1{
  padding: 200px 12%;
}

/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.privacypolicy-section1{
  padding: 160px 12% 104px;
}
}

.privacypolicy-section1 h1{
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .5px;
}

.privacypolicy-section1 p{
  margin-top: 40px;
  color: #ffffff;
}

.policy-table{
  margin-top: 24px;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.policy-table table {
  min-width: 700px; 
}


/* スマートフォン*/
@media (min-width: 0px) and (max-width: 480px) {
.privacy-table th,
  .privacy-table td {
    white-space: nowrap;
  }
}

table.privacy-table {
  width: 100%;
  border-collapse: collapse;
}

.privacy-table th,
.privacy-table td {
  border: 1px solid #ffffff69;
  padding: 10px 12px;
  vertical-align: top;
  font-size: 11px;
}

.privacy-table th {
  background: rgba(245, 236, 229, 0.159);
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
  color: #ffffff;
}

.privacy-table td {
  color: #ffffff;
  font-size: 10px;
}

/* 1列目を少し広めに */
.privacy-table th:nth-child(1),
.privacy-table td:nth-child(1) {
  width: 22%;
}

.privacy-table th:nth-child(2),
.privacy-table td:nth-child(2) {
  width: 22%;
}

.privacy-table th:nth-child(3),
.privacy-table td:nth-child(3) {
  width: 18%;
}

.privacy-table th:nth-child(4),
.privacy-table td:nth-child(4) {
  width: 10%;
}

.privacy-table th:nth-child(5),
.privacy-table td:nth-child(5) {
  width: 28%;
}


.policy-table2 {
  width: 100%;
  border-collapse: collapse;
}

.policy-table2 th,
.policy-table2 td {
  border: 1px solid #ffffff69;
  padding: 10px 12px;
  vertical-align: top;
  font-size: 11px;
}

.policy-table2 th {
  background: rgba(245, 236, 229, 0.159);
  text-align: left;
  font-weight: 400;
  white-space: nowrap;
  color: #ffffff;
}

.policy-table2 td {
  color: #ffffff;
  font-size: 10px;
}