@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    line-height: 1.5;
    font-family: "Noto Sans JP", sans-serif;
    color: #040315;

}

a {
    text-decoration: none;
    color: inherit;
}

ul, ol {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

input, button, textarea {
    appearance: none;
    -webkit-appearance: none;
    border: none;
    background: none;
}

/* common */
/* 共通コンテンツ幅 */
.inner{
    padding: 0 60px;
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
}

/* 十字アイコン */
.icon{
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    position: relative;
    transition: all 0.3s;
}

.icon::before{
    position: absolute;
    content: "";
    width: 11px;
    height: 1px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon::after{
    position: absolute;
    content: "";
    width: 1px;
    height: 11px;
    background: #000;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.icon.active::after{
    transform: translate(-50%, -50%) rotate(90deg);
}

/* タイトル */
.title{
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #030049;
}

.title__en{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 10px;
    line-height: 100%;
    letter-spacing: 0.03em;
}

.title__jp{
    font-family: "ten-mincho-antique", sans-serif;
    font-weight: 500;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0.05em;
}

/* 出しわけ */
.pc{
    display: block;
}

.sp{
    display: none;
}
@media(min-width: 991px){
    .spOnly{
        display: none !important;
    }
}
@media(max-width: 991px){
    .pcOnly{
        display: none !important;
    }
}
.btnarea{
    text-align: right;
    margin-top: 50px;
}

.btn{
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    border-bottom: 1px solid #030049;
    padding-bottom: 20px;
}

.btn__text{
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0.1em;
    color: #030049;
}

.btn__icon{
display: flex;
background: #030049;
width: 40px;
height: 19px;
justify-content: center;
align-items: center;
border-radius: 5px;
transition: all 0.3s ease;
}

.btn__icon img{
    display: block;
}

.btn:hover .btn__icon{
    transform: translateX(10px);
}

@media (max-width: 768px) {
    .inner{
        padding: 0 20px;
    }

    .title__jp{
        font-size: 28px;
    }

    .pc{
        display: none;
    }

    .sp{
        display: block;
    }
    .btnarea{
        text-align: right;
        margin-top: 50px;
    } 
}

html , body{
    scroll-behavior: smooth;
    scroll-padding-top: 95px;
}

@media (max-width: 768px) {
    html , body{
        scroll-padding-top: 94px;
    }
}

section {
    opacity: 0;
    transform: translateY(40px);
    transition: all 3s ease;
    filter: blur(8px);
    will-change: transform, opacity, filter;
}
section.visible {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0px);
}

.interview__title{
	flex-shrink: 0;
	padding: 0 20px;
}

.under-interview-section{
	margin-top: 100px;
	border-top: 1px solid #DADAE0;
}



@media (max-width: 768px) {
.interview__title{
	padding: 0 20px;
	margin-bottom: 30px;
}
	.under-interview-section{
	margin-top: 50px;
		padding-top: 50px;
}
}