@charset "utf-8";
/* CSS Document */

/*フォント*/
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Stack+Sans+Notch:wght@200..700&family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

*{
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.07em;
}

.en{
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	letter-spacing: 0.07em;
}

a img{
	transition: 0.3s;
}

a img:hover{
	opacity: 0.7;
}

@media screen and (min-width: 520px){
	br.sp{
		display: none;
	}
}

body {
    animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
	background: #fff;
	height: 5000px;
}

html {
  scroll-behavior: smooth;
}


/**スクロール**/

.scroll_fadein{
  opacity: 0;
}
.fadein_animation_start{
  animation-name: fadein_animation;
  animation-delay: 0.7s;
  animation-duration: 1.2s;
  animation-fill-mode: both;
}
@keyframes fadein_animation{
  0% {
    opacity: 0;
  }
  100%{
    opacity: 1;
    transform: translate(0);
  }
}
.slideup{
  transform: translateY(70px);
}
.slidedown{
  transform: translateY(-70px);
}
.slideright{
  transform: translateX(70px);
}
.slideleft{
  transform: translateX(-70px);
}

/******************************
ヘッダー
******************************/

header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 2%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	z-index: 999;
}

header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(255,255,255,0.95) 0%,
    rgba(255,255,255,0.7) 30%,
    rgba(255,255,255,0) 100%
  );

  opacity: 0;
  transform: translateY(-10px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;

  z-index: -1;
}

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

header h1 a{
	color: #fff;
}

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

header ul.pcmenu li{
	margin-right: 20px;
}

header ul.pcmenu li:last-child{
	margin-right: 0;
}

header ul.pcmenu li a{
	color: #fff;
	font-family: "Stack Sans Notch", sans-serif;
	font-optical-sizing: auto;
	font-style: normal;
	position: relative;
    display: inline-block;
    padding-bottom: 5px;
	letter-spacing: 0.07em;
}

header ul.pcmenu li a::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: .3s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

header ul.pcmenu li a:hover::after {
  width: 100%;
}

header.is-scrolled h1 a{
	color: #362010;
}

header.is-scrolled ul li a{
	color: #362010;
}

header.is-scrolled ul li a::after{
	background-color: #362010;
}

/******************************
メニュー
******************************/



/* メニューのスタイル */
header .menu {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態では画面の外に隠れている */
  width: 85%;
  height: 100%;
  background-color: #fff;
  color: #362010;
  transition: right 0.3s ease; /* スライドインのアニメーション */
  padding: 20px;
  box-sizing: border-box;
  z-index: 9999;
}

/* メニューが開いているとき */
header .menu.open {
  right: 0;
}

/* ボタンのスタイル */
header .hamburger {
  position: fixed;
  top: 20px;
  right: 20px;
  width: 30px;
  cursor: pointer;
  z-index: 20;
}

header .hamburger span {
  display: block;
  height: 1px;
  width: 100%;
  background-color: #fff;
  margin: 5px 0;
  transition: 0.4s;
}

header .hamburger.active span,
header.is-scrolled .hamburger span{
	background-color: #362010;
}

/* バツ印に変化するスタイル */
header .hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(3px, 3px);
}

header .hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* メニューリストのスタイル */
header .menu ul {
  list-style-type: none;
  padding: 0;
  margin-top: 20px;
	display: flex;
	flex-wrap: wrap;
}

header .menu li {
  padding: 8px 0;
	width: 50%;
}

header .menu li a {
  color: #362010;
  text-decoration: none;
  display: block;
}

header .menu li a .en{
	font-size: 11px;
	margin-right: 20px;
	display: block;
}

header .menu .sns li{
	width: 20%;
}

header .menu .sns img{
	max-width: 30px;
	filter: brightness(0) saturate(100%) invert(11%) sepia(6%) saturate(6735%) hue-rotate(343deg) brightness(93%) contrast(91%);
}

@media screen and (min-width: 1025px){
	
	header .menu{
		display: none;
	}
	
}

@media screen and (max-width: 1024px){
	
	header{
		padding: 20px 5%;
	}
	
	header ul.pcmenu{
		display: none;
	}
}

/******************************
SP固定メニュー
******************************/

#spfixmenu{
	background:rgba(255,255,255,0.8);
	border-top: solid 1px #362010;
	position: fixed;
	left: 0;
	bottom: 0;
	z-index: 5;
	width: 100%;
	transform: translateY(100%);
	/* 2. 0.3秒かけて表示する */
	transition: .3s;
}

#spfixmenu ul{
	display: flex;
	justify-content: center;
	width: 100%;
}
#spfixmenu ul li{
	width: calc(100% / 3);
}
#spfixmenu ul li a{
	color: #362010;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Stack Sans Notch", sans-serif;
	letter-spacing: 0.07em;
	padding: 15px 0;
}

#spfixmenu ul li a img{
	width: 25px;
	margin-right: 10px;
}

#spfixmenu.active{
  /* 3. メニューを定位置へ戻す */
  transform: translate(0);
}

@media screen and (min-width: 1024px){
	#spfixmenu{
		display: none;
	}
}

/******************************
メインビジュアル
******************************/
/* ===== slick fade 最終修正 ===== */

#main {
  height: 100vh;
  overflow: hidden;
	position: relative;
}

#main .slider {
  position: relative;
  height: 100%;
	z-index: 1;
}

#main .slick-list,
#main .slick-track {
  height: 100%;
}

#main .slick-slide {
  position: absolute !important;
  top: 0;
  left: 0!important;
  width: 100%;
  height: 100%;
}

#main .slick-slide.slick-active {
  position: absolute !important;
  z-index: 2;
}

#main .slick-slide picture {
  display: block;
  width: 100%;
  height: 100%;
}

#main .slick-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#main .logo{
	position: absolute;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
	text-align: center;
	z-index: 2;
	width: 100%;
	max-width: 650px;
}

#main .logo h2{
	font-size: 24px;
	color: #fff;
	margin-bottom: 30px;
}

#main .logo img{
	width: 100%;
}

#main .scroll{
	position: absolute;
	bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	z-index: 2;
}

#main .scroll a{
	display: block;
	width: 30px;
}

#main .sns{
	position: absolute;
	top: 50%;
    right: 30px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
	z-index: 2;
}

#main .sns img{
	width: 25px;
}

#main .sns a{
	display: block;
	margin-bottom: 20px;
}

@media screen and (max-width: 1024px){
	
	#main .sns{
		display: none;
	}
	#main .logo{
		padding: 0 20px;
	}
	#main .logo h2{
		font-size: 20px;
	}
}

#top #sec01{
	padding: 30px;
	height: 100vh;
}

#top #sec01 .inner{
	height: 100%;
	width: 100%;
	position: relative;
	background: #000;
}

#top #sec01 .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/wp/wp-content/themes/kishimoto/img/top/sec01_bg.png");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: scale(0.9);
  opacity: 0;
  transition: opacity 5.8s ease, transform 3.5s ease;

  z-index: 0;
}

#top #sec01.is-visible .inner::before {
  opacity: 1;
	transform: scale(1);
}

#top #sec01 .inner .box{
	background: url("/wp/wp-content/themes/kishimoto/img/top/sec01_img01.png") no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
}

#top #sec01 .inner .box div{
	width: 80%;
    margin: 0 auto;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#top #sec01 .inner .box div h3{
	color: #fff;
	font-size: 18px;
	margin-bottom: 30px;
}

#top #sec01 .inner .box div p{
	font-size: 20px;
	margin-bottom: 30px;
	color: #fff;
}

#top #sec01 .inner .box div h4{
	font-size: 48px;
	color: #fff;
	font-weight: 300;
	font-style: italic;
	margin-bottom: 40px;
}

#top #sec01 .inner .box div a{
	padding: 3px 12px;;
	border: solid 1px #fff;
	border-radius: 30px;
	color: #fff;
	font-family: "Roboto", sans-serif;
}

#top #sec01 .inner .box02{
	z-index: 1;
	position: absolute;
}

#top #sec01 .inner .box02 div{
	width: 25%;
}

#top #sec01 .inner .box02 img{
	width: 100%;
}

#top #sec01 .inner .box02 p{
	margin-top: 30px;
	color: #fff;
	text-align: right;
	line-height: 1.8em;
}

@media screen and (max-width: 1540px){
	#top #sec01 .inner .box02{
		width: 94%;
	}
	#top #sec01 .inner .box02 div{
		width: 27%;
	}
}

@media screen and (min-width: 1450px){
	#top #sec01 .inner .box02{
		width: 89%;
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-end;
	}
}

@media screen and (max-width: 1449px){
	#top #sec01 .inner .box02 {
		top: 8%;
        right: 8%;
        position: absolute;
        height: 100%;
        width: 25%;
	}
	#top #sec01 .inner .box02 div{
		width: 100%;
	}
}

@media screen and (max-width: 1024px){
	#top #sec01 .inner .box02{
		width: 34%;
	}
	#top #sec01 .inner .box02 p{
		display: none;
	}
}

@media screen and (max-width: 798px){
	#top #sec01{
		padding: 10px;
	}
	#top #sec01 .inner .box02{
		width: 50%;
		top: 4%;
        left: 8%;
	}
	#top #sec01 .inner .box div p{
		font-size: 18px;
	}
	#top #sec01 .inner .box div h4{
		font-size: 36px;
	}
	
	#top #sec01 .inner::before {
	  background-position: left -290px center;
	}

	#top #sec01 .inner .box{
		background-position: left -290px center;
	}
}

#top #sec02{
	padding: 100px 30px 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#top #sec02 h3{
	font-size: 18px;
	color: #362010;
}

#top #sec02 h3 span{
	display: block;
}

#top #sec02 ul{
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	max-width: 1530px;
	width: 67%;
}

#top #sec02 ul li{
	margin-right: 50px;
	background: url("/wp/wp-content/themes/kishimoto/img/common/arrow_brown.svg") no-repeat;
	background-position: right bottom;
	background-size: 22px;
}

#top #sec02 ul li:last-child{
	margin-right: 0;
}

#top #sec02 ul li img{
	width: 100%;
}

#top #sec02 ul li h4{
	text-align: right;
	color: #888888;
	padding-top: 5px;
	margin-right: -11px;
}

#top #sec02 ul li:last-child h4{
	letter-spacing: -0.1em;
}

#top #sec02 h5{
	padding-top: 50px;
}

@media screen and (max-width: 1024px){
	#top #sec02{
		padding: 60px 10px 0;
		display: block;
	}
	#top #sec02 h3{
		margin-bottom: 30px;
		font-size: 16px;
	}
	#top #sec02 h3 span{
		font-size: 18px;
	}
	#top #sec02 ul{
		width: 100%;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	#top #sec02 ul li{
		margin-right: 0;
		width: 47%;
	}
	#top #sec02 ul li:first-child{
		width: 100%;
		margin-bottom: 30px;
		border-bottom: solid 1px #362010;
		padding-bottom: 30px;
		background-position: right bottom 30px;
	}
	#top #sec02 ul li h4{
		font-size: 12px;
	}
	#top #sec02 h5 {
		padding-top: 20px;
	}
}


#top #sec03{
	padding: 100px 30px 0;
	display: flex;
	justify-content: space-between;
}

#top #sec03 .left{
	width: 40%;
}

#top #sec03 .right{
	width: 55%;
}

#top #sec03 p{
	font-weight: 300;
	font-size: 24px;
	padding: 100px 50px;
	font-style: italic;
	line-height: 2em;
	background: url("/wp/wp-content/themes/kishimoto/img/top/sec03_img02.png") no-repeat;
	background-size: 30%;
    background-position: right bottom 50px;
}

#top #sec03 .right img,
#top #sec03 .left img{
	width: 100%;
}

@media screen and (max-width: 1024px){
	#top #sec03{
		padding: 60px 10px 0;
		display: block;
		position: relative;
	}
	#top #sec03::after{
		content: "";
		display: inline-block;
		width: 100px;
		height: 50px;
		background-color: red;
		background-image: url('/wp/wp-content/themes/kishimoto/img/top/sec03_img02.png');
		background-position: center;
		background-size: contain;
		position: absolute;
		top: 0;
		right: 0;
	}
	#top #sec03 .left {
    	width: 35%;
	}
	#top #sec03 .right {
		width: 100%;
	}
	#top #sec03 p{
		font-size: 18px;
    	padding: 40px 0px;
		background: none;
	}
}

