@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-style: normal;
  color: #414958;
  letter-spacing: 0.01rem;
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
}

@media screen and (min-width: 1280px) {
  p{
    font-weight: 500;
  }
}

a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
  list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.tb-only,
.pc-only {
  display: none;
}

@media screen and (min-width: 600px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1280px) {
  .tb-only{
    display: none;
  }
  .pc-only {
    display: block;
  }
}

/*-- ここからHEADER --*/
.site-header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1200;
}

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

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.header-logo img {
  height: 34px;
  text-shadow: 0 2px 3px rgba(255,255,255,0.9)
}

.header-logo-text {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.35);
  margin-bottom: 6px;
}

.header-actions {
  display: none;
}

@media screen and (min-width: 600px) {
  .header-actions {
		display: flex;
		align-items: center;
		gap: 12px;
		margin-left: auto; 
		padding-right: 60px;
		font-weight: 500;
	}

	.header-actions .btn {
		padding: 8px 28px;
		font-size: 14px;
		border-radius: 10px;
		color: #fff;
		text-decoration: none;
		white-space: nowrap;
		letter-spacing: 0.1em;
	}

	.header-actions .btn-orange {
		background: #FFAA00;
	}

	.header-actions .btn-blue {
		background: #2BC3FF;
		font-family: "Barlow", sans-serif;
		font-weight: bold;
		letter-spacing: 0.1em;
		font-size: 16px;
	}
}

.drawer{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: #0d328c;
	color: #fff;
	opacity: 0;
	visibility: hidden;
	transition: opacity .4s ease, visibility .4s ease;
	z-index: 1000;
	overflow-y: auto;
}

body.is-open .drawer{
	opacity: 1;
	visibility: visible;
}

.drawer__inner{
	max-width: 1200px;
	margin: 0 auto;
	padding: 60px 30px;
}

.drawer__flex {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 0 20px;
}

.drawer__col:nth-child(1) {
	grid-column: 1;
	grid-row: 1 / 3;
}

.drawer__col:nth-child(2) {
	grid-column: 2;
	grid-row: 1;
}

.drawer__col.drawer__sec {
	grid-column: 2;
	grid-row: 2;
	margin-top: 0;
}

.drawer__actions {
	grid-column: 1 / 3;
	display: flex;
	flex-direction: column;
	gap: 20px;
	width: 100%;
}

.drawer__nav__title{
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 10px;
}

.drawer__nav__title span{
	display: block;
	font-size: 9px;
	font-family: "Barlow", sans-serif;
	margin-bottom: 2px;
}

.drawer__group{
  padding: 0 0 30px;
}

.drawer__group ul{
	list-style: none;
	padding: 0;
}

.drawer__group li{
	font-size: 11px;
	line-height: 1.8;
	cursor: pointer;
}

.drawer__group li a{
  color: white;
}

.drawer__nav__icon-list li{
	position: relative;
	padding-left: 1.2em;
	font-weight: 600;
}

.drawer__nav__icon-list li::before{
	content: ">";
	position: absolute;
	left: 0;
	font-family: serif;
}

.drawer__sns{
	display: flex;
	gap: 7px;
}

.drawer__sns img{
	width: 30px;
	height: 30px;
}

.drawer__actions{
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.btn-pamphlet{
	position: relative;
	background: #ffaa00;
	padding: 5px 10px;
	border-radius: 10px;
	color: #fff;
	text-decoration: none;
	font-weight: 700;
	text-align: center;
  overflow: visible !important;
}

.btn-pamphlet .small-text{
	display: block;
	font-size: 12px;
	margin-bottom: 5px;
}

.btn-pamphlet .main-text{
	display: block;
	font-size: 14px;
}

.pamphlet-img{
	position: absolute;
	top: -30px;
	right: -10px;
	width: 55px;
	transform: rotate(10deg);
	z-index: 10;
}

.btn-pamphlet:hover .pamphlet-img{
	transform: rotate(10deg);
	top: -30px;
	right: -10px;
}

.btn-entry{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #2bc3ff;
	height: 65px;
	border-radius: 10px;
	color: #fff;
	font-family: "Barlow", sans-serif;
	font-size: 24px;
	font-weight: 700;
	text-decoration: none;
	box-shadow: 0 5px 0 #1eacdf;
}

.hamburger {
  background: none;
  border: none;
  width: 30px;
  height: 24px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1300;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: background .3s, transform .3s, opacity .3s;
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 11px; }
.hamburger span:nth-child(3) { bottom: 0; }

.hamburger.is-scrolled span {
  background: #000;
}

body.is-open .hamburger span {
  background: #fff;
}

body.is-open .hamburger span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}

body.is-open .hamburger span:nth-child(2) {
  opacity: 0;
}

body.is-open .hamburger span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

@media (min-width: 768px) {
  .hamburger {
    top: 24px;
    right: 30px;
  }
}

@media screen and (min-width: 600px) {
  .drawer__inner {
		padding: 120px 40px 60px;
	}

	.drawer__flex {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		justify-content: space-between;
		align-items: flex-start;
		gap: 30px 20px;
	}

	.drawer__col {
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

  .drawer__actions{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 300px;
  }

	.drawer__nav__title {
		font-size: 24px;
	}

  .drawer__nav__title span{
    font-size: 11px;
  }

  .drawer__group li{
	  font-size: 14px;
    line-height: 2.4;
  }

  .drawer__sns img{
    width: 44px;
    height: 44px;
  }

  .pamphlet-img {
    top: -30px;
    right: -10px;
    width: 75px;
  }

  .btn-pamphlet{
	padding: 25px 20px;
  }

  .btn-pamphlet .main-text{
    font-size: 16px;
  }

  .btn-entry{
	  font-size: 30px;
  }
}
/*-- ここまでHEADER --*/

/* Key Visual */
.kv {
  position: relative;
  width: 100%;
  height: 100svh;
  overflow: hidden;
}

.kv__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.kv__title img {
  width: min(82vw, 1200px);
  filter:
    drop-shadow(0 6px 14px rgba(0,0,0,0.45))
    drop-shadow(0 2px 4px rgba(0,0,0,0.7));
}

.kv__title {
  position: absolute;
  left: 5vw;
  bottom: 6vh;
  z-index: 2;
  /* padding: 1.2rem 1.6rem;
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  border-radius: 12px; */
}

@media (min-width: 768px) {
  .kv__title {
    left: 4vw;
    bottom: 8vh;
  }
}
/* Key Visual */

/* scroll */
.scroll_down{
  display: none;
}

@media screen and (min-width: 1024px) {
  .scroll_down{
    display: block;
    position: absolute;
    top: 100vh;
    right: 4%;
    z-index: 99;
  }
  .scroll_down.hidden {
    display: none;
  }
  .scroll_down a{
    position: absolute;
    left: 10px;
    bottom: 110px;
    color: #FFF;
    font-size: 12px;
    font-family: "Inter", sans-serif;
    letter-spacing: .2em;
    writing-mode: vertical-lr;
    text-decoration: none;
    text-transform: uppercase;
  }

  .scroll_down:before {
    content: "";
    position: absolute;
    bottom: 0;
    left: -4px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background:#FFF;
    animation:
      circlemove 1.6s ease-in-out infinite,
      cirlemovehide 1.6s ease-out infinite;
  }

  @keyframes circlemove{
    0%{bottom:180px;}
    100%{bottom:0px;}
  }

  @keyframes cirlemovehide{
    0%{opacity:0}
    50%{opacity:1;}
    80%{opacity:0.9;}
    100%{opacity:0;}
  }

  .scroll_down:after{
    content:"";
    position: absolute;
    bottom:0;
    left:0;
    width: 1px;
    height: 180px;
    background:#FFF;
  } 
}
/* scroll */

.index-main {
  min-height: 100svh;
  background-image: url("../images/bg.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
}

/* ===== title ===== */
.title__heading {
  padding: 120px 0 40px;
  text-align: center;
}
.title__heading--intro{
  padding: 70px 0 40px;
}
.title__en {
  position: relative;
  display: inline-block;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #133592;
  margin-bottom: 27px;
  padding: 0 1.5em;
}

.title__en::before,
.title__en::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 1.8em;
  background-color: #133592;
  transform: translateY(-50%) rotate(40deg);
  transform-origin: center;
}

.title__en::before {
  left: 0;
}

.title__en::after {
  right: 0;
}

.title__jp {
  display: block;
  font-size: 32px;
  font-weight: 900;
  letter-spacing: 0.04rem;
}

@media (min-width: 1280px) {
  .title__heading {
    padding: 140px 0 60px;
  }

  .title__en {
    font-size: 18px;
    margin-bottom: 38px;
  }

  .title__jp {
    font-size: 34px;
    letter-spacing: 0.07em;
    line-height: 1;
  }
}
/* ===== title ===== */

/* ===== about ===== */
.about__contents{
  max-width: 1200px;
  margin: auto;
  padding: 0 8%;
}

@media (min-width: 1280px) {
  .about__contents{
    padding: 0;
  }
}

@media (max-width: 768px){
  .about__contents{
    padding: 0 0;    
  }
}

.about__text{
  font-size: 16px;
  line-height: 1.8;
  text-align: left;
  width: 90%;
  max-width: 25em;
  margin: auto;
  letter-spacing: 0.02em;
}

.about__chart{
  max-width: 1200px;
  margin: 40px auto;
}

@media (min-width: 600px) {
  .about__text{
    font-size: 14px;
    text-align: center;
  }
  
  .about__chart{
    margin: 80px auto;
  }
}
@media (max-width: 599px){
  .about__chart{
    overflow: hidden;
    margin: 40px auto 50px;
  }
  .about__chart svg{
    position: relative;
    width: calc(100% + 40px);
    left: 50%;
    transform: translateX(-50%);
    overflow: visible;
  }
}

@media (min-width: 1280px) {
  .about__text{
    font-size: 18px;
    line-height: 2.4;
    letter-spacing: 0.1rem;
  }

  .about__chart{
    margin: 80px auto;
  }
}

.links-box{
  position: relative;
  width: calc(85% - 19px);
  margin: 30px 7.25% 0 calc(7.25% + 19px);
  padding: 40px 27px 20px 27px;
  border-radius: 8px;
}
.links-box:before{
  content: "";
  display: block;
  position: absolute;
  top: -10px;
  left: -19px;
  width: 106px;
  height: 35px;
  border-radius: 8px;
}
.links-box ul li{
  list-style: none;
  margin-bottom: 10px;
}
.links-box ul li a {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5em;
}

.links-box ul li span{
  width: 24px;
  height: 24px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100vh;
  color: white;
  font-weight: bold;
}

.links-box--applied ul li span{
  background: #00ABFF;
}
.links-box--hows ul li span{
  background: #F7931E;
}
.links-box--city ul li span{
  background: #FF223A;
}

.links-box--applied{
  background: #ECF7FE;
  border: solid 1px #00ABFF;
}

.links-box--applied::before{
  background: url(../images/applied-logo--white.png) center center / 84% no-repeat, linear-gradient(#00ABFF);
}
.links-box--hows{
  background: #FEF7EA;
  border: solid 1px #F7931E;
}
.links-box--hows:before{
  background: url(../images/hows-logo--white.png) center center / 40% no-repeat, linear-gradient(#F7931E);
}
.links-box--city{
  background: #FFF1F5;
  border: solid 1px #FF223A;
}
.links-box--city:before{
  background: url(../images/cityjoho-fukuoka-logo--white.png) center center / 75% no-repeat, linear-gradient(#FF223A);
}

.intro__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 0 8%;
}

.intro__group {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 12px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 120px;
  transition: transform 0.3s ease;
}

.intro__group:hover {
  transform: translateY(-6px);
}

.intro__group h3 {
  font-size: 12px;
  line-height: 1.4;
  margin: 0;
  height: 2.8em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
}

.intro__group img {
  margin-top: auto;
  margin-bottom: auto;
  max-height: 48px;
  max-width: 100%;
  object-fit: contain;
}

.intro__first__image {
  max-height: 60px!important;
}

@media (min-width: 600px) {
  .intro__wrapper{
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    padding: 0 4%;
  }
  .intro__group {
    padding: 18px 10px;
    justify-content: space-around;
    height: 134px;
  }
  .intro__first__image {
    margin-top: 20px;
    max-height: 70px!important;
  }
}

@media (min-width: 1280px) {
  .intro__wrapper{
    width: 100%;
    margin: auto;
  }
  .intro__group {
    width: 245px;
    height: auto;
    padding: 28px 20px 24px;
  }
  .intro__group h3 {
    font-size: 18px;
  }
  .intro__first__image {
    margin-top: 40px;
    max-height: 140px!important;
  }
  .intro__group img {
    max-height: 80px;
  }
}

@media (min-width: 1900px) {
  .intro__wrapper{
    gap: 20px;
    padding: 0;
  }
  .intro__group {
    width: 270px;
    height: 235px;
    padding: 30px 10px 20px;
  }
  .intro__group h3 {
    font-size: 22px;
  }
  .intro__group img {
   max-height: 87px;
  }
  .intro__first__image {
    margin-top: 40px;
    max-height: 137px!important;
  }
}
/* ===== about ===== */

/* ===== work style ===== */
.vision {
  padding: 0 0 40px;
  text-align: center;
}

.vision__frame {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  justify-content: center;
  
}

.vision__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 6px;
}

.vision__en {
  font-size: 12px;
  font-family: "Barlow", sans-serif;
  letter-spacing: 0.08em;
  color: #f5a300;
  margin: 0;
}

.vision__jp {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: #4b5563;
  white-space: nowrap;
  font-feature-settings: "palt";
}
@media (max-width: 768px) {
  .vision__jp{
    font-size: clamp(20px, 4vw, 28px);
  }
}

.bracket {
  position: relative;
  width: 22px;
  height: 48px;
  flex-shrink: 0;
}
.line {
  position: absolute;
  background: #4b5563;
  transform-origin: 0 0;
}

.line.v {
  width: 1px;
  height: 100%;
  left: 10px;
  top: 0;
}

.left .line.t {
  width: 16px;
  height: 1px;
  top: 0;
  left: 10px;
  transform: rotate(-45deg);
}

.left .line.b {
  width: 16px;
  height: 1px;
  bottom: 0;
  left: 10px;
  transform-origin: 0 100%;
  transform: rotate(45deg);
}


.right .line.t {
  width: 16px;
  height: 1px;
  top: 0;
  right: 10px;
  transform-origin: 100% 0;
  transform: rotate(45deg);
}

.right .line.b {
  width: 16px;
  height: 1px;
  bottom: 0;
  right: 10px;
  transform-origin: 100% 100%;
  transform: rotate(-45deg);
}

.right .line.v {
  left: auto;
  right: 10px;
}

@media (min-width: 1280px) {

  .vision {
    padding: 0 0 60px;
  }

  .vision__frame {
    gap: 38px;
  }

  .vision__en {
    font-size: 18px;
  }

  .vision__jp {
    font-size: 38px;
    letter-spacing: 0.02em;
  }
  
  .bracket {
    width: 28px;
    height: 64px;
  }

  .line.v {
    left: 10px;
  }

  .right .line.v {
    right: 10px;
  }
}

.vision__text{
  width: 90%;
  max-width: 25em;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: center;
}

@media (min-width: 600px) {
  .vision__text{
    font-size: 14px;
  }

}

@media (min-width: 1280px) {
  .vision__text{
    font-size: 18px;
    line-height: 2.4;
    letter-spacing: 0.1rem;
  }
}

/* vision wrapper */
.vision__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12%;
}

.vision__image picture,
.vision__image img {
  width: 100%;
  display: block;
}

.vision__image img {
  height: auto;
}

.vision__group{
  margin: 30px 0 0;
}

.vision__group h3 {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
}

.vision__group__text {
  max-width: 25em;
  margin: auto;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

@media (min-width: 600px) {
  .vision__wrapper {
    display: flex;
    gap: 20px;
    padding: 0 8%;
  }

  .vision__group {
    flex: 1;
  }

  .vision__group h3 {
    letter-spacing: 0.1rem;
  }
}

@media (min-width: 1280px) {
  .vision__wrapper {
    padding: 60px 0 0;
    gap: 40px;
  }

  .vision__group {
    margin: 0;
  }

  .vision__group h3 {
    margin-top: 30px;
    font-size: 22px;
  }

  .vision__group__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }
}

@media (min-width: 1680px) {
  .vision__wrapper {
    padding: 60px 0 0;
    gap: 40px;
  }
}
/* vision wrapper */
/* ===== work style ===== */

/* slide up */
.vision__group,
.information__group {
  opacity: 0;
  transform: translateX(-60px);
}

.vision__group.is-show,
.information__group.is-show {
  animation: snapIn 0.55s cubic-bezier(.4,1.4,.6,1) forwards;
}

@keyframes snapIn {
  0% {
    opacity: 0;
    transform: translateX(-60px);
  }
  70% {
    opacity: 1;
    transform: translateX(4px); /* パンッ */
  }
  100% {
    opacity: 1;
    transform: translateX(0); /* ピタ止まり */
  }
}

.vision__group.is-show:nth-child(1),
.information__group.is-show:nth-child(1) {
  animation-delay: 0.05s;
}

.vision__group.is-show:nth-child(2),
.information__group.is-show:nth-child(2) {
  animation-delay: 0.27s;
}

.vision__group.is-show:nth-child(3),
.information__group.is-show:nth-child(3) {
  animation-delay: 0.49s;
}

.vision__image img,
.information__image img {
  transition: transform 0.3s ease;
}

.vision__group:hover .vision__image img,
.information__group:hover .information__image img{
  transform: translateY(-6px);
}

.information__group:last-child:hover .information__image img {
  transform: none;
}

@media (max-width: 599px) {
  .vision__group.is-show:nth-child(1),
  .information__group.is-show:nth-child(1) {
    animation-delay: 0.03s;
  }

  .vision__group.is-show:nth-child(2),
  .information__group.is-show:nth-child(2) {
    animation-delay: 0.22s;
  }

  .vision__group.is-show:nth-child(3),
  .information__group.is-show:nth-child(3) {
    animation-delay: 0.41s;
  }
}
/* slide up */

/* ===== interview ===== */
.inverview__title{
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

@media (min-width: 1280px) {
  .inverview__title{
    margin-bottom: 60px;
    font-size: 18px;
    letter-spacing: 0.1rem;
  }
}

@media (min-width: 1680px) {
  .inverview__title{
    font-size: 17px;
  }
}

.interview {
  overflow: hidden;
}

.interview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.interview__scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
  width: calc(100% - 32px);
  margin-left: 8%;
}

.interview__group {
  flex: 0 0 calc(60% - 15px);
}

.interview__image{
  line-height: 1;
}

.interview__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.3s ease;
}


.interview__group:hover .interview__image img
{
  transform: translateY(-6px);
}

.interview__text {
  margin-top: 15px;
  text-align: center;
}

@media (min-width: 1024px) {
  .interview__scroll {
    width: auto;
    margin-left: 8%;
    margin-right: calc(50% - 50vw);
    padding-bottom: 60px;
    gap: 40px;
  }
  
  .interview__group {
    flex: 0 0 373px;
  }

  .interview__text {
    margin-top: 30px;
  }
}

@media (min-width: 1280px) {
  .interview__scroll {
    margin-left: 0;
  }
}

.interview__header {
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  line-height: 1;
  font-weight: bold;
}

.interview__header span {
  color: #fff;
  padding: 2px 6px;
  margin-top: 4px;
  font-size: 12px;
  white-space: nowrap;
}

.interview__name {
  margin-top: 10px;
  font-size: 12px;
}

@media (min-width: 1280px) {
  .interview__header {
    font-size: 22px;
  }

  .interview__header span {
    font-size: 14px;
    padding: 4px 8px;
  }

  .interview__name {
    margin-top: 20px;
    font-size: 18px;
  }
}

.interview__applied span {
  background: #00ABFF;
}

.interview__cjf span {
  background: #FF223A;
}

.interview__hows span {
  background: #F7931E;
}

/* scroll bar */
.interview__scroll::-webkit-scrollbar {
  height: 4px;
}

.interview__scroll::-webkit-scrollbar-track {
  background: #D4D4D4;
}

.interview__scroll::-webkit-scrollbar-thumb {
  background: #133592;
}
/* scroll bar */

/* VIEW MODE */
.inverview__more__btn {
  text-align: center;
  padding: 20px 0 0 60px;
}

.c_rink_more {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #133592;
  text-decoration: none;
  overflow: visible !important;
}

.c_rink_more .arrow {
  position: relative;
  width: 40px;
  height: 1px;
  pointer-events: none;
  transition: transform 0.35s ease;
}

.c_rink_more .arrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
}

.c_rink_more .arrow::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

/* hover */
.c_rink_more:hover .arrow {
  transform: translateX(8px);
}
.c_rink_more__center {
  margin: auto;
}

/* tablet */
@media (min-width: 600px) {
  .inverview__more__btn {
    padding: 20px 0 0 40px;
  }
}

/* pc */
@media (min-width: 1280px) {
  .c_rink_more {
    font-size: 18px;
  }

  .inverview__more__btn {
    padding: 80px 0 0 40px;
  }

  .c_rink_more:hover .arrow {
    transform: translateX(12px);
  }
}
/* VIEW MODE */
/* ===== interview ===== */

/* ===== information ===== */
.information__contents{
  padding: 0 0 20px;
}

.slogan {
  position: relative;
  display: block;
  width: fit-content;
  margin: 0 auto;
  font-size: 26px;
  letter-spacing: 0.1rem;
  text-align: center;
}

.slogan::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 95%;
  height: 3px;
  background: linear-gradient(
    to right,
    #A5E1FF 0%,
    rgba(165, 225, 255, 0) 100%
  );
  transform: translateX(-50%) scaleX(0);
  transform-origin: left;
  opacity: 0;
}

.slogan.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
  transition:
    transform 0.9s ease,
    opacity 0.4s ease;
}

.information__text{
  font-size: 14px;
  text-align: center;
  padding: 20px 0 30px;
}

@media (min-width: 1280px) {
  .information__contents{
    padding: 0;
  }

  .slogan{
    font-size: 26px;
  }

  .slogan::after {
    bottom: -10px;
    height: 5px;
  }
  
  .slogan.is-active::after {
    transition-delay: 0.25s;
  }

  .information__text{
    font-size: 17px;
    letter-spacing: 0.1rem;
    padding: 30px 0 60px;
    line-height: 2.0;
  }

}

.information__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 12%;
}

.information__image picture,
.information__image img {
  width: 100%;
  display: block;
}

.information__image img {
  height: auto;
}

.information__group {
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.information__group h3 {
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
  margin-bottom: 16px;
}

.information__group__text {
  margin-top: 10px;
  font-size: 16px;
  font-weight: normal;
}

@media (min-width: 600px) {
  .information__wrapper {
    display: flex;
    gap: 20px;
    padding: 0 8% 70px;
  }

  .information__group {
    margin: 30px 0 0;
    flex: 1;
  }

  .information__group h3 {
    letter-spacing: 0.1rem;
  }
}

@media (min-width: 1280px) {
  .information__wrapper {
    padding: 0 0 140px;
    gap: 40px;
  }

  .information__group {
    margin: 0;
  }

  .information__group h3 {
    margin-top: 30px;
    font-size: 22px;
  }

  .information__group__text {
    margin-top: 20px;
    font-size: 16px;
    line-height: 1.8;
    letter-spacing: 0.1rem;
  }
}

.information__image {
  position: relative;
}

.entry-buttons {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.entry-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 14px 64px 14px 32px;
  background: #fff;
  border: 1px solid #A5E1FF;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.entry-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 32px;
  height: 1px;
  background: #4AABFD;
  transform: translateY(-50%);
}

.entry-button::before {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-top: 1px solid #4AABFD;
  border-right: 1px solid #4AABFD;
  transform: translateY(-50%) rotate(45deg);
}

.entry-button::after,
.entry-button::before {
  transition: transform 0.3s ease;
}

.entry-button:hover::after {
  transform: translate(6px, -50%);
}

.entry-button:hover::before {
  transform: translate(6px, -50%) rotate(45deg);
}

@media (min-width: 600px) {
  .entry-button {
    padding: 12px 24px;
  }

  .entry-button::before,
  .entry-button::after {
    display: none;
  }
}

@media (min-width: 1280px) {
  .entry-button {
    font-size: 16px;
    padding: 12px 70px 12px 30px;
  }
  
  .entry-button::before,
  .entry-button::after {
    display: block;
  }

  .entry-button:hover::after {
    transform: translate(10px, -50%);
  }

  .entry-button:hover::before {
    transform: translate(10px, -50%) rotate(45deg);
  }

  .entry-buttons {
    gap: 30px;
  }

}
/* information wrapper */
/* ===== information ===== */

/* ===== footer ===== */
.footer {
  background: #fff;
  border-top: 1px solid #e5e5e5;
}

.footer__inner {
  padding: 48px 8% 40px;
}

.footer__company {
  /* margin-bottom: 48px; */
  margin-bottom: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer__logo__img {
  height: 30px;
  width: auto;
  display: block;
}

.footer__logo__text {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #0A2E8E;
  font-weight: 500;
  white-space: nowrap;
}

.footer__address {
  margin-top: 20px;
  font-style: normal;
  font-size: 12px;
  line-height: 1.9;
  letter-spacing: 0.06em;
  color: #333;
}

.footer__sns {
  display: flex;
  gap: 8px;
  padding: 12px 0;
}

.footer__sns img {
  width: 34px;
  height: 34px;
}

.footer__cert {
  width: 36px;
  height: auto;
}

.footer__nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 32px;
  row-gap: 20px;
}

.footer__nav__title {
  font-size: 13px;
  font-weight: 500;
  color: #000;
  line-height: 2.0;
  letter-spacing: 0.08em;
}

.footer__nav__group a {
  display: block;
}

.footer__nav a {
  font-size: 12px;
  line-height: 2.2;
  text-decoration: none;
  color: #000;
}

.footer__nav li {
  position: relative;
  padding-left: 1em;
}

.footer__nav li::before {
  content: "-";
  position: absolute;
  left: 0;
  top: 0;
}

.footer__nav__single li::before {
  content: ">";
  font-size: 10px;
  line-height: 2.7;
}

.footer__copy {
  background: #0A2E8E;
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 24px 0;
}

@media (min-width: 600px) {
  .footer__inner {
    padding: 70px 60px;
  }
  
  .footer__logo__img {
    height: 22px;
  }

  .footer__logo__text {
    font-size: 13px;
  }

  .footer__logo__img {
    height: 28px;
  }

  .footer__logo__text {
    font-size: 13px;
  }

  .footer__nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
}

@media (min-width: 1280px) {
  .footer__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 80px 80px 60px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 80px;
  }

  .footer__logo__img {
    height: 30px;
  }

  .footer__logo__text {
    font-size: 15px;
  }

  .footer__company {
    margin-bottom: 0;
  }

  .footer__address {
    font-size: 13px;
  }

  .footer__sns {
    gap: 10px;
    padding: 20px 0 10px;
  }

  .footer__nav__title {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .footer__nav a {
    font-size: 13px;
  }

  .footer__copy {
    font-size: 12px;
  }
}

@media (min-width: 1536px) {
  .footer__inner {
    padding: 80px 0 60px;
    gap: 180px;
  }

  .footer__logo__img {
    height: 38px;
  }

  .footer__address {
    font-size: 15px;
  }

  .footer__sns {
    gap: 20px;
    padding: 26px 0 40px;
  }

  .footer__sns img {
    width: 47px;
    height: auto;
  }

  .footer__cert {
    width: 40px;
  }

  .footer__nav__title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .footer__nav a {
    font-size: 15px;
    line-height: 2.6;
  }

  .footer__nav li::before{
    line-height: 2.2;
  }

  .footer__nav__single li::before{
    line-height: 3.85;
  }

  .footer__copy {
    font-size: 13px;
  }
}

/* page-up */
.page-up {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #003399;
  background: #FFF;
  display: none;
  z-index: 50;
}

.page-up::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #003399;
  border-left: 2px solid #003399;
  transform: rotate(45deg);
  display: block;
  margin: 17px auto;
  transition: transform 0.25s ease;
}

@media (min-width: 1280px) {
  .page-up {
    right: 26px;
    bottom: 26px;
    width: 56px;
    height: 56px;
  }

  .page-up::before {
    margin: 24px auto;
    border-top: 3px solid #003399;
    border-left: 3px solid #003399;
  }

  .page-up:hover::before {
    transform: translateY(-3px) rotate(45deg);
  }
}
/* page-up */
/* ===== footer ===== */
