@charset "UTF-8";
@import url(reset.css);
/*@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&subset=japanese');*/

/*--------------------------------------------------------------

reset.css
リセット関係・clearfixなど

common.css
上記cssのimport、レイアウト（大枠）を記載したcss

sub.css
下層のレイアウト（大枠）を記載したcss

--------------------------------------------------------------*/
/* fontIcon 
:before,
:after {
	content: "\f099";
	font-family: "Font Awesome 5 Free";
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	font-weight: 900;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
  }

/* ------------------------------------------------------------ */
/* 全デバイス幅共通：基本・レイアウト指定 */
/* ------------------------------------------------------------ */

* html body {
	background: url(null) fixed;
}

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

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #000;
	font-size: 16px;
 *font-size: small;
 *font: x-small;
	line-height: 1.5;
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", sans-serif;
	-webkit-text-size-adjust: 100%; /*レスポンシブのとき*/
}

html {
	overflow-x: hidden;
}

.sp {
	display: none;
}

/* ------------------------------------------------------------ */
/* リンク色 */
/* ------------------------------------------------------------ */
::selection {
	background: rgba(0, 0, 0, .1);
	color: #5cabdc;
}

::-moz-selection {
 background: rgba(0, 0, 0, .1);
 color: #5cabdc;
}

a {
	color: #000;
	cursor: pointer;
	line-height: inherit;
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
	text-decoration: none;
}

/* PCで電話番号リンクを無効に */
a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;
}

a:link {
	text-decoration: none;
}

a:visited {
	text-decoration: none;
}

a:hover {
	color: #d2071d;
	text-decoration: none;
}

a:active {
	color: #d2071d;
	text-decoration: none;
}

/* ------------------------------------------------------------ */
/* font */
/* ------------------------------------------------------------ */

.gNav li a,
h3,
p.btn a,
.en {
	font-family: din-condensed, sans-serif;
	font-weight: 400;
	font-style: normal;
	letter-spacing: 0.03em;
}

h4,
.base p.txt,
.base p.add,
.min {
	font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", "serif";
	letter-spacing: 0.08em;
	font-weight: normal;
	line-height: 1.7;
}

/* ------------------------------------------------------------ */
/* 画像 */
/* ------------------------------------------------------------ */
a img {
	-webkit-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

a:hover img {
	opacity: .7;
}

.logo img,
.thum img,
.image img {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

/* ------------------------------------------------------------ */
/* float */
/* ------------------------------------------------------------ */

.floatL {
	float: left;
	margin: 0 1em 1em 0;
}

.floatR {
	float: right;
	margin: 0 0 1em 1em;
}

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.wrapper {
	width: 100%;
	height: 100%;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
}

.inner {
	width: 95%;
	max-width: 1200px;
	height: auto;
	margin: 0 auto;
	clear: both;
}

.inner::after {
	content: "";
	clear: both;
	display: block;
}

.content {
	display: block;
	height: auto;
}

.blk {
	background: url("../img/bg-top.png") no-repeat center;
	background-attachment: fixed;
	background-color: #000;
}

/* ------------------------------------------------------------ */
/* ヘッダー */
/* ------------------------------------------------------------ */
header {
	width: 100%;
	margin: 0 auto;
	background: #000;
	position: relative;
	/*position: fixed;
	top: 0;
	left: 0;*/
	z-index: 9999;
	-webkit-transition: all .5s;
	transition: all .5s;
}

/* ------------------------------------------------------------ */
/* グローバルナビ */
/* ------------------------------------------------------------ */


header .inner {
    display: table;
}

header .inner h1.nav-logo  {
    width: 20%;
	max-width: 350px;
	display: table-cell;
	vertical-align: middle;
}

header .inner h1.nav-logo a {
    display: block;
    padding: 10px 0;
}

.gNav {
	width: 100%;
	vertical-align: middle;
	background: #000;
	color: #fff;
	display: table-cell;
	/*padding: 50px 0;*/
	padding: 15px 0;
	transition: all .5s;
}

.gNav ul {
	width: 100%;
	height: auto;
	margin: 0 auto;
	display: flex;
	justify-content: flex-end;
	align-items: flex-start;
	flex-wrap: nowrap;
	position: relative;
	z-index: 1;
}

.gNav li {
	margin: 0 5px;
	position: relative;
}

.gNav li a {
	display: inline-block;
	color: #fff;
	font-size: 24px;
	padding: 5px 10px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.gNav li a::after {
	content: '';
	position: absolute;
	background: #000;
	height: 1px;
	width: 90px;
	top: 50%;
	left: 50%;
	-webkit-transform: rotate(135deg);
	transform: translateX(-50%)translateY(-50%)rotate(135deg);
	-webkit-transition: all .3s ease-in-out;
	transition: all .3s ease-in-out;
	z-index: -1;
}

.gNav li a:hover::after {
	background: #d2071d;
	z-index: -1;
}

.gNav li a span {
	font-size: 11px;
	display: block;
}

header.is-fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 9999;
}

header.is-fixed .gNav {
    padding: 15px 0;
}


header .inner h1.nav-logo {
	display: none;
}

.gNav ul {
	justify-content: space-around;
}

/* ------------------------------------------------------------ */
/* メインビジュアル */
/* ------------------------------------------------------------ */
/* overlay ----------------------*/
.overlay {
/*	display: none;*/
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
}
.overlay-close {
    position: absolute;
    width: 100%;
    height: 100vh;
}
.overlay .movie_cont {
    width: 100%;
     height: 100%; 
    position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
    z-index: 2;
}
.overlay .movie_area {
    width: 90%;
    height: auto;
    position: relative;
    z-index: 3;
    overflow: hidden;
}
.overlay .movie_area::before {
	content: '';
	display: block;
	width: 100%;
	padding-bottom: 56.25%;
	
}
.overlay .movie_area iframe {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.overlay .btn_area {
	position: absolute;
    top: 5%;
    right: 5%;
    z-index: 100;
}
.overlay .btn_area button {
    display: block;
    margin: 0 auto;
    color: #000;
	background: #fff;
    font-size: 2em;
    font-weight: bold;
    cursor: pointer;
	line-height: 0.7;
   padding: 5px 8px 8px;
    letter-spacing: 0;
}

/* main-visual ----------------------*/
.main-visual {
	background: #000;
	border-bottom: 5px solid #d2071d;
	z-index: 1;
	position: relative;
}

.main-visual .bg-img {
	width: 70%;
	max-width: 950px;
	margin: 0 auto;
	position: relative;
	background: url("../img/img-mainvisual04.png") no-repeat;
	background-size: cover;
	z-index: 0;
}

.main-visual .bg-img h1.main-logo {
	width: 55%;
	margin: 0 auto;
	padding: 20% 0 80px;
	position: relative;
	z-index: 1;
}

.main-visual .bg-img p.sub-logo {
	width: 25%;
	margin: 0 auto;
	padding-bottom: 70px;
	position: relative;
	z-index: 1;
}

.main-visual .bg-img img {
	width: 100%;
}

.main-visual .bg-img::before {
	content: '';
	background: rgba(0,0,0,.5);
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	position: absolute;
	z-index: 1;
}

.main-visual .bg img {
	width: 100%;
}


/* ------------------------------------------------------------ */
/* コンテンツ共通 */
/* ------------------------------------------------------------ */
h3 {
	font-size: 45px;
	margin-bottom: 20px;
	line-height: 1.2;
}

h3:first-letter {
	color: #d2071d;
}

h4 {
	font-size: 22px;
	margin-bottom: 20px;
}

.base p.txt {
	font-size: 14px;
	margin-bottom: 50px;
}

.base p.add {
	font-size: 12px;
	padding: 30px 0;
}

p.btn a {
	display: inline-block;
	text-align: center;
	color: #fff;
	font-size: 20px;
	width: 50%;
	padding: 10px;
	border-radius: 40px;
	border: 2px solid #d2071d;
}

p.btn a:hover {
	background: #d2071d;
}

.base {
	color: #fff;
	position: relative;
}

.base .item-r {
	margin-left: 50%;
	padding: 50px 0 50px 40px;
}

.base .item-l {
	margin-right: 50%;
	padding: 50px 40px 50px 0;
}

.base .thum {
	position: absolute;
	left: 0;
	top: 0;
	width: 50%;
	height: 100%;
	overflow: hidden;
}

.base .thum.right {
	right: 0;
	left: auto;
}

.base .twentytwenty-container.pcOnly {
	width: 50%;
	height: 100%!important;
	position: absolute;
	right: 0;
	top: 0;
	overflow: hidden;
	background: #000;
}

.base .twentytwenty-container.spOnly {
	display: none;
}

.base .twentytwenty-container.pcOnly img {
	width: 100%;
	height: auto;
	top: 50%;
	transform: translateY(-50%);
}

#detail01 .thum {
	background: url("../img/img-base01.png") no-repeat center;
	background-size: cover;
}

/*#detail02 .thum {
    background: url("../img/img-base02.png") no-repeat center;
    background-size: cover;
}
*/
#detail03 .thum {
	background: url("../img/img-base03.png") no-repeat center;
	background-size: cover;
}

#detail04 .thum {
	background: url("../img/img-base04.png") no-repeat left;
	background-size: cover;
}

#detail05 .thum {
	background: url("../img/img-base05.png") no-repeat center;
	background-size: cover;
}

.base .thum img {
	height: 100%;
}

.order {
	background: #fff;
	text-align: center;
	padding: 50px 0;
}

.order h3 {
	color: #d2071d;
	margin-bottom: 50px;
}

.order h3 span {
	font-size: 14px;
	display: block;
	font-weight: 600;
}

.order p.btn a {
	color: #d2071d;
	font-size: 16px;
	font-weight: 600;
	padding: 15px;
	width: 30%;
}

.order p.btn a:hover {
	color: #fff;
}

.order p.txt {
	font-size: 14px;
	padding: 30px 0;
}

.order ul {
    max-width: 1000px;
    margin: 0 auto 50px;
    display: flex;
    justify-content: flex-start;
    align-content: flex-start;
    align-items: stretch;
    flex-wrap: wrap;
}

.order li {
    width: calc(100%/6);
    text-align: center;
    padding: 0 5px;
    position: relative;
    margin-bottom: 20px;
}

.order li::after {
    content: '▶︎';
    color: #4b4b4b;
    position: absolute;
    font-size: 16px;
    top: 50px;
    right: 0;
}

.order li:last-of-type::after {
    display: none;
}

.order li p {
    font-size: 13px;
    color: #d2071d;
    font-weight: 600;
    padding-top: 10px;
}

.order li p span {
    display: block;
    color: #4b4b4b;
    font-weight: normal;
    font-size: 12px;
    padding-top: 5px;
}

.order li img {
    width: 60%;
}

/* ------------------------------------------------------------ */
/* フッター */
/* ------------------------------------------------------------ */
footer {
	background: #d2071d;
	color: #fff;
	width: 100%;
	height: auto;
	margin: 0 auto;
	padding: 40px 0;
	position: relative;
	z-index: 9998;
}

footer .inner {
	display: table;
}

footer .ft-logo,
footer .ftNav {
	display: table-cell;
	vertical-align: middle;
}

footer .ft-logo {
	width: 35%;
}

footer .ft-logo a {
	display: block;
    width: 50%;
    float: left;
    padding:0 2%;
}

footer .ft-logo a:first-of-type {
    padding: 5%;
}

footer .ft-logo p {
    font-size: 12px;
    padding: 0 5%;
}

footer .ftNav ul {
	display: flex;
	justify-content: flex-end;
	align-content: flex-end;
	margin-bottom: 30px;
}

footer .ftNav li a {
	display: inline-block;
	font-size: 12px;
	color: #fff;
	margin-right: 20px;
}

footer .ftNav li a:hover {
	color: #000;
}

footer .ftNav li:last-of-type a {
	margin-right: 0;
}

footer .ftNav p.copy {
	text-align: right;
	font-size: 9px;
}

@media screen and (max-width: 1400px) {
/* 1400px以下用の記述 */
}

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

/* 1079px以下用（タブレット用）の記述 */

}

@media screen and (max-width: 1023px) {
/* 1023px以下用（タブレット用）の記述 */

.pc {
	display: none!important;
}

.sp {
	display: block;
}

/* 電話番号リンクを有効に */
a[href*="tel:"] {
	pointer-events: auto;
	cursor: pointer;
}


/* ------------------------------------------------------------ */	
/* ナビボタン */
    
header h1 {
	width: 180px;
	padding: 10px;
}
    
.sb-toggle-right {
	width: 35px;
	height: 25px;
	position: absolute;
	top: 50%;
	right: 15px;
	transform: translateY(-50%);
}

#spBtn {
	width: 100%;
	height: 100%;
	position: absolute;
	left: 0;
	top: 0;
	outline: none;
	border: none;
	background: none;
	cursor: pointer;
	z-index: 999;
}

#spBtn span {
	display: inline-block;
	width: 100%;
	height: 3px;
	background-color: #fff;
	position: absolute;
	left: 0;
	transition: all .4s;
}

#spBtn span:nth-of-type(1) {
	top: 0;
}

#spBtn span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}

#spBtn span:nth-of-type(3) {
	bottom: 0;
}

.sb-active #spBtn span:nth-of-type(1) {
	-webkit-transform: translateY(10px) rotate(-45deg);
	transform: translateY(10px) rotate(-45deg);
}

.sb-active #spBtn span:nth-of-type(2) {
	opacity: 0;
}

.sb-active #spBtn span:nth-of-type(3) {
	-webkit-transform: translateY(-12px) rotate(45deg);
	transform: translateY(-12px) rotate(45deg);
}

/* ------------------------------------------------------------ */
/* ドロワーナビ */
/* ------------------------------------------------------------ */

.sbNav {
	-webkit-overflow-scrolling: touch;
	overflow-scrolling: touch;
	background: #d2071d;
	box-shadow: 0 0 5px 0 rgba(0,0,0,.1);
}

.sb-right-inner {
	width: 100%;
	height: 100%;
	padding: 0 10px;
}

.sb-right-inner .sp-logo {
	width: 100%;
	height: auto;
	max-width: none;
	max-height: none;
	padding: 20px 10px;
}
    
.sb-right-inner .sp-logo a {
    display: block;
}

.sb-right-inner .sp-logo img {
	width: 100%;
}

.drawrNav {
	width: 100%;
	height: auto;
	margin: 0 auto 30px;
}

.drawrNav ul {
	width: 100%;
	height: auto;
}

.drawrNav li {
	margin: 0 auto;
	width: 100%;
	text-align: left;
}

.drawrNav li a {
	display: block;
	width: 100%;
	height: 100%;
	padding: 15px 8px;
	color: #fff;
	border-bottom: 1px solid #fff;
	font-size: 25px;
}

.drawrNav li a span {
	display: block;
	font-size: 12px;
}
    
.drawrNav p.btn {
    text-align: center;
    margin: 30px auto 20px;
}

.drawrNav p.btn a {
    border: 2px solid #fff;
    font-size: 15px;
    width: 95%;
    padding: 10px 5px;
    background: #fff;
    color: #d2071d;
    font-weight: 600;
}
	
.drawrNav p.btn.fb a {
  font-size: 1.6rem;
}	

/* ------------------------------------------------------------ */
/* 全体格納 */
/* ------------------------------------------------------------ */
.inner {
	max-width: 95%;
	padding: 0;
}

h3 {
	font-size: 40px;
}

h4 {
	font-size: 20px;
}

p.btn a {
	width: 200px;
	padding: 5px;
	font-size: 18px;
}

.order p.btn a {
	font-size: 14px;
	width: 280px;
	padding: 10px;
}
    
footer {
    padding: 30px 0 15px;
}
    
footer .ft-logo, footer .ftNav {
    display: block;
}

footer .ft-logo {
    width: 60%;
    margin: 0 auto 30px;
}
    
	footer .ft-logo .logo {
    display: flex;
    justify-content: center;
}
footer .ft-logo p {
    text-align: center;
}
    
footer .ftNav p.copy {
    text-align: center;
}
}

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

/* 767px以下用（タブレット／スマートフォン用）の記述 */
.main-visual .bg-img {
	width: 100%;
}

.base .item-r,
.base .item-l {
	margin-left: 0;
	margin-right: 0;
	padding: 40px 5px;
}

.base .thum,
.base .thum.right {
	width: 100%;
	position: unset;
	height: 350px;
}

.base .twentytwenty-container.pcOnly {
	display: none;
}

.base .twentytwenty-container.spOnly {
	display: block;
}

#detail02.base .twentytwenty-container {
	width: 100%;
	position: relative;
	height: auto;
}

.base .twentytwenty-container img {
	height: auto;
	width: 100%!important;
}

.base p.btn {
	text-align: center;
}
    
.order li {
    width: calc(100%/3);
}
    
.order li:nth-of-type(3n)::after {
    display: none;
}
}

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

/* 479px以下用（スマートフォン用）の記述 */
h3 {
	font-size: 35px;
	margin-bottom: 10px;
}

h4 {
	font-size: 18px;
}
    
.main-visual .bg-img p.sub-logo {
    width: 30%;
}

.base p.txt {
	margin-bottom: 20px;
}

.base .thum,
.base .thum.right {
	height: 250px;
}
    
.order li {
    width: calc(100%/2);
}
    
.order li:nth-of-type(3n)::after {
    display: block;
}
    
.order li:nth-of-type(2n)::after {
    display: none;
}
    
footer .ft-logo {
    width: 80%;
}
}

@media screen and (max-width: 360px) {
/* 360px以下用（スマートフォン用）の記述 */

	
}
