/*
Theme Name: MJE INC.
Author: hironori hashimoto
Author URI: https://mjeinc.co.jp/design/
Description: MJE INC. DESIGN専用のオリジナルテンプレート
*/
/****************************************
共通パーツ
*****************************************/
html {
  font-size: 55%;
}
@media screen and (min-width: 560px) {
  html {
    font-size: 58.5%;
  }
}
@media screen and (min-width: 960px) {
  html {
    font-size: 62.5%;
  }
}
body {
  font-size: 1.4rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
  color: #221815;
  font-weight: 500;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-font-feature-settings: 'palt';
  font-feature-settings: 'palt';
  letter-spacing: 0.1rem;
  font-family: YakuHanJP, 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset', YuGothic,  "Yu Gothic Medium", "Yu Gothic", sans-serif;
}
@media screen and (max-width: 559px) {
  .pc-only {
    display: none;
  }
}
@media screen and (min-width: 560px) {
  .sp-only {
    display: none;
  }
}
.en {
  font-family: 'Teko', sans-serif;
}
a {
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
  -webkit-transition: .3s;
  transition: .3s;
}
.jp {
  font-family: YakuHanJP, 'Noto Sans', 'Noto Sans CJK JP', 'Noto Sans CJK JP Subset',  YuGothic, "Yu Gothic Medium",  "Yu Gothic",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;
}
/****************************************
横幅
*****************************************/

.container {
  padding: 0 16px;
  margin: 0 auto;
}
@media screen and (min-width: 560px) {
.container {
  max-width: 1032px;
}
}
.wrapper {
  max-width: 90%;
  margin: 0 auto;
}
.wrap {
  max-width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 960px) {
.wrap {
  max-width: 80%;
}
}
/****************************************
パンくずリスト
*****************************************/
#breadcrumb {
  margin-left:auto;
  padding-left:0;
	max-width:90%;
	margin-right:auto;
	padding-top: 2rem;
	margin-bottom:10rem;
}
@media screen and (min-width: 960px) {
#breadcrumb {
	margin-bottom:16rem;	
}
}
#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: #00bedc;
	padding-right: 5px;
}

#breadcrumb li a:hover {
  opacity:0.5;
}
/****************************************
共通タイトル
*****************************************/
.common-headline {
	font-size: 4rem;
	position: relative;
	letter-spacing: 0.5rem;
	text-align: center;
	margin-bottom: 10rem;
	padding-bottom: 1rem;
	line-height: 1;
	font-family: 'Teko', sans-serif;
	font-weight: 600;
}
@media screen and (min-width: 560px) {
.common-headline {
	font-size: 5rem;
	letter-spacing: 0.75rem;
}
}
@media screen and (min-width: 960px) {
.common-headline {
	font-size: 6rem;
	letter-spacing: 1rem;
}
}
.common-headline::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 40px;
  text-align: center;
  margin: 0 auto;
	background:#231815;
	left: 0;
	right: 0;
	bottom:-15px;
}
.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-color: #000;
  transform: translate3d(-101%, 0, 0);
}
.js-scroll.show .motion-txt:after {
  transition-property: transform, opacity;
  transition-duration: 0.5s;
  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.5s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(103%, 0, 0);
}
.motion-txt .motion-inner {
  display: inline-block;
  opacity: 0;
}
.js-scroll.done .motion-txt .motion-inner {
  opacity: 1;
}

@keyframes mask_fadeIn {
  0% {
    /* x方向の倍率を0に */
    transform: scaleX(0);
    /* 変換の原点を(0, 0)に指定 */
    transform-origin: 0 0;
  }
  45% {
    /* x方向の倍率を初期値(1倍)に */
    transform: none;
    transform-origin: 0 0;
  }
  50% {
    transform: none;
    transform-origin: 100% 0;
  }
  100% {
    transform: scaleX(0);
    transform-origin: 100% 0;
  }
}

.is-fadeIn {
  position: relative;
  overflow: hidden;
}

.is-fadeIn:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: #221815;
  transform: scaleX(0);
  animation: mask_fadeIn 1.0s cubic-bezier(0.77, 0, 0.175, 1) 0s;
}

/****************************************
横並び系
*****************************************/
@media screen and (min-width: 560px) {
  .common-inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
	  -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}
.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.common-sp__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
	-webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.common-btn{
	background-color:#00bedc;
	border:1px solid #221815;
	color:#fff;
	font-weight: bold;
	max-width:280px;
	height:70px;
	line-height: 70px;
	position: relative;
	text-align: center;
	margin:0 auto 10rem;
}
.whats-payme-movie__shadow {
  background-color:
    #ffe000;
  background-image: url(/assets/images/common/shadow_pattern.png);
  background-repeat: repeat;
  background-position: top left;
  background-size: 5px 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 5px;
  left: 5px;
  border-radius: 20px;
  overflow: hidden;
  -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.whats-payme-movie:hover .whats-payme-movie__shadow {
  -webkit-transform: translate(2px, 2px);
  -ms-transform: translate(2px, 2px);
  transform: translate(2px, 2px);
  -webkit-animation: shadowloop 0.2s linear infinite;
  animation: shadowloop 0.2s linear infinite;
}
/****************************************
TOP-メインビジュアル
*****************************************/
.main-hero{
	position: relative;
	
}
.main-hero video{
	width: 100%;
	height:320px;
	border:none;
	filter: drop-shadow(0px 0px #000);
}
@media screen and (min-width: 960px) {
.main-hero video{
	height:75vh;	
}
}
@media screen and (min-width: 560px) {
.main-hero video{
	height:100vh;	
}
}
/****************************************
TOP-イントロ
*****************************************/
.scroll-cursor{
	position:relative;
  bottom: 0px;
	letter-spacing: 0.25rem;
font-size: 2rem;
  z-index: 2;
  display: block;
	margin:0 auto;
	text-align:center;
}
@media screen and (min-width: 560px) {
.scroll-cursor{
	display: inline-block;
	position: absolute;
    left: 0;
    right: 0;
    margin: auto;
  text-decoration: none;
}
}
.scroll-cursor span {
  position: absolute;
  top: -42px;
	left: 50%;
	width: 16px;
	height: 16px;
  margin-left: -12px;
  border-left: 1px solid #221815;
  border-bottom: 1px solid #221815;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}

.top-description{
	background-color: #ffe100;
	position:relative;
	overflow:hidden;
	padding:10rem 0 0;
}
.top-description::after{
	content:'';
	border-radius: 50%;
	position: absolute;
	right: 5%;
	width: 520px;
	height: 520px;
	z-index: 1;
	top: 0%;
}
.top-description__image{
	position:relative;
	z-index:2;
}
.top-description__block{
	z-index:2;
}
.top-description__bg{
	position:relative;
}
.top-description__bg::after{
	content:'';
	background:#fff;
	border-radius:50%;
	height: 350px;
	width: 350px;
	position: absolute;
	display: block;
	top: -15%;
	right: -20%;
}
@media screen and (min-width: 560px) {
.top-description__bg::after{
	height: 500px;
    width: 500px;
    top: 10%;
}	
}
@media screen and (min-width: 960px) {
.top-description__bg::after{
	height: 700px;
	width: 700px;	
	top: -30%;
	right: -30%;
}
}
.top-description__block{
	padding-bottom:5rem;
}
@media screen and (min-width: 560px) {
.top-description__block{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 56.25%;
    flex: 0 0 56.25%;
    max-width: 56.25%;
	padding-bottom:10rem;
}
.top-description__bg{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 43.00%;
	flex: 0 0 43%;
	max-width: 43%;
	}
}
.top-description__image{
	position: relative;
	top: 0;
	width: 50%;
	margin:0 auto;
}
@media screen and (min-width: 560px) {
.top-description__image{
	width: 100%;
	margin:0;
}
}
.top-description__image span{
	position:absolute;
	right: -20%;
	top: -19%;
	width:50%;
}
@media screen and (min-width: 560px) {
.top-description__image span{
	right: 0%;
    top: -6%;
    max-width: 40%;
}
}
@media screen and (min-width: 960px) {
.top-description__image span{
	right: 10%;
	top: -18%;
}
}
.top-description__image img{
	position:relative;
	z-index:100;
}
.top-description__image span img{
	position:relative;
	z-index:101;
	animation-name: anime;
  animation-duration: 2s;
  animation-iteration-count: infinite;
	
}
@keyframes anime
{
  from{ transform : rotate(20deg); }
 
  50%{ transform : rotate(0deg); }
  
  to{ transform : rotate(20deg); }
}
.top-description__block h2{
	font-size:3rem;
	position:relative;
	margin-bottom:4rem;
	padding-bottom:4rem;
}
.top-description__block h2::after{
	content:'';
	position:absolute;
	bottom:0;
	width:40px;
	height:4px;
	left:0;
	background:#221815;
}
@media screen and (min-width: 560px) {
.top-description__block h2{
	font-size:4rem;
}	
}
.top-description__block p{
	font-size:1.8rem;
	line-height:2.2;
}
/****************************************
TOP-SERVICE
*****************************************/
.top-service{
	padding:8rem 0;
}
@media screen and (min-width: 560px) {
.top-service{
	padding:10rem 0;
}
}
@media screen and (min-width: 960px) {
.top-service{
	padding:18rem 0;
}
}
.top-service__image{
	padding: 8rem 0;
	box-shadow:5px 5px 0px 0px rgba(0, 0, 0, 1);
	transition:.3s;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	border:2px solid #000;
}
@media screen and (min-width: 560px) {
.top-service__image{
	padding: 48% 0;
}	
}
@media screen and (min-width: 960px) {
.top-service__image{
	padding: 42% 0;
	}
}
.service-01{
	background-image: url("./images/a5.png");
}
.service-01:hover{
	background-image: url("./images/a5.gif");
}
.service-02{
	background-image: url("./images/a6.jpg");
}
.service-02:hover{
	background-image: url("./images/a6.gif");
}
.service-03{
	background-image: url("./images/a7.png");
}
.service-03:hover{
	background-image: url("./images/a7.gif");
}
.service-04{
	background-image: url("./images/a8.png");
}
.service-04:hover{
	background-image: url("./images/a8.gif");
}
.service-05{
	background-image: url("./images/a9.png");
}
.service-05:hover{
	background-image: url("./images/a9.gif");
}

.service-06{
	background-image: url("./images/a10.png");
}
.service-06:hover{
	background-image: url("./images/a10.gif");
}

.service-07{
	background-image: url("./images/a11.png");
}
.service-07:hover{
	background-image: url("./images/a11.gif");
}

.service-08{
	background-image: url("./images/a12.png");
}
.service-08:hover{
	background-image: url("./images/a12.gif");
}
.top-service__block{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 48.00%;
	flex: 0 0 48.00%;
	max-width: 48.00%;
	text-align:center;
		margin-bottom:4rem;
}
@media screen and (min-width: 560px) {
.top-service__block{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 21.75%;
	flex: 0 0 21.75%;
	max-width: 21.75%;
	margin-bottom:7rem;
}
}
.top-service__name{
	padding-top: 2rem;
	font-size: 1.4rem;
	letter-spacing: 0rem;
}
@media screen and (min-width: 560px) {
.top-service__name{
	font-size: 1.5rem;
}	
}
@media screen and (min-width: 960px) {
.top-service__name{
	font-size: 1.6rem;
	letter-spacing: 0.3rem;
}	
}
.top-service__block a:hover .top-service__image{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
	left: 0;
	right: 0;
    width: 100%;
	z-index:10;
}
.modal__bg{
    background: rgba(255,225,0 ,0.8);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__content{
    background: #fff;
    left: 50%;
    padding: 80px 40px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 75%;
	border-radius: 20px;
}
@media screen and (min-width: 560px) {
.modal__content{
	width: 60%;	
}
}
@media screen and (min-width: 960px) {
.modal__content{
	width: 50%;	
}
}
.modal-wrap{
	max-width:900px;
	margin:0 auto;
}
.modal-logo{
	margin-bottom:2rem;
	border:2px solid #000000;
}
@media screen and (min-width: 560px) {
.modal-logo{
	margin-bottom:0rem;
	-webkit-box-flex: 0;
	-ms-flex: 0 0 40.82608%;
	flex: 0 0 40.82608%;
	max-width: 40.82608%;	
}
}
@media screen and (min-width: 560px) {
.mondal-block{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 48.82608%;
	flex: 0 0 48.82608%;
	max-width: 48.82608%;
}
}
.mondal-block h3{
	font-size:4rem;
	position:relative;
	line-height:1;
	margin-bottom:6rem;
	padding-bottom:2rem;
}
.mondal-block h3::after{
	content:'';
	position: absolute;
  height: 4px;
  width: 40px;
	background:#231815;
	left: 0;
	bottom:-15px;
	animation-name: animation-haniwaman;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-delay: 0s;
  animation-iteration-count: infinite;
  animation-direction: normal;
}
@keyframes animation-haniwaman {
  0% {width: 0px;}
  100% {width: 60px;}
}
.btn-close{
	position: absolute;
	right: 3%;
	top: 0%;
	transition:.3s;
}
@media screen and (min-width: 560px) {
.btn-close{
	right: 4%;
	top: 0%;	
}
}
.btn-close:hover{
	opacity:0.6;
}
/****************************************
TOP-ワークス
*****************************************/
.top-works {
	padding:8rem 0;
	background-color: #fffdf5;
}
@media screen and (min-width: 560px) {
.top-works {
	padding:10rem 0;
}
}
@media screen and (min-width: 960px) {
.top-works {
	padding:18rem 0;
}
}

.top-works__block{
	margin-bottom:60px;
}
@media screen and (min-width: 560px) {
.top-works__block{
	-webkit-box-flex: 0;
	-ms-flex: 0 0 31.25%;
	flex: 0 0 31.25%;
	max-width: 31.25%;
}
.top-works__block:nth-child(3n+2):last-child{
	margin-left: auto;
	margin-right: 35%;
	}
}

.top-works__image{
	box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
	transition: .3s;
	border: 1px solid #000;
}
.top-works__block a:hover .top-works__image{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}
@media screen and (min-width: 560px) {
.top-works__image img{
	object-fit: cover;
    width: 100%;
    height: 170px;
}
}
@media screen and (min-width: 960px) {
.top-works__image img{
	object-fit: cover;
    width: 100%;
    height: 320px;
}
}
.top-works__body{
	font-size:1.6rem;
	padding-top:16px;
}
.top-works__body p{
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.top-more__btn{
	max-width:240px;
	position:relative;
	margin:0 auto;
	font-size: 2.4rem;
	width:100%;
	height:64px;
	line-height:64px;
	color:#fff;
	background:#00bedc;
	border:1px solid #221815;
	text-align:center;
	letter-spacing: 0.75rem;
	box-shadow:5px 5px 0px 0px rgba(0, 0, 0, 1);
}
.top-more__btn:hover{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}
/****************************************
TOP-コンバージョンエリア
*****************************************/
.top-conversion-area {
	padding: 11rem 0 9rem;
	text-align: center;
}
@media screen and (min-width: 560px) {
.top-conversion-area {
	padding: 13rem 0 10rem;
}
}
@media screen and (min-width: 960px) {
.top-conversion-area {
	padding: 16rem 0 13rem;
}
}
.top-conversion-area h3 {
  font-size: 1.7rem;
  letter-spacing: 0.5rem;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 560px) {
.top-conversion-area h3 {
  font-size: 2rem;
}	
}
.top-conversion__contact {
  background-color: #00bedc;
  color: #fff;
  max-width: 480px;
  width: 100%;
  height: 122px;
  line-height: 122px;
  font-size: 3.2rem;
  text-align: center;
  margin: 0 auto 36px;
  position: relative;
	letter-spacing:1rem;
	box-shadow:5px 5px 0px 0px rgba(0, 0, 0, 1);
	border: 1px solid #000;
}
.top-conversion__contact:hover{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}
.conversion-area__tel {
  font-size: 3.6rem;
  line-height: 1;
	margin-bottom:0.5rem;
	letter-spacing: 0.4rem;
}
.conversion-area__tel a{
	display:inline-block;
}
.conversion-area__body {
  font-size: 1.6rem;
}


/****************************************
CORPORATE
*****************************************/
.corporate-table{
	width:100%;
	margin-bottom:12rem;
	border-collapse: collapse;
}
.corporate-table tr{
	border-bottom:1px dotted #cacaca;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	padding: 2.5rem 1.5rem;
}
@media screen and (min-width: 560px) {
.corporate-table tr{
	padding: 3.5rem 1.5rem;	
}
}
.corporate-table tr:first-child{
	border-top:1px dotted #cacaca;
}
.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: 560px) {
.corporate-table th,.corporate-table td{
	padding: 1rem 3rem;
}
}
.corporate-table td a{
	display:inline-block;
	margin-right:15px;
}
.ggmap{
	margin-bottom:15rem;
}
.corporate-icon__block{
	text-align:center;
}
.corporate-icon{
	text-align: center;
	position:relative;
	display:inline-block;
}
.corporate-icon span{
	position:absolute;
	top:36px;
	left:30px;
	animation-name: anim_sc;
	transform: scale(0.6, 0.6);
	animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-direction: alternate;
  animation-duration: 1.5s;
}
@keyframes anim_sc {
  100% {
    transform: scale(1, 1);
  }
}
/****************************************
PRIVACY POLICY
*****************************************/
.privacy-icon{
	text-align: center;
	margin-bottom: 16rem;
	margin-left: auto;
	margin-right: auto;
	width: 50%;
	animation: key1 .3s ease infinite alternate;
}
@keyframes key1{
  0% {transform: translateY(0px);}
  100% {transform: translateY(-20px);}
}

@media screen and (min-width: 560px) {
.privacy-icon{
	width: 32%;	
}
}
@media screen and (min-width: 960px) {
.privacy-icon{
	width: 16%;	
}
}
.privacy-policy__wrap{
	margin:0 auto;
	padding:0 16px;
}
@media screen and (min-width: 560px) {
.privacy-policy__wrap{
	max-width:992px;
	width:100%;
}
}

.privacy-policy__block{
	margin-bottom:4rem;
}
.privacy-policy__block:first-child{
	font-weight: bold;
}
.privacy-policy__block h3{
	font-weight: bold;
	margin-bottom: 1rem;
}
.privacy-policy__block p{
	font-size:1.3rem;
}
.privacy-policy__block a{
	display:inline-block;
	margin-right: 15px;
}
/****************************************
WORKS
*****************************************/
.works-content{
	margin-bottom:8rem;
}
@media screen and (min-width: 560px) {
.works-content{
	margin-bottom:12rem;
}
}
@media screen and (min-width: 960px) {
.works-content{
	margin-bottom:16rem;
}
}
.works-content__image{
	box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 1);
	transition: .3s;
	background-size: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	border: 1px solid #000;
}
.works-content__image img{
	object-fit: cover;
	width: 100%;
}
@media screen and (min-width: 560px) {
.works-content__image img{
		height: 170px;
}
}
@media screen and (min-width: 960px) {
.works-content__image img{
		height: 300px;
}
}

.works-content__block a:hover .works-content__image{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}
.works-content__block p{
	font-size:1.6rem;
	padding-top:16px;
	overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.works-content__block{
	margin-bottom: 2rem;
}
@media screen and (min-width: 560px) {
.works-content__block{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 31.25%;
    flex: 0 0 31.25%;
    max-width: 31.25%;	
	margin-bottom: 14rem;
}
.works-content__block:nth-child(3n+2):last-child{
	margin-left: auto;
    margin-right: 35%;
}
}
.works-icon{
	display: none;
}
@media screen and (min-width: 560px) {
.works-icon{
	display: block;	
	text-align: right;
	padding: 0 10%;
	margin-left: auto;
}
}
/****************************************
WORKS詳細ページ
*****************************************/
.article-content{
	padding-bottom:6rem;
	line-height:2.1;
}
@media screen and (min-width: 960px) {
.article-content{
	padding-top:12rem;	
}
}
.works-main__image{
	margin-bottom: 15rem;	
}
.works-common__ttl{
	font-size:2.0rem;
	line-height:1.6;
	margin-bottom:2rem;
	z-index:1;
}
@media screen and (min-width: 560px) {
.works-common__ttl{
	font-size:2.4rem;	
}
}
@media screen and (min-width: 960px) {
.works-common__ttl{
	font-size:3.2rem;	
}
}
.works-common__ttl span{
	position:relative;
}
.works-common__ttl span::after{
	content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 10px;
  background: repeating-linear-gradient(-45deg,#ffe100,#ffe100 2px,#fff 0,#fff 4px);
  z-index: -1;
}
/* .works-common__ttl span{
	background-image: url("./images/works-midashi.png");
	background-size: 200% .8em; 
    background-position: 100% .5em;
    transition: 2s;
} */
.works-common__ttl span.is-active{
    background-position: 0% .5em;
}
.works-ttl__block{
	margin-bottom:4rem;
}
/* @media screen and (min-width: 560px) {
.works-ttl__block{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 40.333%;
    flex: 0 0 40.333%;
    max-width: 40.333%;
}
} */
/* @media screen and (min-width: 560px) {
.works-main__image{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 53.333%;
    flex: 0 0 53.333%;
    max-width: 53.333%;
}
} */
.works-common__image{
	position: relative;
	margin-bottom:60px;
}
.works-content__block{
	margin-bottom:10rem;
}
/****************************************
CONTACT
*****************************************/
.contact-block{
	border:3px solid #221815;
	margin:0 auto 10rem;
	padding:2rem 0 0 0rem;
	position:relative;
	background-color:#fff;
}
@media screen and (min-width: 560px) {
.contact-block{
	padding:0px 0 0px 5rem;
}
}
@media screen and (min-width: 960px) {
.contact-block{
	max-width: 744px;
	padding:0px 0 0px 15rem;
}
}
.pc-menu-login__shadow {
    background-color: 
    #fff;
    background-image: url("./images/shadow_pattern.png");
    background-repeat: repeat;
    background-position: top left;
    background-size: 4px 4px;
    -webkit-animation: shadowloop 0.6s linear infinite;
    animation: shadowloop 0.6s linear infinite;
    width: 100%;
    height: 100%;
    position: absolute;
       z-index: -1;
    top: 10px;
    left: 10px;
    overflow: hidden;
}
@-webkit-keyframes shadowloop {
 from {
  background-position:0 0
 }
 to {
  background-position:5px 0
 }
}
@keyframes shadowloop {
 from {
  background-position:0 0
 }
 to {
  background-position:5px 0
 }
}
.contact-information__block,.contact-information__image{
	text-align: center;
}
.contact-information__image{
	max-width: 40%;
	    position: relative;
    top: -1px;
	margin-left: auto;
	margin-right: auto;
}
.contact-information__block{
	margin-bottom:2rem;
}
@media screen and (min-width: 560px) {
.contact-information__block{
	-webkit-box-flex: 0;
    -ms-flex: 0 0 65.71428%;
    flex: 0 0 65.71428%;
    max-width: 65.71428%;
	text-align: left;
	margin-bottom:0rem;
}
.contact-information__image{
	text-align: left;
	-webkit-box-flex: 0;
    -ms-flex: 0 0 25.7142857%;
    flex: 0 0 25.7142857%;
    max-width: 25.7142857%;
	padding-top: 4rem;
	margin-left: 0;
	margin-right: 0;
	 top: 0px;
}	
}
.contact-mailform__body{
	font-size:1.7rem;
	text-align: center;
	margin-bottom: 4rem;
}
@media screen and (min-width: 560px) {
.contact-mailform__body{
	font-size:2rem;	
	letter-spacing: 0.45rem;
}
}
.contact-body{
	font-size:1.5rem;
	margin-bottom:15px;
	font-weight: 600;
	letter-spacing: 0.5rem;
}
@media screen and (min-width: 960px) {
.contact-body{
	font-size:2.228vw;
}
}
@media screen and (min-width: 960px) {
.contact-body{
	font-size:1.228vw;
}
}
.contact-tel{
	font-size:4.75rem;
	line-height: 1;
}
@media screen and (min-width: 560px) {
.contact-tel{
	font-size:8vw;	
}	
}
@media screen and (min-width: 960px) {
.contact-tel{
	font-size:3.854vw;	
}
}
.contact-description{
	font-size:1.6rem;
	line-height: 1;
}
.contact-description .en{
	font-size:2rem;
}
@media screen and (min-width: 960px) {
.contact-description{
	font-size:2.4rem;	
}
.contact-description .en{
	font-size:3rem;
}	
}
.contact-agreement__body{
	text-align:center;
	margin-bottom:30px;
}
.contact-agreement__body a{
	color:#00bedc;
	display:inline-block;
	text-decoration: underline;
}
.contact-agreement__body a:hover{
	opacity:0.5;
}
.wpcf7{
	margin-bottom:16rem;
	max-width:95%;
	margin-left:auto;
	margin-right:auto;
}
@media screen and (min-width: 960px) {
.wpcf7{
	max-width:100%;	
}
}
.cform tr {
	display:block;
	margin-bottom:4.8rem;
}
@media screen and (min-width: 560px) {
.cform tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;	
}
}
.cform th {
	display:block;
	margin-bottom: 1rem;
}
@media screen and (min-width: 560px) {
.cform th {
	margin-bottom:0;
  margin-right: 1rem;
  max-width: 20rem;
  width: 100%;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
}
@media screen and (min-width: 560px) {
.cform td {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  width: 100%;
  display: block;
}
}
@media screen and (min-width: 560px) {
.mw_wp_form {
  max-width: 960px;
  margin: 0 auto;
}
}
.cform {
  margin: auto;
	width: 100%;
table-layout: fixed;
word-break: break-all;
word-wrap: break-all;
}
.cform [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;
}
.cform option, .cform textarea, .cform input[type=text], .cform select, .cform input[type=email], .cform input[type=search], .cform input[type=url] {
  background-color: #eaeaea;
  border: none;
  padding: 5px 10px;
  margin-bottom: 5px;
	width: 95%;
}
@media screen and (min-width: 560px) {
.cform option, .cform textarea, .cform input[type=text], .cform select, .cform input[type=email], .cform input[type=search], .cform input[type=url] {	
	width: 100%;
}
}
.required-srt {
  display: inline-block;
  background-color:#00bedc;
	color:#fff;
  padding: 0 0.5em;
  font-size: 1.3rem;
  line-height: 2;
	margin-left:1rem;	
}
@media screen and (min-width: 560px) {
.required-srt {
	margin-left:0;	
}
}
.submit-btn input[type="submit"] {
  background: #00142c;
  width: 60%;
  max-width: 550px;
  min-width: 220px;
  margin: 30px auto;
  display: block;
  border: 1px #00142c solid;
  text-align: center;
  padding: 5px;
  color: #fff;
  transition: all 0.4s ease;
}
.submit-btn input:hover {
  background: #fff;
  color: #00142c;
}
select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
}
select::-ms-expand {
  display: block;
}
.submit-btn{
	cursor: pointer;
	max-width: 280px;
	background-color: #00bedc;
	width: 100%;
	margin: 0 auto;
	color: #fff;
	height: 68px;
	line-height: 68px;
	display: block;
	letter-spacing: 0.25rem;
	position: relative;
	border: 1px solid #454545;
	transition:.3s;
	font-weight: 600;
	font-size: 1.6rem;
	box-shadow:5px 5px 0px 0px rgba(0, 0, 0, 1);
}
.submit-btn:hover{
	box-shadow: none;
	transform: translate3d(5px, 5px, 5px);
}
.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;
}
.caption{
	color:#999;
	margin-top: 2rem;
	display: block;
}
/****************************************
header
*****************************************/
header{
	background-color:#ffe100;
	position:sticky;
	top:0;
	z-index:10;
	-webkit-animation-name: SlideDown;
    animation-name: SlideDown;
    animation-delay:3s linear 0s 1;
    animation-duration: 1.3s;
	height:70px;
}
@keyframes SlideDown {
0% {
    opacity: 0;/* 透明 */
    transform: translateY(-150px);/* Y軸方向に-50px */
}
100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);/* Y軸方向に0px */
}
}
@media screen and (min-width: 560px) {
header{	
	
}
}
header .wrapper{
	position:relative;
	max-width:100%;
}
@media screen and (min-width: 960px) {
header .wrapper{
	max-width:90%;
}	
}
.header-logo{
	max-width:140px;
	width:100%;
	padding-left: 16px;
	padding-top: 16px;
}
@media screen and (min-width: 960px) {
.header-logo{
	padding-left: 0px;
	padding-bottom: 16px;	
}
}
.header-logo a:hover{
	opacity:0.6;
}
.header-contact{
	position:absolute;
	right:70px;
	top:0;
	background-color:#00bedc;
	width:70px;
	height:70px;
	line-height:70px;
	text-align:center;
	color:#fff;
	font-size:3rem;
}
.header-contact::after{
	position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2;
    display: block;
    content: '';
    width: 0;
    height: 0;
    background-color: rgba(255,255,255,.3);
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    opacity: 0;    
}
.header-contact:hover::after{
	-webkit-animation: circle .5s;
  animation: circle .5s;  
}
@-webkit-keyframes circle {
  50% {
    opacity: 1;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}
@keyframes circle {
  50% {
    opacity: 1;
  }
  100% {
    width: 90px;
    height: 90px;
  }
}

.cp_fullscreenmenu {
	position: absolute;
	z-index: 10;
	top: 0;
	right: 70px;
}
/*menuコンテンツ*/
.cp_fullscreenmenu .menu {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	visibility: hidden;
	overflow: hidden;
	width: 100%;
	height: 100%;
	pointer-events: none;
	outline: 1px solid transparent;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}
.cp_fullscreenmenu .menu > div {
	display: flex;
	overflow: hidden;
	width: 200vw;
	height: 200vw;
	transition: all 0.4s ease;
	-webkit-transform: scale(0);
	transform: scale(0);
	text-align: center;
	border-radius: 50%;
	background: rgba(255,225,0 ,0.8);
	flex: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	align-items: center;
	justify-content: center;
}
.cp_fullscreenmenu .menu > div > ul {
	display: block;
	max-height: 100vh;
	margin: 0;
	padding: 0 1em;
	list-style: none;
	transition:  0.3s ease;
	opacity: 0;
}
.cp_fullscreenmenu .menu > div > ul > li {
	font-size: 3.2rem;
	display: block;
	margin: 1em;
	padding: 0;
	letter-spacing: 0.5rem;
}
.cp_fullscreenmenu .menu > div > ul > li > a {
	position: relative;
	display: inline;
	transition: color 0.4s ease;
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover {
}
.cp_fullscreenmenu .menu > div > ul > li > a:hover:after {
	width: 100%;
}
.cp_fullscreenmenu .menu > div > ul > li > a:after {
	position: absolute;
	z-index: 1;
	bottom: -0.15em;
	left: 0;
	width: 0;
	height: 2px;
	content: '';
	transition: width 0.4s ease;
	background: #221815;
}
/*クリックしたらメニューが開閉の動作*/
.cp_fullscreenmenu .toggle {
	position: absolute;
	z-index: 2;
	top: 0;
	left: 0;
	width: 60px;
	height: 60px;
	cursor: pointer;
	opacity: 0;
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span {
	-webkit-transform: rotate(135deg);
	transform: rotate(135deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:before,
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
	top: 0;
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}
.cp_fullscreenmenu .toggle:checked + .hamburger > span:after {
	opacity: 0;
}
.cp_fullscreenmenu .toggle:checked ~ .menu {
	visibility: visible;
	pointer-events: auto;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div {
	transition-duration: 0.75s;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul {
	opacity: 1;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(1) {
	transition-delay: 0.4s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(2) {
	transition-delay: 0.5s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(3) {
	transition-delay: 0.6s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(4) {
	transition-delay: 0.7s;
}
.cp_fullscreenmenu .toggle:checked ~ .menu > div > ul li:nth-of-type(5) {
	transition-delay: 0.8s;
}
.cp_fullscreenmenu .toggle:hover + .hamburger {
	box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}
.cp_fullscreenmenu .toggle:checked:hover + .hamburger > span {
	-webkit-transform: rotate(225deg);
	transform: rotate(225deg);
}
/*ハンバーガー*/
.cp_fullscreenmenu .hamburger {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	display: block;
	width: 70px;
	height: 70px;
	cursor: pointer;
	transition: box-shadow 0.3s ease;
	border-radius: 0 0.12em 0.12em 0;
	background: #221815;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}
.cp_fullscreenmenu .hamburger > span {
	position: relative;
	top: 50%;
	display: block;
	width: 38%;
	height: 3px;
	transition: all 0.3s ease;
	background: #fff;
	border-radius:3px;
	margin:0 auto;
}
.cp_fullscreenmenu .hamburger > span:before,
.cp_fullscreenmenu .hamburger > span:after {
	position: absolute;
	z-index: 1;
	top: -10px;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	content: '';
	transition: all 0.3s ease;
	background: inherit;
}
.cp_fullscreenmenu .hamburger > span:after {
	top: 10px;
}
/****************************************
footer
*****************************************/
footer {
  background-color: #ffe100;
  padding: 5rem 0;
	overflow:hidden;
}
.footer-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45.4%;
    flex: 0 0 45.4%;
    max-width: 45.4%;
  }
@media screen and (min-width: 560px) {
  .footer-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 20.4%;
    flex: 0 0 20.4%;
    max-width: 20.4%;
  }
}
@media screen and (min-width: 960px) {
  .footer-logo {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 11.4%;
    flex: 0 0 11.4%;
    max-width: 11.4%;
  }
}
.footer-logo a:hover{
	opacity:0.4;
}
.footer-link__inner {
	-webkit-box-flex: 0;
    -ms-flex: -1 0 42.4%;
    flex: -1 0 42.4%;
    max-width: 42.4%;
}
@media screen and (min-width: 560px) {
  .footer-link__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
	  -webkit-box-flex: 0;
    -ms-flex: -1 0 72.4%;
    flex: -1 0 72.4%;
    max-width: 72.4%;
  }
}

.footer-link__inner li a {
  display: block;
  position:relative;
	margin-bottom:2.5rem;
}
.footer-link__inner li a:hover{
	opacity:0.4;
}	
.footer-link__inner li:last-child a{
	margin-bottom:0;
}
@media screen and (min-width: 560px) {
.footer-link__inner li a {
	padding: 0px 16px;	
	margin-bottom:0rem;
}
}
@media screen and (min-width: 960px) {
.footer-link__inner li a {
	padding: 0px 32px;
}	
}
@media screen and (min-width: 560px) {
.footer-link__inner li a::before{
	content:'';
	background:#999;
	width:1px;
	height:20px;
	position:absolute;
	left:0px;
	top:0;
}
}
@media screen and (min-width: 560px) {
.footer-link__inner li a i{
	display:none;	
}
}
copyright {
  background-color: #221815;
  color: #fff;
  font-family: 'Teko', sans-serif;
  text-align: center;
  padding: 16px;
  font-size: 1.2rem;
	display: block;
letter-spacing: 0.25rem;
}
/****************************************
アニメーション
*****************************************/
.fadein {
  opacity: 0;
  transform: translate(0, 40px);
  transition: opacity 1.4s, transform 0.8s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

.img-wrap {
  animation: img-wrap 2s cubic-bezier(.4, 0, .2, 1);
}

@keyframes sample-animation {
  0% {
    clip-path: circle(0 at 50% 50%);
    -webkit-clip-path: circle(0 at 50% 50%);
  }
  100% {
    clip-path: circle(100% at 50% 50%);
    -webkit-clip-path: circle(100% at 50% 50%);
  }
}

.sample {
  overflow: hidden;
  position: relative;
}

.sample img {
  display: block;
  height: auto;
  width: 100%;
}

.sample-second.sample-animation {
  animation: sample-second-img 2s cubic-bezier(.4, 0, .2, 1);
}

.sample-second.sample-animation:before {
  animation: sample-second-before 2s 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 sample-second-img {
  0% {
    opacity: 0;
  }
}

@keyframes sample-second-before {
  100% {
    transform: translateX(100%);
  }
}

.shutter{
	position:fixed;
	top:0;
	left:0;
	right:0;
	bottom:0;
	background-color:#1e1e1e;
	z-index:9999;
}
.shutter::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	margin: auto;
	background-color: #fff;
	width: 0;
	height: 1px;
}
.shutter {
	-webkit-animation: byeShutter 2.0s forwards;
	animation: byeShutter 2.0s forwards;
}
    .shutter::before {
      -webkit-animation: shutterOpen 2.0s forwards;
              animation: shutterOpen 2.0s forwards;
    }
    .content {
      -webkit-animation: contentScale 2.0s forwards;
              animation: contentScale 2.0s forwards;
    }
    @keyframes byeShutter {
      70% {
        opacity: 1;
      }
      100% {
        opacity: 0;
        display: none;
        z-index: -1;
      }
    }
    @keyframes shutterOpen {
      0% {
        width: 0;
        height: 1px;
      }
      50% {
        width: 100%;
        height: 1px;
      }
      90% {
        width: 100%;
        height: 100%;
      }
      100% {
        width: 100%;
        height: 100%;
      }
    }
    @keyframes contentScale {
      70% {
        -webkit-transform: perspective(800px) scale(0.9) rotateX(15deg);
                transform: perspective(800px) scale(0.9) rotateX(15deg);
      }
      100% {
        -webkit-transform: perspective(800px) scale(1) rotateX(0);
                transform: perspective(800px) scale(1) rotateX(0);
      }
    }