@charset "utf-8";
/*
 shared.css
*/
/* -----------------------------------------------
= reset
----------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font: inherit;
	font-size: 100%;
	vertical-align: baseline;
}
html {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption, th, td {
	text-align: left;
	font-weight: normal;
	vertical-align: middle;
}
q, blockquote {
	quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
	content: "";
	content: none;
}
a img {
	border: none;
}
article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
button {
	margin: 0;
	padding: 0;
	color: inherit;
	border: none;
	border-radius: 0;
	background: transparent;
	-webkit-appearance: none;
	appearance: none;
	font: inherit;
	cursor: pointer;
}
input,
select,
textarea {
	font: inherit;
}

/* -----------------------------------------------
= base
----------------------------------------------- */
html {
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
body {
	color: #1c1c1a;
	font-family: "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", san-serif;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: top;
}
a {
	color: #1c1c1a;
	text-decoration: none;
}

/* -----------------------------------------------
= loading
----------------------------------------------- */
.loading {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 500;
	width: 100%;
	height: 100vh;
	background: #fff;
	transition: opacity .5s;
}
.loading.is-hidden {
	opacity: 0;
	visibility: hidden;
}
.loading .inner {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
	opacity: 0;
	visibility: hidden;
}
.loading .inner.is-active {
	opacity: 1;
	visibility: visible;
}
.loading img {
	width: 113px;
}
.loading .bar {
	position: relative;
	width: 200px;
	height: 6px;
	margin: 65px 0 0;
	background: #dfdfde;
	border-radius: 3px;
}
.loading .bar::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 6px;
	background: #3a332c;
	border-radius: 3px;
	animation: animeBar 3s 0s forwards;
}
@keyframes animeBar {
	0% {
		width: 0;
	}
	100% {
		width: 100%;
	}
}

/* -----------------------------------------------
= skip
----------------------------------------------- */
.skip a {
	position: absolute;
	width: 1px;
	height: 1px;
	clip: rect(1px, 1px, 1px, 1px);
}
.skip a:focus,
.skip a:active {
	display: block;
	width: 16em;
	height: auto;
	top: 5px;
	left: 5px;
	clip: auto;
	z-index: 1000;
	font-size: 1.8rem;
	padding: 5px;
	background-color: #fff;
	border: 1px solid #ccc;
}

/* -----------------------------------------------
= common
----------------------------------------------- */
html {
	font-size: 62.5%;
}
html.is-small {
	font-size: calc(10 / 16 * 100%);
}
html.is-middle {
	font-size: calc(10 / 16 * 1.125 * 100%);
}
html.is-large {
	font-size: calc(10 / 16 * 1.25 * 100%);
}
.is-pc {
	display: none;
}
@media print, screen and (min-width: 751px) {/* PC */
.is-pc {
	display: block;
}
.is-sp {
	display: none;
}
}/* @media */

/* -----------------------------------------------
= header
----------------------------------------------- */
.header .logo {
	position: fixed;
	top: 10px;
	left: 10px;
	z-index: 5;
}
.header .logo img {
	width: 88px;
	transition: .3s;
}
.is-scroll .header .logo img {
	width: 66px;
}
.is-nav_opened {
	overflow: hidden;
}
.nav_btn {
	position: fixed;
	top: 10px;
	right: 0;
	z-index: 20;
	width: 42px;
	height: 42px;
	background: #000;
	border-radius: 5px 0 0 5px;
	cursor: pointer;
}
.nav_btn img {
	display: block;
	position: absolute;
	top: 11px;
	right: 10px;
	width: 20px;
	height: 20px;
}
.nav_btn.close {
	display: none;
}
.is-nav_opened .nav_btn.close {
	display: block;
}
.header .nav {
	position: fixed;
	top: 0;
	right: 0;
	z-index: 10;
	width: 300px;
	height: 100%;
	color: #fff;
	background: #000;
	transform: translateX(100%);
	transition: transform ease-in-out .5s;
}
.is-nav_opened .header .nav {
	transform: translateX(0);
}
.header .nav_inner {
	height: 100%;
	max-height: 100vh;
	padding: 70px 0 40px 40px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	box-sizing: border-box;
}
.header a {
	color: #fff;
}
.header a:hover {
	color: #38c3fd;
}
.header .list {
	margin-bottom: 30px;
}
.header .list li {
	color: #fff;
}
.header .list li a {
	display: inline-block;
	position: relative;
	padding: 20px 0;
	color: #fff;
	font-size: 18px;
	transition: color .3s;
}
.header .list li a:hover {
	color: #38c3fd;
}
.header .list li.current a {
	color: #38c3fd;
	text-decoration: underline;
	cursor: default;
}
.header .list li.current a:hover {
	opacity: 1;
}
.header .list li ul {
	margin-left: 20px;
}
.header .wrap {
	display: flex;
	margin-bottom: 40px;
}
.header .wrap dt {
	margin-bottom: 15px;
	font-size: 14px;
}
.header .font_switch ul {
	display: flex;
	margin-right: 15px;
}
.header .font_switch ul li {
	margin-right: 12px;
}
.header .font_switch li button {
	width: 30px;
	height: 30px;
	color: #fff;
	background: #1d1c1c;
	border-radius: 4px;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
	transition: color .3s;
}
.header .font_switch li:nth-child(1) button {
	font-size: 18px;
}
.header .font_switch li:nth-child(2) button {
	font-size: 20px;
}
.header .font_switch li:nth-child(3) button {
	font-size: 22px;
}
.header .font_switch button:hover,
.header .font_switch button.active {
	color: #38c3fd;
}
.header .lang ul {
	display: flex;
	justify-content: flex-end;
}
.header .lang li {
	position: relative;
	width: 30px;
	height: 30px;
	margin-right: 12px;
	color: #fff;
	background: #1d1c1c;
	border-radius: 4px;
	font-size: 24px;
	font-family: bebas-neue-pro-semiexpanded, sans-serif;
	font-weight: 700;
	line-height: 30px;
	text-align: center;
}
.header .lang a {
	display: block;
	color: #fff;
	background: #1d1c1c;
	transition: color .3s;
}
.header .lang a:hover,
.header .lang .current {
	color: #38c3fd;
}
.header .reader button {
	display: inline-block;
	position: relative;
	padding: 8px 15px 8px 53px;
	color: #fff;
	background: #1d1c1c;
	border-radius: 4px;
	font-size: 16px;
	transition: color .3s;
}
.header .reader button::before {
	content: '';
	position: absolute;
	top: 0;
	left: 18px;
	width: 24px;
	height: 100%;
	background: url(../images/shared/icon_speaker.svg) no-repeat 50% / 100% auto;
	transition: background .3s;
}
.header .reader button:hover {
	color: #38c3fd;
}
.header .reader button:hover::before {
	background-image: url(../images/shared/icon_speaker_hover.svg);
}
#readspeaker_button1 {
	display: none;
}
.header .tokyo {
	margin: 30px 0 0;
}
.header .tokyo a {
	display: inline-block;
	padding: 8px 15px;
	color: #fff;
	background: #1d1c1c;
	border-radius: 4px;
	font-size: 16px;
	transition: color .3s;
}
.header .tokyo a:hover {
	color: #38c3fd;
}
@media print, screen and (min-width: 751px) {/* PC */
.header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	min-height: 44px;
	color: #fff;
	background: #000;
}
.is-nav_opened {
	overflow: visible;
}
.nav_btn {
	display: none;
}
.is-nav_opened .nav_btn.close {
	display: none;
}
.header .nav {
	position: static;
	width: auto;
	height: auto;
	background: transparent;
	transform: translateX(0);
	transition: none;
}
.header .nav_inner {
	display: flex;
	align-items: center;
	position: relative;
	height: 44px;
	max-height: 44px;
	padding: 0 20px;
	overflow-y: visible;
}
.header .list {
	flex: 1;
	display: flex;
	margin-bottom: 0;
}
.header .list li {
	position: relative;
	margin: 0 25px 0 0;
	padding: 7px 0;
}
.header .list li a.is-sp {
	display: none;
}
.header .list li a,
.header .list li button {
	padding: 0;
	font-size: 14px;
}
.header .list li button:hover {
	color: #38c3fd;
}
.header .list li button.is-opened {
	color: #38c3fd;
}
.header .list li ul {
	position: absolute;
	top: 27px;
	left: -30px;
	z-index: 10;
	width: 126px;
	background: #fff;
	border-radius: 10px;
	opacity: 0;
	pointer-events: none;
	transition: opacity .3s;
}
.header .list li ul.is-opened {
	opacity: 1;
	pointer-events: auto;
}
.header .list li ul::before {
	content: '';
	position: absolute;
	top: -6px;
	left: 18px;
	width: 12px;
	height: 6px;
	background: #fff;
	clip-path: polygon(50% 0,100% 100%,0 100%);
}
.header .list li ul li {
	margin: 30px 10px;
	padding: 0;
}
.header .list li ul li a {
	display: block;
	color: #000;
}
.header .wrap {
	margin-bottom: 0;
}
.header .wrap dt {
	display: none;
}
.header .font_switch ul {
	margin-right: 0;
}
.header .font_switch ul li {
	margin-right: 2px;
	margin-top: 4px;
}
.header .font_switch li button {
	width: 22px;
	height: 22px;
	line-height: 22px;
}
.header .font_switch li:nth-child(1) button {
	font-size: 12px;
}
.header .font_switch li:nth-child(2) button {
	font-size: 16px;
}
.header .font_switch li:nth-child(3) button {
	font-size: 20px;
}
.header .lang {
	margin: 0 20px;
}
.header .lang li {
	width: auto;
	height: auto;
	margin-right: 0;
	background: transparent;
	font-size: 20px;
}
.header .lang li + li {
	margin-left: 6px;
	padding-left: 9px;
}
.header .lang li + li::before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	width: 2px;
	height: 14px;
	background: #fff;
}
.header .lang a {
	background: transparent;
}
.header .reader {
	position: fixed;
	top: 6px;
	right: 325px;
}
.header .reader button {
	padding: 8px 23px 8px 28px;
	background: transparent;
	font-size: 14px;
}
.header .reader button::before {
	left: 0;
	width: 19px;
}
#readspeaker_button1 {
	position: fixed;
	top: 44px;
	right: 325px;
}
.header .tokyo {
	margin: 0;
}
.header .tokyo a {
	padding: 0;
	border-radius: 0;
	font-size: 14px;
}
}/* @media */
/* -----------------------------------------------
= footer
----------------------------------------------- */
.footer {
	padding: 30px 15px 22px;
	background: #fff;
	font-family: "メイリオ", "Meiryo", sans-serif;
	text-align: center;
}
.footer .pagetop {
	position: fixed;
	right: 10px;
	bottom: 10px;
	z-index: 5;
	opacity: 0;
	pointer-events: none;
	transition: opacity .5s .4s;
}
.is-scroll .footer .pagetop {
	opacity: 1;
	pointer-events: auto;
}
.footer .pagetop a {
	display: flex;
	justify-content: center;
	align-items: end;
	width: 50px;
	height: 50px;
	color: #fff;
	background: #1c1c1a;
	border-radius: 10px;
	font-size: 20px;
	font-family: bebas-neue-pro-semiexpanded, sans-serif;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	transition: opacity .3s;
}
.footer .pagetop a:hover {
	opacity: .7;
}
.footer .pagetop a::after {
	content: "";
	display: block;
	position: absolute;
	top: -2px;
	left: calc(50% - 7px);
	border: solid transparent;
	border-bottom-color: #fff;
	border-width: 12px 7px;
}
.footer .set {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 22px;
	padding: 10px 0 0;
}
.footer .logo {
	margin: 0 17px 0 10px;
}
.footer .logo img {
	width: 78px;
	transition: opacity .3s;
}
.footer .logo a:hover img {
	opacity: .7;
}
.footer .link {
	display: flex;
	flex-wrap: wrap;
	max-width: 300px;
	margin: 0 auto 7px;
	padding-left: 30px;
}
.footer .link li {
	margin: 0 15px 20px;
	font-size: 1.2rem;
	line-height: 1.3;
	text-align: left;
}
.footer .link a {
	color: #1c1c1a;
	text-decoration: underline;
}
.footer .link a:hover {
	text-decoration: none;
}
.footer .contact {
	margin-bottom: 15px;
}
.footer .contact .tokyo {
	margin: 0 0 10px;
}
.footer .contact .tokyo img {
	width: 100px;
}
.footer .contact .address {
	font-size: 1.2rem;
	line-height: 1.57;
	letter-spacing: .08em;
}
.footer .contact .address span {
	display: block;
}
.footer .contact .address a.access {
	display: inline-block;
	margin: 2px 0 0;
	padding: 0 1em;
	color: #fff;
	background: #000;
	border-radius: 1em;
	transition: opacity .3s;
	letter-spacing: .1em;
}
.footer .contact .address a.access:hover {
	opacity: .7;
}
.footer .contact .address a.access.is-pc {
	display: none;
}
.footer .copyright {
	font-size: 1.2rem;
	line-height: 1.4;
}
@media print, screen and (min-width: 751px) {/* PC */
.footer {
	padding: 50px 30px 35px;
}
.footer .pagetop {
	right: 20px;
	bottom: 20px;
}
.footer .set {
	margin-bottom: 44px;
	padding: 10px 0 0;
}
.footer .logo {
	margin: 0 34px 0 20px;
}
.footer .logo img {
	width: 159px;
}
.footer .link {
	max-width: none;
	margin: 0 0 50px;
	justify-content: center;
}
.footer .link li {
	width: auto;
	margin: 0;
	padding: 0 1em;
	font-size: 1.5rem;
}
.footer .link li + li {
	border-left: 1px solid #1c1c1a;
}
.footer .link a {
	text-decoration: none;
}
.footer .link a:hover {
	text-decoration: underline;
}
.footer .contact {
	display: flex;
	justify-content: center;
	margin-bottom: 50px;
}
.footer .contact .tokyo {
	margin: 5px 28px 0;
}
.footer .contact .tokyo img {
	width: 163px;
}
.footer .contact .address {
	margin: 0 28px;
	font-size: 1.4rem;
	text-align: left;
}
.footer .contact .address a.access.is-pc {
	display: inline-block;
	margin-left: 1em;
}
.footer .contact .address a.access.is-sp {
	display: none;
}
.footer .copyright {
	font-size: 1.2rem;
	line-height: 1;
	letter-spacing: .1em;
}
}/* @media */

/* -----------------------------------------------
= print
----------------------------------------------- */
@media print {
body {
	min-width: 1000px;
}
}/* media */



