/* ----------
	common
---------- */
body {
	background: #fafafa;
	color: #535043;
	font-family: "A1明朝", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ","Meiryo",sans-serif;
}
@media (min-width: 768px) {
	body {
		min-width: 1200px;
	}
}
.container {
	overflow-x: hidden;
	width: 100%;
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030;
}

table {
    border-collapse: collapse;
    text-indent: initial;
    border-spacing: 2px;
}

tbody {
    display: table-row-group;
    vertical-align: middle;
    border-color: inherit;
}

hr {
   border-width: 1px 0px 0px 0px; /* 太さ */
   border-style: solid; /* 線種 */
   border-color: #354458;   /* 線色 */
   height: 1px;         /* 高さ(※古いIE用) */
}

p {
	line-height: 300%;
}

.b {
	font-weight: bold;
}
.big {
	font-size: 1.25em;
}
.small {
	font-size: .8em;
}

.purple{
	color: #aec5eb;
}

.btn a{
	background: #918c75;
	color: #fff;
	padding: 10px 30px;
	text-decoration: none;
}

.btn{
	transition: all .3s;
}

.btn:hover{
	opacity: 0.7 ;
	transition: all .3s;
}


mark {
	background: linear-gradient(transparent 70%, #e9afa3 0%);
}

.marker-animation.active{
    background-position: -100% .5em;
}
 
.marker-animation {
    background-image: -webkit-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -moz-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -ms-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: -o-linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-image: linear-gradient(left, transparent 50%, rgb(174,197,235) 50%);
    background-repeat: repeat-x;
    background-size: 200% .8em;
    background-position: 0 .5em;
    transition: all 2s ease;
    font-weight: bold;
}

/*改行*/
@media screen and (min-width: 768px){
.br-sp {display: none; }
}

@media screen and (max-width: 767px){
.br-pc {display: none; }
}

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

@media (min-width: 768px){
	.pc-display-none{
		display: none;
	}
}

@media (max-width: 767px){
	.sp-display-none{
		display: none;
	}
}

/*フワッとさせたい*/
.fadein {
  opacity : 0;
  transform: translateY(20px);
  transition: all 1s;
}

.fadein-left {
  opacity : 0;
  transform: translateX(-1400px);
  transition: all 1.5s;
}

.fadein-load {
  opacity : 0;
  transition: all 2s;
}


/*リンク先位置調整*/
.anchor{
    padding-top: 200px;
    margin-top: -200px;
}
@media (max-width: 767px){
	.anchor{
	    padding-top: 100px;
	    margin-top: -100px;
	}
}

/*====================================================================
slick
====================================================================*/

* {
  box-sizing: border-box;
}
.sliderArea {
  max-width: 100%;
  margin: 40px auto;
  padding: 0 25px;
}
.sliderArea.w300 {
  max-width: 500px;
}
.slick-slide {
  margin: 10px 5px 20px;
}
.slick-slide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}
@media (max-width: 767px){
	.slick-slide img {
  width: 100%;
  height: auto;
 }
}
.slick-prev, .slick-next {
  z-index: 1;
}
.slick-prev:before, .slick-next:before {
  color: #000;
}
.slick-slide {
  transition: all ease-in-out .3s;
  opacity: .2;
}
.slick-active {
  opacity: 1;
}
.slick-current {
  opacity: 1;
}
.thumb {
  margin: 20px 0 0;
}
.thumb .slick-slide {
  cursor: pointer;
}
.thumb .slick-slide:hover {
  opacity: .7;
}

/*====================================================================
.full-screen
====================================================================*/

.full-screen .slick-list {
  overflow: visible;
}
.full-screen.slider {
  max-width: 500px;
  margin: 0 auto;
}




/* ----------
	header
---------- */

nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 3;
  opacity: 0;
}
.open nav {
  left: 0;
  opacity: 1;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: all .5s;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #535043;
  opacity: .8;
  z-index: 2;
  cursor: pointer;
}





/* ----------
	footer
---------- */
#site-footer {
	padding-top: 30px;
	text-align: center;
	width: 100%;
	height: fit-content;
	background: #bbbcae;
}

#footer-in{
	padding: 20px 0 0;
}

#footer-in h1{
	font-size: 14px;
	font-weight: normal;
	color: #fff;
}

#footer-in p{
	color: #fff;
}

#copyright{
	padding: 0 0 50px;
	color: #fff;
}


/* ----------
	index
---------- */

/* common */
.index section {
	padding: 80px;
}
@media (max-width: 767px){
	.index section {
		padding: 40px 0;
	}
}


.index .tit {
	text-align: center;
	font-weight: bold;
}
.index .tit .en {
	color: #ebce56;
	font-family: 'Poiret One', cursive;
	font-size: 24px;
}

.index .en {
	font-family: 'Poiret One', cursive;
}

@media (max-width: 767px) {
	.index .tit .en {
		font-size: 5vw;
	}
}

.index h2 {
	font-size: 36px;
	margin: 20px 0 0;
	font-weight: normal;
}

@media (max-width: 767px) {
	.index h2 {
		font-size: 6vw;
	}
}

.index .body {
	padding: 0 200px;
	max-width: 1200px;
}
@media (max-width: 767px) {
	.index .body {
		padding: 0 20px;
	}
}

.index .txt p {
	line-height: 200%;
}

@media (max-width: 767px) {
	.index .txt p {
	font-size: 3.5vw;
	}
}


/* /common */

.index .kv {
	width: auto;
  height: 100vh;
	display: block;
	overflow-y: hidden;
	background-image: url(../img/AdobeStock_388262523.jpeg);
	background-position-y: -300px;
	background-size: 100%;
	background-repeat: no-repeat;
}

@media (max-width: 767px) {
	.index .kv {
		background-position-y: 0px;
		height: 375px;
	}
}

.logo{
	width: 200px;
	margin-top: 30px;
	margin-left: 30px;
}

.img-box {
    position: relative;
}

.sample-box{
	position: relative;
}

.concept{
    color: #fff;
    text-align: left;
    font-weight: normal;
    line-height: 130%;
}

.concept-bkg{
	background: rgba(88, 82, 75, .3);
	padding: 10px 50px;
	width: 100%;
	height: fit-content;
	margin-top: 100px;	
}
@media (max-width: 767px){
	.concept-bkg{
		padding: 10px;
		width: 100%;
		height: fit-content;
		margin-top: 100px;	
	}
}


h2.concept {
	font-size: 80px;
	margin-left: 110px;
}

img.line-kv{
	display: block;
	width: 10%;
	margin-top: 30px;
	margin-left: 110px;
}

h3.concept{
	margin-top: 30px;
	margin-left: 110px;
	}

	@media (max-width: 767px){
		h2.concept {
	    	font-size: 30px;
	    	text-align: center;
	    	margin: 10px auto;
		}

		img.line-kv{
			margin: 10px auto;
		}

		h3.concept{
			margin: 20px auto;
			font-size: 12px;
			text-align: center;
			}
	}


/*スクロールアイコン*/
.index .content .kv a {
  padding-top: 60px;
  position: absolute;
 	bottom: 0;
  left: 50%;
  display: inline-block;
  -webkit-transform: translate(0, -50%);
  transform: translate(-50%,-50%);
  text-decoration: none;
  color: #fff;
  pointer-events:none;/*リンクを非リンクに変える*/
　cursor:default;/*マウスカーソルを矢印のまま変えない*/
	font-family: "ヒラギノ角ゴ Pro";
}

.index .content .kv a span {
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 50px;
  margin-left: -15px;
  border: 2px solid #fff;
  border-radius: 50px;
  box-sizing: border-box;
}

.index .content .kv a span::before {
  position: absolute;
  top: 10px;
  left: 50%;
  content: '';
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background-color: #fff;
  border-radius: 100%;
  -webkit-animation: sdb 2s infinite;
  animation: sdb 2s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    -webkit-transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

@media (max-width: 767px){
	.index .content .kv a{
		display: none;
	}
}





/* section-1 */
.index #section-1{
	margin-top: 50px;
	padding-bottom: 0;
}

@media (max-width: 767px){
	.index #section-1{
		padding: 0 20px;
	}
}

.index #section-1 h2{
	text-align: center;
	font-weight: normal;
	font-size: 28px;
	color: #918c75;
}

.index #section-1 p{
	text-align: center;
	margin-top: 60px;
}

.index #section-1 img{
	width: 230px;
	display: block;
	margin: 50px auto;
}


@media (max-width: 767px){	
	.index #section-1 h2{
		font-size: 1.2rem;
	}

	.index #section-1 p{
		margin-top: 30px;
		font-size: 0.8rem;
	}

	.index #section-1 img{
		width: 140px;
	}

}

/* section-2 */

/*PC表示*/
.index #section-2{
	background-image: url(../img/title-back-service.png);
	background-repeat: no-repeat;
	background-position-x: 80px;
	background-position-y: 80px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}
@media (max-width: 767px){
	.index #section-2{
		background-size: 60vw;
		background-position-x: 20px;
		background-position-y: 85px;
	}
}

h3.tit-en{
	font-size: 60px;
	font-weight: normal;
	color: #918c75;
	margin-top: 80px;
	margin-bottom: 5px;
}

img.tit-line{
	display: block;
	width: 100px;
}

p.tit-jpn{
	font-size: 18px;
	color: #918c75;
}

@media (max-width: 767px){
	h3.tit-en{
		font-size: 2.0rem;
	}

	img.tit-line{
		width: 50px;
	}

	p.tit-jpn{
		font-size: 0.8rem;
		margin-top: 0;
	}	
}


.index #section-2 .section-tit{
	margin-left: 70px;
}

.index #section-2 .section-txt{
	margin-left: 70px;
	margin-top: 80px;
	width: 460px;
	padding: 30px 50px 40px 0px;
	background: rgba(250, 250, 250, .8);
}

.index #section-2 .btn{
	width: fit-content;
	margin: 0 0 0 auto;
}

.index #section-2 img.section-img{
	width: 800px;
	height: auto;
	position: absolute;
	top: 95px;
	right: 0px;
}

@media (max-width: 767px){
	.index #section-2 .section-tit{
		margin-left: 40px;
	}

	.index #section-2 .section-txt{
		width: 90%;
		padding: 20px;
		margin: 250px auto 40px;
	}

	.index #section-2 .section-txt p{
		font-size: 0.8rem;
		margin-bottom: 30px;
	}

	.index #section-2 img.section-img{
		width: 100vw;
		height: auto;
	}

}

/* section-3 */

.index #section-3 {
	padding: ;
	background: rgba(215, 207, 184, .4);
}

.index #section-3 .max-width1400{
	background-image: url(../img/title-back-works.png);
	background-repeat: no-repeat;
	background-position-x: 100%;
	background-position-y: 0px;
	margin-left: auto;
	margin-right: auto;
	max-width: 1400px;
}

@media (max-width: 767px){
	.index #section-3 .max-width1400{
		background-size: 60vw;
		background-position-x: 120px;
		background-position-y: 50px;
	}
}

.index #section-3 .section-tit{
	width: fit-content;
	margin-right: 50px;
	margin-left: auto;
	padding-top: 10px;
}

.index #section-3 .section-tit img{
	margin-right: 0;
	margin-left: auto;
}

.index #section-3 .section-tit p{
	text-align: right;
}

.index #section-3 .btn{
	width: fit-content;
	margin: 80px auto;
}


@media (max-width: 767px){

}





/* section-4 */

/*PC表示*/
.index #section-4{
	background-image: url(../img/title-back-about.png);
	background-repeat: no-repeat;
	background-position-x: 80px;
	background-position-y: 80px;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

.index #section-4 .section-tit{
	margin-left: 70px;
}

.index #section-4 .section-txt{
	margin-left: 70px;
	margin-top: 80px;
	width: 550px;
	padding: 30px 50px 40px 0px;
	background: rgba(250, 250, 250, .8);
}

.index #section-4 .btn{
	width: fit-content;
	margin: 0 0 0 auto;
}

.index #section-4 img.section-img{
	width: 800px;
	height: auto;
	position: absolute;
	top: 95px;
	right: 0px;
}

/*スマホ表示*/
@media (max-width: 767px){
	.index #section-4{
		background-size: 60vw;
		background-position-x: 20px;
		background-position-y: 85px;
	}

	.index #section-4 .section-tit{
		margin-left: 40px;
	}

	.index #section-4 img.section-img{
		width: 100vw;
		height: auto;
	}

	.index #section-4 .section-txt{
		margin: 320px auto 40px;
		width: 90%;
		padding: 20px;
	}

	.index #section-4 .section-txt p{
		font-size: 0.8rem;
		margin-bottom: 30px;
	}

}




/* contact */
#contact{
	background-image: url(../img/AdobeStock_124820403.jpeg);
	background-size: 100%;
	background-repeat: no-repeat;
	padding: 80px;
}

#contact .contact-bkg{
	background: #fafafa;
	border: solid #6d653b 1px;
	background-image: url(../img/contact.png);
	background-size: 130px;
	background-position-x: 20px;
	background-position-y: 20px;
	background-repeat: no-repeat;
	width: 700px;
	height: fit-content;
	margin: 0 auto;
	padding: 40px;
}

#contact .contact-bkg p{
	text-align: center;
}


#contact .contact-bkg .btn{
	width: fit-content;
	margin: 0 auto;
}

#contact .contact-bkg .btn a{
	padding: 15px 60px;
	background-image: url(../img/contact-btn-background.png);
	background-size: 100%;
}


@media (max-width: 767px){
	#contact{
		background-size: cover;
		padding: 50px 0;
	}

	#contact .contact-bkg{
		width: 90%;
		background-size: 100px;
		padding: 40px 20px;
	}

	#contact .contact-bkg p{
		font-size: 0.8rem;
	}

	#contact .contact-bkg .btn a{
		padding: 10px 30px;
		font-size: 0.8rem;
	}
}