@charset "UTF-8";
/* CSS Document */
/*===============================================
共通
===============================================*/
html,
body {
    height: 100%;
    margin: 0 auto;
    padding: 0;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    font-size: 0.625rem;
    /*font-size: 0.69444444vw;*/
    font-weight: 400;
    background-color: #fff4d6;
    line-height: 1.8;
}
:root {
    --main: #fff4d6;
    --sub: #2b883a;
    --pc: 14.4;
    --sp: 8.2;
}
*:focus {
    outline: none;
}
body {
    display: none;
	background-color: #fff4d6;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
img,
figure,
figcaption,
ul {
    margin: 0;
    padding: 0;
}
img {
    border: 0;
    line-height: 0;
	width: 100%;
	height: auto;
}
li {
    list-style: none;
}
a {
    text-decoration: none;
    color: #000;
    -webkit-transition: 0.25s;
    transition: 0.25s;
}
a:hover {
    color: #C8C8C8;
}
table {
    border-collapse: collapse;
}
span.text-block {
    display: inline-block;
}
.pc-none {
    display: none;
}
.note {
    text-indent: -1em;
    padding-left: 1em;
}
input {
    font-size: 1.6rem
}
.mg {
    margin: clamp(200px, (250vw/var(--pc)), 250px);
}
.flex{
	display: flex;
}
/*==============================================
アニメーション
===============================================*/
.fadeup{
	opacity: 0;
	transform: translateY(10px)
}
.fadeup.active{
	animation: fadeup 1s 0.15s forwards;
}
@keyframes fadeup {
    0% {
		opacity: 0;
		transform: translateY(10px)
    }
    100% {
        opacity: 1;
		transform: translateY(0)
    }
}
/*==============================================
ヘッダー
===============================================*/
header{
	margin-bottom: clamp(200px, (250vw/var(--pc)), 250px);
}
main{
	width: 80%;
	margin: 0 auto ;
	text-align: center;
}
main picture img{
	max-width: 880px;
	margin: 0 auto;
	padding: 75px 0 0;
}

/*==============================================
index
===============================================*/
.interview_wrap{
	width: 90%;
	max-width: 1000px;
	margin: 0 auto clamp(200px, (250vw/var(--pc)), 250px);
	font-size: 1.4rem;
}
.intro{
	font-size: 1.6rem;
	line-height: 2;
	text-align: justify;
	margin-bottom: clamp(100px, (150vw/var(--pc)), 150px);
}
.intro span{
	font-weight: bold;
	font-size: clamp(20px, (22vw/var(--pc)), 22px);
	display: block;
	margin-bottom: 0.25em;
}
.judges{
	font-size: 1.6rem;
	margin-bottom: clamp(200px, (250vw/var(--pc)), 250px);
}
.judges.flex{
	flex-wrap: wrap;
	justify-content: space-between;
}
.judges .member{
	width: 47%;
	margin-bottom: 5%;
}
.judges .member .flex{
	align-items: center;
	margin-bottom: 20px;
}
.judges .member .image{
	border-radius: 100%;
	width: 45%;
	max-width: 120px;
	margin-right: 20px;
}
.judges .member .image.muroi{
	max-width: 160px;
}
.judges .member .image img{
	border-radius: 100%;
}
.judges .member .text{
	justify-content: space-between;
	font-size: 1.5rem;
}
.judges .member .text span{
	font-size: 1.3rem;
	display: block;
	margin-top: 0.5em;
}
/*==============================================
作品
===============================================*/
.work_wrap{
	margin-bottom: clamp(50px, (80vw/var(--pc)), 80px);
}
.work_wrap.train,
.work_wrap.bus{
	position: relative;
}
.work_wrap.train::before,
.work_wrap.bus::before{
	content: '';
	background: url("../img/train_icon.svg")no-repeat center center / cover;
	width: 72px;
	height: 96px;
	display: block;
	margin: 0 auto 20px;
}
.work_wrap.bus::before{
	background: url("../img/bus_icon.svg")no-repeat center center / cover;
	width: 69px;
	height: 96px;
}

.work_wrap .work{
	margin-bottom: 50px;
}
.work_wrap .text{
	max-width: 720px;
	margin: 0 auto;
	line-height: 2;
}
.work_wrap .text p{
	margin-bottom: 0.5em;
}

.grandprix.train,
.excellence.train,
.honorable.train{
	margin-bottom: clamp(80px, (100vw/var(--pc)), 100px);
}
.grandprix.bus,
.excellence.bus,
.honorable.bus{
	margin-bottom: clamp(120px, (150vw/var(--pc)), 150px);
}
.grandprix .work_wrap .text{
	padding-left: 7%;
	margin: 0;
	max-width: inherit;
}
.honorable .work img{
	width: 94.5%;
}

/*==============================================
フッター
===============================================*/
footer{
	background-color: #fff;
	font-size: 1.6rem;
	padding: 50px 5%;
	box-sizing: border-box;
	display: flex;
	justify-content: space-between;
	line-height: 1.6;
	position: relative;
}
footer p:nth-child(1){
	font-size: 2rem;
	font-weight: bold;
	margin-bottom: 0.5em;
}
footer p:nth-child(2){
	font-weight: bold;
	margin-bottom: 0.5em;
}
footer p:nth-child(3){
	margin-bottom: 0.5em;
}
footer .right{
	width: 100%;
	max-width: 500px;
	margin-left: 50px;
}
footer .right img{
	width: 100%;
	height: auto;
}
/*==============================================
404
===============================================*/
.notfound-wrap {
    min-height: 800px;
    position: relative;
}
.notfound {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 400px;
    width: 100%;
    text-align: center;
}
.notfound img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-bottom: 50px;
}
.notfound p {
    font-size: 1.6rem;
    margin-bottom: 80px;
    text-align: left;
}
.notfound .more {
    margin: 0 auto;
    display: inline-block;
}
.notfound a {
    background-color: #646464;
    color: #fff;
    padding: 1em 2em;
    font-size: 1.4rem;
    margin: 0 auto;
}
/*==============================================
画面の横幅が820pxまで
===============================================*/
@media only screen and (max-width:820px) {
    .sp-none {
        display: none;
    }
    .pc-none {
        display: block;
    }
/*==============================================
ヘッダー
===============================================*/
header{
	margin-bottom: clamp(100px, (150vw/var(--sp)), 150px);
}
main picture img{
	width: 80%;
	max-width: 640px;
	padding: 10% 0 0;
}

/*==============================================
index
===============================================*/
.interview_wrap{
	width: 90%;
	max-width: 640px;
	margin: 0 auto clamp(100px, (150vw/var(--sp)), 150px);
}
.intro span{
	font-size: clamp(18px, (22vw/var(--sp)), 22px);
}
.intro{
	font-size: 1.4rem;
	line-height: 1.6;
	margin-bottom: clamp(80px, (100vw/var(--sp)), 100px);
}
.judges{
	font-size: 1.4rem;
	margin-bottom: clamp(100px, (150vw/var(--sp)), 150px);
}
.judges.flex{
	display: block;
}
.judges .member{
	width: 100%;
	margin-bottom: clamp(35px, (50vw/var(--sp)), 50px);
	max-width: 400px;
}
	.judges .member:nth-child(3){
		margin-left: auto;
	}
.judges .member .flex{
	display: block;
	margin-bottom: 0.5em;
}
	.judges .member .flex .name{
		font-size: 1.6rem;
	}
.judges .member .image{
	margin-right: 0;
	margin-bottom: 15px;
}
.judges .member .text{
	font-size: 1.4rem;
}
/*==============================================
作品
===============================================*/
.work_wrap{
	max-width: 560px;
	margin: 0 auto clamp(35px, (60vw/var(--sp)), 60px);
}
.work_wrap.train::before,
.work_wrap.bus::before{
	width: 65px;
	height: 86px;
}
.work_wrap.bus::before{
	background: url("../img/bus_icon.svg")no-repeat center center / cover;
	width: 65px;
	height: 90px;
}
.work_wrap .work{
	margin: 0 auto 15px;
}
.work_wrap .text{
	max-width: inherit;
	line-height: 1.6;
}
.grandprix.train,
.excellence.train,
.honorable.train{
	margin-bottom: clamp(50px, (80vw/var(--sp)), 80px);
}
.grandprix.bus,
.excellence.bus,
.honorable.bus{
	margin-bottom: clamp(80px, (100vw/var(--sp)), 100px);
}
.grandprix .work_wrap .text{
	padding-left: 0%;
}
	.honorable .work{
		text-align: center;
	}
/*==============================================
フッター
===============================================*/
footer{
	font-size: 1.4rem;
	padding: 35px 5%;
	display: flex;
	flex-direction: column;
	position: relative;
}
footer p:nth-child(1){
	font-size: 1.6rem;
	line-height: 1.5;
}
	footer .left{
		order: 2;
	}
footer .right{
	margin-left: 0;
	max-width: 400px;
	width: 65%;
	order: 1;
	margin-bottom: 30px;
}
}