@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho&display=swap');

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

html {
	-webkit-text-size-adjust: 100%;
	--root-font-size: 16;
	--fz10: calc(10 / 16 * 1rem);
	--fz12: calc(12 / 16 * 1rem);
	--fz13: calc(13 / 16 * 1rem);
	--fz14: calc(14 / 16 * 1rem);
	--fz18: calc(18 / 16 * 1rem);
	--fz20: calc(20 / 16 * 1rem);
	--fz22: calc(22 / 16 * 1rem);
	--fz27: calc(27 / 16 * 1rem);
	--fz30: calc(30 / 16 * 1rem);
	--fz32: calc(32 / 16 * 1rem);
	--fz36: calc(36 / 16 * 1rem);
	--fz40: calc(40 / 16 * 1rem);
	font-family: "Shippori Mincho", serif;
	--gothic: roboto, arial, 'Noto Sans JP', "游ゴシック体", "Yu Gothic", "Hiragino Kaku Gothic Pro", "Meiryo", sans-serif;
}
body {
	margin: 0;
	background: url(../img/bg-dragon.png) no-repeat right 10%;
	background-size: 50% auto;
	overflow-x: hidden;
}
svg, path, animate {
	vertical-align: bottom;
}
h2, h3 {
	font-weight: 400;
}
img {
	vertical-align: bottom;
}
a {
	text-decoration: none;
	transition: 1s;
	color: #000;
}
a:hover {
	opacity: .5;
}
ul {
	list-style: none;
}
p {
	line-height: 2;
}
address {
	font-style: normal;
}
button {
	background: none;
	border: 0;
}
/*-----------------
headerここから
-----------------*/
header {
	display: flex;
  justify-content: space-between;
}
header h1 {
	width: clamp(240px, 20vw, 304px);
	margin: 0;
	display: flex;
}
header h1 a {
	width: calc(100% - min(5vw,60px));
	display: block;
	margin: 30px 0 30px min(5vw,60px);
}
header h1 img {
	width: 100%;
	height: auto;
}
header ul {
	margin: 0;
}
header .btn_reservation a {
	background: #555;
	color: #fff;
	padding: 30px;
	height: 100%;
	display: flex;
	align-items: center;
}
@media screen and (min-width: 769px) {
	.header_nav .nav {
		display: flex;
		height: 100%;
		gap: 20px;
	}
	.header_nav .nav a {
		white-space: nowrap;
	}
	.header_nav .nav_list {
		display: flex;
		flex-wrap: wrap;
		justify-content: end;
	}
	.header_nav .nav_list .nav_item {
		display: flex;
		align-items: center;
		margin-right: 20px;
	}
	.black_bg,
	.hamburger {
		display: none;
	}
}
@media screen and (max-width: 768px) {
	header.fixed {
		position: fixed;
		top: 0;
		left: 0;
		z-index: 99;
		background: #fff;
		width: 100%;
		box-shadow: 0 0 10px rgba(0,0,0,.2);
	}
	header.fixed h1 a {
		margin: 20px;
	}
	header .nav {
		position: fixed;
		right: -75vw;
		top: 0;
		width: 75vw;
		height: 100vh;
		padding: 80px 30px 30px 30px;
		background-color: #f3f3f3;
		transition: all .6s;
		z-index: 200;
		overflow-y: auto;
	}
	header .nav_list {
		padding: 0 0 20px 0;
	}
	header .nav_list li {
		margin-bottom: 20px;
		padding-left: 30px;
		position: relative;
	}
	header .nav_list li:before {
		content: "";
		display: block;
		width: 20px;
		height: 1px;
		background: #666;
		position: absolute;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto;
	}
	header .btn_reservation a {
		padding: 20px;
		display: block;
		text-align: center;
		position: relative;
	}
	header .btn_reservation a:after {
		content: "";
		display: block;
		width: 8px;
		height: 12px;
		right: 20px;
		position: absolute;
		top: 0;
		bottom: 0;
		margin: auto;
		background: url(../img/arrow_w.svg);
		background-size: contain;
	}
	.nav-open .hamburger {
		position: fixed;
	}
	.hamburger {
		display: block;
		width: 40px;
		height: 26px;
		position: absolute;
		top: 20px;
		right: 20px;
		cursor: pointer;
		z-index: 300;
	}
	.hamburger span {
		position: absolute;
		left: 0;
		top: 0;
		margin: auto;
		display: block;
		width: 40px;
		height: 2px;
		background-color: #000;
		transition: all 1s;
		overflow: hidden;
	}
	.hamburger span:first-child {
		top: 0;
	}
	.hamburger span:nth-child(2) {
		top: 12px;
	}
	.hamburger span:last-child {
		top: 24px;
	}
	.black_bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #333;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
	.nav-open .nav {
		right: 0;
	}
	.nav-open .black_bg {
		opacity: .8;
		visibility: visible;
	}
	.nav-open .hamburger span:first-child {
		transform: rotate(45deg);
		top: 12px;
	}
	.nav-open .hamburger span:nth-child(2) {
		width: 0;
		right: -50%;
	}
	.nav-open .hamburger span:last-child {
		transform: rotate(-45deg);
		top: 12px;
	}
}
@media screen and (max-width: 375px) {
	.nav {
		right: -80vw;
		width: 80vw;
	}
	header h1 a {
		width: 160px;
		margin: 20px 0 20px min(5vw, 60px);
	}
}
@media screen and (max-width: 330px) {
	.nav {
		right: -100vw;
		width: 100vw;
	}
}
/*-----------------
headerここまで
-----------------*/
/*-------------------------
予約システム部分ここから
-------------------------*/
.bg_gray {
	background: #f7f7f7;
}
#reserved_wrap dl,
#reserved_wrap dd {
	margin: 0;
}
#reserved_wrap .container {
	padding: 35px 20px;
	color: #262626;
}
#reserved_wrap .container a {
	color: #262626;
}
#reserved_wrap input, #reserved_wrap select {
	color: #555;
}
#reserved_wrap select:hover,
#reserved_wrap input[type="submit"]:hover,
#reserved_wrap input[type="date"]:hover {
	opacity: .5;
}
#reserved_wrap .container form {
	display: grid;
	place-items: center;
	overflow: hidden;
}
#reserved_wrap .table_lay {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	max-width: 1120px;
	/*max-width: 100%;*/
}
#reserved_wrap .table_lay .td {
	padding: 0 1em;
	display: grid;
	place-content: center;
}
#reserved_wrap .table_lay > .td:not(:first-child) {
	border-left: 1px solid #ebebeb;
}
#reserved_wrap .table_lay > .td:is(:first-child) {
	padding: 0 2em;
}
#reserved_wrap .flex_lay {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
#reserved_wrap .flex_lay > .td:not(:first-child) {
	border-left: 1px solid #ebebeb;
}
#reserved_wrap .table_lay h3,
#reserved_wrap .table_lay dt {
	white-space: nowrap;
}
#reserved_wrap h3 {
	font-size: var(--fz14);
	background: url(https://www.ichijoh.co.jp/wp/wp-content/themes/ichijoh/images/icon_search.svg)no-repeat center top;
	background-size: 14px;
	padding-top: 1.6em;
	margin: 0;
}
#reserved_wrap dt {
	font-size: var(--fz10);
	margin-bottom: 1em;
}
#reserved_wrap ul {
	padding: 0;
	margin: 0;
}
input, select {
	font-size: 21px;
	font-weight: 500;
	outline: none;
	line-height: 1em;
	height: 55px;
	padding: 0;
	margin: 0;
	border-radius: 0;
	box-sizing: border-box;
	transition: all .3s;
	background-color: transparent;
	font-family: var(--mincho);
	appearance: none;
	border: 0;
}
#reserved_wrap  select {
	width: 100%;
	background: url(https://www.ichijoh.co.jp/wp/wp-content/themes/ichijoh/images/arrow_select.svg) no-repeat 100%;
	min-width: 100px;
	transition: 1s;
}
#reserved_wrap input[type="submit"] {
	min-width: 170px;
	font-size: var(--fz12);
	letter-spacing: 3px;
	display: block;
	color: #fff;
	background: #555 url(https://www.ichijoh.co.jp/wp/wp-content/themes/ichijoh/images/icon_search_w.svg) no-repeat 15% center;
	cursor: pointer;
	transition: 1s;
}
#reserved_wrap .sp_block .td .btn_plan a {
	display: block;
	background: #555 url(../img/arrow_w.svg) no-repeat 10px center;
	background-size: 6px 8px;
	color: #fff;
	font-size: var(--fz10);
	padding: 7px 5px 7px 26px;
}
#reserved_wrap .td:last-child a {
	padding-left: 26px;
	font-size: var(--fz10);
	background: url(../img/arrow_b.svg) no-repeat 10px center;
	background-size: 6px 8px;
	white-space: nowrap;
	min-width: 110px;
}
@media screen and (max-width: 768px) {
	#reserved_wrap .table_lay {
		grid-template-columns: 1fr;
		width: 100%;
	}
	#reserved_wrap .table_lay .td.flex_lay .td.reserve_form_room {
		display: none;
	}
	#reserved_wrap h3 {
		font-size: var(--root-font-size);
		background-size: 18px;
	}
	#reserved_wrap .table_lay {
		grid-template-columns: 1fr;
	}
	#reserved_wrap .table_lay > .td:not(:first-child),
	#reserved_wrap .flex_lay > .td {
		border: 0;
		display: block;
	}
	#reserved_wrap .flex_lay > .td {
		padding: 1em 0 0 0;
	}
	#reserved_wrap .flex_lay > .td:not(:first-child) {
		border: 0;
	}
	#reserved_wrap .table_lay .td:not(:first-child) {
	}
	#reserved_wrap input, #reserved_wrap select {
		display: block;
		width: 100%;
		padding: .5em;
		background: #fff;
		border: 1px solid #cecece;
	}
	#reserved_wrap input[type="submit"] {
		margin: 1.5em 0;
		background-position: 36% center;
	}
	#reserved_wrap .sp_block .td .btn_plan a {
		text-align: center;
	}
}
@media screen and (max-width: 375px) {
	#reserved_wrap input[type="submit"] {
		background-position: 30% center;
	}
}
/*-------------------------
予約システム部分ここまで
-------------------------*/
.nami {
	width: 100%;
	height: 100px;
}
.slider-wrapper{
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
}
.slider .slide01 {
	background-image: url(../img/slide-01.jpg);
	background-position: 40%;
}
.slider .slide02 {
	background-image: url(../img/slide-02.jpg);
	background-position: 30%;
}
.slider .slide03 {
	background-image: url(../img/slide-03.jpg);
	background-position: 20%;
}
.slider .slide04 {
	background-image: url(../img/slide-04.jpg);
	background-position: 50%;
}
.slider .slick-slide {
	background-repeat: no-repeat;
	background-size: cover;
	aspect-ratio: 240 / 91;
	width: 100%;
	color: rgba(0,0,0,0);
	position: relative;
}
.slider .slick-slide:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,.3);
	position: absolute;
	top: 0;
	left: 0;
}
.slick-dots li button:before {
	content: ""!important;
	background: #ccc;
	border-radius: 50%;
	width: 10px!important;
	height: 10px!important;
}
.slick-dots {
	bottom: -55px!important;
}
.slick-dots li.slick-active button:before {
	background: #444!important;
}
.mv_container {
	color: #fff;
	aspect-ratio: 240 / 91;
	width: 100%;
	text-align: center;
	position: relative;
	overflow: hidden;
}
.mv_container .mv-txt img {
	width: 620px;
	max-width: 80%;
	height: auto;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	z-index: 1;
	filter: drop-shadow(0 0 5px rgba(0,0,0,.7));
}
.slider02 {
	overflow: hidden;
}
.slider02 img {
	aspect-ratio: 1 / 1;
	width: 25vw;
}
.section01, .section03, .section06, .section07 {
	display: grid;
	grid-template-columns: min(calc(100% - 40px), 1200px);
	place-content: center;
}
.section01, .section06, .section05 {
	padding-top: 100px;
}
.section07 {
	padding-top: 160px;
}
.txt span {
	display: inline-block;
}
section img {
	max-width: 100%;
}
.section00 {
	padding-top: 100px;
}
.box01 .pic {
	width: 100%;
	height: 750px;
}
.section00 .box01 .pic {
	background: url(../img/sec01_01.jpg) no-repeat center bottom;
	background-size: cover;
}
.box01 {
	padding: 0 20px;
	margin: 0 auto;
	max-width: 900px;
	display: grid;
	grid-template-columns: 1fr 1fr;
	place-content: center;
	place-items: center;
}
.box01 .txt {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.box01 .txt h3,
.box .txt h3,
.box02 .txt h3 {
	font-size: var(--fz30);
	font-weight: 400;
	color: #999;
	margin-right: 0;
	margin-top: 0;
}
.section01 .box .txt h3 > span {
	padding-right: 100px;
}
.section01 .box .txt h3 > span > span:last-child:after {
	content: "";
	display: block;
	width: 80px;
	height: 1px;
	background: #bbb;
	position: absolute;
	right: -100px;
	bottom: 0;
	top: 0;
	margin: auto;
}
.section01 .box .txt h3 > span > span {
	display: inline-block;
	position: relative;
}
.box02 {
	display: grid;
	gap: 30px;
	place-items: center;
}
.box02 .txt {
	max-width: 1140px;
	padding: 0 20px;
}
.box {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 50px;
	margin-bottom: 100px;
}
.box_txt_left {
	margin-left: 100px;
}
.box_txt_right {
	margin-right: 100px;
}
.box .txt p span {
	display: inline-block;
}
.title01 {
	text-align: center;
	font-weight: 400;
	padding-bottom: 4vw;
	margin: 0;
}
.title01 span:last-child {
	font-size: var(--fz27);
}
.title01 span:first-child {
	color: #aaa;
	display: block;
	font-size: var(--fz13);
}
.sec_dark .title01 span:last-child  {
	color: #fff;
}
.title02 {
	font-size: var(--fz30);
	font-weight: 400;
	text-align: center;
}
.title02:not(:sec_dark .title02) {
	color: #999;
}
.sec_dark .title02 {
	color: #fff;
}
.title02 span {
	display: inline-block;
}
.section02 {
	text-align: center;
	background: url(../img/sec02_bg.jpg) no-repeat;
	background-size: cover;
	padding: max(6vw,100px) 20px;
}
.sec_dark p {
	color: #fff;
}
.section02 p span {
	display: inline-block;
}
.pic_container {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	max-width: 1200px;
	gap: 20px;
	margin: 0 auto 4vw auto;
}
.pic_container img {
	width: auto;
}
.section03 {
	padding: 100px 0 0 0;
}
.section03 h3 span {
	display: inline-block;
}
.section05 .pic {
	width: 100%;
	aspect-ratio: 240 / 91;
	background: url(../img/sec05-01.jpg) no-repeat;
	background-size: cover;
}
.pics_2 .pic {
	position: relative;
}
.pics_2 .pic img:nth-child(2) {
	position: absolute;
	left: -50%;
	top: 100%;
	border-top: 5px solid #fff;
	border-right: 5px solid #fff;
}
.pics_2 + .title01 {
	margin-top: 570px;
}
.bnr_reservation {
	display: flex;
	justify-content: center;
	margin-bottom: 100px;
}
.bnr_reservation a {
	width: 900px;
	max-width: calc(100% - 40px);
	background: #555;
	text-align: center;
	padding: 4vw 20px;
	position: relative;
}
.bnr_reservation a:after {
	content: "";
	display: block;
	width: 14px;
	height: 20px;
	background: url(../img/arrow_w.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: 30px;
	top: 0;
	bottom: 0;
	margin: auto;
	opacity: .8;
}
.bnr_reservation a span:first-child {
	color: #aaa;
	display: block;
	font-size: var(--fz13);
}
.bnr_reservation a span:last-child {
	color: #fff;
	display: block;
	font-size: var(--fz30);
}
.section04 {
	background: url(../img/bg_paper.jpg);
	background-size: cover;
	padding: 100px 20px 60px 20px;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.section04 .box {
	width: 1100px;
	max-width: 100%;
}
.dl_01 {
	display: grid;
	grid-template-columns: 5em 1fr;
	row-gap: 10px;
}
.dl_01 dd {
	margin-left: 0;
}
.box_txt_left02 {
	display: flex;
	align-items: center;
	gap: 4vw;
	max-width: 1100px;
	margin-bottom: 50px;
}
.box_txt_left02 img {
	width: 460px;
	max-width: 70%;
}
iframe {
	width: 900px;
	max-width: 100%;
	height: 40vh;
	margin-bottom: 20px;
}
iframe + address{
	text-align: center;
}
.vehicle {
	display: grid;
	grid-template-columns: 1fr 1fr;
	place-content: center;
	gap: 50px;
	padding: 0;
	text-align: center;
	margin-top: 50px;
}
.vehicle li.car {
	background-image: url(../img/i_car.svg);
}
.vehicle li.train {
	background-image: url(../img/i_train.svg);
}
.vehicle li {
	padding-top: 34px;
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 54px 34px;
}
.vehicle h3 {
	font-size: var(--fz22);
}
.vehicle p span {
	display: inline-block;
}
.info {
	display: grid;
	place-content: center;
	place-items: center;
	padding: max(6vw,100px) 20px max(4vw,70px) 20px;
}
.info dl {
	max-width: 900px;
}
.info dl dt {
	display: grid;
	grid-template-columns: 7em 1fr;
	margin-bottom: 1.8em;
	color: #444;
}
.info dl dt span {
	font-weight: 700;
}
.info dl dd {
	line-height: 1.8;
	color: #333;
	margin: 0 0 2.2em 0;
	padding-bottom: 2.2em;
	border-bottom: 1px solid #666;
}
footer {
	background: #bbb;
	color: #fff;
	padding: max(6vw,100px)  min(5vw, 60px) 20px min(5vw, 60px);
}
footer h1 {
	width: clamp(240px, 20vw, 304px);
	margin-bottom: max(6vw,100px);
}
footer h1 img {
	max-width: 100%;
}
footer ul {
	padding: 0;
}
footer .nav_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
footer .nav_list li {
	margin-bottom: 1em;
}
footer .nav_list li:not(:last-child) {
	margin-right: 30px;
}
footer .nav_list li a {
	color: #fff;
}
footer .nav_list li:before {
	content: "－";
	padding-right: 5px;
}
.buttons {
	display: flex;
	gap: 30px;
	justify-content: center;
	margin: min(5vw, 60px) 0;
}
.buttons li:not(.insta) a {
	display: block;
	padding: 20px 40px;
	text-align: center;
	position: relative;
	width: 400px;
	max-width: 100%;
}
.buttons li.reservation a {
	background: #555;
	color: #fff;
}
.buttons li.hp a {
	background: #fff;
}
.buttons li.reservation a:after {
	background-image: url(../img/arrow_w.svg);
}
.buttons li.hp a:after {
	background-image: url(../img/arrow_b.svg);
}
.buttons li.insta {
	width: 40px;
}
.buttons li img {
	min-width: 40px;
	max-width: 100%;
}
.buttons a:after {
	content: "";
	display: block;
	width: 8px;
	height: 12px;
	position: absolute;
	right: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	background-repeat: no-repeat;
	background-size: contain;
}
.buttons li:last-child {
	display: grid;
	place-items: center;
}
body > .buttons {
	margin-top: 0;
	margin-bottom: 100px;
	padding: 0;
	width: calc(100% - 40px);
	margin-left: auto;
	margin-right: auto;
}
.copyright {
	text-align: center;
	font-size: var(--fz12);
}
.pagetop {
	text-indent: -9999px;
	width: clamp(40px, 5vw, 60px);
	height: clamp(40px, 5vw, 60px);
	position: fixed;
	right: 20px;
	bottom: 20px;
}
.pagetop a {
	display: block;
	background: url(../img/pagetop.svg) no-repeat;
	background-size: contain;
	width: clamp(40px, 5vw, 60px);
	height: clamp(40px, 5vw, 60px);
}
@media screen and (max-width: 1350px) {
	.pics_2 .pic img:nth-child(2) {
		top: 104%;
	}
	.pics_2 + .title01 {
		margin-top: 600px;
	}
}
@media screen and (max-width: 1080px) {
	.pics_2 .pic img:nth-child(2) {
		left: -50%;
		top: 100%;
	}
	.buttons li:not(.insta) a {
		width: 300px;
	}
}
@media screen and (max-width: 960px) {
	.box_txt_left {
		margin-left: 10%;
	}
	.box_txt_right {
		margin-right: 10%;
	}
}
@media screen and (min-width: 769px) {
	.section07 {
		padding-top: 200px;
	}
	.box02 .txt h3 {
		text-align: center;
	}
}
@media screen and (max-width: 768px) {
	.mv_container {
		aspect-ratio: 3 / 4;
	}
	.mv_container .mv-txt img {
		width: 440px;
	}
	.slider .slick-slide {
		aspect-ratio: 3 / 4;
	}
	.slider02 img {
		width: 33.333333vw;
	}
	.section01 {
		padding-bottom: 40px;
	}
	.section03 h3 {
		text-align: center;
	}
	.box02 .pic {
		aspect-ratio: 4 / 3;
		width: calc(100% - 40px);
		margin: auto;
	}
	.sec_dark p {
		text-align: left;
	}
	.pics_2 .pic img:nth-child(2) {
		left: 0;
		top: 100%;
		border-right: 0;
	}
	.box {
		grid-template-columns: 1fr;
		gap: 30px;
		margin-bottom: 60px;
	}
	.box_txt_left {
		margin-right: 0;
		margin-left: 0;
	}
	.box_txt_right {
		margin-right: 0;
		margin-left: 0;
	}
	.box_txt_right .txt {
		order: 1;
	}
	.box_txt_right .pic {
		order: 2;
	}
	.pic_container {
		grid-template-columns: 1fr;
		place-items: center;
	}
	.box_txt_left02 {
		flex-direction: column;
		gap: 0;
	}
	footer .nav_list {
		justify-content: start;
	}
	.buttons {
		flex-direction: column;
	}
}
@media screen and (max-width: 580px) {
	.box01 {
		grid-template-columns: 1fr;
		gap: 30px;
	}
	.box01 .pic {
		height: 60vh;
		position: relative;
		overflow: hidden;
		order: 2;
	}
	.box {
		margin-bottom: 50px;
	}
}
@media screen and (max-width: 480px) {
	.pc {
		display: none;
	}
	.box01 .txt h3, .box .txt h3, .box02 .txt h3 {
		font-size: var(--fz27);
	}
	.section01 .box .txt h3 > span > span:last-child:after {
		display: none;
	}
	.section01 .box .txt h3 > span {
		padding-right: 0;
	}
	.section02 p {
		text-align: left;
	}
	.pics_2 + .title01 {
		margin-top: 115vw;
	}
	.vehicle {
		grid-template-columns: 1fr;
	}
	.bnr_reservation a span:last-child {
		font-size: var(--fz20);
	}
	.info dl dt {
		grid-template-columns: 1fr;
		margin-bottom: 1em;
	}
	.info dl dt time {
		margin-bottom: .3em;
	}
	.info dl dd {
		line-height: 1.6;
	}
	.buttons li:not(.insta) a {
		width: 100%;
	}
}
