@charset "utf-8";

/*!
 * Osaka Free Wi-Fi
 * common, header, menu, footer style
 * mediaqueries = min-width: 361px, 481px, 768px, 1025px, 1201px
 */

html {
	font-size: 62.5%;
}
body {
	color: black;
	font-size: 1.4rem;
	line-height: 1.6;
	font-family: Lato, "Noto Sans JP", "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
	font-weight: 500;
	font-feature-settings: "palt";
}
button {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
img, svg, iframe {
	vertical-align: middle;
}
figure img {
	max-width: 100%;
}
@media all and (-ms-high-contrast: none) {
	figure img { width: 100%; }
}
a {
	color: inherit;
	text-decoration: inherit;
}
@media screen and (max-width: 1024px) {
	.v-dt { display: none !important; }
}
@media screen and (min-width: 361px) {
	body { font-size: 1.6rem; }
}
@media screen and (min-width: 1025px) {
	.v-mb { display: none !important; }
}

/**
 * greeting
 -------------------------------------------------- */
.l-greeting {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 201;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(255,255,255,.8);
}
.l-greeting.anima {
	transition: opacity .4s, transform .4s cubic-bezier(.3,0,.3,1);
}
.l-greeting:not(.open) {
	opacity: 0;
	transform: scale(1.05);
}
.l-greeting_container {
	position: relative;
	max-width: 600px;
	margin: 10px;
	padding: 20px 20px 40px;
	text-align: center;
	background: white;
	filter: drop-shadow(0 1px 8px rgba(0,0,0,.1));
}
.l-greeting_title {
	font-size: 2rem;
}
.l-greeting_text {
	margin-top: 8px;
}
.l-greeting_image {
	margin-top: 12px;
}
.l-greeting_close {
	z-index: 201;
	position: fixed;
	bottom: 12px;
	right: calc(50% - 30px);
	width: 60px;
	height: 60px;
	border-radius: 40px;
	background: white;
	filter: drop-shadow(0 1px 8px rgba(0,0,0,.1));
}
.l-greeting_close::before,
.l-greeting_close::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	height: 2px;
	background: currentcolor;
}
.l-greeting_close::before {
	transform: rotate(45deg);
}
.l-greeting_close::after {
	transform: rotate(-45deg);
}
@media screen and (min-width: 1025px) {
	.l-greeting_container {
		margin: 20px;
		padding: 40px 40px 60px;
	}
	.l-greeting_title {
		font-size: 1.8rem;
	}
	.l-greeting_text {
		font-size: 1.4rem;
	}
}
@media screen and (orientation: landscape) {
	.l-greeting {
		overflow: auto;
	}
	.l-greeting_container {
		align-self: flex-start;
	}
	.l-greeting_close {
		right: 12px;
	}
}

/**
 * loader
 -------------------------------------------------- */
.loader {
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 200;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: white;
}
.loader.anima {
	transition: opacity .4s;
}
.loader:not(.loading) {
	opacity: 0;
}
.loader svg {
	width: 40px;
	height: 40px;
	fill: none;
	stroke: #c61740;
	stroke-width: 10;
	stroke-dasharray: 230;
	stroke-dashoffset: 230;
	animation: loading 1.2s infinite linear;
}
.loader .path {
	animation: loader 1.8s infinite cubic-bezier(.3,0,.3,1);
}
@keyframes loading {
	from { transform: none; }
	to { transform: rotate(360deg); }
}
@keyframes loader {
	from { stroke-dashoffset: 230; }
	to { stroke-dashoffset: -230; }
}

/**
 * header
 -------------------------------------------------- */
.l-header {
	z-index: 10;
	position: fixed;
	width: 100%;
	background: white;
	box-shadow: 0 1px 8px 0 rgba(0,0,0,.1);
}
.header_container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1200px;
	margin: 0 auto;
}
@media screen and (max-width: 1024px) {
	.header_container {
		height: calc(48px + 4px);
		padding-bottom: 4px;
		background: white url(../img/bar.svg) center bottom repeat-x;
	}
	.c-menu_open {
		order: -1;
		flex-basis: 48px;
		position: relative;
		height: 48px;
	}
	.c-menu_open:focus {
		outline: 0;
	}
	.c-menu_open .bar {
		top: calc(50% - 1px);
		left: 15px;
	}
	.c-menu_open .bar,
	.c-menu_open .bar::before,
	.c-menu_open .bar::after {
		position: absolute;
		width: 18px;
		height: 2px;
		background: #c61740;
	}
	.c-menu_open .bar::before,
	.c-menu_open .bar::after {
		content: "";
		top: 0;
		left: 0;
	}
	.c-menu_open .bar::before {
		transform: translateY(-7px);
	}
	.c-menu_open .bar::after {
		transform: translateY(7px);
	}
}
@media screen and (min-width: 1025px) {
	.l-header {
		padding-bottom: 4px;
		background: white url(../img/bar.svg) center bottom repeat-x;
	}
	.header_container {
		height: 60px;
	}
}

/* ロゴ */
.header-logo {
	padding-bottom: 4px;
	line-height: 1;
}
.header-logo img {
	width: auto;
}
.l-header .ico {
	fill: #c61740;
}
@media screen and (max-width: 1024px) {
	.header-logo img {
		height: 30px;
	}
}
@media screen and (min-width: 1025px) {
	.header-logo {
		flex-basis: 193px;
		padding-left: 20px;
	}
	.header-logo img {
		height: 40px;
	}
}

/* メニュー */
.header-menu {
	list-style: none;
	display: flex;
}
.header-menu .ico {
	margin-top: -2px;
	margin-right: 8px;
	vertical-align: middle;
}
@media screen and (max-width: 1024px) {
	.header-menu_item {
		flex-basis: 50%;
	}
	.header-menu_item:nth-child(n+2) a {
		border-left: 1px solid #f4f4f4;
	}
	.header-menu_item a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 48px;
	}
}
@media screen and (max-width: 360px) {
	.header-menu .ico {
		margin-right: 4px;
	}
}
@media screen and (min-width: 1025px) {
	.header-menu_item:not(:first-child) {
		margin-left: 16px;
	}
}

/* 言語設定 */
.header-lang {
	position: relative;
}
.lang-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 100%;
}
.lang-btn .ico {
	width: 30px;
	height: 30px;
}
.lang-menu {
	list-style: none;
	position: absolute;
	top: 100%;
	width: 10em;
	padding: 10px 0;
	border: 1px solid gainsboro;
	text-align: center;
	background: white;
	filter: drop-shadow(0 1px 8px rgba(0,0,0,.1));
	transition: opacity .3s, transform .3s cubic-bezier(.2,.6,.4,1);
}
.header-lang:not(:hover) .lang-menu {
	pointer-events: none;
	opacity: 0;
	transform: translateY(-10px);
}
.lang-menu_item:not(:first-child) {
	margin-top: 1px;
}
.lang-menu a {
	display: block;
	cursor: pointer;
	padding: 4px;
}
html:not(.isTouch) .lang-menu a:hover {
	background: #fafafa;
}
.lang-menu .selected {
	pointer-events: none;
	background: #eee;
}
.lang-menu::before,
.lang-menu::after {
	content: "";
	position: absolute;
	bottom: 100%;
	border-style: solid;
	border-color: transparent;
}
.lang-menu::before {
	right: 10px;
	border-width: 0 9px 12px 9px;
	border-bottom-color: gainsboro;
}
.lang-menu::after {
	right: 11px;
	border-width: 0 8px 10px 8px;
	border-bottom-color: white;
}
@media screen and (max-width: 1024px) {
	.header-lang {
		flex-basis: 48px;
		height: 48px;
	}
	.lang-menu {
		right: 4px;
	}
	.c-menu-button {
		font-size: 1.3rem;
		text-transform: uppercase;
	}
	.c-menu-button .bar {
		width: 184px;
		height: 32px;
	}
}
@media screen and (min-width: 1025px) {
	.header-lang {
		flex-basis: 60px;
		height: 60px;
	}
	.lang-menu {
		right: 10px;
	}
}

/**
 * menu
 -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.l-menu,
	.l-menu_overlay {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
	}
	.l-menu {
		z-index: 101;
		position: fixed;
	}
	.l-menu:not(.open) {
		pointer-events: none;
	}
	.l-menu_overlay {
		position: absolute;
		background: rgba(0,0,0,.5);
	}
	.l-menu.anima .l-menu_overlay {
		transition: opacity .4s;
	}
	.l-menu:not(.open) .l-menu_overlay {
		opacity: 0;
	}
	.c-menu {
		z-index: 1;
		position: relative;
		width: 300px;
		max-width: calc(100% - 48px);
		height: 100%;
		background: white;
	}
	.c-menu_close {
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: -1;
		position: absolute;
		top: 0;
		left: 100%;
		width: 48px;
		height: 48px;
		background: #c61740;
	}
	.c-menu_close:focus {
		outline: 0;
	}
	.l-menu.anima .c-menu,
	.l-menu.anima .c-menu_close {
		transition: transform .4s cubic-bezier(.2,.6,.4,1);
	}
	.l-menu:not(.open) .c-menu,
	.l-menu:not(.open) .c-menu_close {
		transform: translateX(-100%);
	}
	.c-menu_close .bar {
		position: relative;
		width: 17px;
		height: 2px;
	}
	.c-menu_close .bar::before,
	.c-menu_close .bar::after {
		content: "";
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: white;
	}
	.c-menu_close .bar::before {
		transform: rotate(45deg);
	}
	.c-menu_close .bar::after {
		transform: rotate(-45deg);
	}
	.c-menu_list {
		padding: 20px 0;
		background: white;
	}
	.c-menu_list a {
		display: block;
		position: relative;
		padding: 10px 30px;
	}
	.c-menu_item:first-child a {
		padding-left: 36px;
	}
	.c-menu_item:first-child img {
		padding-bottom: 4px;
	}
	.c-menu_list a::after {
		content: "";
		position: absolute;
		top: calc(50% - 5.5px);
		right: 30px;
		width: 10px;
		height: 10px;
		border-top: 2px solid #c61740;
		border-right: 2px solid #c61740;
		transform: rotate(45deg);
	}
	.c-menu_list .ico {
		margin-top: -2px;
		margin-right: 8px;
		vertical-align: middle;
		fill: #c61740;
	}
}
@media screen and (max-width: 767px) {
	.c-menu_list a {
		padding: 10px 20px;
	}
	.c-menu_item:first-child a {
		padding-left: 26px;
	}
}

/**
 * footer
 -------------------------------------------------- */
.l-footer {
	margin-top: 80px;
	padding: 20px 10px;
	color: #333;
	background: #f4f4f4;
}
@media screen and (min-width: 1025px) {
	.l-footer {
		padding-top: 40px;
	}
}

/* OSAKA logo */
.footer-logo {
	list-style: none;
	display: flex;
	justify-content: center;
}
.footer-logo_item {
	flex-basis: 100px;
	font-size: 1.1rem;
	line-height: 1.4;
	text-align: center;
}
.footer-logo img {
	max-width: 100%;
}
.footer-logo_item:nth-child(n+2) {
	margin-left: 20px;
}
@media screen and (min-width: 768px) {
	.footer-logo_item:nth-child(n+2) {
		margin-left: 40px;
	}
}
@media screen and (min-width: 1025px) {
	.footer-logo_item {
		flex-basis: 120px;
		font-size: 1.3rem;
	}
}

.copyright {
	margin-top: 10px;
	font-size: 1rem;
	text-align: center;
}
.copyright small {
	font-size: inherit;
}
@media screen and (min-width: 1025px) {
	.copyright {
		margin-top: 20px;
		font-size: 1.2rem;
	}
}