@charset "utf-8";

/*
Theme Name: 株式会社サカデン
Author: hironori hashimoto
Author URI: https://pepinc.biz/
Description: 株式会社サカデンのオリジナルテンプレート
*/

html {
  font-size: 55%;
	scroll-behavior: smooth;
}

@media screen and (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-size: 1.4rem;
  text-rendering: auto;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  line-height: 2.1254;
  letter-spacing: 0.22rem;
  font-weight: 400;
  color: #333;
  font-family: YakuHanJP, "Noto Sans JP", "Noto Sans CJK JP",
    "Noto Sans CJK JP Subset", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s ease-in-out;
  display: block;
  position: relative;
}

h2,
h3,
h4,
h5 {
  line-height: 1.5;
}

.ps-br {
  display: none;
}

.sp-br {
  display: block;
}

@media screen and (min-width: 560px) {
  .ps-br {
    display: block;
  }

  .sp-br {
    display: none;
  }
}

.fade {
  opacity: 0;
  transition: opacity 1.4s,
    transform 0.8s;
}

.fade {
  opacity: 1;
}

.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.4s, transform 0.8s;
}

.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translateX(80px);
  -ms-transform: translateX(80px);
  transform: translateX(80px);
}

.fadein-right.scrollin {
  opacity: 1;
  -webkit-transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1),
    transform 1s cubic-bezier(0.23, 1, 0.32, 1),
    -webkit-transform 1s cubic-bezier(0.23, 1, 0.32, 1);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

/*********************************
ヘッダー
*********************************/
#head_wrap {
  position: sticky;
  top: 0px;
  z-index: 5;
}

.l-header {
  position: relative;
  background-color: #fff;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
	padding:0 15px;
}

.l-header__logo {
  flex: 0 0 50%;
  max-width: 50%;
  padding: 10px 0px;
}

.l-header__logo img {
  vertical-align: text-bottom;
}

@media only screen and (min-width: 560px) {
  .l-header__logo {
    flex: 0 0 17%;
    max-width: 17%;
    padding: 0px;
  }
}

@media only screen and (min-width: 560px) {
  .l-header__list {
    display: flex;
	  align-items:center;
  }

  .l-header__logo a:hover {
    opacity: 0.6;
  }
}
@media only screen and (max-width: 559px) {
	.l-header__list{
		    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    height: 80%;
	}
}
.l-header__link {
  padding: 22px 10px;
  font-weight: 500;
  text-align: center;
  font-size: 1.5rem;
}

@media only screen and (min-width: 560px) {
  .l-header__link {
    position: relative;
  }
	.l-header__link:hover{
		color:#FFFD02;
	}
  .l-header__link::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: 100%;
    height: 4px;
    background-color: #FFFD02;
    transform: scale(0, 1);
    transform-origin: center;
    transition: transform .2s;
  }

  .l-header__link:hover::before {
    transform: scale(1);
  }
}
.l-conversion__button{
/* background: rgb(222,0,41);
    background: radial-gradient(circle, rgba(222,0,41,1) 0%, rgba(249,221,0,1) 100%);
    animation: bggradient 20s ease infinite; */
    padding: 2px;
    border-radius: 8px;
	transition:.3s;
}
.l-conversion__button a {
padding: 8px 14px;
    background: #FFFD02;
    font-weight: bold;
	font-size: 1.5rem;
	text-align: center;
	border-radius: 8px;
	color: #333;
}
@keyframes bggradient{
	0% {
		background-position: 0% 50%;
	}
	50% {
		background-position: 100% 50%;
	}
	100% {
		background-position: 0% 50%;
	}
}
@media only screen and (min-width: 560px) {
  .l-conversion__button a {
    font-size: 1.3rem;
  }
}

.l-conversion__button a:hover {
background: rgb(222,0,41);
    background: radial-gradient(circle, rgba(222,0,41,1) 0%, rgba(249,221,0,1) 100%);
	color:#fff;
}

.l-conversion__button a i {
  font-size: 3.2rem;
  text-align: center;
}


@media screen and (max-width: 559px) {
  .menu .bar {
    width: 30px;
    height: 2px;
    background: #333;
    border-radius: 5px;
    opacity: 1;
    visibility: visible;
    transition: 0.3s ease;
    transform-origin: left;
  }

  .menu .bar1 {
    margin-bottom: 8px;
  }

  .menu .bar3 {
    margin-top: 8px;
  }

  .menu.toggle .bar1 {
    transform-origin: left;
    transform: rotate(45deg);
  }

  .menu.toggle .bar2 {
    opacity: 0;
    visibility: hidden;
  }

  .menu.toggle .bar3 {
    transform-origin: left;
    transform: rotate(-45deg);
  }

  .l-header__navigation {
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
	  opacity:0.85;
    margin-top: 72px;
    transition: 0.4s ease-out;
    display: flex;
    background-position: center;
    background-repeat: repeat;
  }

  l-header__navigation li {
    height: var(--nav-height);
    line-height: var(--nav-height);
    text-align: center;
    width: 100%;
    display: block;
  }

  .menu {
    display: block;
    margin-left: auto;
    padding-right: 15px;
    z-index: 11;
  }

  .menu.toggle+.l-header__navigation {
    transform: translateX(-100%);
  }
}
/*********************************
スライダー
*********************************/
.swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}

@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img{
  animation: zoom-in 10s linear 0s 1 normal both;  
}

.slide-text{
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  font-family: serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
  color: #fff;
  transform: translate(-50%,-50%);
}

.slide-img img{
  object-fit: cover;
  height: 100vh;
  width: 100vw;
}
/*********************************
パーツ
*********************************/
.p-common__inner {
  margin-bottom: 4rem;
}

@media only screen and (min-width: 560px) {
  .p-common__inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 0px;
  }

  .u-reverse {
    flex-direction: row-reverse;
  }
}
.p-common__title{
	background: #006cb7;
	color:#fff;
	font-size:2.6rem;
	padding:0 20px;
	display:flex;
	align-items:center;
	height: 180px;
    margin-bottom: 60px;
}
@media only screen and (min-width: 560px) {
	.p-common__title{
		font-size:3.2rem;
		padding:0 40px;
	}
}
.wrap {
  max-width: 1230px;
  margin: 0 auto;
  padding: 0 15px;
}

.u-hidden__wrap {
  overflow: hidden;
}

.c-common__headline {
  position: relative;
  margin-bottom: 7.2rem;
}

.p-items__headline {
  font-size: 14.4vw;
  font-family: 'Oswald', sans-serif;
  line-height: 1;
  letter-spacing: 1rem;

}
@keyframes gradientEffect {
  from {background-position: left}
  to {background-position: right}
}
@media only screen and (min-width: 960px) {
  .p-items__headline {
    font-size: 10rem;
  }
}

.c-common__body {
  margin-bottom: 70px;
  text-align: center;
}

/*********************************
メインビジュアル
*********************************/
.p-top__inner {
  overflow: hidden;
}

@media only screen and (min-width: 560px) {
  .p-top__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
  }
}

.p-top__hero {
  position: relative;
}

.p-top__hero--image picture {
  line-height: 0;
  display: block;
}

.p-top__hero::before {
  width: 58%;
  margin: 0 auto 20px;
  padding: 24px 30px;
  height: 90vh;
  min-height: 900px;
  width: 100%;
  background: -webkit-linear-gradient(left,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 60%);
  background: linear-gradient(to right,
      rgba(255, 255, 255, 0.8) 40%,
      rgba(255, 255, 255, 0) 60%);
}

@media only screen and (min-width: 960px) {
  .p-top__hero::before {
    margin: 0;
    padding: 0;
    width: 100%;
  }
}

.p-top__hero--catch {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  max-width: 100%;
  margin-top: 3rem;
font-family: 'Oswald', sans-serif;
	text-shadow: 0px 0px 11px rgb(0 0 0 / 47%);
}

@media only screen and (min-width: 560px) {
  .p-top__hero--catch {
    margin-top: 0rem;
  }
}

@media only screen and (min-width: 1280px) {
  .p-top__hero--catch {
    font-size: 5.188vw;
  }
}

.p-top__hero--catch span {
  padding: 6px;
  width: 100%;
  height: 100%;
	display:block;
}

@media only screen and (min-width: 560px) {
  .p-top__hero--catch span {
    width: auto;
    height: auto;
    margin: 0 5px;
	  display:inline-block;
  }
}

.smooth {
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
  animation: catch 1.4s forwards;
  animation-delay: .6s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .smooth {
    animation-delay: 1s;
  }
}

@keyframes catch {
  0% {
    transition-property: clip-path;
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0);
    opacity: 1;
  }
}

.p-top__body {
  color: #006cb7;
  font-size: 1.8rem;
  font-weight: bold;
  padding: 0 15px;
}

@media only screen and (min-width: 560px) {
  .p-top__body {
    font-size: 2rem;
  }
}

.p-top__body span {
  color: #ed6d00;
  background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
  background: linear-gradient(to right, transparent 50%, rgba(255, 165, 0, 0.3) 50%);
  background-repeat: repeat-x;
  background-size: 200% .6em;
  padding-bottom: .6em;
  background-position: -100% .6em;
}
.p-top__hero--image {
  position: relative;
  overflow: hidden;
}

.p-top__hero--image::before {
  animation: img-wrap 1.3s cubic-bezier(.4, 0, .2, 1) forwards;
  background: #fff;
  bottom: 0;
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes img-wrap {
  100% {
    transform: translateX(-100%);
  }
}

.p-top__hero--block {
  color: #fff;
    position: absolute;
    z-index: 1;
    bottom: 20%;
    left: 5%;
    text-align: left;
}
.p-top__hero--block p{
	text-shadow: 0px 0px 11px rgb(0 0 0 / 47%);
	font-size:1.8rem;
}
.p-top__campaign__body {
  font-size: 1.8rem;
  display: block;
  letter-spacing: 0.5rem;
}

.p-top__campaign a {
  z-index: 2;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  display: block;
  padding: 24px 15px;
  background-image: repeating-linear-gradient(45deg,
      rgba(0, 107, 183, 1),
      rgba(0, 107, 183, 1) 5px,
      rgba(0, 107, 183, 0.9) 0,
      rgba(0, 107, 183, 0.9) 10px);
}

@media only screen and (min-width: 560px) {
  .p-top__campaign a {
    font-size: 3.2rem;
  }
}

.p-top__campaign a:hover {
  opacity: 0.6;
}

.p-top__hero__icon {
  background-color: #006cb7;
  color: #fff;
  display: inline-block;
  position: relative;
  height: 45px;
  text-align: center;
  max-width: 70%;
  line-height: 45px;
  font-size: 2rem;
  font-weight: bold;
  width: 100%;
  margin-bottom: 2rem;
  animation: ribon 1.4s forwards;
  animation-delay: 1.1s;
  opacity: 0;
}

@media only screen and (min-width: 560px) {
  .p-top__hero__icon {
    animation-delay: 1.6s;
  }
}

@keyframes ribon {
  0% {
    opacity: 0;
    transform: matrix(1, 0, 0, 1, 0, 100);
    transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  }

  100% {
    opacity: 1;
    transform: matrix(1, 0, 0, 1, 0, 0);
  }
}

.p-top__hero__icon::before {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  left: -35px;
  z-index: -2;
  border: 20px solid #015996;
  border-left-color: transparent;
  /*山形に切り抜き*/
}

.p-top__hero__icon::after {
  content: "";
  position: absolute;
  width: 10px;
  bottom: -10px;
  right: -35px;
  z-index: -2;
  border: 20px solid #015996;
  border-right-color: transparent;
  /*山形に切り抜き*/
}
.p-common__headline {
  font-size: 1.6rem;
  line-height: 1.4;
letter-spacing: 0.3rem;
    color: #585858;
    margin-top: 1.5rem;
}

/*********************************
メッセージ
*********************************/
section {
  padding: 0px 0px 10rem;
}
.material-icons {
  display: inline-flex;
  vertical-align: middle;
}
.p-message__headline{
	z-index: 0;
  font-size: 15.4vw;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  text-align: left;
  line-height: 1;
  letter-spacing: 1rem;
  color: #F2BD19;
}
@media only screen and (min-width: 960px) {
.p-message__headline{
    font-size: 10rem;
  }
}
.p-message__image{
	position:relative;
}
.p-message__image img{
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
@media only screen and (min-width: 960px) {
.p-message__image{
	flex:0 0 45%;
	max-width:45%;
}
	.p-message__block{
		flex:0 0 45%;
	max-width:45%;
	}
}
.p-message__lead{
	font-size:2rem;
	background: #FFFD02;
	padding:4px 15px;
	color:#fff;
	display:inline-block;
	margin-bottom:10px;
}
.p-message__body{
	margin-top:2rem;
}
.p-message__ceo{
	font-size:1.4rem;
	text-align:right;
	margin-top:3.2rem;
}
/*********************************
事業内容
*********************************/
.p-technology__headline{
	padding-bottom: 19px;
	margin-bottom: 28px;
  width: 100%;
  font-size: 22px;
	font-family: 'Oswald', sans-serif;
  text-align: center;
  background-image: linear-gradient(90deg, #c7c7c7 0%, #c7c7c7 45%, #FFFD02 45%, #FFFD02 55%, #c7c7c7 55%, #c7c7c7 100%);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: center bottom;
}
.p-technology__inner{
	text-align:center;
}
.c-technology__inner{
	margin-bottom:2.8rem;
}
.p-technology__block{
	border: 1px solid #e6e6e6;
}
@media only screen and (min-width: 560px) {
.p-technology__block{
	width : calc(100% / 3) ;
}
}
.p-technology__block ul{
	padding:15px;
}
.p-technology__block ul li{
	font-size:1.2rem;	
}
.p-works__headline{
	font-size:2rem;
	position:relative;
	margin:1rem 0px 14px; 
    padding-bottom: 5px;
}
.p-works__headline::after{
	content:'';
	background:#FFFD02;
	width:40px;
	height:3px;
	position:absolute;
	bottom:-12px;
	left:0px;
	right:0px;
	margin: 0 auto;
}
.motion-txt {
  display: inline-block;
  position: relative;
  overflow: hidden;
  padding: 10px;
}

.motion-txt::after {
  content: '';
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background:#FFFD02;
  transform: translate3d(-101%, 0, 0);
}

.js-scroll.show .motion-txt::after {
  transition-property: transform, opacity;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt::after {
  transition-property: transform;
  transition-duration: 0.8s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}

.motion-txt .motion-inner {
clip-path: inset(0 100% 0 0);
	transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.js-scroll.done .motion-txt .motion-inner {
  clip-path: inset(0);
}

.u-curriculum__inner {
  display: flex;
  justify-content: space-between;
}


/*********************************
会社概要
*********************************/
.p-company__inner{
	max-width: 1230px;
    margin: 0 auto 10rem;
    padding: 0 15px;
}
@media only screen and (min-width: 560px) {
.p-company__block{
	flex:0 0 48%;
	max-width:48%;
}
}
/*********************************
求人情報
*********************************/
.recruit-content{
	background-image:url("/wp-content/uploads/2022/02/recruit.jpg");
	background-size:cover;
	padding:0px 5px 80px;
	color:#fff;
	margin-bottom:10rem;
	position:relative;
}
.recruit-content .p-items__headline{
	color:#333;
}
.recruit-content::before{
	content:'';
	background:#fff;
	position:absolute;
	left:0px;
	top:0px;
	height:40px;
	width:100%;
}
@media only screen and (min-width: 560px) {
	.recruit-content{
		padding:0px 20px 100px;
	}
}
.recruit-content__headline{
	display:inline-block;
	background:#333;
	color:#FFFD02;
	font-size:1.8rem;
	text-align:center;
	padding:0px 10px;
	font-weight:bold;
	margin-bottom:2rem;
	opacity:0.8;
}
.recruit-content__body{
	margin-bottom:2.4rem;
}
/*********************************
アクセスマップ
*********************************/
.p-access__block {
  margin-bottom: 20px;
}

@media only screen and (min-width: 560px) {
  .p-access__block {
    flex: 0 0 40%;
    margin-bottom: 0px;
  }

  .p-access__map {
    flex: 0 0 50%;
  }
}

.p-access__headline {
  font-size: 2.4rem;
  border-bottom: 1px solid #006cb7;
  padding-bottom: 10px;
  border-bottom: 4px solid #006cb7;
  padding-bottom: 10px;
  margin-bottom: 30px;
  color: #006cb7;
}
.c-common__link {
  text-align: right;
  color: #333;
  font-weight: bold;
}

.c-common__link i {
  font-size: 16px;
}
.c-common__link::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  background-color: rgba(243, 153, 31, 0.7);
  border-radius: 50%;
  transition: 0.3s;
}

.c-common__link:hover::after {
  width: 20px;
  height: 20px;
}

.c-2colums__block .material-icons {
  font-size: 6rem;
  text-align: center;
  display: block;
  color: #f3991f;
  line-height: 0.8;
  margin-top: 10px;
}

.p-access__table {
  text-align: left;
  width: 100%;
}

.p-access__table tr {
  display: flex;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6f0f8;
  padding-bottom: 10px;
}

.p-access__table tr th {
  flex: 0 0 25%;
  max-width: 25%;
}

.p-access__table tr td {
  flex: 0 0 70%;
  max-width: 70%;
}


/*********************************
ブログ
*********************************/
.p-blog__inner {
  position: relative;
	margin-top:6rem;
}

.p-blog__inner::before {
  content: "";
  background: #f1f1f1;
	max-width:80%;
  width: 100%;
  height:50%;
  position: absolute;
  top: 50px;
  right: 0px;
}
.p-block__content{
	background:#fff;
	padding: 20px;
    z-index: 2;
    position: relative;
	box-shadow: 0px 3px 15px rgb(0 0 0 / 5%);
}
.p-blog__inner .p-common__inner {
  position: relative;
  z-index: 1;
}

.p-blog__image img {
  object-fit: cover;
  height: 288px;
}

@media only screen and (min-width: 560px) {
  .p-blog__image img {
    height: 247px;
  }
}

.p-blog__button {
  margin-top: 2.4rem;
  text-align: right;
}

.p-link__block {
  display: inline-block;
}
.p-blog__date {
  color: #999;
  font-size: 1.2rem;
}

.p-blog__headline {
  margin-top: 0.5rem;
}

.p-blog__link {
  display: block;
  border-bottom: 1px solid #d6d5d5;
	position:relative;
}

@media only screen and (min-width: 560px) {
	.p-blog__link::before{
content: "";
    display: block;
    position: absolute;
    width: 0;
    bottom: 0;
    height: 2px;
    margin: -5px 0;
    left: 0;
    background-color: white;
    transition: all 0.4s ease-in 0s;
	}
	.p-blog__link:hover::before {
		width: 100%;
	}
}

.p-blog__block {
  padding: 16px;
}
.works-content{
	margin-top:10rem;
}
.blog-common-ttl{
	color:#333;
	font-size:2.4rem;
	border-bottom:4px solid #FFFD02;
	margin-bottom:2rem;
	padding-bottom:2rem;
}
.blog-date{
	color:#999;
	font-size:1.3rem;
	text-align:right;
	margin-bottom:4rem;
}
.common-btn{
  background-color: #FFFD02;
  max-width: 500px;
  color: #333;
  margin: 0 auto;
  height: 64px;
  line-height: 64px;
  border-radius: 4px;
  text-align: center;
  margin: 4rem auto 8rem;
  font-weight: bold;
}
.common-btn:hover{
	background-color: #333;
  color:#FFFD02;
}
/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
    margin-left: auto;
    padding-left: 0;
    margin-right: auto;
    margin-bottom: 6rem;
}

#breadcrumb li {
    display: inline;
    list-style: none;
}

#breadcrumb li:after {
    content: '>';
    padding: 0 10px;
}

#breadcrumb li:last-child:after {
    content: '';
}

#breadcrumb li a {
    text-decoration: none;
    display: inline-block;
}

#breadcrumb li:first-child a:before {
    font-family: "Font Awesome 5 Free";
    content: "\f015";
    -webkit-font-smoothing: antialiased;
    font-weight: bold;
    font-size: 1.3rem;
    color: #333;
    padding-right: 5px;
}

#breadcrumb li a:hover {
    opacity: 0.5;
}

/*********************************
お問い合わせ
*********************************/
.p-contact__inner{
	position:relative;
}
.p-contact__inner::after{
	    content: "";
    background: #f1f1f1;
    max-width: 80%;
    width: 100%;
    height: 65%;
    position: absolute;
    top: 40px;
    right: 0px;
	z-index:-1;
}
.p-contact__tel{
	background: #FFFD02;
	color:#333;
	font-size:1.3rem;
	text-align:center;
	max-width:500px;
	margin:1.5rem auto 8rem;
	padding:20px;
}
.p-contact__link{
	font-size:3.2rem;
	font-family: 'Oswald', sans-serif;
	line-height:1.1;
}
.swiper-pagination-bullet{
width: 30px!important;
    height: 4px !important;
    background: #fff !important;
    border-radius: 0px!important;
    margin: 0 6px!important;
}
.swiper-pagination-bullet-active{
	background:#FFFD02;
}
.cform tr {
    display: block;
    margin-bottom: 4.8rem;
}

@media screen and (min-width: 560px) {
    .cform tr {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.cform th {
    display: block;
    margin-bottom: 1rem;
    text-align: left;
}

@media screen and (min-width: 560px) {
    .cform th {
        margin-bottom: 0;
        margin-right: 1rem;
        max-width: 20rem;
        width: 100%;
        align-self: flex-start;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        display: flex;
        justify-content: space-between;
    }
}

@media screen and (min-width: 560px) {
    .cform td {
        flex-basis: 0;
        flex-grow: 1;
        max-width: 100%;
        width: 100%;
        display: block;
    }
}
.mw_wp_form {
    margin: 4rem auto 0;
    width: 100%;
    table-layout: fixed;
    word-break: break-all;
    word-wrap: break-all;
}
@media screen and (min-width: 560px) {
    .mw_wp_form {
        max-width: 960px;
        margin: 0 auto;
    }
}

.mw_wp_form table {
    width: 100%;
	text-align:left;
}
.mw_wp_form table tr{
	margin-bottom:20px;
}
.mw_wp_form [type=submit] {
    display: inline-block;
    font-size: 20px;
    padding: 10px 30px;
    text-decoration: none;
    background: #ff8f00;
    color: #FFF;
    border-bottom: solid 4px #B17C00;
    border-radius: 3px;
}

.mw_wp_form option,
.mw_wp_form textarea,
.mw_wp_form input[type=text],
mw_wp_form select,
.mw_wp_form input[type=email],
.mw_wp_form input[type=search],
.mw_wp_form input[type=url] {
    background-color: #fff;
    border: 1px solid #c3d4e0;
    padding: 5px 10px;
    margin-bottom: 5px;
    width: 100%;
	border-radius: 4px;
}

@media screen and (min-width: 560px) {

    .mw_wp_form option,
    .mw_wp_form textarea,
    .mw_wp_form input[type=text],
    .mw_wp_form select,
    .mw_wp_form input[type=email],
    .mw_wp_form input[type=search],
    .mw_wp_form input[type=url] {
        width: 100%;
    }
}

.mw_wp_form textarea {
    min-height: 300px;
}

.required-srt {
    display: inline-block;
    background-color: #333;
    color: #fff;
	padding: 5px 0.5em;
    font-size: 1.1rem;
    margin-left: 1rem;
    line-height: 1;
}

@media screen and (min-width: 560px) {
    .required-srt {
        margin-left: 0;
			display: flex;
    align-items: center;
		padding: 0 0.2em;
		height: 28px;
    }
}

.mw_wp_form input[type="submit"] {
    cursor: pointer;
	background:#FFFD02;
    padding: 24px 32px;
    color: #333;
    font-weight: bold;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto 60px;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
	max-width:500px;
}

.mw_wp_form input[type="submit"]:hover {
    background-color: #333;
    color:#fff;

}

.submit-btn input:hover {
    background: #fff;
    color: #00142c;
}

.form-btn__inner {
    margin-top: 4rem;
}

.p-contact__body {
    text-align: center;
    font-weight: bold;
}

select {
    -moz-appearance: menulist;
    -webkit-appearance: menulist;
}

select::-ms-expand {
    display: block;
}

.submit-btn {
    cursor: pointer;
    max-width: 280px;
    background-color: #ED6D00;
    padding: 24px 32px;
    color: #fff;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn::after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: -100%;
    background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 75%);
    -webkit-animation: shine 2s infinite;
    animation: shine 2s infinite;
}

#wpcf7-modify {
    cursor: pointer;
    max-width: 280px;
    background-color: #fff;
    padding: 24px 32px;
    color: #FF9103 !important;
    border: 1px solid #FF9103 !important;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    color: #fff;
    display: block;
    letter-spacing: 0.25rem;
    position: relative;
    transition: .3s;
    font-weight: 600;
    border: none;
}

.submit-btn:hover {
    opacity: 0.6;
}

.thanks-block {
    margin-bottom: 16rem;
    text-align: left;
}

.thanks-block h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

@media screen and (min-width: 560px) {
    .thanks-block {
        text-align: center;
    }
}

.thanks-text {
    line-height: 2.4;
	max-width:960px;
	margin:0 auto;
}

.caption {
    color: #999;
    margin-top: 2rem;
    display: block;
}

.contact-agreement__body {
    text-align: center;
    margin: 2rem 0;
}

.contact-agreement__body a {
    display: inline-block;
    text-decoration: underline;
}

@media screen and (min-width: 560px) {
    .contact-agreement__body a {
        margin-bottom: 4rem;
    }
}

.privacy-policy__wrap {
    max-width: 960px;
    margin: 0 auto 14rem;
}

.privacy-policy__block {
    margin-bottom: 4rem;
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.wpcf7 form.sent .wpcf7-response-output {
    border: 2px solid #ffffff !important;
    background: #fff;
}

.contact-headline {
    font-size: 2rem;
    margin-bottom: 4rem;
}

.wpcf7-mail-sent-ok {
    display: none !important
}

/*********************************
footer
*********************************/
copyright {
  background-color: #333;
  color: #fff;
  text-align: center;
  display: block;
  font-size: 1.2rem;
  padding: 15px 10px;
}

.p-footer__logo {
  text-align: center;
  max-width: 150px;
  margin: 0 auto 3rem;
}

.c-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 3;
}

.c-pagetop__button {
  background-color: #333;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  width: 40px;
  height: 140px;
  -webkit-writing-mode: vertical-lr;
  -ms-writing-mode: tb-lr;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

@media only screen and (min-width: 560px) {
  .c-pagetop__button {
    width: 60px;
    height: 150px;
  }
}

.c-pagetop__button:hover {
  background-color: #EE6E01;
}

.p-footer__link {
  text-align: center;
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 30px;
}

.p-footer__link a:hover {
  color: #ed6d00;
}
.insta_btn2{/*ボタンの下地*/
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
	margin:0 auto 10rem;
  height: 50px;/*高さ*/
  width: 190px;/*幅*/
  text-align: center;/*中身を中央寄せ*/
  font-size: 18px;/*文字のサイズ*/
  line-height: 50px;/*高さと合わせる*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
	display:flex;
	justify-content:center;
	align-items:center;
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 35px;/*アイコンサイズ*/
  position: relative;
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}
.common-headline{
  font-size:2.4rem;
  text-align: center;
  letter-spacing: 0.4rem;
  position: relative;
}
@media screen and (min-width: 960px) {
  .common-headline{
    font-size:3.2rem;
  }
}
.common-headline span{
  display: block;
  font-size:1.4rem;
  letter-spacing: 0.7rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
}
.common-headline::after{
  content:'';
  background-color:#42455e;
  width: 80px;
  height:2px;
  position: absolute;
  bottom:-20px;
  text-align: center;
  left: 0;
  right: 0;
  margin: 0 auto;

}
.common-headline span {
    display: block;
    font-size: 1.4rem;
    letter-spacing: 0.7rem;
    font-family: 'Lato', sans-serif;
    font-weight: 900;
}
.p-recruit__inner {
    margin: 5rem auto 4rem;
    text-align: center;
}
.p-recruit__headline {
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    display: inline-block;
    background: #222;
    font-style: italic;
    color: #fff;
    line-height: 1;
    padding: 10px;
    text-align: center;
    margin: 0 auto 2.5rem;
}
.p-recruit__body {
    line-height: 1.65;
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: #333;
    font-weight: bold;
    padding: 5px 10px;
}
.u-recruit__point {
    margin-bottom: 3rem;
}
.corporate-table {
    width: 100%;
    border-collapse: collapse;
    margin: 10rem auto;
    max-width: 960px;
}
.corporate-table tr{
	border-bottom:1px solid #cecece;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 2rem 1.5rem;
}
@media screen and (min-width: 960px) {
.corporate-table tr{
	padding: 3rem 1.5rem;	
}
}
.corporate-table tr:first-child{
	border-top:1px solid #cecece;
}
.corporate-table tbody{
	display: block;
  width: 100%;
}
.corporate-table th{
	width: 30%;
	text-align: justify;
	text-justify: inter-ideograph;
	font-weight: 500;
}
.corporate-table td{
  width: 70%;
}
@media screen and (min-width: 960px) {
.corporate-table th,.corporate-table td{
	padding: 1rem 3rem;
}
}
.corporate-table td a{
	display:inline-block;
	margin-right:15px;
}

.common-ttl__block{
  font-size:4.2rem;
  letter-spacing: 0.5rem;
  color:#fff;
  background-image: url("/wp-content/uploads/2023/06/recruit-mv.jpg");
  background-position: 100%;
  line-height: 1.4;
  padding:8rem 0;
  margin-bottom: 8rem;
  position: relative;
  z-index: 0;
  background-size: cover;
    background-repeat: no-repeat;
}
@media screen and (min-width: 960px) {
  .common-ttl__block{
  font-size:6.4rem;
  background-size:auto;
  padding:12rem 0;
}
}
.common-ttl__block h2 span{
  display: block;
  font-size:1.4rem;
}
.common-ttl__block::after{
  content: '';
  background-color: #000;
  opacity: 0.1;
  z-index: -1;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.u-recruit__point{
	margin-bottom:3rem;
}
.col-5{
	text-align:center;
	margin-bottom:15px;
	border:1px solid #999;
}
@media screen and (min-width: 560px) {
.col-5{
	flex:0 0 18.91%;
	max-width:18.91%;
	margin-bottom:0px;
}
}
.p-common__point{
	background-color:#FFFD02;
	padding:5px 10px;
	font-size:1.8rem;
	font-weight:bold;
	color:#333;
}
@media screen and (max-width: 559px) {
	.interview-headline{
	font-weight:bold!important;
		font-size:1.8rem;
		background-color: #FFFD02;
		padding:5px 5px;
		margin-bottom:10px;
}
	.interview__inner{
	display:block!important;
}
	.interview__description,
	.interview-headline{
		display:block!important;
	width:100%!important;
	}
}