@charset "UTF-8";

.fade-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.4s ease-out, transform 0.4s ease-out;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

section.page_title_area {
    padding: 160px 0 40px;
    border-bottom: 1px solid #ddd;
}

.page_title_area h1 {
    font-size: 6rem;
    font-weight: 600;
    color: #000;
    letter-spacing: -1px;
    max-width: 1100px;
    display: flex;
    width: 90%;
    justify-content: space-between;
    margin: 0 auto;
    font-family: "Work Sans", sans-serif;
    align-items: center;
}

.page_title_area h1 span {
    font-size: 1.8rem;
    letter-spacing: 0;
    margin-left: 15px;
    font-weight: 700;
}

.interview_inner {
    padding: 80px 5%;
    margin: 0 auto;
}

.interview_mv.mv_001 img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

ul.interview_list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 auto;
}

ul.interview_list li {
    width: 24.5%;
    margin: 0 0.25% 4%;
}

ul.interview_list li a {
    display: block;
    color: #000;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

ul.interview_list li a:hover .interview_thumb img {
	transform: scale(1.05);
}

ul.interview_list li a .interview_thumb:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: "";
	display: block;
	opacity: 0;
	background: #0426A0;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
	transform: scale(0);
}

ul.interview_list li a:hover .interview_thumb:after {
	opacity: 1;
	mix-blend-mode: overlay;
}

ul.interview_list li a:hover  {
	opacity: 0.75;
}

ul.interview_list li a h2 {
    font-weight: 600;
    font-size: 1.9rem;
    padding: 16px 5%;
    line-height: 28px;
}

.interview_category {
    width: max-content;
    font-size: 1.2rem;
    font-weight: 500;
    border-radius: 3px;
    border: 1px solid;
    padding: 2px 10px 0px;
    margin: 20px 5% 0;
}

ul.interview_list li a h2 span {
    display: block;
    font-weight: 300;
    font-size: 1.3rem;
    margin-top: 10px;
    line-height: 20px;
    letter-spacing: 1px;
    color: #666;
}

.interview_thumb {
    width: 100%;
	background: #0426A0;
	overflow: hidden;
	position: relative;
}

.interview_thumb img {
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

ul.interview_list li {
    width: 32.8%;
}

/*インタビュー詳細ページ*/
.interview_client {
    font-weight: 600;
    font-size: 3.5rem;
    display: block;
    margin: 0 auto 30px;
    align-items: center;
    max-width: 1500px;
    padding-top: 80px;
}

.interview_client span {
    font-size: 2rem;
    display: block;
    font-family: "Work Sans", sans-serif;
    font-weight: 300;
    margin-bottom: 10px;
    background: #000;
    padding: 2px 15px;
    width: max-content;
    color: #fff;
}

.interview_mv {
    width: 100%;
    height: 550px;
    margin: 30px auto 0;
    max-width: 1500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.interview_mv img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.interview_mv:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.4) 100%);
}

.interview_head {
    background: #000;
    color: #fff;
    padding: 50px;
    margin: 0 auto;
    max-width: 1500px;
}

h2.interview_title {font-size: 3rem;font-weight: 500;line-height: 44px;margin-bottom: 2%;text-align: justify;}

.interview_head_title {
    width: 100%;
}

.interview_head_info {
    width: 100%;
    display: flex;
    justify-content: end;
}

.interview_head_name_position {
    width: 35%;
    font-size: 1.2rem;
}

ul.interview_head_name {
    margin-bottom: 20px;
}

ul.interview_head_name li {
    font-size: 1.2rem;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    position: relative;
    margin: 0 0 8px 0;
    padding-left: 10px;
}

ul.interview_head_name li span {
    font-weight: 300;
    font-size: 1.2rem;
    margin-left: 0;
    width: 60%;
}

.interview_date {
    display: flex;
    text-align: right;
    font-family: "Work Sans", sans-serif;
    color: #999;
    font-size: 1.2rem;
    align-items: center;
    letter-spacing: 0.5px;
}

.interview_date span {
    font-size: 1.2rem;
    margin-right: 7px;
    background: #444;
    color: #ccc;
    padding: 2px 10px;
}

ul.interview_head_name li:before {
    content: "";
    display: block;
    width: 4px;
    height: 4px;
    top: 7px;
    background: #fff;
    border-radius: 100px;
    position: absolute;
    left: 0;
}

.interview_middle {
    margin: 50px 0;
}

p.interview_middle_lead {
    font-size: 1.5rem;
    max-width: 900px;
    line-height: 28px;
    margin: 0 auto;
    font-weight: 500;
    text-align: justify;
}

ul.interview_profile li {
    padding: 16px;
    border-radius: 8px;
    background: #fff;
    width: 49%;
    display: flex;
    box-shadow: 8px 8px 20px rgba(0,0,0,0.025);
    margin: 0.5%;
    align-items: center;
}

.interview_profile_thumb {
    width: 14%;
    background: #000;
    height: 57px;
    overflow: hidden;
    border-radius: 100%;
}

.interview_profile_name {
    font-size: 1.8rem;
    font-weight: 500;
    display: block;
}

.interview_profile_name span {
    font-size: 1.2rem;
    font-weight: 400;
    display: block;
    border-left: 1px solid;
    margin-top: 4px;
    padding-left: 7px;
}

.interview_profile_detail p {
    line-height: 20px;
    color: #666;
    font-size: 1.2rem;
}

.interview_profile_detail {
    width: 82%;
    margin-left: 4%;
}

ul.interview_profile {
    max-width: 900px;
    margin: 50px auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.interview_index_title {
    text-align: center;
    border-bottom: 1px solid #000;
    padding: 12px 0;
    font-size: 1.8rem;
    font-family: "Work Sans", sans-serif;
    font-weight: 500;
}

.interview_index {border: 1px solid #000;border-radius: 6px;max-width: 900px;margin: 0 auto;}

ul.interview_index_list {
    margin: 0 auto;
    border-radius: 6px;
    padding: 40px 50px 40px 70px;
}

ul.interview_index_list li {
    margin: 15px 0;
    list-style-type: auto;
    padding-left: 10px;
}

ul.interview_index_list li a {
    display: block;
    font-size: 1.5rem;
    color: #000;
    border-bottom: 1px solid #ddd;
    padding-bottom: 12px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

ul.interview_index_list li a:hover {
	opacity: 0.5;
}

ul.interview_index_list li:last-child a {
    border: none;
}

ul.interview_index_list li:last-child {
    margin-bottom: 0;
}

.interview_image_area_small {
    width: 300px;
    margin: 50px auto;
}

p.image_cap {
    font-size: 1.2rem!important;
    color: #555;
    margin: 5px 0 0!important;
    text-align: center;
    line-height: 18px!important;
    font-weight: 400;
}

.interview_detail {
    background: #fff;
    padding: 40px 100px 100px;
    max-width: 1200px;
    margin: 0 auto;
}

.interview_detail h3 {
    display: block;
    font-size: 3rem;
    border-left: 1px solid;
    padding: 9px 0 7px 25px;
    line-height: 48px;
    margin: 6% 0;
    font-weight: 600;
    text-align: justify;
}

.interview_recommend {
    max-width: 1000px;
    margin: 0 auto;
}

.recommend_title {
    font-size: 2.4rem;
    font-weight: 600;
    margin-bottom: 30px;
    border-left: 1px solid;
    padding-left: 15px;
}


.bottom_fit {
	margin-bottom: 0!important;
}

.interview_detail h4 {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 36px;
    margin: 0 0 6%;
    text-align: justify;
}

.interview_detail p {
    font-size: 1.5rem;
    line-height: 30px;
    margin: 0;
    padding-left: 0;
    text-align: justify;
}

p.interview_text_large {
    padding: 0 0 6% 6%;
}

p.interview_text_large_fit {
    padding: 0 0 2% 6%;
}

.interview_column_image_area img {
    height: 100%;
    object-fit: cover;
	object-position: center;
	width: 100%;
}

span.interview_text_name {
    font-weight: 600;
    margin-right: 10px;
    font-size: 1.45rem;
}

.interview_image_area {
    max-width: 100%;
    width: 100%;
    margin: 6% 0;
}

.interview_detail_column.column_reverse {
    flex-direction: row-reverse;
}

.interview_detail_column {
    display: flex;
    margin: 6% 0 6% 6%;
    align-items: stretch;
    justify-content: space-between;
}

.interview_column_text {
    width: 49%;
}

.interview_column_image_area {
    width: 43%;
}

p.m_bottom {
    margin-bottom: 4%;
}

.back_btn {
    display: block;
    background: #000;
    color: #fff;
    width: max-content;
    padding: 15px 50px;
    height: auto;
    overflow: hidden;
    position: relative;
    border-radius: 100px;
    margin: 0 auto 70px;
    text-align: center;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
}

.back_btn span {
    transition: all 0.25s ease;
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    text-align: center;
	display: block;
    color: #fff;
    font-weight: 600;
	z-index: 9999;
	position: relative;
}

.back_btn:hover {
	color: #fff;
	box-shadow: 0 15px 24px rgba(0,0,0,0.025), 0 6px 10px rgba(0,0,0,0.015);
}

.back_btn:hover span {
	color: #fff;
}

.back_btn:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #0426A0;
	content: "";
	display: block;
	left: 0;
	top: 0;
	border-radius: 100px;
	transition: all 0.25s ease;
	-webkit-transition: all 0.25s ease;
	-moz-transition: all 0.25s ease;
	-o-transition: all 0.25s ease;
}

.back_btn:hover:after {
	background: #0426A0;
	position: absolute;
	width:100%;
	height: 100%;
}

.interview_more_link {
    padding: 40px 50px;
    /* background: #fff; */
    height: auto;
    border-bottom: 1px solid #1b1b1b;
    width: 100%;
    border-top: 1px solid #1b1b1b;
    display: block;
    position: relative;
    margin: 0 auto;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
}

.others_arrow {
    width: 30px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
	position: relative;
}

.interview_more_link:hover .others_arrow {
filter:invert(100%) sepia(0%) saturate(1%) hue-rotate(348deg) brightness(107%) contrast(101%)
}
	
.interview_others_link_text p {
    color: #1b1b1b;
    font-weight: 400;
    z-index: 9999;
    font-size: 1.5rem;
    line-height: 26px;
    transition: all 0.25s ease-in-out;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
    -o-transition: all 0.25s ease-in-out;
    position: relative;
}

.interview_more_link span {
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
    display: flex;
    color: #1b1b1b;
    font-weight: 600;
    justify-content: space-between;
    z-index: 9999;
    font-size: 2rem;
    position: relative;
    border-left: 1px solid #1b1b1b;
    margin-bottom: 20px;
    padding-left: 10px;
}

.interview_more_link:hover {
	color: #fff;
	box-shadow: 0 15px 24px rgba(0,0,0,0.025), 0 6px 10px rgba(0,0,0,0.015);
}

.interview_more_link:hover span {
	color: #fff;
    border-left: 1px solid #fff;
}

.interview_more_link:after {
	position: absolute;
	width: 0;
	height: 100%;
	background: #1b1b1b;
	content: "";
	display: block;
	left: 0;
	top: 0;
	transition: all 0.25s ease-in-out;
	-webkit-transition: all 0.25s ease-in-out;
	-moz-transition: all 0.25s ease-in-out;
	-o-transition: all 0.25s ease-in-out;
}

.interview_more_link:hover .interview_others_link_text p {
	color: #fff;
}

.interview_more_link:hover:after {
	background: #1b1b1b;
	position: absolute;
	width:100%;
	height: 100%;
}


ul.interview_others_link_area {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    padding-bottom: 0;
    margin: 0 auto;
}

ul.interview_others_link_area li:first-child a {
    border-right: 1px solid #1b1b1b;
}

ul.interview_others_link_area li:nth-child(2) a {
    border-right: 1px solid #1b1b1b;
}

ul.interview_others_link_area li a {
    display: block;
    height: 100%;
}

.interview_others {
    margin: 0 auto 150px;
}

ul.interview_others_link_area li {
    margin: 0;
    width: 50%;
}

/*---------------------------------------------------------------*\
	$1100px
\*---------------------------------------------------------------*/
@media screen and (max-width: 1100px) {
	
body {
	width: 100%!important;
}
}

/*---------------------------------------------------------------*\
	$480px
\*---------------------------------------------------------------*/
@media screen and (max-width: 480px) {

.page_title_area h1 {
    font-size: 3rem;
    width: 90%;
    font-weight: 700;
    margin: 0 auto 60px;
}

section.page_title_area {
    padding: 100px 0 0;
}
	
.interview_inner {
    padding: 40px 0 0;
    margin-bottom: 60px;
}

ul.interview_list {
	justify-content: space-between;
}

ul.interview_list li {
    width: 100%;
    margin: 0 0 4%;
}
	
.interview_mv {
    height: 250px;
}

.interview_mv img {
    width: 100%;
    height: 250px;
}

.interview_client {
    padding: 15% 6% 0%;
    display: block;
    font-size: 2rem;
}

.interview_client span {
    display: block;
    width: max-content;
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.interview_mv:after {
    background: linear-gradient(180deg,rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.25) 100%);
}

.interview_head {
    display: block;
    padding: 6%;
}

.interview_head_title {
    width: 100%;
    padding: 0;
    border: none;
}

h2.interview_title {
    font-size: 2.2rem;
    margin-bottom: 6%;
    line-height: 32px;
}

.interview_head_info {
    width: 100%;
    padding-left: 0;
}

.interview_date {
    margin-top: 6%;
}

.interview_middle {
    padding: 6%;
    margin: 6% 0;
}

ul.interview_profile li {
    padding: 4%;
    margin: 3% 0;
    width: 100%;
}

ul.interview_profile {
    margin: 10% 0 0;
    display: block;
}

.interview_profile_thumb {
    width: 50px;
    height: 50px;
}

.interview_profile_detail {
    width: 80%;
    margin-left: 5%;
}

.interview_profile_detail p {
    font-size: 1.1rem;
    line-height: 18px;
}

.interview_profile_name span {
    font-size: 1.2rem;
    line-height: 16px;
    padding-left: 6px;
}

.interview_profile_name {
    font-size: 1.6rem;
}

.interview_detail {
    padding: 12% 6%;
}

.interview_detail h3 {
    font-size: 2rem;
    line-height: 30px;
    padding-left: 15px;
    margin-bottom: 8%;
}

.interview_detail h4 {
    font-size: 1.6rem;
    line-height: 28px;
    margin: 8% 0;
}

.interview_mv.mv_001 img {
    height: 250px;
}

.interview_head_name_position {
    width: 25%;
}

ul.interview_head_name li span {
    width: 75%;
}

.interview_image_area_small {
    width: 100%;
    margin: 8% auto;
}

.interview_image_area {
    /* margin: 8% 0; */
}

.interview_detail_column {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    margin: 0;
    flex-direction: column-reverse;
}

.interview_column_image_area {
    width: 100%;
    margin: 8% auto;
}

.interview_column_text {
    width: 100%;
}
	
.interview_index {
    margin: 5% 0;
}

ul.interview_index_list {
    padding: 2% 6% 2% 11%;
}

ul.interview_index_list li a {
    font-size: 1.3rem;
    line-height: 22px;
    padding-bottom: 4%;
}

.interview_index_title {
    padding: 3% 0;
}

ul.interview_index_list li {
    margin: 4% 0;
}

.interview_detail_column.column_reverse {
    flex-direction: column-reverse;
}

p.interview_text_large_fit {
    padding: 0 0 2% 0;
}

p.interview_text_large {
    padding: 0 0 6% 0;
}
	
.interview_recommend {
    margin: 12% auto 6%;
    width: 90%;
}

.recommend_title {
    font-size: 2rem;
}
	
.interview_others {
    margin: 0;
}

ul.interview_others_link_area {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding-bottom: 10vh;
}

.interview_more_link {
        padding: 30px 6%;
        border-bottom: none;
}

ul.interview_others_link_area li {
    width: 100%;
    margin: 0 auto;
}

ul.interview_others_link_area li:first-child a {
    border-right: none;
}

ul.interview_others_link_area li:nth-child(2) a {
    border-right: none;
}
	
ul.interview_others_link_area li:last-child a {
    border-bottom: 1px solid #1b1b1b;
}

}