﻿@charset "UTF-8";
@keyframes fadeInAnime{
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
@keyframes fadeDownAnime{
	0% {
		opacity: 0;
		transform: translateY(-10px);
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
#interview_wrap {
	border: 1px solid ;
	padding: 5% ;
}

h1 {
	opacity: 0;
	animation: fadeDownAnime 1s ease 1s forwards
}
h2 {
	font-size: clamp(20px, 4vw, 30px);
	font-weight: bold;
	padding: 5px 0px;
	line-height: 1.4;
	margin: 4rem auto 1.5rem;
	background: #fff000;
	text-align: center;
}
h3{
	background: rgb(255 250 194);
    padding: 5px 10px;
    border: solid 2px #fff000;
    font-size: clamp(18px, 3vw, 26px);
    font-weight: bold;
	text-align: center;
}
h4{
	font-size: clamp(18px, 3vw, 24px);
    font-weight: bold;
}
p {
	font-size: clamp(16px, 1.8vw, 18px);
	line-height: 1.6;
	margin-bottom: 1.5rem;
}
figure {
	width: 100%;
    margin: 0 auto;
	margin-bottom: 2rem;
}
figcaption {
	font-size: clamp(14px, 1.2vw, 18px);
	line-height: 1.6;
	margin: 5px auto 20px;
}
iframe{
	width: 100%;
}
@media (max-width:768px) {
	iframe{
	height: 240px;
}
}
span {
	display: inline-block;
}
.header_logo{
    text-align: center;
	margin: 10px auto;
}
@media screen and (min-width: 560px) {
	.header_logo {
		width: 560px;
		margin: 20px auto;
	}
}
#interview_wrap img {
	width: 100%;
	height: auto;
	display: block;
	margin: 0px auto;
	opacity: 0;
	animation-name: fadeInAnime;
	animation-fill-mode: forwards;
	animation-duration: 3s;
	animation-iteration-count: 1;
	animation-timing-function: ease;
	animation-delay: 0.5s;
	animation-direction:normal;
}
#interview_wrap img.w80 {
	width: 80%;
}


.interview_theme{
	background: #fff000;
	margin-bottom: 0.8rem;
	padding: 2px 10px;
	letter-spacing: 0.05em;
	font-weight: 500;
	width: fit-content;
	
}
.interview_title{
	font-size: clamp(25px, 5vw, 38px);
	font-weight: bold;
	line-height: 1.3;
	margin-bottom: 1.5rem;
}
.message{
	background: rgb(255 250 194);
    padding: 10px;
}
.info{
	margin: 20px auto;
}
table {
  table-layout: fixed;
  width: 100%;
}
.profile-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}

.profile-table th,
.profile-table td {
  border: 1px solid #ccc;
  padding: 6px;
  text-align: left;
  font-size: 14px;
}

.profile-table th {
  background-color: #f0f0f0;
  width: 30%;
  font-size: clamp(14px, 1.5vw, 16px);
}
td a {
  display: inline-block;
  max-width: 100%;      
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.footer_navi {
}
.footer_navi:after{
	content:".";display:block;height:0;clear:both;visibility:hidden;
}