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

html {
	font-size: 10px;
	-webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
	font-family: "Sawarabi Gothic", "sans-serif";
/*	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif"; */
	line-height: 2;
	margin: 0;
	padding: 0;
	color:#fff;
	background-color: #000;
}

@font-face {
	font-family: "DIN";

	src: url("../font/DIN_1451_M/DIN_1451.otf");
}

@media screen and (min-width:1281px) {
	body {
		width:100%;
	}
}

@media screen and (max-width:1280px) and (min-width:769px) {
	body {
		max-width:1280px;
	}
}

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

p {
	font-family: "Sawarabi Gothic", "sans-serif";
	font-size: 14px;
	font-weight: 500;
	margin: 0;
}

a {
	outline: none!important;
}

dl {
	font-family: "Sawarabi Gothic", "sans-serif";
	font-size: 12px;
	font-weight: 500;
	margin: 0;
}

/*===================================
ローディングアニメーション
===================================*/
@keyframes slideOut {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
		z-index: -1;
    }
}
@keyframes slideOut02 {
    from {
        z-index: 1;
    }

    to {
		z-index: -1;
    }
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}
#loader.open {
	animation-name: slideOut02;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 2s;
}
.loader-slide {
	width: 100%;
	height: 100%;
	background-color: #ce001e;
}
.loader-slide.open {
	animation-name: slideOut;
	animation-fill-mode: forwards;
	animation-duration: 1s;
	animation-delay: 1s;
}
/*===================================
header
===================================*/
header {
	position: fixed;
	z-index: 999;
	top: 0;

/* right: 0px; */
	width: 100%;
	padding: 0;
}
h1.main_logo {
	display: inline-block;
	max-width: 200px;
	margin: 5px 10px;
	vertical-align: middle;
}
#wrapper .btn-gnavi {
	display: none;
}
#wrapper nav ul.menu {
	display: inline-block;
	margin: 0;
	padding-left: 90px;
	vertical-align: middle;
}
#wrapper nav ul.menu li {
	font-size: 12px;
	line-height: 1.5;
	display:inline-block;
	padding: 10px 48px;
	text-align: center;
}
#wrapper nav ul.menu li a {
	transition: 0.3s;
	text-decoration: none;
	color: #000;
}
#wrapper nav ul.menu li a:hover {
	transition: 0.3s;
	color: #75501b;
}
#wrapper nav ul.menu li a span {
	font-family: "DIN","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-weight: bold;
	display: block;
	letter-spacing: 0.2em;
}
#wrapper nav ul.sns {
	display: inline-block;
	margin: 0;
	vertical-align: middle;
}
#wrapper nav ul.sns li {
	line-height: 1.5;
	display:inline-block;
	
}
#wrapper nav ul.sns li:last-child {
	padding-right: 0px;
}
#wrapper nav ul.sns li a {
	display: block;
	width: 45px;
	aspect-ratio: 1 / 1;
	line-height: 1;
	text-align: center;
	text-decoration: none;
	transition: all .3s;
}
#wrapper nav ul.sns li a:hover {
	transform: rotate(180deg);
}
#global-navi {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
	background-color: #000;
}
@media screen and (max-width: 1000px) {
	#global-navi {
		background-color: #fff0;
	}
}
#global-navi .nav-pc {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}
@media screen and (max-width: 1000px) {
	#global-navi .nav-pc {
		display: none;
	}
}
#global-navi .nav-pc li {
	list-style: none;
}
#global-navi .nav-pc li a {
	width: fit-content;
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 22px;
	text-decoration: none;
	letter-spacing: 0;
	position: relative;
	overflow: hidden;
	font-family: 'Bebas Neue', sans-serif;
}
#global-navi .nav-pc li a::after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0%;
	width: 100%;
	height: 2px;
	border-bottom: 2px solid #ce001e;
	transition: all .3s;
	opacity: 0;
	transform: translateX(-100%);
}
#global-navi .nav-pc li a:hover::after {
	transform: translateX(0);
	opacity: 1;
}
@media screen and (min-width: 1141px) {
	#global-navi {
		width: auto;
		margin: 0 auto;
		padding: 22px 20px;
		text-align: right;
	}
}
@media screen and (max-width: 1279px) {
	@media screen and (max-width: 768px) {
		header {
			z-index: 9999;
			width: 100%;
			padding: 0px 10px 5px;
		}
	}
}

/*スマホ画面でハンバーガーメニューの形にする*/
@media screen and (min-width: 769px) {
	h1.main_logo {
		display: none;
	}
}
@media screen and (max-width: 1000px) {
	header {
		z-index: 9999;
		width: 100%;
		padding: 0px 10px;
	}
	h1.main_logo {
		display: none;
		max-width: 170px;
		margin: 15px 10px 5px;
		vertical-align: middle;
	}
	#wrapper nav {
		font-size: 16px;
    	position: fixed;
    	z-index: 2;
    	top: 0;
    	right: 7px;
    	box-sizing: border-box;
    	width: auto;
    	padding-top: 5px;
	}
	#wrapper nav ul.menu li {
		display:block;
		padding: 20px 28px;
	}

	#wrapper nav ul.menu li a {
		text-decoration: none;
		color: #000;
	}
	#wrapper nav ul.sns li{
		padding-right: 0px;
	}
	#wrapper .btn-gnavi {
		position: fixed;
		z-index: 3;
		top: 20px;
		right: 20px;
		display: block;
		box-sizing: border-box;
		width: 30px;
		height: 24px;
		cursor: pointer;
		-webkit-transition: all 400ms;
		        transition: all 400ms;
	}

	#wrapper .btn-gnavi span {
		position: absolute;
		width: 30px;
		height: 4px;
		-webkit-transition: all 400ms;
		        transition: all 400ms;
		border-radius: 10px;
		background: #666;
		;
	}

	#wrapper .btn-gnavi span:nth-child(1) {
		top: 0;
	}

	#wrapper .btn-gnavi span:nth-child(2) {
		top: 10px;
	}

	#wrapper .btn-gnavi span:nth-child(3) {
		top: 20px;
	}

	#wrapper .btn-gnavi.open {
		-webkit-transform: rotate(180deg);
		        transform: rotate(180deg);
	}

	#wrapper .btn-gnavi.open span {
		background: #666;
	}

	#wrapper .btn-gnavi.open span {
		width: 24px;
	}
	#wrapper .contents section p {
		font-size: 20px;
		line-height: 1.4;
		position: absolute;
		top: 50%;
		width: 30%;
		color: #fff;
		text-shadow: 0 0 6px #666;
	}

	#wrapper .contents section:nth-child(odd) p {
		left: 10%;
	}

	#wrapper .contents section:nth-child(even) p {
		right: 10%;
	}
}
.content {
	line-height: 1.6;
	margin: 0 auto;
	padding-top: 100px;
}
.content p {
	margin-bottom: 40px;
}

/*===================================
ハンバーガーメニュー CSS
===================================*/
.menu-btn {
	position: fixed;
	z-index: 90;
	top: 11px;
    left: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 80px;
    height: 80px;
	cursor: pointer;
	background-color: #000000;
	display: none;
}
@media screen and (max-width: 1000px) {
	.menu-btn {
		display: block;
	}
}
.menu-btn span, .menu-btn span:before, .menu-btn span:after {
	position: absolute;
	display: block;
	width: 46px;
	height: 3px;
	content: "";
	border-radius: 3px;
	background-color: #fff;
}
.menu-btn span:before {
	bottom: 11px;
}
.menu-btn span:after {
	top: 11px;
}
#menu-btn-check:checked ~ .menu-btn span {
	background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
	bottom: 0;
	transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
	top: 0;
	transform: rotate(-45deg);
}
#menu-btn-check:checked ~ .menu-content {
	right: 0;/*メニューを画面内へ*/
}
#menu-btn-check {
	display: none;
}
.menu-content {
	position: fixed;
	z-index: 80;
	top: 0;
	right: 100%;/*leftの値を変更してメニューを画面外へ*/
	width: 100%;
	height: 100%;
	transition: all 0.5s;/*アニメーション設定*/
	background-color: rgb(0 0 0 / 80%);
}
.menu-content ul {
	padding: 70px 10px 0;
}
.menu-content ul li {
	list-style: none;
}
.menu-content ul li a {
	font-size: 24px;
	position: relative;
	display: block;
	box-sizing: border-box;
	width: 100%;
	padding: 0px 15px 4vh 0;
	text-align: center;
	text-decoration: none;
	color:#fff;
	font-family: 'Bebas Neue', sans-serif;
	letter-spacing: 0em;
}
@media screen and (min-width:1501px) {
	.menu-content ul li a {
		padding: 0px 15px 5vh 0;
	}
}
.menu-content ul li a span {
	font-family: "DIN","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 12px;
	font-weight: bold;
	margin-left:1em;
	letter-spacing: 0.2em;
}
/*.menu-content ul li a::before {
	position: absolute;
	top: 16px;
	right: 11px;
	width: 7px;
	height: 7px;
	content: "";
	transform: rotate(45deg);
	border-top: solid 2px #75501b;
	border-right: solid 2px #75501b;
}*/
@media screen and (max-width:1000px) {
	.menu-btn {
		position: fixed;
		z-index: 90;
		top: 0px;
	    left: 0px;
		display: flex;
		align-items: center;
		justify-content: center;
		width: 50px;
	    height: 50px;
		cursor: pointer;
		background-color: #000000;
	}
	.menu-btn span, .menu-btn span:before, .menu-btn span:after {
		position: absolute;
		display: block;
		width: 30px;
		height: 3px;
		content: "";
		border-radius: 3px;
		background-color: #fff;
	}
	.menu-btn span:before {
		bottom: 9px;
	}
	.menu-btn span:after {
		top: 9px;
	}
	.menu-content ul{
		padding: 8.5vh 10px 0;
	}
	.menu-content ul li a {
		padding: 0px 0px 4vh 0;
	}
}

/*===================================
main CSS
===================================*/

#main-visual {
	min-height: 100vh;
  	background-size: cover;
  	background-position: center;
  	/* background-image: url("../img/body_bg.jpg");*/
}
@media screen and (min-width:769px) {
	#main-visual {
	  	background-attachment: fixed;
	  	background-size: cover;
	  	background-position: center;
	}
}
#main-mv-u {
	/* 以下、画面いっぱいにするためのCSS設定 */
	/* min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw; */
	/* wrapperのサイズに応じて、leftの位置をjQueryで指定するため、positionはabsoluteにします。*/
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	overflow: hidden;

/*background: #ccc; */ /* 動画が再生を始めるまで、cssのほうでも背景を設定します。*/
	background-attachment: fixed; /* 中央揃えになるように、fixed。*/
	background-position: center center; /* positionも中央に。*/
	background-size: cover; /* 画面サイズに応じてサイズを可変するように設定。*/
}

#main-mv {
	/* wrapperのサイズに応じて、leftの位置をjQueryで指定するため、positionはabsoluteにします。*/
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	min-width: 100%;
	min-width: 100vw;

/* 以下、画面いっぱいにするためのCSS設定 */
	min-height: 100%;
	min-height: 100vh;

/*background: #ccc; */ /* 動画が再生を始めるまで、cssのほうでも背景を設定します。*/
	background-attachment: fixed; /* 中央揃えになるように、fixed。*/
	background-position: center center; /* positionも中央に。*/
	background-size: cover; /* 画面サイズに応じてサイズを可変するように設定。*/
}

.logo-style {
	position: absolute;
    z-index: 998;
    bottom: 10%;
    right: 10%;
    left: auto;
    max-width: 550px;
    margin: 0 auto;
    text-align: center;
}
@media screen and (max-width:768px) {
	.logo-style {
		max-width: 400px;
	}
}
/* 動画を囲う親要素 */
#main-visual{
	width: 100%;
	height: 100vh;
	position: relative;
}
#main-visual:before {
  content: '';
  position: absolute;
  background-image: url("../img/dot.svg");
  background-repeat: repeat;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
.sp-movie {
	display: none;
	width: 100%;

}
#wrapper_videoPlay {
	display: block;
}
.sp-movie video {
	object-fit: cover;
	width: 100%;
	height: 100vh;
}
@media screen and (max-width: 768px) {
	#wrapper_videoPlay {
		display: none;
	}
	.sp-movie {
		display: block;
	}
}

/*===================================
concept・料理長
===================================*/

#contents1 {
	z-index: 10;
	padding:90px 0 70px;
}
.inner {
	width:auto;
	margin:0 auto;
}
#contents1 .inner2 {
	width:auto;
	margin: 0 0 0 auto;
}
h2.concept_title {
	position: relative;
	width:100%;
	margin: 0 auto 40px;
	text-align: center;
	font-family: 'Bebas Neue', sans-serif;
	font-size: 4rem;
	letter-spacing: 0em;
	font-weight: 300;
}
h2.concept_title img {
	width:163px;
	text-align: center;
}
/*h2.concept_title::before {
	position: absolute;
	z-index: -1;
	top:-33px;
	left: 50px;
	display: inline-block;
	width:287px;
	height:306px;
	content: "";
	background: url("../img/concept_main.png") no-repeat;
	background-size: cover;
}*/
h3.concept_catch {
	position: relative;
	width:100%;
	margin: 0 auto 50px;
    text-align: center;
	font-size: 3.1rem;
	font-weight: 500;
	color:#AA7933;
	letter-spacing: 0.28em;
	font-family: "Hiragino Mincho ProN","Shippori Mincho B1","Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
}
.lead-text{
	letter-spacing: 0.25em;
	font-size: 1.9rem;
	font-weight: 500;
	font-family: "Hiragino Mincho ProN","Shippori Mincho B1","Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
	margin-top: 25px;
}
.lead-tel-text{
	letter-spacing: 0.1em;
	font-size: 1.9rem;
	font-weight: 500;
	font-family: "Hiragino Mincho ProN","Shippori Mincho B1","Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
	margin-top: 25px;
	text-align: center;
}
.lead-tel-text a{
	color:#000;
	text-decoration: none;
}


@media screen and (min-width:1141px) {
	.inner {
		max-width:890px;
	}
	.inner2 {
		max-width:1140px;
	}
}

@media screen and (max-width:1279px) and (min-width:769px) {
	.inner {
		width:auto;
		padding: 0 20px;
	}
	.inner2 {
		max-width:1100px;
	}
}

@media screen and (max-width:768px) {
	#contents1 {
		padding: 50px 0;
	}
	#main-visual h1.main-text {
		top: 38%;
		width: auto;
		padding: 0 20px;
	}
	#main-visual h2.main-text-sub {
		font-size: 4rem;
		top: 38%;
		padding-left: 1%;
	}
	#main-visual .shachihoko {
		position: absolute;
		z-index: 999;
		top: 2%;
		left: 3.5%;
		width: 55px;
		height: auto;
	}
	h2.concept_title {
	    margin: 0 auto 20px;
	}

	@media screen and (max-width:767px) {
		#main-visual h2.main-text-sub {
			font-size: 2.6rem;
			top: 37%;
			padding-left: 1%;
		}
	}

	.logo-style {
		top: 38%;
		max-width: 200px;
	}
	.inner {
		width: auto;
		padding-right:20px;
		padding-left:20px;
	}
	.logo-style {
		width:90%;
		margin: 0 auto;
	}
}

@media screen and (max-width:1279px) {

}
@media screen and (max-width:992px) {
	h2.concept_title::before {
		width: 250px;
		height: 250px;
	}
}
@media screen and (max-width:768px) {
	h2.concept_title::before {
		top:0;
		right: 0;
		left: auto;
		width: 150px;
		height: 150px;
	}
	h3.concept_catch {
		top: 0;
		width: 92%;
		margin: 0 auto 30px auto;
    	font-size: 2rem;
	}
	h3.concept_catch::after {
		width: 80%;
		background-size: contain;
	}
	.lead-text,.lead-tel-text{
		font-size: 1.6rem;
	}
}
@media screen and (max-width:375px) {
	h2.concept_title::before {
		width: 120px;
		height: 120px;
	}
}

/*===================================
料理長
===================================*/

#contents2 {
	z-index: 10;
	padding:90px 0 90px;
	position: relative;
	background: #E6E6E6;
	background: url("../img/contents2_bg.jpg") no-repeat;
	background-size: cover;
}
/*
#contents2.back-gray::after{
	content: "";
	background: #E6E6E6;
	height:420px;
	width:100%;
	top: 39px;
	position: absolute;
	z-index: -1;
}
*/
.f_white {
	color: #fff;
}
.col-wrap {
	display: flex;
/*margin: 100px auto; */
	margin: 0 auto;
	background: rgb(0 0 0 / 56%);
}
.col-wrap .left {
	width: 33.5%;
    margin-right: 3%;
	padding:0px 0px;
}
.col-wrap .right {
	width: 63.5%;
	margin-right:0%;
}
.name {
	margin-top:0;
	font-size:2rem;
	font-family: "Hiragino Mincho ProN","Shippori Mincho B1","Times New Roman", "YuMincho", "Yu Mincho", "MS PMincho", serif;
	margin-bottom: 1.4em;
    line-height: 1;
}
.name span{
	font-size:1.4rem;
	margin-right:1em;
}
.name span.right-text{
	margin-left:1em;
	margin-right:0em;
}
dl.since-table {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	font-size:0;
}
dl.since-table dt {
	flex-basis: 8%;
	font-size: 1.2rem;
	margin: 0 0 0.5em;
	margin-right: 5%;
	line-height: 1.5;
}
dl.since-table dd {
	flex-basis: 87%;
	font-size: 1.2rem;
	margin: 0 0 0.5em;
	line-height: 1.5;
}
@media screen and (max-width: 559px) {
	dl.since-table {
		flex-flow: column;
	}
}

@media screen and (max-width:768px) {
	.col-wrap {
		display: block;
		margin: 0px auto 0px;
	}
	.col-wrap .left, .col-wrap .right {
		width:auto;
		margin-right:0%;
		margin-bottom:5%;
	}
	
	#contents2 {
		padding: 60px 0 60px;
		background-size: cover;
        background-position-x: 70%;
	}
	#contents2 .col-wrap .right {
		width:100%;
	}
	#contents2 .col-wrap .left {
		width:70%;
		margin:auto;
	}
	.name span.right-text{
		margin-top: 0.8em;
    	margin-left: 0em;
    	display: block;
	}
	#contents2.back-gray::after{
		display: none;
	}
	.name {
		margin-top:0.5em;
		text-align: center;
	}
	dl.since-table {
		position: relative;
    	padding: 15px 20px;
    	margin: 0 -20px;
	}
}

/*===================================
背景挿入01
===================================*/
#back-line01{
	width:100%;
}

/*===================================
SCENE
===================================*/

#contents3 {
	z-index: 10;
	width: 100%;
	padding:60px 0 60px 0;
}
#contents3 .inner {
	max-width: 1140px;
	padding:0px 0 0px 0;
}

@media screen and (max-width:768px) {
	#contents3 {
		z-index: 10;
		width: 100%;
		padding:30px 0 50px 0;
	}
}

@media screen and (max-width:575px) {
	
}


/*===================================
背景挿入 contents4
===================================*/
#contents4 {
	padding:70px 0 70px 0;
	width: 100%;
}

@media screen and (max-width:768px) {
	#contents4 {
		padding:35px 0 35px 0;
	}
}

/*===================================
RECRUIT
===================================*/

#contents5,#contents50 {
	z-index: 10;
	padding:90px 0;
}
#contents5 .inner3,#contents50 .inner3  {
	width: 92%;
	max-width: 900px;
	margin: 0 auto;
}

h2.recruit_title {
	position: relative;
	width:100%;
	max-width: 1280px;
	margin: 0 auto 70px;
	text-align: center;
}
h2.recruit_title img {
	width:155px;
	text-align: center;
}
h3.recruit_catch {
	position: relative;
	z-index: 999;
	width:100%;
	max-width: 483px;

/* width: 100%; */
	/* margin-left: 0; */
	margin: 0 auto 60px 0;
	text-align: right;
}
.mainabi_link {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}
.mainabi_link img {
	width:100%;
}
.mainabi_link a {
	flex-basis: 195px;
	margin: 0 20px;
	transition: 0.3s;
}
.mainabi_link a:hover {
	transition: 0.3s;
	opacity: 0.7;
}

#contents5 .text,#contents50 .text{
    display: flex;
    flex-wrap: wrap;
    width:100%;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5em;
}
#contents5 article a,#contents50 article a{
    text-decoration: none;
    color:#fff;
}
#contents5 .article-date,#contents50 .article-date{
    width:13%;
    margin-right:2%;
    font-family: "Sawarabi Gothic";
    font-weight: 500;
    letter-spacing: 0.1em;
}
#contents5 .new-title,#contents50 .new-title{
    width:85%;
    font-family: "Sawarabi Gothic";
    letter-spacing: 0.01em;
}
#contents5 a.read-link,#contents50 a.read-link{
    width: 128px;
    display: inline-block;
    margin-top: 25px;
}

@media screen and (max-width:768px) {
	h3.recruit_catch {
		max-width: 100%;
	}
	#contents5,#contents50 {
		z-index: 10;
		padding:45px 0;
	}
}
@media screen and (max-width:700px) {
	#contents5 .article-date,#contents50 .article-date{
	    width:100%;
	}
	#contents5 .new-title,#contents50 .new-title{
	    width:100%;
	}
}
@media screen and (max-width:575px) {
	.mainabi_link {
		display: block;
	}
	.mainabi_link a {
		display: block;
		margin: 0 0 10px 0;
		text-align: center;
	}
	.mainabi_link img {
		width:195px;
	}
}

/*===================================
ACCESS
===================================*/

#contents6 {
	z-index: 10;
	padding:90px 0 55px;
}
#contents6 .inner3 {
	width: 92%;
	max-width: 900px;
	margin: 0 auto;
}
h2.access_title {
	position: relative;
	width:100%;
	max-width: 1280px;
	margin: 0 auto 70px;
	text-align: center;
}
h2.access_title img {
	width:135px;
	text-align: center;
}
.access_map {
	width:100%;
	height:auto;
	margin-bottom: 60px;
}
.access_map iframe {
	width: 100%;
	height: 400px;
}
.tenpo-name {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1;
    margin-top: 1em;
    letter-spacing: 0.1em;
}
.tenpo-address {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-top:50px;
	margin-bottom: 1em;
}
.tenpo-tel {
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: 1em;
	letter-spacing: 0.1em;
}
.tenpo-tel a {
	font-size: 2.2rem;
	color:#000;
	text-decoration: none;
}
.tenpo-new {
	font-family: "DIN","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 44px;
	line-height: 1;
	letter-spacing: 0.1em;
}
dl.tenpo-table {
	display: flex;
	flex-flow: row wrap;
	width: 100%;
	font-size:0;
}
dl.tenpo-table dt {
	flex-basis: 12%;
    font-size: 1.4rem;
    margin: 0 0 0.5em;
    margin-right: 2%;
}
dl.tenpo-table dd {
	flex-basis: 86%;
	font-size: 1.4rem;
	margin: 0 0 0.5em;
	line-height: 1.5;
}
#contents6 .col-wrap2 {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	position: relative;
}
#contents6 .col-wrap2 > div {
	margin-right: 2.5%;
}
#contents6 .col-wrap2::after {
	position: absolute;
	z-index: -1;
	top: -25px;
    right: -75px;
	display: inline-block;
	width: 219px;
    height: 233px;
	content: "";
	background: url("../img/concept_main.png") no-repeat;
	background-size: cover;
}
@media screen and (max-width:1140px) and (min-width:769px) {
#contents6 .col-wrap2::after {
    right: 0px;
}
}
@media screen and (max-width:768px) {
	.access_map iframe {
		height:32vh;
	}
	#contents6 {
		padding:45px 0 25px;
	}
	#contents6 .inner3 {
		width: 100%;
		max-width: 100%;
		margin: 0;
	}
	#contents6 .col-wrap > .right {
		width: 92%;
		margin: 0 auto;
	}
	#contents6 .col-wrap .left {
		width: 100%;
	}
	#contents6 .col-wrap2::after {
	    position: absolute;
	    z-index: -1;
	    top: -25px;
	    right: -15px;
	    display: inline-block;
	    width: 109.5px;
	    height: 116.5px;
	    content: "";
	    background: url(../img/concept_main.png) no-repeat;
	    background-size: cover;
	}
	.tenpo-address {
		font-size: 1.3rem;
	}
	dl.tenpo-table {
		flex-flow: column;
	}
}

@media screen and (max-width:575px) {
	.tenpo-name {
		font-size: 4vw;
	}
	.tenpo-new {
		font-size: 8vw;
	}
}

/*===================================
contents7
===================================*/
#contents7.fixed-background {
  min-height: 50vh;
  width: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
  /*background-image: url("../img/body_bg.jpg");*/
}
#contents7.fixed-background:before {
  content: '';
  position: absolute;
  background-image: url("../img/dot.svg");
  background-repeat: repeat;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
}
@media screen and (min-width:769px) {
	#contents7.fixed-background {
	  background-attachment: fixed;
	}
}

#contents7 {
	z-index: 10;
	padding:90px 0 55px;
	position: relative;
}
#contents7 .logo-style {
    top: 19%;
}
.top-link{
	position: absolute;
    right: 0;
    bottom: 30px;
    left: 0;
    margin: 0 auto;
	text-align: center;
	display: block;
	z-index: 100;
}
.top-link a{
	display: block;
	height: 24px;
	width: 50px;
    margin: 0 auto;
}

@media screen and (max-width:768px) {
	#contents7 .logo-style {
        top: 30%;
    }
}


/*===================================
スライダー
===================================*/
.sliderArea {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 25px;
}
.sliderArea.w300 {
  max-width: 300px;
}
.slick-slide {
  margin: 0 5px;
}
.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;
}

.scene-textbox {
    position: absolute;
    background: rgb(0 0 0 / 83%);
    max-width: 554px;
	min-width: 300px;
    height: 271px;
    bottom: 0;
    right: 0;
    display: block;
    color: #fff;
    padding: 40px 20px 20px;
    /* margin: 65px auto 0px auto; */
	text-align: center;
}
.scene-textbox h4{
	font-size: 1.8rem;
	font-family: "Times New Roman","Shippori Mincho B1", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	letter-spacing: 0.4em;
    margin-bottom: 0.1em;
    margin-top: 0;
    font-weight: 500;
}
.scene-time{
	font-size: 1.2rem;
	font-family: "Times New Roman","Shippori Mincho B1", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	letter-spacing: 0.23em;
	margin-bottom: 0.5em;
	text-align: center !important;
}
a.scene-link {
	display: inline-block;
    font-size: 1.6rem;
    border: solid 1px #fff;
    letter-spacing: 0.2em;
    padding: 0.1em 0.5em 0.2em;
    margin-top: 20px;
    line-height: 1.6;
    text-decoration: none;
    transition: 0.3s;
    color: #fff;
    font-family: "Times New Roman","Shippori Mincho B1", "Hiragino Mincho ProN","YuMincho", "Yu Mincho", "MS PMincho", serif;
}
a.scene-link:hover {
	transition: 0.3s;
	opacity: 0.7;
}
.scene-textbox p{
	font-size:1.2rem;
	text-align: center;
	font-family: "Hiragino Mincho ProN","YuMincho", "Shippori Mincho B1","Times New Roman", "Yu Mincho", "MS PMincho", serif;
	line-height: 1.5;
}
p.scene-text2 {
    font-size: 2rem;
    line-height: 1.6;
    text-align: center;
    padding: 10px;
}
.scene-text {
	font-size:12px !important;
}
@media screen and (max-width:768px) {
.scene-textbox {
    position: relative;
    background: rgb(0 0 0 / 80%);
    max-width: 554px;
    height: auto;
    bottom: 0;
    right: 0;
    display: block;
    color: #fff;
    padding: 20px;
    /* margin: 65px auto 0px auto; */
    text-align: center;
	margin:auto;
}
}

/*スライダー*/
.multiple { padding: 0;}
.multiple img { width: 100%;}
.multiple div { margin: 0px;}
.multiple .slick-next { display: none !important; right: 17px;　z-index: 100;}
.multiple .slick-prev { display: none !important; left: 23px; z-index: 100;}
.multiple .slick-slide {
  transition: all ease-in-out .3s;
  opacity: 1;
}

/*===================================
instagram
===================================*/
@media screen and (max-width: 559px) {
  #sb_instagram.sbi_col_5.sbi_disable_mobile #sbi_images .sbi_item {
    width: 50% !important;
  }
}

/*===================================
footer
===================================*/

footer {
	padding:30px 0;
	text-align: center;
	background: #ce001e;
}
#kasahara.company-page footer {
	padding:30px 0 60px;
}
footer p {
	font-family: "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
	color: #fff;
}
.footer-inner {
	position: relative;
	width:auto;
	margin:0 auto;
}
.footer-inner ul {
	list-style: none;
	width: auto;
	padding: 0;
	margin:0 auto;
	font-family: "Noto Sans JP","Yu Gothic Medium", "游ゴシック Medium","Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体","ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.footer-inner li {
	display: inline-block;
	width: auto;
    margin-right: 5%;
    font-size: 1.4rem;
    letter-spacing: 0.15em;
}
.footer-inner li:last-child {
	margin-right:0%;
}
.footer-inner li a {
	color:#000;
	text-decoration: none;
	transition: 0.3s;
}
.footer-inner li a:hover {
	transition: 0.3s;
	opacity: 0.7;
}
@media screen and (min-width:1281px) {
	.footer-inner {
		max-width:890px;
	}
}
@media screen and (max-width:767px) {
	footer {
			padding:30px 0 130px;
		}
}

/*=================================
　共通クラス
=================================*/

.sp-only {
	display: none !important;
}

@media screen and (max-width:768px) {
	.pc-only {
		display: none !important;
	}
	.sp-only {
		display: block !important;
	}
	.sp-only-in {
		display: inline-block !important;
	}
}

.center{text-align:center;}

#to_top {
  padding: 30px 0 10vw;
}

@media screen and (min-width:768px) {
	.sp{display:none;}	
}	
@media screen and (max-width:767px) {
	.pc{display:none;}	
	#to_top {padding: 25vw 0 20vw;}
}	
ul.partner_list {
	padding-left: 0 !important;
	text-align: center;
}
ul.partner_list li {
    display: inline-flex;
    vertical-align: middle;
    padding: 15px;
}
ul.partner_list .tate img {
    max-height: 100px;
	max-width: 100px;
}
ul.partner_list .tate a,ul.partner_list .yoko a {
	display: block;
	width: fit-content;
	height: fit-content;
	cursor: pointer;
    opacity: 0.3;
}
ul.partner_list .yoko {
    max-width: 200px;
}
ul.partner_list .tate a:hover,ul.partner_list .yoko a:hover {
	opacity: 1;
}
@media screen and (max-width:767px) {
	ul.partner_list li {
		display: inline-flex;
		vertical-align: middle;
		padding: 10px;
	}
	ul.partner_list .tate img {
		max-height: 100px;
		max-width: 100px;
	}
	ul.partner_list .yoko {
		max-width: 100px;
	}
}

#stats {
	background-image: url("../img/statst_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 90px 0;
}
.Progress_Status {
	width: 100%;
}
.myprogressBar {
	width: 1%;
	height: 50px;
	background-color: #ce001e;
	text-align: center;
	color: #fff;
	display: inline-block;
}
.prorate {
	display: inline-block;
	vertical-align: top;
	height: 50px;
	line-height: 50px;
	margin-left:10px;
	font-size: 28px;
	letter-spacing: 0.2em;
}
#stats h3 {
	font-size: 24px;
	font-weight: bold;
	letter-spacing: 0.2em;
	margin-bottom: 0;
}
#stats ul {
	display: flex;
	align-items: center;
	gap: 30px;
	font-size: 32px;
}
#stats ul li {
	list-style: none;
	font-size: 28px;
	letter-spacing: 0.2em;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	transition: all .3s;
}
#stats ul li::after {
	content: "";
	display: inline-block;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 3px;
	border-bottom: 3px solid #ce001e;
	transform: translateX(-100%);
	opacity: 0;
	transition: all .3s;
}
#stats ul li:hover {
	color: #ce001e;
}
#stats ul li:hover::after {
	transform: translateX(0);
	opacity: 1;
}
#stats ul li.active::after {
	transform: translateX(0);
	opacity: 1;
}
#stats ul li.active {
	color: #ce001e;
}
.jpn,.ngy,.az, .southampton, .bremen {
	display: none;
}
.jpn.active,.ngy.active,.az.active, .southampton.active, .bremen.active {
	display: block;
}
.mainv {
    width: 100%;
    display: flex;
    height: 100%;
}
@media screen and (max-width: 768px) {
	#stats ul {
		gap: 15px;
		font-size: 24px;
		padding-left: 0;
	}
	#stats h3 {
		font-size: 18px;
	}
	.prorate {
		font-size: 20px;
		height: 25px;
		line-height: 25px;
	}
	.myprogressBar {
		height: 25px;
	}
	#stats ul li {
		list-style: none;
		font-size: 14px;
	}
}
@media screen and (max-width: 580px) {
	#stats {
		background-position-x: 40%;
	}
}
.adidas {
	width: 120px;
}