﻿@charset "utf-8";

/* HTML */
html
{
	font-size: 100%;
}

.wrapper
{
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 4%;
}

.big-bg
{
	background-size: cover;
	background-position: center top;
	background-repeat: no-repeat;
}

.Appeal
{
	margin-bottom: 110px;
}

.Appeal h2
{
	font-size: 3rem;
	text-align: center;
}

.Appeal p
{
	font-size: 2rem;
	text-align: center;
	margin-bottom: 80px;
	border-bottom: 3px	#fff	solid;
	font-weight: bold;
}

/* Home */
.page-header
{
	text-align: center;
}

img
{
	max-width: 50%;
}

.File01-header .logo
{
	width: 300px;
	margin-top: 14px;
}	

body
{
	background: #7c7889;
	color: #fff;
}

a
{
	text-decoration: none;
}

/* ボタン */
.button {
	font-size: 3.5rem;
	background: #333366;
	color: #fff;
	border-radius: 10px;
	padding: 13px 29px;
	max-width: 100%;
}
.button:hover {
	background: #cc00ff;
}


.main-nav
{
	font-size: 6rem;
	margin-top: 10px;
	margin-bottom: 13px;
	list-style: none;
}



/* File_01 */
h3
{
	font-size: 3rem;
}

.page-title {
	font-size: 7rem;
	font-family: 'Philosopher', serif;
	text-transform: uppercase;
	font-weight: normal;
}

.File01-header
{
	display: flex;
	justify-content: space-between;
}

.logo
{
	width: 600px;
	margin-top: 14px;
}

.logo-home
{
	max-width: 100%;
	width: 300px;
	margin-top: 14px;
}

.File01-nav
{
	display: flex;
	font-size: 2rem;
	text-transform: uppercase;
	margin-top: 34px;
	list-style: none;
}

.File01-nav li
{
	margin-left: 36px;
}

.File01-nav a
{
	color: #fff;
}

.File01-nav a:hover
{
	color: #cc0000;
}

#File01 {
	background-image: url(../image/images/menu-dos-ex.png);
	min-height: 100vh;
	border-bottom:	5px	#fff	solid;
}
.File01-content {
	max-width: 560px;
	margin-top: 10%;
}
.File01-content .page-title {
	text-align: center;
}
.File01-content p {
	font-size: 2.125rem;
	margin: 20px 10px 10px;
}

.wrapper-grid
{
	display:grid;
	gap:	26px;
	grid-template-columns:repeat(auto-fit,minmax(350px,1fr));
	margin-top: 6%;
	margin-bottom: 50px;
}

.item p
{
	font-size: 1.5rem;
}

.img_wrap
{
	max-width: 50%;
}

/* Mouse over tec */
.img_wrap:hover
{
	box-shadow: 10px 10px 10px rgba(0,0,0,0.5);
	transform: translateY(-10px);
	transition-duration: 0.5s;
}

/* Footer */
footer {
	background: #70769d;
	text-align: center;
	padding: 26px 0;
}

footer p {
	color: #fff;
	font-size: 0.875rem;
}

/* モバイル版
------------------------------- */
@media (max-width: 600px) 
{

	.page-title {
		font-size: 2.5rem;
	}

	
	.File01-header {
		flex-direction: column;
		align-items: center;
	}

	/* HEADER */
	nav{
		font-size: 1rem;
		margin-top: 120px;
		margin: -5px;
	}
	
	nav li{
		margin: 0 20px;
	}

	.button{
		max-width: 50%;
	}

	.page-header{
	flex-direction: column;
	align-items: center;
	text-decolation: none;
	}

	/* HOME */
	.home-content {
		margin-top: 100%;
	}

	.button{
		max-width: 100%;
	}

	/* File01 */
	.File01-nav {
		font-size: 1rem;
		margin-top: 10px;
	}

	.File01-nav li {
		margin: 0 20px;
	}

	.File01-content {
		margin-top: 20%;
	}

}

