@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap');
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);


/*初期設定
----------------------------------------------------*/
html {
	min-width: 320px;
	font-size: 62.5%;/*10px*/
}

body {
	padding: 0;
	min-width: 320px;
	line-height: 1.8;
	color: #333;
	font-size: 14px;
	font-size: 1.4rem;
	font-family: 'Noto Sans Japanese', serif;
	letter-spacing: 0.1em;
	background-size: contain;
}

img {
	max-width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
	border: none;
	vertical-align: bottom;
}

.ie8 img{
	width: auto;
}

h1,h2,h3,h4,h5,ul,dl,dt,dd {
	margin: 0;
	padding: 0;
}

li {
	list-style: none;
}

i {
	padding: 0 0.5em 0 0;
}

p {
	margin: 0 0 10px;
}

a {
	color: #998e73;
}

a:hover {
	opacity:0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}

.yellow {
	color: #998e73;
}

.yellow02 {
	color: #72623b;
;
}

.gray {
	color: #565565;
}

.bo_yellow {
	padding: 1em 2em;
	border: 1px solid #998e73; 
}

.bo_gray {
	padding: 1em 2em;
	border: 1px solid #565565; 
}

.center {
	text-align: center;
}

.m_b {
	margin-bottom: 1em;
}

.m_t {
	margin-top: 1em;
}

.imgbig {
	overflow: hidden;
}

.imgbig img {
	display: block;
	transition-duration: 0.3s;
}
.imgbig img:hover {
	transform: scale(1.1);
	transition-duration: 0.3s;
}

.img_cover {
	position: relative;
	width: 100%;
	height: 100%;
	display: block;
}

.img_cover:hover {
	opacity: 1.0;
}

.img_cover::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(000,000,000,0.2);
	width: 100%;
	height: 100%;
	transition: opacity 0.9s cubic-bezier(0.45, 0.12, 0.04, 0.96),transform 1.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
	transform: scale(0, 1);
	transform-origin: top;
}

.img_cover:hover::before{
	transform:scale(1, 1);
	opacity: 1.0;
}

.slide_left {
	visibility: visible !important;
	animation: slide_left 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_left {
	0% { opacity: 0; transform: translateX(100px); }
	100% { opacity: 1; transform: translateX(0); }
}

.slide_right {
	visibility: visible !important;
	animation: slide_right 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_right {
	0% { opacity: 0; transform: translateX(-100px); }
	100% { opacity: 1; transform: translateX(0); }
}

.slide_up {
	visibility: visible !important;
	animation: slide_up 1s ease 0s 1 both;
	transition: opacity 1.4s 0.1s,transform 1s 0.1s cubic-bezier(0, 0.4, 0.3, 1);
}

@keyframes slide_up {
	0% { opacity: 0; transform: translateY(100px); }
	100% { opacity: 1; transform: translateY(0); }
}

a.white_button {
	display: table;
	background: #fff;
	text-decoration: none;
	font-size: 18px;
	font-size: 1.8rem;
	font-family: 'Noto Serif JP', serif;
	color: #565565;
	padding: 0.5em 1em;
	box-sizing: border-box;
	position: relative;
}

a.white_button:hover {
	opacity: 1.0;
}

a.white_button:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgba(153, 142, 115,0.3);
	width: 100%;
	height: 100%;
	transition: opacity 0.9s cubic-bezier(0.45, 0.12, 0.04, 0.96),transform 1.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
	transform: scale(0, 1);
	transform-origin: left;
}

a.white_button:hover:before{
	transform:scale(1, 1);
	opacity: 1.0;
}

a.white_button .content {
	position: relative;
	z-index: 3;
	margin: 0;
}

a.brown_button {
	display: table;
	background: #998e73;
	color: #fff;
	text-decoration: none;
	font-size: 18px;
	font-size: 1.8rem;
	padding: 0.5em 1em;
	font-family: 'Noto Serif JP', serif;
	position: relative;
	box-sizing: border-box;
}

a.brown_button:hover {
	opacity: 1.0;
}

a.brown_button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	z-index: 2;
	background: rgb(105, 100, 84);
	width: 100%;
	height: 100%;
	transition: opacity 0.9s cubic-bezier(0.45, 0.12, 0.04, 0.96),transform 1.3s cubic-bezier(0.45, 0.12, 0.04, 0.96);
	transform: scale(0, 1);
	transform-origin: left;
}

a.brown_button:hover::before{
	transform:scale(1, 1);
	opacity: 1.0;
}

a.brown_button .content {
	margin-bottom: 0;
	position: relative;
	z-index: 3;
}


/*clearfix*/
.clearfix,
article section,
article .section02 {
	zoom: 1;
}

.clearfix:after,
article section:after,
article .section02:after {
	content: "";
	display: block;
	clear: both;
}

.pc {
	display: none;
}


/*layout
----------------------------------------------------*/
header {
	width: 100%;
	margin: 0 0 10px;
	position: relative;
}

header .inner {
	margin: 0 auto;
	padding: 10px 10px 0;
	position: fixed;
	background: rgba(255,255,255,0.9);
	z-index: 10000;
	width: 100%;
	box-sizing: border-box;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

header h1 {
	margin: 0 auto;
	padding: 0 0 10px;
	max-width: 50%;
	text-align: center;
}

header .tel {
	max-width: 1400px;
	margin: 0 auto 10px;
	padding: 0 10px;
	text-align: center;
	font-family: 'Libre Caslon Display', serif;
	font-size: 16px;
	font-size: 1.6rem;
}

header .tel a {
	color: #7a6b41;
	text-decoration: none;
}

header .tel span {
	display: block;
	height: 32px;
	line-height: 32px;
	border: 1px solid #ccc;
	border-radius: 20px;
	font-size: 24px;
	font-size: 2.4rem;
	color: #998e73;
}

nav#g_nav {
	position: fixed;
	max-width: 1400px;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	font-family: 'Noto Serif JP', serif;
	display: none;
}

nav#g_nav ul.menu {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 70px 0 0;
	background: rgba(86, 85, 101,0.9);
}

#menu_btn {
	opacity: 0.9;
	position: fixed;
	top:   15px;
	right: 15px;
	z-index: 20;
	width: 40px;
	height: 40px;
	margin: 0;
	float: right;
	cursor: pointer;
	background: rgba(86, 85, 101,0.5);
	border-radius: 50%;
}

.menu__line {
	position: absolute;
	display: block;
	width: 60%;
	height: 2px;
	background: #fff;
	transition: transform .3s;
}

.menu__line--top {
	top: 10px;
	left: 8px;
}

.menu__line--center {
	top: 19px;
	left: 8px;
}

.menu__line--bottom {
	bottom: 10px;
	left: 8px;
}

.menu__line--top.active {
	top: 18px;
	transform: rotate(45deg);
	background: #fff;
}

.menu__line--center.active {
	transform: scaleX(0);
	background: #fff;
}

.menu__line--bottom.active {
	bottom: 20px;
	transform: rotate(135deg);
	background: #fff;
}

nav#g_nav ul.menu > li a {
	display: block;
	padding: 8px 5px;
	background: #565565;
	border-top: 1px solid #757483;
	color: #fff;
	text-decoration: none;
	text-align: center;
	zoom: 1;
	font-size: 16px;
	font-size: 1.6rem;
	font-weight: 600;
}

nav#g_nav ul.menu > li:last-child > a {
	border-bottom: 1px solid #565565;
}

nav#g_nav ul.menu > li div.sub {
	display: none;
}

nav#g_nav ul.menu > li div.sub .img {
	display: none;
}

nav#g_nav ul.menu > li div.sub a {
	background: rgb(52, 51, 63);
	margin: 0;
}

header #mainImage {
	width: 100%;
	height: 100vh;
	margin: 0 auto 2%;
	position: relative;
}

header #mainImage .top_slider {
	width: 100%;
	height: 100%;
	position: fixed;
}

header #mainImage .swiper-slide img {
	object-fit: cover;
	height: 100vh;
	width: 100vw;
	filter: brightness(80%);
}

header #mainImage .swiper-slide-active .swiper-slide__item,
header #mainImage .swiper-slide-duplicate-active .swiper-slide__item,
header #mainImage .swiper-slide-prev .swiper-slide__item {
	animation: zoomanime 8s linear 0s normal both;
}

@keyframes zoomanime {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.3);
  }
}

header #mainImage .text {
	position: absolute;
	left: 0;
	bottom: 120px;
	font-family: 'Noto Serif JP', serif;
	font-weight: 500;
	z-index: 2;
	text-shadow: 0 0 15px rgba(0,0,0,0.3);
	animation: 1.5s slide_text 0.5s linear;
	animation-fill-mode: both;
	display: inline-block;
	width: 100%;
}
	
@keyframes slide_text {
	0%{
		clip-path: inset( 0 0 100% 0);
	}
	100%{
		clip-path: inset(0);
	}
}

header #mainImage .text p.main_catch {
	font-size: 28px;
	font-size: 2.8rem;
	color: #fff;
	text-align: center;
}

header #mainImage .text .sub_text {
	background: rgba(255,255,255,0.7);
	padding: 3%;
	margin: 30px 10px 0;
}

header #mainImage .text .sub_text p.note {
	font-size: 0.8em;
	padding-left: 1.5em;
	position: relative;
	margin: 2em auto 0;
	width: fit-content;
}

header #mainImage .text .sub_text p.note::before {
	position: absolute;
	top: 0.7em;
	left: 0;
	content: "";
	display: block;
	border-top: solid 0.6em #72623b;
	border-left: solid 0.6em transparent;
	border-right: solid 0.6em transparent;
}


/*scrolldown*/
.scrolldown{
	position:absolute;
	left:50%;
	bottom:0;
	height:50px;
	z-index: 3;
}

/*Scrollテキストの描写*/
.scrolldown span{
	position: absolute;
	left: -8px;
	top: -40px;
	color: #fff;
	font-size: 13px;
	letter-spacing: 0.05em;
	writing-mode: vertical-rl;
}

/* 線の描写 */
.scrolldown::after{
  content: "";
  position: absolute;
  top: 40px;
  width: 1px;
  height: 30px;
  background: #fff;
  animation: pathmove 1.4s ease-in-out infinite;
  opacity:0;
}

@keyframes pathmove{
  0%{
    height:0;
    top:0;
    opacity: 0;
  }
  30%{
    height:30px;
    opacity: 1;
  }
  100%{
    height:0;
    top:50px;
    opacity: 0;
  }
}

header #pagetitle {
	clear: both;
	text-align: center;
	margin: 0;
	background: #f3f5f5;
	background-size: cover;
	color: #998e73;
	font-size: 46px;
	font-size: 4.6rem;
	font-family: 'Noto Serif JP', serif;
	position: rerative;
	padding: 140px 0 10px;
	letter-spacing: 0.1em;
	font-family: 'Libre Caslon Display', serif;
	line-height: 1.3;
}

header #pagetitle p.ja {
	font-size: 18px;
	font-size: 1.8rem;
	color: #333;
}

header #pagetitle p.en {
	text-transform: uppercase;
}

#wrapper {
	clear: both;
	background: #fff;
	position: relative;
	z-index: 1000;
}

section {
	padding: 8% 10px;
	max-width: 1400px;
	margin: 0 auto;
}

section.full {
	padding: 8% 0;
	max-width: none;
	margin: 0;
}

section.full .inner {
	padding: 0 10px;
	max-width: 1400px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}

section.bg_brown {
	background: rgba(153, 142, 115, 0.2);
	position: relative;
}

section.bg_brown02 {
	background: rgba(153, 142, 115, 0.1);
	position: relative;
}

section.img {
	background: rgba(153, 142, 115, 0.1);
	position: relative;
}

section.img::before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url(/img/bg_img01.jpg) 50% 50% no-repeat;
	background-size: cover;
	opacity: 0.2;
}

section.img.img02::before {
	background: url(/img/bg_img02.jpg) 50% 30% no-repeat;
	opacity: 0.1;
}

.section02 {
	margin: 0 0 30px;
}

article h2.title01 {
	margin: 0 0 3em;
	font-size: 16px;
	font-size: 1.6rem;
	text-align: center;
	color: #565565;
	font-weight: normal;
	position: relative;
	font-family: 'Noto Serif JP', serif;
}

article h2.title01 span {
	font-size: 34px;
	font-size: 3.4rem;
	color: #998e73;
	font-family: 'Libre Caslon Display', serif;
}

article .title02 {
	margin: 0 0 1em;
	font-size: 22px;
	font-size: 2.0rem;
	color: #565565;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}

article .title03 {
	background: #998e73;
	color: #fff;
	text-align: center;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.3em;
	margin-bottom: 1em;
}

article .title04 {
	color: #998e73;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.3em;
	margin-bottom: 1em;
}

article .title05 {
	color: #998e73;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	font-size: 28px;
	font-size: 2.8rem;
	margin-bottom: 1em;
	text-align: center;
}

article .title05 span.sub {
	font-size: 0.6em;
}

.catch {
	font-size: 20px;
	font-size: 2.0rem;
	font-family: 'Noto Serif JP', serif;
	color: #998e73;
	margin-bottom: 1em;
	font-weight: 500;
}

.catch02 {
	font-size: 15px;
	font-size: 1.5rem;
	font-family: 'Noto Serif JP', serif;
	color: #998e73;
	margin-bottom: 1em;
}

dl.list01 dt {
	color: #6a3906;
	font-weight: normal;
	font-family: 'Noto Serif JP', serif;
	font-size: 1.3em;
	margin: 1em 0 0.5em;
}

ul.list01 li,
dl.list01 dd {
	position: relative;
	padding: 0 0 0 0.9em;
	margin-bottom: 0.3em;
}

ul.list01 li:before,
dl.list01 dd:before {
	position: absolute;
	content: "";
	width: 6px;
	height: 6px;
	background: #998e73;
	top: 0.8em;
	left: 0;
}

ul.list02 li,
dl.list02 dt {
	margin-bottom: 0.5em;
	color: #6a3906;
	padding-left: 1.5em;
	position: relative;
}

ul.list02 li:before,
dl.list02 dt::before {
	content: "";
	display: block;
	background: #6a3906;
	opacity: 0.4;
	width: 1em;
	height: 1px;
	position: absolute;
	top: 0.8em;
	left: 0;
}

ul.list03 li {
	position: relative;
	padding: 0 0 0 0.9em;
	margin-bottom: 0.2em;
}

ul.list03 li:before {
	position: absolute;
	content: "";
	width: 3px;
	height: 3px;
	background: #fff;
	border: 1px solid #998e73;
	border-radius: 50%;
	top: 0.8em;
	left: 0;
}

table.type01 {
	width: 100%;
	margin: 0 auto;
	background: #fff;
}

table.type01 th,
table.type01 td {
	border: 1px solid #565565;
	padding: 0.5em;
	color: #565565;
}

table.type01 th {
	background: #f5f3f1;
	border-right: none;
	font-weight: normal;
	min-width: 5em;
}

table.type01 td {
	border-left: none;
}

.img_text .img {
	margin: 1em auto 0;
	max-width: 400px;
}

footer {
	padding-top: 2em;
	background: #f3f5f5;
	position: relative;
	z-index: 1000;
}

footer .bottom_banner {
	padding-bottom: 0;
}

footer .bottom_banner .big_banner,
footer .bottom_banner li {
	margin: 0 auto 1.5em;
	text-align: center;
	max-width: 80%;
}

footer #info {
	padding: 1em 0;
}

footer #info .text {
	margin: 0 0 2em;
	text-align: center;
}

footer #info .text h3 {
	margin: 0 0 1em;
}

footer #info .text p.tel {
	margin: 0 auto;
	text-align: center;
	font-size: 20px;
	font-size: 2.0em;
	font-family: 'Noto Serif JP', serif;
	color: #998e73;
}

footer #info .text p.tel a {
	text-decoration: none;
}

footer #info .hours {
	text-align: center;
}

footer #info .hours table {
	width: 100%;
	text-align: center;
	margin-bottom: 1em;
}

footer #info .hours table th,
footer #info .hours table td {
	padding: 0.7em 0;
	border-bottom: 1px solid #ccc;
}

footer #info .hours table tbody th {
	font-weight: normal;
}

footer #info .hours table tbody td {
	color: #998e73;
}

footer #info .hours a.calendar_button {
	display: block;
	width: 100%;
	margin-top: 1em;
}

footer #info #calendar_modal {
	display: none;
}

footer #foot_nav {
	background: #e3e6ed;
}

footer #foot_nav ul {
	display: flex;
	justify-content: left;
	gap: 1em 2em;
	flex-wrap: wrap;
}

footer #foot_nav .nav li a {
	text-decoration: none;
	color: #565565;
	position: relative;
	display: inline-block;
	padding-left: 1.2em;
	white-space: nowrap;
	font-size: 12px;
	font-size: 1.2rem;
}

footer #foot_nav .nav li a::before {
	content: "";
	display: block;
	width: 0.4em;
	height: 0.4em;
	border-top: 1px solid #998e73;
	border-right: 1px solid #998e73;
	transform: rotate(45deg);
	position: absolute;
	top: 43%;
	left: 0;
}

footer p.copy {
	clear: both;
	padding: 20px 10px;
	text-align: center;
	background: #565565;
	color: #fff;
	margin: 0;
	font-size: 12px;
	font-size: 1.2rem;
}

/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 860px) {
	.pc {
		display: inline;
	}
	
	.sp {
		display: none;
	}
		
	header {
		height: auto;
		margin: 0;
		padding: 0;
	}
	
	header .inner {
		padding: 15px 3% 10px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	
	header h1 {
		padding: 0;
		margin: 0;
		width: 19%;
	}
	
	header .tel_nav {
		width: 80%;
	}	
	
	header .tel {
		text-align: right;
		margin: 0;
	}
	
	header .tel span {
		border: none;
		text-align: right;
		display: inline;
		padding-left: 0.5em;
	}
	
	header #mainImage .text p.main_catch {
		font-size: 50px;
		font-size: 5.0rem;
	}

	header #mainImage .text .sub_text {
		text-align: center;
		padding: 1.5em 3em;
		width: fit-content;
		margin: 50px auto 0;
		font-size: 18px;
		font-size: 1.8rem;
	}

	header #pagetitle {
		padding: 130px 0 30px;
	}
		
	nav#g_nav {
		clear: both;
		position: relative;
		margin: 0;
		background: none;
		height: auto;
		display: block;
	}
	
	#menu_btn{
		display: none;
	}
	
	nav#g_nav ul.menu {
		display: flex;
		position: relative;
		box-shadow: none;
		background: none;
		padding: 0;
		margin: 0 auto;
		justify-content: flex-end;
		align-items: center;
	}
	
	nav#g_nav ul.menu > li {
		text-align: right;
		margin-left: 2em;
		position: relative;
	}
	
	nav#g_nav ul.menu > li > a {
		position: relative;
		padding: 0;
		border-top: none;
		margin: 0 auto;
		color: #565565;;
		font-size: 14px;
		font-size: 1.4rem;
		background: none;
	}

	nav#g_nav ul.menu > li:last-child > a {
		border-bottom: none;
	}
	
	nav#g_nav ul.menu > li > a:before {
		content: '';
		position: absolute;
		bottom: 0;
		display: inline-block;
		width: 0;
		height: 1px;
		left: 0;
		background-color: #998e73;
		transition:all 0.3s;
		border-radius: 3px;
	}
	
	nav#g_nav ul.menu li > a:hover:before {
		width: 100%;
	}	
	
	nav#g_nav ul.menu > li div.sub {
		display: none;
		position: absolute;
		width: fit-content;
		right: 0;
		padding-top: 0.5em;
	}
	
	nav#g_nav ul.menu > li div.sub ul {
		background: #fff;
		padding: 2em; 
		border-radius: 6px;
		box-shadow: 0 0 8px rgba(000,000,000,0.1);
	}
	
	nav#g_nav ul.menu > li div.sub ul a {
		padding-left: 1.6em;
		position: relative;
		white-space: nowrap;
		background: none;
		color: #565565;
		border-top: none;
		text-align: left;
		font-size: 14px;
		font-size: 1.4rem;
	}
	
	nav#g_nav ul.menu > li div.sub ul a::before {
		content: "";
		display: block;
		width: 0.4em;
		height: 0.4em;
		border-top: 1px solid #998e73;
		border-right: 1px solid #998e73;
		transform: rotate(45deg);
		position: absolute;
		top: 46%;
		left: 0;
	}	

	header #mainImage .swiper-slide img {
		height: 100vh;
	}
		
	section {
		padding: 3% 20px 5%;
	}
	
	section.full {
		padding: 3% 0 5%;
	}
	
	section.full .inner {
		padding: 0 20px;
	}
	
	.section02 {
		margin: 0 0 4%;
	}
	
	.catch {
		font-size: 20px;
		font-size: 2.0rem;
	}
	
	.catch02 {
		font-size: 18px;
		font-size: 1.8rem;
	}

	table.type01 {
		width: fit-content;
	}	
	
	table.type01 th,
	table.type01 td {
		padding: 2em;
	}

	.img_text {
		display: flex;
		justify-content: space-between;
		align-items: center;
	}

	.img_text .text {
		width: 65%;
	}

	.img_text .img {
		margin: 0;
		width: 32%;
	}

	footer #info .inner {
		display: flex;
		justify-content: space-between;
	}
	
	footer #info .hours,
	footer #info .text {
		flex-basis: 48%;
	}
	
	footer #info .hours table {
		font-size: 1.1em;
	}
	
			
}

/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 1200px) {
	a.brown_button,
	a.white_button {
		font-size: 20px;
		font-size: 2.0rem;
	}
	
	header .tel {
		min-width: 250px;
	}
	
	header .tel span {
		font-size: 26px;
		font-size: 2.6rem;
	}

	nav#g_nav ul.menu > li {
		text-align: center;
	}

	nav#g_nav ul.menu > li > a {
		font-size: 15px;
		font-size: 1.5rem;
	}
	
	header #pagetitle {
		font-size: 50px;
		font-size: 5.0rem;
	}
	
	#wrapper section {
		font-size: 16px;
		font-size: 1.6rem;
	}
	
	article h2.title01 {
		font-size: 20px;
		font-size: 2.0rem;
	}
	
	article h2.title01 span {
		font-size: 40px;
		font-size: 4.0rem;
	}
	
	article .title02 {
		font-size: 28px;
		font-size: 2.8rem;
	}

	article .title05 {
		font-size: 38px;
		font-size: 3.8rem;
	}

	.catch {
		font-size: 30px;
		font-size: 3.0rem;
	}
	
	.catch02 {
		font-size: 24px;
		font-size: 2.4rem;
	}
	
	footer #info .text {
		flex-basis: 45%;
	}
	
	footer #info .hours {
		flex-basis: 45%;
	}

	footer #foot_nav ul {
		justify-content: center;
		gap: 1.5em 3em;
	}
	
}


/*media Queries
----------------------------------------------------*/
@media only screen and (min-width: 1400px) {	
	.catch {
		font-size: 40px;
		font-size: 4.0rem;
	}	
	
	.catch02 {
		font-size: 28px;
		font-size: 2.8rem;
	}
	
}
