@charset "utf-8";
/* ===================================================
	Base CSS
====================================================== */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
.montserrat {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: 500;
	font-style: normal;
}
:root {
	--col-gr01: #037439;
	--col-gr02: #015c2d;
	--col-gr03: #0f8c2f;
	--col-gr04: #ecf4d9;
	--col-ux: #ee4957;
	--col-eat: #de6b2d;
	--col-drink: #a475a0;
	--col-sight: #d1a12d;
	--col-fun: #9bac3d;
	--col-stay: #38aa4b;
	--col-access: #498cb7;
	--border-radius: 20px;
}
@media screen and (max-width: 600px) {
	:root {
		--border-radius: 15px;
	}
}

body {
	min-height: 100vh; background: var(--col-gr04); color: #000;
	font-size: 16px; font-weight: 600; line-height: 1.5;
	font-family:"Yu Gothic Medium", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
	-webkit-text-size-adjust: 100%; position: relative;
	font-feature-settings: "palt"; letter-spacing: 0.08em;
	/* -moz-osx-font-smoothing: grayscale;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility; */
}
.v_rl { writing-mode: vertical-rl; font-feature-settings: "palt" 0;}
html.pos_fix { overflow: hidden; }

header,
nav,
footer,
section,
h1,
h2,
h3,
h4,
h5,
div,
p,
ul,
ol,
li,
dl,
dt,
dd,
span,
em,
strong,
img,
a { box-sizing: border-box; }
a { color: #000; text-decoration: none; transition: opacity 0.5s ease; }

#lineup-font-size-sampler { bottom: 0; left: 0;}
iframe[name="google_conversion_frame"] { position: absolute; bottom: 0; left: 0;}

#lineup-font-size-sampler { bottom: 0; left: 0;}
iframe[name="google_conversion_frame"] { position: absolute; bottom: 0; left: 0;}

.ofi { object-fit: cover; }
.sp { display: none;}
.inner_lg { width: 1400px; max-width: 100%; margin: 0 auto; }
.inner_md { width: 1200px; max-width: 92%; margin: 0 auto; }
.inner_sm { width: 1100px; max-width: 92%; margin: 0 auto; }

@media screen and (hover: hover) and (min-width: 601px) {
	a:hover { opacity: 0.7; }
}
@media screen and (min-width: 601px) {
	body { min-width: 1100px; }
}
@media screen and (max-width: 600px) {
	body { font-size: 15px;}

	.sp { display: inline-block;}
	.pc { display: none !important;}
}


/* ---------------------------------------------------
	Base Layout
------------------------------------------------------ */
@keyframes Bounce {
    0% {
        transform-origin: center bottom;
        scale: 1;
        translate: 0
    }
    10%,30% {
        translate: 0;
        scale: 1.1 .9
    }
    20%,40% {
        scale: .95 1.05;
        translate: 0 -0.2rem
    }
    50% {
        translate: 0;
        scale: 1.05 .95
    }
    60% {
        translate: 0;
        scale: 1
    }
    100% {
        transform-origin: center bottom;
        scale: 1;
        translate: 0
    }
}

.cmn_nav {
	display: flex;
	flex-wrap: wrap;
	gap: 25px;
}
.cmn_nav a {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	border-radius: var(--border-radius);
	padding: 25px 10px;
	font-size: 22px;
	color: #fff;
}
.cmn_nav a span:has(img) {
	flex: 1;
	align-content: center;
	margin-bottom: clamp(8px,0.8vw, 25px);
}
.cmn_nav a span:has(svg) {
	flex: 1;
	align-content: center;
	margin-bottom: clamp(8px,0.8vw, 25px);
}

.cmn_nav .icon-ux {
	width: 50px;
	height: 49px;
}
.cmn_nav .icon-cutlery {
	width: 43px;
	height: 50px;
}
.cmn_nav .icon-beer {
	width: 40px;
	height: 52px;
}
.cmn_nav .icon-camera {
	width: 51px;
	height: 39px;
}
.cmn_nav .icon-fun {
	width: 52px;
	height: 52px;
}
.cmn_nav .icon-stay {
	width: 52px;
	height: 47px;
}
.cmn_nav .icon-map {
	width: 51px;
	height: 52px;
}

@media screen and (hover:hover) and (min-width: 601px) {
	.cmn_nav a:hover {
		opacity: 1;
	}
	.cmn_nav a:hover svg {
        animation: Bounce 2s infinite forwards ease;
    }
}
@media screen and (min-width: 601px) {
	.cmn_nav li {
		width: min(100%,166px);
	}
}
@media screen and (max-width: 600px) {
	.cmn_nav {
		gap: 8px 2%;
	}
	.cmn_nav li {
		width: 32%;
	}
	.cmn_nav a {
		padding: min(4vw,16px) 5px;
		font-size: min(3.3vw,17px);
		letter-spacing: 0.04em;
	}
	.cmn_nav a span:has(svg) {
		margin-bottom: 0;
	}
	.cmn_nav [class^="icon-"] {
		width: 7.5vw;
		max-height: 8vw;
	}
}

/* Title */
.cmn_tit_01 {
	line-height: 1;
}
.cmn_tit_01 .en_tit {
	font-size: 150px;
	font-weight: 700;
}
.cmn_tit_01 .ja {
	font-size: 40px;
	font-weight: bold;
}
.cmn_tit_02 {
	font-size: 32px;
	font-weight: bold;
	color: var(--col-gr03);
}
@media screen and (max-width: 600px) {
	.cmn_tit_01 .en_tit {
		font-size: min(18vw, 90px);
	}
	.cmn_tit_01 .ja {
		font-size: min(4vw, 24px);
	}
	.cmn_tit_02 {
		font-size: 24px;
	}
}

/* SNS */
.icon-insta {
	width: 40px;
	height: 37px;
}
.icon-x {
	width: 37px;
	height: 37px;
}
.icon-fb {
	width: 20px;
	height: 37px;
}
.icon-yt {
	width: 33px;
	height: 38px;
}

/* buttons */
.cmn_btn {
	position: relative;
	z-index: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	line-height: 1.5;
	background-color: var(--col-gr03);
	color: #fff;
	text-decoration: none;
	font-weight: bold;
	padding: 15px 40px;
	border-radius: 40px;
	transition: color 0.25s ease;
	overflow: hidden;
}
.cmn_btn::before {
	content: '';
	position: absolute;
	z-index: -1;
	inset: 0;
	display: block;
	background-color: #fff;
	border-radius: 40px;
	transform: scale(0.8);
	opacity: 0;
	transition: transform 0.25s ease, opacity 0.25s ease;
}
.cmn_btn::after {
    content: '';
    display: block;
    width: 30px;
    height: 6px;
    margin-left: 10px;
    font-size: 18px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    transform: skew(45deg, 0deg);
}
.cmn_btn.icon2 {
	gap: 0 1em;
}
.cmn_btn.icon2::after {
	content: none;
}
.icon_popup {
	display: inline-block;
	width: 22px;
	height: 22px;
	color: #fff;
}

@media screen and (hover: hover) and (min-width: 601px) {
	.cmn_btn:hover {
		opacity: 1;
		color: var(--color, var(--col-gr03));
	}
	.cmn_btn:hover::before {
		opacity: 1;
		transform: scale(1);
	}
	.cmn_btn:hover::after {
		border-color: var(--color, var(--col-gr03));
	}
	.cmn_btn.icon2:hover .icon_popup {
		color: var(--color, var(--col-gr03));
	}
}
@media screen and (min-width: 601px) {
	.cmn_btn {
		font-size: 20px;
	}
	.cmn_btn.icon2 {
		min-width: 300px;
		font-size: 18px;
	}
}

/* Links */
.link_run {
	position: relative;
}
.link_run::after {
	content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: .1rem;
    background-color: currentColor;
    transform-origin: right center;
    scale: 0 1;
    transition: scale .25s ease;
}
@media screen and (hover: hover) and (min-width: 601px) {
	.link_run:hover::after {
		transform-origin: left center;
        scale: 1;
	}
}


/* ---------------------------------------------------
	Swiper
------------------------------------------------------ */
.swiper_arrows {
	display: flex;
	gap: 0 30px;
}
.swiper_arrows .arrow {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: none;
	cursor: pointer;
	position: relative;
	z-index: 0;
	/* background-color: #999; */
	background-color: var(--color);
	transition: background-color 0.3s ease;
}
.swiper_arrows .arrow::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	width: 8px;
	height: 8px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transition: border-color 0.3s ease;
}
.swiper_arrows .arrow.next::before { border-color: #fff; transform: translate(-70%, -50%) rotate(45deg); }
.swiper_arrows .arrow.prev::before { transform: translate(-30%, -50%) rotate(-135deg); }

@media screen and (hover: hover) and (min-width: 601px) {
	.swiper_arrows .arrow.next:hover,
	.swiper_arrows .arrow.prev:hover {
		background-color: #fff;
	}
	.swiper_arrows .arrow:hover::before {
		border-color: var(--color);
	}
	/* .swiper_arrows .arrow.prev:hover::before {
		border-color: #999;
	} */
}
@media screen and (max-width: 600px) {
	.swiper_arrows {
		justify-content: center;
		gap: 0 15px;
	}
	.swiper_arrows .arrow {
		width: 40px;
		height: 40px;
		touch-action: manipulation;
	}
	.swiper_arrows .arrow::before {
		width: 6px;
		height: 6px;
	}
}


/* ---------------------------------------------------
	Header
------------------------------------------------------ */
#g_header {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 99;
	display: flex;
    justify-content: flex-end;
	align-items: center;
	gap: 0 20px;
	width: 100%;
	padding: 30px 125px 0 2%;
	pointer-events: none;
}
#g_header .h_logo {
	width: clamp(220px, 18.75vw, 300px);
	margin-right: auto;
	pointer-events: all;
}
#g_header .h_logo span {
	display: block;
    font-size: clamp(13.5px, 1.2vw, 20px);
    color: #fff;
    text-align: center;
	text-shadow: 0 0 16px rgba(0, 0, 0, 0.8);
}
.lang_menu {
	position: relative;
	color: var(--col-gr01);
	pointer-events: auto;
}
.lang_menu a {
	color: var(--col-gr01);
}
.lang_menu .acc_tit {
	display: flex;
    align-items: center;
	gap: 0 3px;
	border-radius: 8px;
	padding: 3px 12.5px;
	font-size: 18px;
	background-color: #fff;
	letter-spacing: 0.04em;
}
.lang_menu .acc_tit:hover {
	cursor: pointer;
}
.lang_menu .acc_tit::before,
.lang_menu .acc_tit::after {
	content: '';
	display: block;
}
.lang_menu .acc_tit::before {
	width: 1em;
	height: 1em;
	background: url(../img/icon_globe_gr.svg)no-repeat center/contain;
}
.lang_menu .acc_tit::after {
	width: 7px;
	height: 7px;
	border-bottom: 3px solid;
	border-right: 3px solid;
	transform: rotate(45deg);
}
.lang_menu .acc_tit.active::after {
	transform: rotate(225deg) translate(-3px,-2px);
}
.lang_menu .acc_contents {
	display: none;
	position: absolute;
	z-index: -1;
    width: 100%;
	border-radius: 0 0 8px 8px;
	margin-top: -15px;
    padding-top: 20px;
	background-color: #fff;
    text-align: center;
}
.lang_menu .acc_contents a {
	display: block;
    padding: 5px;
	transition: background-color 0.5s;
}
.lang_menu .acc_contents li:last-child a {
	padding-bottom: 8px;
}

#open_menu {
	position: fixed;
	top: 30px;
	right: 20px;
	z-index: 100;
	display: flex;
    justify-content: center;
    align-items: center;
	flex-direction: column;
	width: 85px;
	height: 85px;
	border-radius: 22px;
	background: var(--col-gr01);
	transition: width 0.4s, opacity 0.5s, background 0.3s;
	pointer-events: auto;
}
#open_menu:hover {
	opacity: 1;
	background-color: #128f4e;
}
#open_menu .bar {
	font-size: 0;
}
#open_menu::before,
#open_menu .bar::before,
#open_menu .bar::after {
	content: '';
	display: block;
	width: 30px;
	height: 3px;
	margin: 3px 0;
	background-color: #fff;
	transition: opacity 0.5s, width 0.5s, transform 0.3s;
}
#open_menu.active .bar::before {
	transform: scaleX(0);
}
#open_menu.active .bar::after {
	width: 100%;
}
#open_menu.active::before {
	transform: rotate(45deg)translate(6px, 6px);
}
#open_menu.active .bar::after {
	transform: rotate(-45deg) translate(7px, -7px);
}

@media screen and (hover: hover) and (min-width: 601px) {
	.lang_menu .acc_contents a:hover {
		opacity: 1;
		background-color: #ebf4e9;
	}
}
@media screen and (max-width: 600px) {
	#g_header {
		gap: 0 10px;
		padding: 8px 3%;
		padding-right: calc(60px + 3%);
	}
	#g_header .h_logo {
		width: min(38vw, 175px);
	}
	#g_header .h_logo span {
		font-size: min(1.75vw, 11px);
	}
	#open_menu {
		top: 8px;
		right: 3%;
		flex-shrink: 0;
		width: 50px;
		height: 50px;
		border-radius: 11px;
	}
	#open_menu::before,
	#open_menu .bar::before,
	#open_menu .bar::after {
		width: 25px;
		height: 2px;
	}
	#open_menu.active::before {
		transform: rotate(45deg) translate(5.5px, 5px);
	}
	#open_menu.active .bar::after {
		transform: rotate(-45deg) translate(6px, -6px);
	}
	.lang_menu .acc_tit {
		position: relative;
		border-radius: 4px;
		padding: 3px 8px 8px;
		font-size: 16px;
	}
	.lang_menu .acc_tit::after {
		position: absolute;
        bottom: 2px;
        left: 50%;
		width: 5px;
		height: 5px;
		border-width: 2px;
	}
}


/* ---------------------------------------------------
	G-nav
------------------------------------------------------ */
#gnav {
	opacity: 0;
	pointer-events: none;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 99;
	width: 100%;
    height: 100svh;
	min-height: 100%;
	transition: opacity 0.5s;
}
#gnav .g_inner {
	position: fixed;
	top: 0;
	right: 0;
    width: 650px;
	min-height: 100%;
	height: 100%;
	margin-left: auto;
    padding: 160px 45px 50px;
    background: #f5f5f5;
	transform: translateX(100%);
	transition: transform 0.5s;
	overflow: scroll;
    scrollbar-width: none;
	-ms-overflow-style: none;
}
#gnav .g_inner .lang_menu {
	position: absolute;
    top: 60px;
    right: 125px;
	z-index: 1;
}
#gnav.active {
	opacity: 1;
	pointer-events: auto;
	background-color: rgba(0, 0, 0, 0.5);
}
#gnav.active .g_inner {
	transform: translateX(0);
}
#gnav .cmn_nav [class^="icon-"] {
	fill: #fff;
}
#gnav .cmn_nav a {
	background-color: var(--nav-color);
}
#gnav .sub_nav {
	margin-top: 50px;
	border-radius: var(--border-radius);
	background-color: #fff;
}
#gnav .sub_nav a {
	position: relative;
	z-index: 0;
	display: flex;
	justify-content: space-between;
	border-bottom: 1px dotted #ccc;
	padding: 20px 40px 20px 30px;
	font-size: 22px;
	transition: color 0.25s;
}
#gnav .sub_nav a::before {
	content: '';
    position: absolute;
    z-index: -1;
    inset: 0;
    display: block;
	width: calc(100% - 0.6em);
	height: calc(100% - 0.6em);
	margin: auto;
    background-color: var(--col-gr03);
    border-radius: 1em;
    transform: scale(0.96);
    opacity: 0;
    transition: transform 0.25s ease, opacity 0.25s ease;
}
#gnav .sub_nav a::after {
	position: absolute;
	top: 31px;
	right: 25px;
	content: '';
    width: 7px;
    height: 7px;
	transform: rotate(-45deg);
    display: block;
    border-right: 3px solid;
    border-bottom: 3px solid;
}
#gnav .sub_nav a:hover {
	opacity: 1;
}
#gnav .sub_nav li:last-child {
	padding-bottom: 35px;
}
#gnav .sub_nav li:last-child a {
	border: 0;
}
#gnav .sns {
	display: flex;
    justify-content: center;
    gap: 0 7%;
    margin-top: 50px;
}
#gnav .close_menu {
	display: flex;
	justify-content: center;
	gap: 0 1.5em;
	margin-top: 50px;
}
#gnav .close_menu::after {
	content: '×';
}
/* SNS */
#gnav .sns [class^="icon-"] {
	fill: #666;
	color: #666;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#gnav .sub_nav a:hover {
		opacity: 1;
		color: #fff;
		/* border-color: var(--col-gr03) */
	}
	#gnav .sub_nav a:hover::before {
		opacity: 1;
		transform: scale(1);
	}
	#gnav .sub_nav a:hover::after {
		border-color: #fff;
	}
}
@media screen and (min-width: 601px) {
	#gnav .close_menu {
		display: none;
	}
	#gnav .cmn_nav li {
		width: min(30%,166px);
	}
	#gnav .close_menu {
		font-size: 20px;
	}
}
@media screen and (max-width: 600px) {
	#gnav .g_inner {
		width: 100%;
		padding: 90px 4% calc(100px + env(safe-area-inset-bottom));
	}
	#gnav .g_inner .lang_menu {
		top: 17px;
		right: calc(60px + 3%);
	}
	#gnav .sub_nav {
		margin-top: 30px;
	}
	#gnav .sub_nav a {
		padding: 15px 30px 15px 20px;
		font-size: 16px;
	}
	#gnav .sub_nav a::after {
		top: 24px;
		width: 6px;
		height: 6px;
		border-width: 2px;
	}
	#gnav .sub_nav li:last-child {
		padding-bottom: 0;
	}
	#gnav .sub_nav li:last-child a {
		padding-bottom: 20px;
	}
	#gnav .sns,
	#gnav .close_menu {
		margin-top: 30px;
	}
	#gnav .sns {
		gap: 0 4%;
	}
	#gnav .sns [class^="icon-"] {
		height: max(25px,5vw);
	}
}


/* ---------------------------------------------------
	#contents_wrap
------------------------------------------------------ */
body:has(#main_img.sub) {
	background: url(../img/cmn_bg_01.jpg)no-repeat 50% 0/100% var(--col-gr04);
}
@media screen and (max-width: 600px) {
	body:has(#main_img.sub) {
		background-size: 175%;
		background-position: 40% 15vw;
	}
}


/* ---------------------------------------------------
	Main img
------------------------------------------------------ */
#main_img {
	position: relative;
	background: #f5f5f5;
}
@media screen and (min-width: 601px) {
	#main_img .ofi {
		width: 100%;
		min-height: 250px; /*あとで調整*/
	}
}

/* contents */
#main_img.sub {
	background: transparent;
}
.main_tit {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	width: 100%;
	padding: 0 calc(2% - 0.33em);
	color: #fff;
}
.main_tit.type_2 {
	text-align: center;
	text-shadow: 0 0 10px #000;
}
.main_tit.type_2 .ja {
	font-size: 50px;
	font-weight: bold;
}
.main_tit.type_1 {
	line-height: 1;
}
.main_tit.type_1 .ja {
	width: fit-content;
	font-size: 60px;
	font-weight: bold;
}
.main_tit.type_2 .en {
	font-size: 30px;
	font-weight: 700;
	text-transform: uppercase;
}
.main_tit.type_1 .en {
	width: fit-content;
	font-size: 160px;
	font-weight: 700;
	text-transform: uppercase;
}
.main_tit.type_1 .en .sm {
	display: block;
	padding: 0 0.25em;
	font-size: 37.5%;
	text-align: right;
}
.clipped_pic img {
	-webkit-clip-path: url(#clip_pc);
	clip-path: url(#clip_pc);
	width: 100%;
	aspect-ratio: 4/1;
	object-fit: cover;
}
@media screen and (min-width: 601px) {
	.clipped_pic img {
		min-height: 500px;
	}
}
@media screen and (max-width: 600px) {
	.main_tit {
		top: 50%;
		padding: 0 3%;
	}
	.main_tit.type_2 .ja {
		font-size: min(7.5vw, 38px);
	}
	.main_tit.type_2 .en {
		font-size: min(4.5vw, 19px);
	}
	.main_tit.type_1 {
		left: 0;
		transform: translate(0,-50%);
		width: auto;
	}
	.main_tit.type_1 .ja {
		margin-top: 0.2em;
        font-size: min(6.8vw, 34px);
	}
	.main_tit.type_1 .en {
		font-size: min(16.5vw, 80px);
	}
	.clipped_pic img {
		-webkit-clip-path: url(#clip_sp);
		clip-path: url(#clip_sp);
		aspect-ratio: 74/55;
	}
}


/* ---------------------------------------------------
	Contents
------------------------------------------------------ */
/* breadcrumb */
#breadcrumb { margin: 5px auto 25px; width: 100%; padding: 0 min(4vw, 30px); text-align: right; }
#breadcrumb li { display: inline-block; line-height: 1.6;}
#breadcrumb li:before { content: '-'; margin: 0 5px;}
#breadcrumb li:first-child:before { display: none; }
#breadcrumb li a { font-size: 14px; color: #111; }


/* ---------------------------------------------------
	Footer
------------------------------------------------------ */
#footer_wrap {
	font-weight: normal;
}
#footer .add_col {
	line-height: 1.8;
	padding: 40px 0;
	color: #fff;
	background-color: var(--col-gr01);
}
#footer .add_col a {
	color: #fff;
}
#footer .add_col .inner_md {
	display: flex;
	align-items: center;
	gap: 0 min(3.5%,50px);
}
#f_logo img {
	width: clamp(200px, 23.5vw, 300px);
}
#f_logo span {
	display: block;
	margin-top: 10px;
	font-weight: bold;
	font-size: 20px;
}
/* SNS */
#footer .icon-insta {
	width: 31px;
	height: 31px;
}
#footer .icon-x {
	height: 31px;
}
#footer .icon-fb {
	height: 31px;
}
#footer .icon-yt {
	height: 31px;
}
#footer .sns {
	display: flex;
	gap: 0 1em;
}
#footer .sns [class^="icon-"] {
	fill: #fff;
	color: #fff;;
}
#footer #fnav {
	padding: 30px 0;
	color: #fff;
	background-color: var(--col-gr02);
}
#footer #fnav .nav {
	display: flex;
	flex-wrap: wrap;
    gap: 0.5em 1.25em;
}
#footer #fnav a {
	display: inline-flex;
    align-items: center;
    gap: 0 5px;
	color: #fff;
	background-color: var(--col-gr02);
}
#footer #fnav a::after {
	content: '';
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-top: 3px solid transparent;
	border-bottom: 3px solid transparent;
	border-left: 5px solid #9bbf30;
	border-right: 0;
}
#copy {
	align-self: flex-end;
	margin-left: auto;
	font-size: clamp(13px, 1vw, 16px);
    letter-spacing: 0.04em;
}

@media screen and (hover: hover) and (min-width: 601px) {
	#footer #fnav a:hover {
		opacity: 1;
	}
	#footer #fnav a:hover .link_run::after {
		transform-origin: left center;
		scale: 1;
	}
}
@media screen and (min-width: 601px) {
	#f_logo {
		margin-top: 20px;
	}
	#f_logo>p {
		padding-left: 2.75em;
		text-indent: -2.75em;
	}
}
@media screen and (max-width: 600px) {
	#footer {
		font-size: 14px;
	}
	#footer .add_col {
		padding: 40px 0;
	}
	#footer .add_col .inner_md {
		flex-direction: column;
		text-align: center;
	}
	#f_logo img {
		width: min(60vw, 280px);
	}
	#f_logo span {
		margin-top: 15px;
		font-size: 18px;
	}
	#copy {
		margin: 1em auto 0;
	}
	#footer .sns {
		gap: 0 0.5em;
		margin: 20px 0 15px;
	}
	#footer .sns [class^="icon-"] {
		height: max(25px,5.5vw);
	}
	#footer #fnav .nav {
		max-width: 75%;
	}
	#footer #fnav a::after {
		border-width: 2px 0 2px 4px;
	}
}

