@charset "utf-8";

/* CSS Document */

/*
	font-family: 'M PLUS 1p', sans-serif;
	font-family: 'Kosugi', sans-serif;
	font-family: 'Kosugi Maru', sans-serif;
	font-family: 'Raleway', sans-serif;
	font-family: 'Roboto Slab', serif;
	font-family: 'Courgette', cursive;
*/

/* 基本設定： フォントサイズ */
@media (min-width: 800px) {
	:root {
		font-size: 18px;
	}
}
@media (min-width: 420px) and (max-width: 799px) {
	:root {
		font-size: 16px;
	}
}
@media (max-width: 419px) {
	:root {
		font-size: 14px;
	}
}

* {
	margin: 0;
	padding: 0;
	font-style: normal;
	box-sizing: border-box;
}
header,nav,aside,section,article,footer {
	display: block;
}
a {
	color: #f99f48;
	text-decoration: none;
}
a:hover, a:active {
	color: #ff1f5a;
}
ul, li {
	list-style: none;
}
small {
	font-size: 0.8rem;
}
h1 {
	font-size: 1.2rem;
}
h2 {
	font-size: 1.1rem;
}
h3 {
	font-size: 1rem;
}
img {
	border: none;
	vertical-align: bottom;
}
iframe {
	border: none;
	vertical-align: bottom;
}
.courgette {
	font-family: 'Courgette', cursive;
	font-weight: 400;
	letter-spacing: 0;
}
.titlecolor {
	color: #005792;
}
.off {
	display: none;
}
.center {
	text-align: center;
}
.iframe {
	position: relative;
	height: 0;
	padding-top: 56.25%;
}
.iframe iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body {
	min-width: 320px;
	width: 100%;
	font-size: 1rem;
	color: #333;
	background-color: #87e0ff;
}
body.ja {
	font-family: 'Kosugi Maru', sans-serif;
	letter-spacing: 0.1rem;
}
body.en {
	font-family: 'Roboto Slab', serif;
}
.ja h1, .ja h2, .ja h3, .ja h4, .ja h5, .ja h6 {
	font-family: 'M PLUS 1p', sans-serif;
    font-weight: 900;
}
.en h1, .en h2, .en h3, .en h4, .en h5, .en h6 {
	font-family: 'Raleway', sans-serif;
    font-weight: 900;
}
#wrapper {
	max-width: 1000px;
	margin: 0 auto;
	background-color: #ffffe3;
}
header {
	color: #005792;
}
header .container {
	display: flex;
	padding: 0.5rem 1rem;
}
header .title {
	display: flex;
	flex-direction: column-reverse;
	align-items: center;
}
header .title h1 {
	font-family: 'M PLUS 1p', sans-serif;
}
header .title p {
	font-size: 0.8rem;
}
header .box {
	display: flex;
	flex-direction: column;
	align-items: center;
}
header .box .lang {
	font-size: 0.8rem;
}
.ja header .box .lang {
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0;
}
.en header .box .lang {
	font-family: 'Kosugi Maru', sans-serif;
	letter-spacing: 0.1rem;
}
header .box .reserve {
	margin: 1rem;
}
header nav {
	background-color: #1d97c1;
}
header .info {
	display: block;
	font-size: 0.72rem;
	color: #1e2a78;
	background-color: #f9ff21;
}
header .info:hover {
	background-color: #ff1f5a;
}
header .info i {
	display: block;
	max-width: 960px;
	margin: 0 auto;
	text-align: center;
	padding: 0.3rem;
}
#menu {
	max-width: 1000px;
	margin: 0 auto;
	font-size: 0.75rem;
}
#menu li a {
	display: block;
	padding: 0.8rem 0;
	font-family: 'Roboto Slab', serif;
	font-weight: bold;
	text-align: center;
	color: #fff;
}
#menu li a:hover{
	background-color: #f99f48;
}
#toggle {
	display: none;
}

@media (min-width: 700px) {
	header .container {
		align-items: center;
		justify-content: space-between;
	}
	#menu {
		display: flex;
	}
	#menu li {
		width: 12.5%;
	}
	#menu li:not(:last-child) {
		border-right:1px solid #87e0ff;
	}
	#menu li a span {
		display: block;
		transform: scale(0.8,1.4);
	}
}
@media (min-width: 420px) and (max-width: 699px) {
	header .container {
		align-items: center;
		justify-content: space-between;
	}
	header h1 {
		display: flex;
		align-items: center;
		margin-left: 1rem;
	}
	#menu {
		display: flex;
		flex-wrap: wrap;
	}
	#menu li{
		width: 25%;
	}
	#menu li:not(:nth-child(4n)) {
		border-right:1px solid #87e0ff;
	}
	#menu li:nth-child(-n+4) {
		border-bottom:1px solid #87e0ff;
	}
}
@media (max-width: 419px) {
	header .container {
		flex-flow: column;
		align-items: center;
	}
	header .title {
		margin-bottom: 1rem;
	}
	header .title h1 {
		font-size: 1.8rem;
	}
	#menu {
		display: none;
	}
	#menu li {
		width: 100%;
		border-top:1px solid #87e0ff;
	}
	#toggle {
		display: block;
		position: relative;
		width: 100%;
	}
	#toggle a{
		display: block;
		position: relative;
		padding: 20px 0 20px;
		color:#fff;
		font-size: 1.2rem;
		font-family: 'Roboto Slab', serif;
		font-weight: bold;
		text-align: center;
		text-decoration: none;
	}
	#toggle::before {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 30px;
		margin-top: -15px;
		background-color: #fff;
	}
	#toggle a::before, #toggle a:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 10px;
		width: 30px;
		height: 6px;
		background-color: #1d97c1;
	}
	#toggle a::before {
		margin-top:-9px;
	}
	#toggle a:after {
		margin-top: 3px;
	}
}

#contents .container {
	max-width: 1280px;
	margin: 0 auto;
	background-color: #fff;
}
#contents .container > article > .wrap, #contents .container > section > .wrap {
	max-width: 1000px;
	margin: 0 auto;
}
#contents p, #contents li {
	line-height: 1.5em;
}
#contents .herobox {
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 4rem 2rem;
	font-size: 1.25rem;
	color: #fff;
	background-position: center;
	background-size: cover;
}
#contents .herobox .title {
	margin-bottom: 2rem;
	text-align: center;
}
#contents .herobox h1 {
	margin-bottom: 2rem;
}
#contents .herobox h1 span {
	display: block;
	font-family: 'Raleway', sans-serif;
	font-size: 4rem;
	font-weight: 700;
	line-height: 5rem;
}
#contents .herobox .text {
	min-width: 50%;
}
#contents .herobox dt {
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	line-height: 2rem;
}
#contents .herobox dd {
}
#contents .herobox .courgette {
	font-size: 1.8rem;
}
#contents .flexbox {
	text-align: center;
}
#contents .flexbox .title {
	display: inline-block;
	height: 0.8rem;
	margin: 3rem auto 2rem;
	padding: 0 2rem;
	font-size: 2rem;
	color: #005792;
	background-color: #87e0ff;
}
#contents .flexbox .title span {
	display: block;
	margin-top: -2rem;
}
#contents .box {
	padding: 0 1rem;
}
#contents .box .title {
	margin: 1rem 0;
	padding-left: 0.5rem;
	font-size: 2rem;
	text-align: left;
	color: #005792;
	border-left: solid 0.5rem #87e0ff;
}
#contents .box .title span {
	display: inline-block;
}
#contents .box .text {
	margin-top: 2rem;
}
#contents .box .col {
	display: flex;
	flex-wrap: wrap;
	padding-bottom: 1rem;
}
#contents .box:last-child .col {
	padding-bottom: 2rem;
}
#contents .box .box1 {
	display: flex;
}
#contents .box .box2 {
	display: flex;
}
#contents .box .box3 {
	display: flex;
}
#contents .box .col .wrap {
	display: block;
	flex: 1;
	margin: 1rem;
}
#contents .box .col img {
	width: 100%;
}
#contents .topic {
	padding: 2rem 1rem;
}
#contents .topic .item {
	padding: 2rem 1rem 1rem;
	border-radius: 5px;
	border: 2px solid #f60;
	position: relative;
}
#contents .topic .header {
	top: -1rem;
	left: 1rem;
	padding: 0.5rem 1rem;
	color: #fff;
	background: #f60;
	line-height: 1rem;
	border-radius: 5px;
	position: absolute;
}
#contents .add .item {
	background-color: #f6ecec;
	font-weight: bold;
	box-shadow: 0 4px 4px rgba(0, 0, 0, 0.4);
}
#contents .add .item .col {
	align-items: center;
	padding-bottom: 0;
}
#contents .add .header {
	top: -1.25rem;
	left: 1.5rem;
	color: #fff;
	background: #f60;
    font-size: 1.5rem;
	line-height: 1.5rem;
}
#contents .add p {
	color: #333;
    font-size: 1.2rem;
}
#contents .add p span {
	display: inline-block;
	text-align: left;
}
#contents .add .faa-parent {
	display: block;
	margin-top: 1rem;
	text-align: center;
	color: #f60;
	background-color: #fff;
}
#contents .add .faa-parent:hover {
	color: #fff;
	background-color: #f60;
	border-color: #f60;
}
#contents .faa-parent {
	padding: 1rem;
	border-radius: 1rem;
	border: 2px solid;
}
#contents .faa-parent svg {
	margin: 1rem auto;
	font-size: 6rem;
}
#contents .reservation img {
	max-width: 250px;
}
#contents .box .iconbox {
	width: 100%;
	margin: .5rem;
}
#contents .box .iconbox .photo {
	min-height: 150px;
	background-position: center;
	background-size: cover;
}
#contents .box .iconbox h2, .contents .box .iconbox h3 {
	margin: 1rem 0 0.5rem;
}
@media (min-width: 641px) {
	#contents .box .box1 {
		width: 100%;
	}
	#contents .box .box2 {
		width: 50%;
	}
	#contents .box .box3 {
		width: 33%;
	}
}
@media (min-width: 420px) and (max-width: 640px) {
	#contents .box .box1 {
		width: 100%;
	}
	#contents .box .box2 {
		width: 100%;
	}
	#contents .box .box3 {
		width: 50%;
	}
}
@media (max-width: 419px) {
	#contents .box .col .wrap {
		margin: 1rem 0 0;
	}
	#contents .add {
		padding: 1rem 0;
	}
	#contents .add .header {
		top: -1.15rem;
		left: 1.3rem;
		font-size: 1.3rem;
		line-height: 1.3rem;
	}
	#contents .box .box1 {
		width: 100%;
	}
	#contents .box .box2 {
		width: 100%;
	}
	#contents .box .box3 {
		width: 100%;
	}
}
@media (min-width: 801px) {
	#contents .box .iconbox {
		display: flex;
		align-items: center;
	}
	#contents .box .iconbox:nth-child(even) {
		flex-direction: row-reverse;
	}
	#contents .box .iconbox .photo {
		width: 30%;
		height: 100%;
	}
	#contents .box .iconbox .text {
		width: 70%;
		margin: 0;
		padding: 1rem 1.5rem;
	}
	#contents .box .iconbox h2:first-child, .contents .box .iconbox h3:first-child {
		margin-top: 0;
	}
}
@media (max-width: 800px) {
	#contents .box article.iconbox .text {
		margin: 1rem .5rem;
	}
	#contents .box article.iconbox:last-child, .contents .box article.iconbox:last-child .text {
		margin-bottom: 0;
	}
}

footer {
	color: #fff;
	background-color: #005792;
}
footer .wrap {
	padding: 1.5rem;
	font-size: 0.72rem;
	line-height: 1.4em;
	border-bottom: 1px solid #ffffe3;
}
footer h1 {
	margin-bottom: 0.4rem;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1rem;
	line-height: 1.2em;
}
footer address {
	font-family: 'Roboto Slab', serif;
	letter-spacing: 0
}
footer .copy {
	color: #fff;
	background-color: #1b435d;
	font-family: 'Courgette', cursive;
	font-weight: 700;
	font-size: 0.78rem;
	text-align: center;
	letter-spacing: 0;
}
footer .copy a {
	display: inline-block;
	margin-left: 0.5rem;
}
footer .wrap .twins {
	display: block;
	right: 0.5rem;
	bottom: 0.5rem;
	position: absolute;
}
footer .copy p {
	max-width: 960px;
	margin: 0 auto;
	padding: 0.8rem;
	font-size: 0.72rem;
}

/* index */
.news .carousel {
	display: block;
	background-color: #fff;
	box-shadow: 0 5px 5px rgba(0, 0, 0, 0.5);
}
.news .cell {
	width: 100%;
	line-height: 0;
}
.news .cell img {
	display: block;
	width: 100%;
}
#contents .index .box:nth-child(2) .subtitle {
	height: 0;
	padding-top: 100%;
	position: relative;
}
#contents .index .box:nth-child(2) .subtitle h2::before {
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	color: #fff;
	background-size: cover;
	border-radius: 50%;
	box-shadow: 0 4px 4px rgba(53, 88, 100, 0.4);
	position: absolute;
}
#contents .index .box:nth-child(2) .subtitle span {
	position: absolute;
	top: 65%;
	left: 0;
	width: 100%;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.5rem;
	text-align: center;
	text-shadow: 0 0 5px #005792, 0 0 10px #005792, 0 0 15px #005792;
}
#contents .index .box:nth-child(2) .text {
	margin-top: 2rem;
	line-height: 1.2rem;
}
#contents .index .box:nth-child(2) .dorm h2::before {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/index-dorm.jpg);
}
#contents .index .box:nth-child(2) .monthly h2::before {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/index-monthly.jpg);
}
#contents .index .box:nth-child(2) .facilities h2::before {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/index-facilities.jpg);
}

/* facilities */
#contents .facilities .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-facilities.jpg);
}

/* prices */
#contents .prices .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-prices.jpg);
}
#contents .prices h3 {
	margin-top: 1rem;
}
#contents .prices dt {
	line-height: 2rem;
}
#contents .prices dd {
	line-height: 1.2rem;
}
/* reserve */
#contents .reserve .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-reserve.jpg);
}
#contents #mfp_thanks {
	text-align: center;
}
#contents #mfp_thanks h2 {
	font-size: 2rem;
    font-weight: 900;
}
.ja #contents #mfp_thanks h2 {
	font-family: 'M PLUS 1p', sans-serif;
}	
.en #contents #mfp_thanks h2 {
	font-family: 'Raleway', sans-serif;
}
#contents #mfp_thanks .number {
	display: inline-block;
	height: 0.8rem;
	margin: 2rem auto 0;
	padding: 0 2rem;
	font-size: 2rem;
	color: #005792;
	background-color: #87e0ff;
}
#contents #mfp_thanks .number span {
	display: block;
	margin-top: -1.8rem;
	font-family: 'Roboto Slab', serif;
    font-weight: 900;
	letter-spacing: 0;
	text-shadow: 0 0 5px #fff, 0 0 10px #fff, 0 0 15px #fff;
}
@media (max-width: 419px) {
	#contents #mfp_thanks h2 {
		font-size: 1.5rem;
	}
	#contents #mfp_thanks .number {
		font-size: 1.6rem;
	}
	#contents #mfp_thanks .number span {
		margin-top: -1.4rem;
	}
}

/* thanks */
#contents .thanks .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-thanks.jpg);
}

/* gallery */
#contents .gallery .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-gallery.jpg);
}

/* access */
#contents .access .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-access.jpg);
}

/* faq */
#contents .faq .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-faq.jpg);
}
#contents .faq .faqBox {
	width: 100%;
}
#contents .faq .faqBox .panel dt {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	margin-bottom: 1rem;
	padding: 1rem;
	cursor: pointer;
	background-color: #eee;
	border-radius: 0.5rem;
}
#contents .faq .faqBox .panel span {
	display: block;
	padding-left: 2rem;
	font-size: 1.2rem;
	line-height: 1.5rem;
	position: relative;
}
#contents .faq .faqBox .panel span::before, #contents .faq .faqBox .panel span::before {
	display: inline-block;
	width: 1.5rem;
	font-family: 'Righteous';
	font-size: 1.1rem;
	font-weight: bold;
	line-height: 1.5rem;
	text-align: center;
	letter-spacing: 0;
	color: #fff;
	border-radius: 50%;
	top: 0;
	left: 0;
	position: absolute;
}
#contents .faq .faqBox .panel dt span::before {
	content: 'Q';
	background-color: #dc143c;
}
#contents .faq .faqBox .panel dd span::before {
	content: 'A';
	background-color: #36558f;
}
#contents .faq .faqBox .panel dt img {
	display: block;
	flex-grow: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin-left: 0.5rem;
	padding: 0.1rem;
	transition: transform .5s;
}
#contents .faq .faqBox .panel dt.opened img {
	transform: rotate(180deg);
	transition: transform .5s;
}
#contents .faq .faqBox .panel dd {
	margin: 0 1rem 2rem;
}
#contents .faq .faqBox .panel dd:last-child {
	margin-bottom: 1rem;
}

/* tourism */
#contents .tourism .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-akihabara.jpg);
}
#contents .tourism .round img {
	border-radius: 50%;
    box-shadow: 0 4px 4px rgba(53, 88, 100, 0.4);
}
#contents .tourism .round h3 {
	margin: 1rem 0 0.5rem;
	color: #fff;
	font-family: 'M PLUS 1p', sans-serif;
	font-size: 1.4rem;
	text-align: center;
	text-shadow: 0 0 5px #005792, 0 0 10px #005792, 0 0 15px #005792;
}
#contents .tourism .round p {
	margin-bottom: 0.5rem;
}

/* error404 */
#contents .error404 .herobox {
	background-image: linear-gradient(rgba(53, 88, 100, 0.2), rgba(53, 88, 100, 0.2)), url(../images/hero-akihabara.jpg);
}
