@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: #fff;
    line-height: 1.8;
}
:root {
    --main: #009FE8;
    --sub: #00a5e0;
    --pc: 14.4;
    --sp: 8.2;
}
*:focus {
    outline: none;
}
body {
    display: none;
}
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);
}
/*==============================================
ヘッダー
===============================================*/
#interview_1 header{
	background: url("../img/interview_1-main.jpg")no-repeat center center / cover;
	position: relative;
	/*outline: 20px solid #fff;
	outline-offset:-20px*/
}

#interview_1 .copy{
	font-size: clamp(60px, (110vw/var(--pc)), 110px);
	font-weight: 900;
	color: #c70028;
	color: #fff;
	line-height: 1.3;
	position: absolute;
	left: 2.5%;
	bottom: 5%;
	letter-spacing: 8px;
	z-index: 90;
	white-space: nowrap;
	text-shadow: 5px 5px 30px rgba(0,0,0,0.25)
}
/*==============================================
アニメーション
===============================================*/
.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)
    }
}

/*==============================================
index
===============================================*/
.interview_wrap{
	background-color: #fff;
}
.contaner {
    width: 90%;
    max-width: 1000px;
	font-size: clamp(14px, (16vw/var(--pc)), 16px);
	margin: 0 auto;
	padding: clamp(120px, (150vw/var(--pc)), 150px) 0;
}
.intro{
	margin-bottom: clamp(120px, (150vw/var(--pc)), 150px);
	line-height: 2;
}
.chapter_title{
	font-size: clamp(32px, (36vw/var(--pc)), 36px);
	letter-spacing: 5px;
	margin-bottom: 5rem;
	font-weight: 700;
	line-height: 1.5;
}
section{
	margin-bottom: clamp(60px, (80vw/var(--pc)), 80px);
	line-height: 2;
}
.interview{
	color: #005bac;
	margin-bottom: 0.5em;
	text-indent: -40px;
	padding-left: 40px;
}
.interview::before{
	content: '';
	width: 30px;
	height: 1px;
	background-color: #005bac;
	display: inline-block;
	vertical-align: 0.35em;
	margin-right: 10px;
}
.answer{
	text-indent: 1em;
}
.parallax{
	width: 100%;
	position: fixed;
	height: 100vh;
	top: 0;
	left: 0;
	z-index: -1;
	background-color: #fff;
}
.parallax#image1{
	background: url("../img/parallax01.jpg")no-repeat center center / cover;
}
.parallax#image2{
	background: url("../img/parallax02.jpg")no-repeat center center / cover;
}
.parallax#image3{
	background: url("../img/parallax03.jpg")no-repeat center center / cover;
}
/*==============================================
フッター
===============================================*/
footer{
	background-color: #DEF5FF;
	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{
	margin-left: 50px;
	width: 100%;
	max-width: 300px;
}
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;
    }
/*==============================================
ヘッダー
===============================================*/
	
#interview_1 header{
	outline: 15px solid #fff;
	outline-offset:-15px
}
#interview_1 .copy{
	font-size: clamp(35px, (75vw/var(--sp)), 75px);
	left: calc(5% + 15px);
	bottom: calc(5% + 15px);
	letter-spacing: 3px;
	white-space:inherit;
	line-height: 1.5;
}
/*==============================================
index
===============================================*/
.contaner {
    max-width: 800px;
	padding: 30px 0 clamp(50px, (80vw/var(--sp)), 80px) ;
}
.intro{
	margin-bottom: clamp(50px, (80vw/var(--sp)), 80px);
}
.chapter_title{
	font-size: clamp(20px, (28vw/var(--sp)), 28px);
	letter-spacing: 3px;
	margin-bottom: 3rem;
}
section{
	margin-bottom: clamp(45px, (60vw/var(--sp)), 60px);
}
.interview{
	text-indent: -30px;
	padding-left: 30px;
	line-height: 1.7;
}
.interview::before{
	width: 20px;
}
.answer{
	line-height: 1.7;
}
/*==============================================
フッター
===============================================*/
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: 220px;
	order: 1;
	margin-bottom: 30px;
}
}