@charset "UTF-8";
/* ---------- variables （変数）---------- */
:root{
  --baseColor: #155aa8;
  --contact_button: #74a9f2;
  --textColor: #1a1a1a;
  --colorWhite: #fefefe;
  --colorbackground_blue: #f3f7f9;
  --colorbackground_gray: #f9f9f9;
  --info_category_gray: #f1f1f1;
  --info_underline:#dadada;
  --recruit_button_background:#c4e5f4;
  --recruit_button_gray:#898686;
  --breadcrumds_gray:#d2d2d2;
  --year_gray:#8b8b8b;
  --root-font-size: 16;
}

/* ---------- common ---------- */
*,
*::before,
*::after{
  box-sizing: border-box;
  /* outline: 2px solid blue; */
}
html, body {
  height: 100%;
}
body,h1,h2,h3,h4,h5,ul,ol {
    margin: 0;
    padding: 0;
}
body{
	font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans", 'Montserrat', "Yu Gothic", "Yu Gothic Medium", "Yu Gothic"," Meiryo", sans-serif; 
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 350;
	color: var(--textColor);
  overflow-x: hidden;
  height: auto;
  margin: 0 auto;
}

h2,h3,nav{
  font-family: "Inter", sans-serif;
	color: var(--baseColor);
	letter-spacing: 0.05em;
	overflow-wrap: break-word;
}
h2{
	font-size: 2.5rem;
}
h3{
	font-size: 1rem;
  margin-bottom: 2rem;
  font-family: "Noto Sans JP", sans-serif;
}
h4{
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
h5{
	margin-bottom: 8px;
  font-size: large;
}
p{
  letter-spacing: .04em;
  line-height: 1.7;
}

#container,
#interview .wrapper_section,
#link .wrapper_section,
.footer_wrapper{
  max-width: 1240px;
  margin: 0 auto;
}
#container_interview_member_underlayer,
.member_h1{
  max-width: 1150px;
  margin: 0 auto;
}
section{
  margin-bottom: 20px;
}
section .section_title{
  font-size: 4.375rem;
  font-weight: 600;
  letter-spacing: .3rem;
  opacity: 0.5;
  margin-bottom: -2px;
}
.wrapper_section,
.member_h1{
  padding: 0 1.5rem;
}
/* /common */

header{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
  background-color: hsla(0, 0%, 100%, .8);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding-left: 12px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.hamburger,
.recruit_btn{
  display: none;
}
header img{
  vertical-align: middle;
  height: 69px;
  width: auto;
}

/* メニューのレイアウト */
.nav-menu{
  display: flex;
}
.title_logo:hover{
  opacity: .7;
}
.menu_text{
  font-family: "Noto Sans JP", sans-serif;
}
.menu-list .menu_text_sub{
  display: block;
  color: var(--baseColor);
  font-weight: 700;
  font-size: 12px;
  opacity: .5;
}
.menu-recruit .menu_text_sub,
.menu-contact .menu_text_sub{
  display: block;
  color: var(--colorWhite);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .1rem;
}
nav ul{
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
nav ul li a{
	color: var(--textColor);
	text-decoration: none;
	font-size: 16px;
  letter-spacing: 0.05em;
  display: inline-block;
  padding: 1em 1em;
  position: relative;
  text-align: center;
}
nav ul li a:hover{
  color: var(--baseColor);
  font-weight: bold;
}
nav ul li:nth-last-child(3){
  background-color: var(--baseColor);
}
nav ul li:nth-last-child(2){
  background-color: var(--contact_button);
  width: 201px;
}
nav ul li:nth-last-child(3):hover,
nav ul li:nth-last-child(2):hover{
  opacity: 0.9;
}
nav ul li:last-child{
  display: none;
}
.recruit_text_color,
.contact_text_color{
  color: var(--colorWhite);
  font-family: "Noto Sans JP", sans-serif;
}
.menu_text_sub img,
.recruit_btn img{
  width: 1.1rem;
  height: auto;
  padding: 0 0 0 .2rem;
  vertical-align: text-bottom;
}
.recruit_btn img{
  vertical-align: baseline;
}
/* 真ん中から線が出る */
nav a::after {
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  background-color: var(--baseColor);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  margin: auto;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-timing-function: ease;
  transition-duration: .4s;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
}
nav a:hover::after {
  transform: scale(1, 1);
}
.menu-recruit a::after,
.menu-contact a::after{
 background: var(--colorWhite);
}
/* /真ん中から線が出る */
/* /メニューのレイアウト */

section:nth-child(n+2){
	padding: 3rem 0;
}
.flex{
	display: flex;
	justify-content: center;
}
.flex p{
	margin: 0;
}
.text {
	display: inline-block;
	text-align: left;
}

/* .header */
/* コピーとサイトタイトル */
#header{
  position: relative;
  height: 600px;
  margin-right: auto;
  padding: 0;
  z-index: 1;
  display: block;
  width: 100vw;
  height: auto;
  margin-left: calc(50% - 50vw);
}
#header_sp{
  display: none;
}
#header img{
  width: 100vw;
  margin-top: 69px;
}
.catchphrase_wrapper{
  max-width: 1240px;
  padding: 0 1.5rem;
}
.catchphrase_h1{
  color: var(--baseColor);
  width: 65%;
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 2;
}
.catchphrase{
  display: inline;
  font-size: 2.5vw;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 0;
  padding: 0 0 0 10px;
  color: var(--colorWhite);
  background-color: var(--baseColor);
}
.catchphrase_h1 h1{
  font-size: 4vw;
  line-height: 1.3;
  font-weight: 500;
  text-shadow: 1px 1px 0 var(--colorWhite), -1px -1px 0 var(--colorWhite),
  -1px 1px 0 var(--colorWhite),  1px -1px 0 var(--colorWhite),
  1px 0 0 var(--colorWhite), -1px  0 0 var(--colorWhite),
  0 1px 0 var(--colorWhite),  0 -1px 0 var(--colorWhite);
}
.text_small{
  font-size: 2vw;
}
.letter-spacing{
  letter-spacing: -2px;
}
/* /コピーとサイトタイトル */
/* /.header */

/* information */
#information{
  padding: 1rem 0;
}
.info_title h2{
  white-space: nowrap;
}
.info_h3{
  margin-bottom: 0;
}
.info_title{
  align-items: center;
}
#information .flex{
  width: 90%;
  align-items: center;
  margin: 0 auto;
}
.info_time_p{
  display: contents;
  align-items: center;
  padding-left: 2rem;
}
.info_time_p p,
time{
  padding-left: 1.5rem;
}
.info_time_p a{
  text-decoration: none;
  color: var(--textColor);
}
.info_article_title{
  overflow: hidden;       
  text-overflow: ellipsis; 
  white-space: nowrap;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
.info_article_title a{
  text-overflow: ellipsis;
}
/* NEWを入れる場合。2パターン */
/* .info_article_title a::before{
  content: "NEW";
  background-color: #b91433;
  color: var(--colorWhite);
  display: inline-block;
  line-height: 1em;
  padding: 4px 7px;
  font-size: 16px;
  margin-right: .5rem;
  border-radius: 3px;

  content: "NEW!";
  color: #b91433;
  display: inline-block;
  line-height: 1em;
  padding: 4px 7px;
  font-size: 16px;
  font-weight: 700;
  margin-right: 10px;
} */

.info_article_title a:hover{
  font-weight: 700;
  color: var(--baseColor);
}
.info_article_title a:hover:before{
  font-weight: normal;
}
.info_time_p_wrapper{
  align-items: center;
}
.info_category,
.info_category_gray{
  background-color: var(--baseColor);
  color: var(--colorWhite);
  width: 10rem;
  display: block;
  padding: 8px 0;
  text-align: center;
  border-radius: 2px;
}
.info_category:hover,
.info_category_gray:hover{
  opacity: .8;
}
.info_category_gray{
  background-color: var(--info_category_gray);
  color: var(--textColor);
}
/* /information */

/* message */
#message{
  overflow: hidden;
  background-image: url(images/kanagawa.png);
  background-repeat: no-repeat;
  background-position: 100% 60%;
  background-size: 45rem;
  padding-bottom: 3rem;
}
.message_p_wrapper_sp{
  display: none;
}
.message_p_wrapper p{
  /* line-height: 2.3; */
  line-height: 2;
  font-weight: 450;
}
.message_link a{
  color: var(--baseColor);
  font-weight: normal;
}
.message_link a:hover{
  font-weight: 700;
  transition: 0.5s;
}
.font_big{
  font-size: 1.5rem;
  font-weight: 500;
}
/* /message */

/* interview */
#interview,
#link{
  background-color: var(--colorbackground_blue);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
/* interview card */
.introduction_card_wrapper{
  margin-right: 5%;
}
.introduction_card{
  width: 360px;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
#interview .flex{
  justify-content: space-evenly;
}
.introduction_card a{
  text-decoration: none;
}
.introduction_img_wrapper{
  width: 360px;
  height: 341px;
  position: relative;
  text-align: center;
  max-width: 500px;
  overflow: hidden;
}
.introduction_img_wrapper img{
  height: auto;
  transition: transform .6s ease; 
}
.introduction_img_wrapper:hover img{
  transform: scale(1.1); 
}
.introduction_img_title span{
  width: 100%;
  position: absolute;
  color: var(--colorWhite);
  font-size: 18px;
  bottom: 20px;
  left: 0%;
  padding: 1rem; 
  text-shadow: var(--textColor) 1px 1px 10px,
  var(--textColor) -1px -1px 10px,var(--textColor) 1px 1px 20px;
}
.introduction_img_wrapper img{
  width: 100%;
}
.introduction_img_title{
  overflow: hidden;
}
.zoom_box img{
  overflow: hidden;
}
.zoom_img img:hover{
  transform:scale(1.3);
	transition:0.3s;
}
.introduction_img_affiliation{
  position: absolute;
  color: var(--colorWhite);
  font-size: 16px;
  bottom: 0;
  left: 0;
  background: #333333; 
  padding: 2px 9px; 
}
.introduction_text_box{
  background-color: var(--colorbackground_gray);
}
.introduction_text_box_inner{
  padding: 20px;
  text-align: left;
}
.introduction_text_box_inner p{
  margin: 0;
}
.member_joining{
  color: #8b8b8b;
  font-size: 16px;
}
.member_name{
  color: var(--textColor);
  font-size: 20px;
  font-weight: 500;
  padding: 10px 0;
}
.member_namesub_englishFont{
  color: var(--baseColor);
  font-size: 16px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
}
/* /interview card */
/* /interview */

/* interview,pr_movie btn */
#interview .button,
#pr_movie .button{
  padding: 3rem 0;
}
#interview .button a,
#pr_movie .button a{
  background: var(--colorWhite);
  border-radius: 3px;
  border: 2px solid var(--baseColor);
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 250px;
  padding: 10px 25px 10px 0px;
  text-decoration: none;
  color: var(--baseColor);
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}
#interview .button a:after,
#pr_movie .button a:after{
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
#interview .button a:hover,
#pr_movie .button a:hover{
  background: var(--baseColor);
  color: var(--colorWhite);
}
#interview .button a:hover:after,
#pr_movie .button a:hover:after{
  right: 1.4rem;
}
/* /interview,pr_moview btn */

/* interview_member_underlayer btn */
#interview_member_underlayer .button{
  padding: 3rem 0;
}
#interview_member_underlayer .button a{
  background: var(--colorWhite);
  border-radius: 3px;
  border: 2px solid var(--baseColor);
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: auto;
  max-width: 250px;
  padding: 10px 0px 10px 25px;
  text-decoration: none;
  color: var(--baseColor);
  line-height: 1.8;
  transition: 0.3s ease-in-out;
  font-weight: 700;
}
#interview_member_underlayer .button a::before{
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  left: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: left 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(-135deg);
}
#interview_member_underlayer .button a:hover{
  background: var(--baseColor);
  color: var(--colorWhite);
}
#interview_member_underlayer .button a:hover::before{
  left: 1.4rem;
}
/* /interview_member_underlayer btn */

/* pr_movie */
.youtube {
  width: 90%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}
#pr_movie .arrow {
  margin: 0 auto;
  padding-top: 2rem;
}
/* /pr_movie */

/* recruit */
#recruit h4,
#recruit h5,
.recruit_text {
  text-align: center;
}
.recruit_title_small{
  font-size: 35px;
}
#recruit h5{
  font-size: 23px;
}
.recruit_text_wrapper{
  display: block;
  text-align: center;
}
.recruit_text{
  text-align: left;
  display: inline-block;
}
.text_icon,
.text_icon_job_posting{
  vertical-align: middle;
  padding: 0 .5rem .5rem .5rem;
}
.text_icon_job_posting{
  width: 60px;
  height: auto;
}
#recruit .time{
  text-align: end;
}

/* recruit btn */
.button-box{
  margin-top: 1rem;
}
.button .button-wrapper{
  cursor: pointer;
  border-radius: 9999px;
  position: relative;
  display: flex;
  align-items: center;
  margin: auto;
  /* max-width: 330px; */
  max-width: 400px;
  padding: 5px 20px;
  text-decoration: none;
  border: 2px solid var(--baseColor);
  background-color: var(--colorWhite);
}
.button a{
  text-decoration: none;
}
.button-wrapper p{
  display: contents;
  color: var(--baseColor);
  font-size: 19px;
}
.button .button-wrapper:after{
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 1.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  color: var(--baseColor);
  border-top: solid 2px;
  border-right: solid 2px;
  transform: translateY(-50%) rotate(45deg);
}
.button .button-wrapper:hover:after {
  right: 1.4rem;
}
.button-icon-wrapper{
  margin: 0 30px 0 auto;
  align-items: center;
  justify-content: center;
  display: flex;
}
.button .button-wrapper img{
  width: 42px;
  height: auto;
  padding-left: 2px;
}
/* /recruit btn */

/* recruit btn background */
.section-button{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
}
.button-box{
  background-color: var(--recruit_button_background);
  padding-top: 20px;
  border-radius: 25px;
  width: 32%;
  text-align: center;
}
.title{
  display: block;
  color: var(--textColor);
  font-size: 23.39px;
}
.button-box-title{
  display: block;
  padding: 8px;
  margin: 0 40px;
  background-color: var(--colorWhite);
}
.button-box-p{
  max-width: 310px;
  display: inline-block;
  text-align: left;
  font-size: 17px;
  padding: 10px;
}
input {
  display: none;
}
.toggle {
  padding: 8px 10px 15px 10px;
  list-style: none;
  background: var(--recruit_button_background);
  border-radius: 25px;
}
.button:hover{
  opacity: 0.9;
}
.toggle li {
  padding: 4px;
}
/* リクルートページを持っていない社協の表示コード */
.gray a,
.gray p{
  color: var(--recruit_button_gray);
  cursor: unset;
}
.gray .button .button-wrapper::after{
  display: none;
}
.gray .button .button-wrapper{
  border: 2px solid var(--recruit_button_gray);
  cursor: unset;
}
.gray .button:hover{
  opacity: 1;
}
/* /リクルートページを持っていない社協の表示コード */
/* /recruit btn background */

/* sideways_slider */
#sideways_slider{
  margin-bottom: 5rem;
}

.sideways_slider_title{
  text-align: center;
}
.sideways_slider_text{
  font-family: "Kiwi Maru", serif;
  color: #535353;
  font-size: 18px;
  text-align: center;
  margin-bottom: 2.8rem;
  padding-top: .8rem;
  line-height: 2.3;
}
.sideways_slider_text_span{
  display: block;
  padding-top: 1.5rem;
}
.sideways_slider_text_sp{
  display: none;
}
/* 横スライド */
.slide-container{
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.slide-wrapper{
  display: flex;
  animation: slide-flow 80s infinite linear 1s both;
}
.slide{
  width: 300px;
  object-fit:cover;
  border: 1px solid var(--colorWhite);
}
@keyframes slide-flow {
  0% {transform: translateX(0);}
  100% {transform: translateX(-100%);}
}
/* /横スライド */
.credit{
  text-align: end;
  padding: 0;
  margin: 0;
}
/* /sideways_slider */

/* cotact */
#contact{
  display: flex;
  justify-content: center;
  
}
.contact_wrapper{
  text-align: center;
  padding: 1.5rem 4rem 2rem 4rem;
  background-image: url(images/contact_background_new.png); 
  background-size: contain;
  background-repeat:  no-repeat;
}
.inner{
  border-radius: 25px;
  display: inline-block;
  /* text-shadow: var(--contact_button) 1px 0 10px; */
  text-shadow: #468ced 1px 0 10px;
}
.contact_h2,
.contact_h3,
.contact_p{
  color: var(--colorWhite);
}
.contact_h2{
  font-size: 70px;
  font-weight: 600;
}
.contact_h3{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 1rem;
}
.contact_image img{
  width: 65%;
  height: auto;
}
.contact_fontweight{
  font-weight: 500;
  font-size: 1.05em;
  color: var(--textColor);
  background:linear-gradient(transparent 0%, #ff6 0%);
  text-shadow: none;
}
#contact .contact_btn .contact_btn_inner{
	background: none;
	border: none;
	display: block;
	margin: 0 auto;
	width: 350px;
  height: auto;
  max-width: 100%;
  height: auto;
}
#contact .contact_btn p a{
	margin: 0 auto;
	text-align: center;
}
#contact .contact_btn a {
	background: var(--colorWhite);
	border-radius: 25px;
	color: var(--textColor);
	display: flex;
	filter: brightness(120%);
	font-size: 130%;
	padding: 18px 8px;
	text-decoration: none;
	transition: .3s;
	width: 100%;
	position: relative;
	display: block;
}
.contact_text{
  text-shadow: none;
}
#contact .contact_btn a::before{
	/* 基本的に変更しないプロパティ */
	content: '';
	position: relative;
	display: inline-block;
	top: .1em;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	/* アイコンのサイズを調整するプロパティ */
	width: 1em;
	height: 1em;
	/* 表示させるアイコンのパスを指定 */
	background-image: url(images/mail_icon.png);
}
#contact .contact_btn a:hover{
	opacity: .9;
}
/* /cotact */

/* link */
#link{
  margin-bottom: 0;
}
#link .section_title{
  color: var(--colorWhite);
  text-shadow: 2px 2px 2px var(--baseColor), -2px -2px 2px var(--baseColor), -2px 2px 2px var(--baseColor), 2px -2px 2px var(--baseColor), 2px 0 2px var(--baseColor), -2px  0 2px var(--baseColor), 0 2px 2px var(--baseColor), 0 -2px 2px var(--baseColor);
  font-size: 3rem;
  letter-spacing: .1em;
  text-align: center;
  margin-bottom: 2rem;
}
#link .flex{
  width: 80%;
  margin: 0 auto;
}
.bukai_text{
  padding: 0 2rem;
  display: flex;
  align-items: center;
}
.bukai_bunner_link:hover{
  opacity: .8;
  transition: 0.5s;
}
/* /link */

/* footer */
footer{
	background-color: var(--baseColor);
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
}
.footer_h1{
  font-size: 16px;
	padding-top: 40px;
  color: var(--colorWhite);
}
.footer_wrapper{
  padding: 0 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  color: var(--colorWhite);
  background-image: url(images/kanagawa_black.png);
  background-repeat: no-repeat;
  background-size: 30rem;
}
.knsyk img{
  padding-top: 10px;
}
.knsyk_access{
  margin: 0;
}
.attribution{
  margin-top: 1rem;
}
footer nav a::after{
  display: none;
}
footer #footer_gnavi ul{
  display: block;
  height: auto;
  padding-top: 40px;
  column-count: 2;
}
footer #footer_gnavi li{
	padding: 15px 20px;
	margin-left: 0;
	list-style: none;
}
footer #footer_gnavi li:hover,
.footer_privacy_wrapper:hover{
  opacity: 0.5;
  transition: 0.5s;
}
footer nav .year_number a:hover{
  font-weight: normal;
}
footer nav ul li:last-child{
  display: block;
}
footer nav ul li:nth-last-child(3),
footer nav ul li:nth-last-child(2){
  background-color: transparent;
}

footer nav ul li:nth-last-child(2){
  width: auto;
}

footer #footer_gnavi a{
	color: var(--colorWhite);
  font-family: "Noto Sans JP", sans-serif;
	font-size: 16px;
  font-weight: 500;
  padding: 0;
  display: inline;
  border-bottom: 1px solid var(--colorWhite);
}
.footer_wrapper a{
  text-decoration: none;
  color: var(--colorWhite);
}
footer #footer_gnavi .year_number{
  padding: 0 0 10px 0;
}
footer #footer_gnavi .year_number a{
  font-weight: normal;
  text-indent:2.5em;
  border-bottom: none;
  text-decoration: none;
}
.footer_inner_wrapper{
  max-width: 1240px;
  margin: 0 auto;
}
.footer_inner{
  font-size: 14px;
  width: 100%;
  display: flex;
  align-items: baseline;
  justify-content: left;
  flex-wrap: wrap;
  color: var(--colorWhite);
  padding-top: 1rem;
  margin-bottom: .5rem;
}
.footer_privacy_wrapper{
  padding: 0 30px;
}
.copyright{
  padding-right:30px;
  border-right: 1px var(--colorWhite) solid;
  display: inline-block;
  vertical-align: top;
  background-color: transparent;
  opacity: 0.44;
}
/* Googleサイト内検索 */
.sitesearch_google{
  margin: 1rem 0 0 0;
}
.searth_inner{
  display: flex;
}
.sitesearch_google input{
  display: inline;
  /* border-radius: 3px;  */
  height: 30px;
  font-size: 16px;
}
.keyword{
  width: 70%;
}

/* /Googleサイト内検索 */

/* /footer */

/* ---------- underlayer_common ---------- */
#interview_underlayer,
#pr_movie_underlayer,
#information_underlayer,
.int_article_box_wrapper,
#privacy-policy_underlayer{
  background-color: transparent;
  margin-top: 100px;
  overflow: hidden;
  background-image: url(images/kanagawa_underlayer.png);
  background-repeat: no-repeat;
  background-position: top 55px right 0;
  background-size: 800px;
  padding-bottom: 4rem;
}
#interview_underlayer .flex,
#pr_movie_underlayer .flex,
#information_underlayer .flex{
  justify-content: flex-start;
  flex-wrap: wrap;
}
.int_article_box_width100{
  width: 100%;
}
.breadcrumds_inner{
  display: flex;
  align-items: center;
  list-style: none;
}
.breadcrumds_wrapper,
.breadcrumds_wrapper_sp{
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 2.5rem 0;
}
.breadcrumds_wrapper_sp{
  display: none;
}
.breadcrumds{
  color: var(--breadcrumds_gray);
  font-size: 12px;
}
.breadcrumds a{
  text-decoration: none;
  color: var(--textColor);
  font-size: 12px;
}
.breadcrumds:not(:last-of-type)::after {
  content: "-";
  margin: 0 .6em;
  color: var(--breadcrumds_gray);
}
#interview_member_underlayer .breadcrumds:first-child::after{
  color: var(--textColor);
}
.breadcrumds a:hover,
.access a:hover{
  color: var(--baseColor);
}
/* ---------- /underlayer_common ---------- */

/* underlayer_interview(PC) */
#interview_underlayer .introduction_card:nth-child(3n){
  margin-right: 0;
}
#interview_underlayer .introduction_card:nth-child(n+4){
  margin-top: 5%;
}

.interview_year,
.pr_movie_year,
.information_year{
  position: relative;
  font-weight: 700;
  margin-bottom: 1rem;
}
.interview_year a:hover,
.pr_movie_year a:hover,
.information_year a:hover{
  color:var(--baseColor);
}
.interview_year a,
.pr_movie_year a,
.information_year a{
  font-size: 20px;
  text-decoration: none;
  color: var(--textColor);
  padding-right: 1rem;
}
.date_text{
  font-weight: 700;
  padding-top: .7rem;
}
.introduction_card_wrapper .date,
.youtube .date{
  color: var(--year_gray);
  border-left:1px solid; 
  padding:2px 8px; 
  margin-left: 5px;
  font-weight: lighter;
}
.interview_year a,
.pr_movie_year a,
.information_year a{
  border-right:1px solid var(--year_gray);
}
.interview_year a:nth-child(n+2),
.pr_movie_year a:nth-child(n+2),
.information_year a:nth-child(n+2){
  padding-left: 1rem;
  /* color: var(--year_gray); */
}
/* ↑消さない。増えてきた時に必要です。 */

/* /underlayer_interview(PC) */

/* underlayer_pr_movie(PC) */
#pr_movie_underlayer h5,
#information_underlayer h4{
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
}
#pr_movie_underlayer .date_text{
  padding: 0 0 5rem 0;
  margin: 0;
  text-align: end;
}
/* /underlayer_pr_movie(PC) */

/* information_underlayer(PC) */
#information_underlayer .section_title,
#privacy-policy_underlayer .section_title{
  opacity: 1;
  font-size: 4rem;
}
#information_underlayer .info_time_p_wrapper{
  width: 70%;
  margin: 0 auto;
  padding: 2rem 0;
  border-bottom: solid 1px var(--info_underline);
}
#information_underlayer .info_time_p{
  display: flex;
  padding-left: 0;
}
#information_underlayer time{
  padding-left: 0;
}
#information_underlayer h4 a{
  text-decoration: none;
  color: var(--textColor);
}
#information_underlayer h4 a:hover,
.info_link a:hover{
  color: var(--baseColor);
}
.article_title{
  font-size: 4rem;
  color: var(--colorWhite);
  letter-spacing: .3rem;
  text-shadow: 1px 1px 0 var(--baseColor), -1px -1px 0 var(--baseColor),
  -1px 1px 0 var(--baseColor),  1px -1px 0 var(--baseColor),
  1px 0 0 var(--baseColor), -1px  0 0 var(--baseColor),
  0 1px 0 var(--baseColor),  0 -1px 0 var(--baseColor);
}
.info_article_h3{
  margin: 0;
}
.info_article{
  padding: 3rem 0;
}
.info_link a{
  color: var(--textColor);
}
#information_underlayer .info_category:hover,
.info_category_gray:hover{
  opacity: unset;
}
/* /information_underlayer(PC) */

/* interview_member_underlayer(PC) */
.interview_member_img{
  width:100vw;
  height: auto;
  display: flex;
  margin-top: 73px;
  margin: 0 calc(50% - 50vw);
}
.interview_member_img img{
  width: 100%;
  object-fit: cover;
}
.member_h1_wrapper{
  background-color: var(--baseColor);
  width:100vw;
  margin: 0 calc(50% - 50vw);
  color: var(--colorWhite);
  padding: 2rem 0;
}
.member_h1{
  /* font-size: 2.2vw; */
  font-size: 1.8em;
  font-weight: 300;
}
#interview_member_underlayer .member_name,
#interview_member_underlayer .member_joining,
#interview_member_underlayer .introduction_img_affiliation{
  font-size: 24px;
}
#interview_member_underlayer .member_namesub_englishFont{
  font-size: 17px;
}
#interview_member_underlayer .introduction_text_box{
  position: relative;
  background-color: var(--colorbackground_gray);
}
#interview_member_underlayer .introduction_text_box_inner{
  position: absolute;
  right: 0;
  top: -220px;
  width: 45%;
  height: auto;
  background-color: var(--colorbackground_gray);
  padding: 1.5rem 2rem 3.5rem 3rem;
}
#interview_member_underlayer .introduction_img_affiliation{
  position: inherit;
  width: 100%;
  padding: .1rem 2rem .1rem 3rem;
}
#interview_member_underlayer .member_joining{
  font-size: 18px;
  display: block;
  padding: 15px 0 5px 0;
}
.int_article_box_wrapper{
  background-position: top 0 right 0;
}
.int_article_box,
.int_article_box_last{
  width: 55%;
}
.int_article_q{
  display: inline-block;
  background-color: var(--baseColor);
  padding: .5rem 1rem;
  color: var(--colorWhite);
  border-radius: 9999px;
  margin: 0;
}
.int_article_a{
  padding: 1rem 0 2.5rem 0;
  /* margin-bottom: 1.5rem; */
}
.indent{
  text-indent: 1em;
}
#interview_member_underlayer .int_article_box_wrapper .flex{
  justify-content: space-between;
  align-items: flex-start;
}
#interview_member_underlayer .flex img{
  object-fit: contain;
  max-width: 450px;
  height: auto;
  width: 100%;
}
#interview_member_underlayer .access_flex_wrapper .flex img{
  width: auto;
  margin: inherit;
}
.int_note{
  text-align: end;
  margin-left: auto;
}
.int_note_right{
  display: inline-block;
  text-align: left;
}
.loop_text_wrapper{
  display: flex;
  overflow: hidden;
  width:100vw;
  height: auto;
	margin-left: calc( 50% - 50vw );
  margin-bottom: 4rem;
}
.loop_text{
  flex: 0 0 auto;
  white-space: nowrap;
  font-size: 110px;
  font-weight: 600;
  font-family: "Hiragino Kaku Gothic ProN","Hiragino Sans", 'Montserrat', "Yu Gothic", "Yu Gothic Medium", "Yu Gothic"," Meiryo", sans-serif;
  opacity: .3;
  overflow: hidden;
  padding-left: 20px;
  color: var(--baseColor);
  padding-right: 40px;
  margin: 1.5rem 0;
}
.loop_text:nth-child(odd){
  animation: loop 50s -25s linear infinite;
}
.loop_text:nth-child(even){
  animation: loop2 50s linear infinite;
}
@keyframes loop{
    0% {
      transform: translateX(100%);
    }
    to {
      transform: translateX(-100%);
    }
}

@keyframes loop2{
    0% {
      transform: translateX(0);
    }
    to {
      transform: translateX(-200%);
    }
}

.access{
  margin-right: 2rem;
}
.syk_title{
  font-weight: 700;
  padding-bottom: 5px;
}
.access a{
  color: var(--textColor);
}
.access_flex_wrapper{
  margin-bottom: 3rem;
}
/* /interview_member_underlayer(PC) */

/* privacy-policy_underlayer(PC) */
.privacy_policy_h4{
  width: fit-content;
  font-size: 1.375rem;
  text-align: start;
  background-color: var(--baseColor);
  color: var(--colorWhite);
  display: block;
  padding: 8px 15px 8px 15px;
  margin-top: 1rem;
  border-radius: 2px;
}
#privacy-policy_underlayer .privacy_policy_p_wrapper{
  padding: 1rem 0;
  border-bottom: solid 1px var(--info_underline);
}
.revision{
  text-align: right;
}
.privacy_policy_indent{
  text-indent: -1em;
  padding-left: 2em;
  letter-spacing: .04em;
  line-height: 1.7;
}
.privacy_policy_indent li{
  list-style: none;
}
.privacy_policy_sitetitle_h3{
  margin-bottom: 0;
  color: var(--textColor);
}

/* ---------- Media Queries ---------- */
/* ドロワーメニュー:リセットCSS */
@media only screen and (max-width: 960px){
	::before , ::after {
		box-sizing: inherit;
	}
	button {
		margin: 0;
		padding: 0;
		outline: 0;
		border: 0;
		border-radius: 0;
		background: transparent;
		color: inherit;
		vertical-align: middle;
		text-align: inherit;
		-webkit-appearance: none;
		appearance: none;
	}
}
/* common */
@media only screen and (max-width: 960px) {
	#container,
  #container_interview_member_underlayer{
	  width: 100%;
	  overflow-x: hidden;
	}
  .flex{
    flex-direction: column;
  }
  section{
    margin: 0;
  }
  section:nth-child(n+2){
    padding: 10px 0;
  }
  .wrapper_section{
    margin: 0 auto;
  }
  h2{
    font-size: 1.8rem;
  }
  .contact_h2{
    font-size: 2.5rem;
  }
  h4,.recruit_title_small{
    font-size: 1.2rem;
  }
  section .section_title,
  #information_underlayer .section_title,
  #privacy-policy_underlayer .section_title{
    font-size: 3rem;
    line-height: 1.5;
    letter-spacing: .1rem;
    padding: 20px 0 0 0;
    text-align: center;
  }
  #information_underlayer .section_title{
    font-size: 2.8rem;
  }
  #privacy-policy_underlayer .section_title{
    font-size: 1.9rem;
  }
  h3,
  #information_underlayer .info_h3{
    margin-bottom: 15px;
    text-align: center;
  }
  .privacy_policy_sitetitle_h3{
    text-align: start;
  }
}
/* /common */

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
@media screen and (max-width: 960px){
  /* ハンバーガーメニュー */
  button{
    display: block;
  }
  .hamburger {
    display: block;
    position: fixed;
    top: 5px;
    right: 5px;
    z-index: 100;
    width: 48px;
    height: 48px;
    border: none;
    cursor: pointer;
    background-color: var(--baseColor);
    border-radius: 2px;
  }
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 26px;
    height: 2px;
    background-color: var(--colorWhite);
    transition: all .4s;
  }
  .hamburger__line:nth-of-type(1) {
    top: 14px;
  }
  .hamburger__line:nth-of-type(2) {
    top: 23px;
  }
  .hamburger__line:nth-of-type(3) {
    top: 32px;
  }
  .title_logo_pc{
    display: none;
  }

  /* メニューオープン時 */
  .hamburger.active .hamburger__line:nth-of-type(1) {
    transform: translateY(9px) rotate(-45deg);
  }
  .hamburger.active .hamburger__line:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active .hamburger__line:nth-of-type(3) {
    transform: translateY(-9px) rotate(45deg);
  }
  .nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--colorWhite);
    box-shadow: 2px 0 4px rgba(0,0,0,.1);
    transform: translateX(-100%);
    transition: transform .4s;
    z-index: 90;
  }
  nav ul li:nth-last-child(3),
  nav ul li:nth-last-child(2){
    padding: 0;
    width: 15rem;
    text-align: center;
  }
  nav a::after{
    bottom: 0.7em;
  }
  .nav.active {
    transform: translateX(0);
  }
  nav ul li:last-child{
    display: block;
  }
  nav ul li:nth-child(n+4){
    margin-top: 20px;
    border-radius: 2px;
  }
  nav a::after{
    display: none;
  }
  nav ul li a:hover{
    color: var(--baseColor);
  }
  nav .title_logo a::after{
    background: transparent;
  }
  .menu{
    box-sizing: content-box;
    margin: 0;
    padding: 3rem 0;
    list-style: none;
    flex-direction: column;
  }
  .nav__link{
    display: block;
    padding: 20px 0;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    width: 15rem;
    font-weight: 400;
  }
  /**************** /ハンバーガーボタンのスタイリング ****************/

  /* キービジュアル */
  #header{
    display: none;
    margin-bottom: 0;
  }
  #header_sp{
    display: block;
    padding: 0;
    margin: 0;
  }
  #header_sp img{
    width: 100%;
    display: block;
    margin: 0 0 0 auto;
  }
  .catchphrase{
    font-size: 5vw;
    letter-spacing: 1px;
  }
  .text_small{
    font-size: 4.2vw;
  }
  .letter-spacing{
    letter-spacing: -3px;
  }
  .catchphrase_h1 h1{
    font-size: 8.8vw;
  }
  .catchphrase_h1{
    width: 90%;
    top: 23%;
  }
  /* /キービジュアル */

  /* information */
  .info_title{
    display: flex;
  }
  #information .flex{
    display: contents;
    width: 100%;
    align-items: flex-start;
  }
  .info_title h2{
    margin-right: .5rem;
  }
  .info_h3{
    text-align: start;
    font-size: .8rem;
  }
  .info_time_p{
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    line-height: 1.8;
    margin: .5rem 0;
  }
  .info_time_p p{
    padding: 0;
    margin: .3rem 0;
  }
  .info_article_title{
    white-space: normal;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  time{
    padding-left: 0;
  }
  .info_time_p_wrapper{
    padding: 0 0 1.5rem 0;
  }
  .info_category, .info_category_gray{
    width: 9rem;
    padding: 4px 0;
    margin: 0 1rem 0 1rem;
  }
  .info_article{
    padding: 2rem 0;
  }
  /* /information */

  /* message */
  #message{
    background-size: 30rem;
    background-position: 50% 30%;
    background-image: url(images/kanagawa_underlayer.png);
  }
  .message_p_wrapper{
    display: none;
  }
  .message_p_wrapper_sp{
    display: block;
    margin-top: 1.5rem;
  }
  .message_p_wrapper_sp p{
    /* line-height: 2.3; */
    line-height: 2;
    font-weight: 450;
  }
  .font_big{
    font-size: 1.32rem;
    font-weight: 600;
  }
  
  /* /message */

  /* interview */
  #interview .button{
    width: 100%;
  }
  #interview .flex{
    align-items: center;
  }
 .introduction_card a{
    margin-bottom: 1.5rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }
  .introduction_card{
    width: 100%;
    display: contents;
    margin-bottom: .5rem;
  }
  .introduction_img_wrapper{
    width: 100%;
    height: auto;
    display: flex;
  }
   /* /interview */

   /* pr_movie */
   .youtube{
    width: 100%;
   }
   /* /pr_movie */

  /* recruit btn */
  #recruit h5,
  #pr_movie_underlayer h5,
  #information_underlayer h4{
    font-size: 1.2rem;
  }
  .text_icon_job_posting{
    padding-top: .3rem;
  }
  .section-button{
    display: block;
  }
  .button-box{
    margin-bottom: 10px;
    width: 100%;
    max-width: 500px;
    margin: .5rem auto;
  }
  .button-box-title{
    font-weight: 400;
  }
  .button-box-p{
    font-size: 16px;
    display: inline-block;
  }
	.title{
    cursor: pointer;
    font-size: 20px;
	}
  .button-wrapper p{
    font-size: 17px;
    font-weight: 450;
  }
  .button-box-p::after{
    display: inline-block;
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .3s;
  }
  .button .button-wrapper:after{
    right: 1.6rem;
  }
	.toggle{
		height: 0;
		padding: 0 8px;
		transition: .2s;
	}
	input:checked + .toggle{
		height: auto;
		padding: 8px 8px 20px 8px;
	}
	.toggle li{
		padding: 0 8px;
		line-height: 0;
		visibility: hidden;
		opacity: 0;
	}
	input:checked + .toggle li{
		padding: 8px 0px 0px 0px;
    margin: 0 5px;
		line-height: 1.5;
		visibility: visible;
		opacity: 1;
	}
  .button-wrapper a{
    font-size: 17px;
    font-weight: 400;
  }
  .button .button-wrapper{
    padding: 5px 10px;
  }
  /* /recruit btn */

  /* sideways_slider */
  #sideways_slider{
    margin: 1.5rem 0 2rem 0;
  }
  .sideways_slider_text{
    display: none;
  }
  .sideways_slider_text_sp{
    font-family: "Kiwi Maru", serif;
    color: #535353;
    display: block;
    text-align: center;
    margin-top: .6rem;
    margin-bottom: 1.5rem;
    line-height: 2rem;
  }
  .sideways_slider_title img{
    max-width: 600px;
    height: auto;
    width: 100%;
  }
  .slide-wrapper img{
    width: 150px;
    height: auto;
  }
  .credit{
    font-size: 12px;
  }
  /* /sideways_slider */

  /* contact */
  #contact{
    margin: 2rem 0;
    padding: 0 1rem;
  }
  .contact_wrapper{
    padding: 0;
    background-size: cover;
    border-radius: 20px;
    padding: 1rem 0 .5rem 0;
  }
  .contact_h3 {
    margin-bottom: .5rem;
  }
  .contact_fontweight{
    font-size: 1em;
  }
  .contact_image img{
    width: 90%;
    height: auto;
  }
  #contact .contact_btn .contact_btn_inner{
    padding-bottom: 5px;
    
  }
  #contact .contact_btn .contact_btn_inner p{
    margin: 0;
  }
  #contact .contact_btn a{
    font-size: 110%;
    padding: 10px 4px;
    width: 85%;
  }
  .contact_p{
    padding: 0 1rem;
  }
  /* /contact */

  /* link */
  #link .flex{
    margin: 0 auto;
    text-align: center;
  }
  #link .flex a{
    display: contents;
  }
  .bukai_bunner_link img{
    max-width: 320px;
    width: 100%;
    margin: 0 auto;
  }
  .bukai_text{
    padding: 1.5rem 0;
    text-align: left;
  }
  /* /link */

  /* footer */
  footer{
    height: auto;
  }
  .recruit_button_wrapper .recruit_btn{
    z-index: 5;
    transition: 0.5s;
    display: block;
    position: fixed;
    height: 60px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    align-items: center;
    background-color: var(--baseColor);
    border-radius: 1rem;
    padding: 0 10px;
    width: auto;
    text-align: center;
    cursor: pointer;
    margin: 0 auto;
    border: 2px solid var(--colorWhite);
  }
  .recruit_btn{
    position: relative;
  }
  .recruit_btn a{
    color: var(--colorWhite);
    text-decoration: none;
    font-weight: 700;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 100%;
  }
  .recruit_btn span{
    display: block;
    font-size: 16px;
  }
  button .menu_text_sub{
    font-size: 12px;
  }

  /*footerまでスクロールしたら消す*/
  .is-hidden {
    visibility: hidden;
    opacity: 0;
  }
  footer #footer_gnavi li{
    text-align: left;
    padding: 20px 0 10px 0;
    margin: 0;
    width: 100%;
    border-radius: 0;
  }
  .footer_wrapper{
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 auto;
    background-position: 50% 8%;
    background-size: 20rem;
    border-radius: 0;
  }
  footer nav ul li:last-child{
    margin: 0;
  }
  footer nav ul li a{
    margin: 0;
    padding-right: 1rem;
    text-align: left;
  }
  footer #footer_gnavi .year_number a{
    text-indent:1em;
  }
  footer #footer_gnavi .year_number{
    padding: 5px 0 10px 0;
  }
  .footer_inner{
    flex-direction:column-reverse;
    padding-top: 1.5rem;
    width: auto;
  }
  .copyright_wrapper{
    border-top: 1px solid var(--colorWhite);
    opacity: 0.44;
    padding: 10px 0 0 0;
    line-height: 1rem;
  }
  .copyright{
    border: unset;
    opacity: initial;
  }
  .footer_privacy_wrapper{
    padding: 0 0 10px 0;
  }
  .footer_privacy_wrapper a{
    text-align: left;
  }
  footer #footer_gnavi ul{
    padding-top: .5rem;
  }
  .keyword{
    width: 85%;
  }
  .sitesearch_google input{
    height: 35px;
    font-size: 16px;
  }
/* interview_underlayer */
  #interview_underlayer,
  #pr_movie_underlayer,
  #information_underlayer,
  .int_article_box_wrapper,
  #privacy-policy_underlayer{
    background-size: 80%;
    background-position: top 190px right -30px;
  }
  #interview_underlayer,
  #pr_movie_underlayer,
  #information_underlayer,
  #privacy-policy_underlayer{
    margin-top: 25px;
  }
  #interview_underlayer .flex{
    align-items: center;
  }
  #interview_underlayer .introduction_card{
    display: block;
  }
  .introduction_card_wrapper{
    margin-right: 0;
  }
  .breadcrumds_wrapper,
  .interview_year,
  .pr_movie_year,
  .information_year{
    margin: 0 auto;
    padding: 1rem 0;
  }
  #interview_member_underlayer .breadcrumds_wrapper{
    margin: 0;
  }
  #interview_underlayer .flex{
    flex-wrap: nowrap;
  }
  .date_text{
    padding: .2rem 0 2rem 0;
  }
/* /interview_underlayer */

/* information_underlayer */
  #information_underlayer .article_title{
  font-size: 3rem;
  }
  #information_underlayer .info_article_h3{
  text-align: left;
  }
  #information_underlayer .info_time_p_wrapper{
  width: 100%;
  }
/* /information_underlayer */

/* interview_member_underlayer */
  #interview_member_underlayer .interview_member_img img{
    height: 80vw;
  }
  .member_h1{
    font-size: 23px;
    font-weight: 400;
    padding: 0 1.5rem;
  }
  #interview_member_underlayer .introduction_text_box_inner{
    width: 80%;
    margin: 0 calc(50% - 50vw);
    /* left: 0; */
    top: -60px;
    padding: .5rem .5rem 1.5rem 2rem;
  }
  #interview_member_underlayer .member_name{
    font-size: 18px;
    padding: 10px 0 0 0;
  }
  #interview_member_underlayer .member_namesub_englishFont,
  #interview_member_underlayer .member_joining,
  #interview_member_underlayer .introduction_img_affiliation{
    font-size: 14px;
    padding: 5px 0 5px 0;
  }
  #interview_member_underlayer .member_joining{
    padding: 0 0 10px 0;
  }
  #interview_member_underlayer .introduction_img_affiliation{
    padding: .1rem .5rem .1rem 2rem;
  }
  .member_h1_breadcrumds_wrapper{
    display: flex;
    flex-wrap: wrap;
  }
  .member_h1_wrapper{
    padding-bottom: 5rem;
    padding: 1.5rem 0 5rem 0;
  }
  .breadcrumds_wrapper_sp{
    display: block;
    margin: 6rem 0 1.5rem 0;
  }
  #interview_member_underlayer .breadcrumds_wrapper{
    display: none;
  }
  .int_article_box_wrapper{
    margin-top: 3rem;
    padding-bottom: 1.5rem;
    background-size: 80%;
    background-position: top 90px right 0px;
  }
  .int_article_a{
    padding-top: 1rem;
  }
  .int_article_box_width100 .int_article_a{
    margin-bottom: 0;
    padding: 1rem 0;
  }
  .int_article_box{
    width: 100%;
    margin-top: 2.5rem;
  }
  .int_article_box_last{
    width: 100%;
    padding-top: 1rem;
  }
  .int_article_box_last .int_article_a{
    padding-bottom: 1rem;
  }
  #interview_member_underlayer .flex img{
    margin: 0 auto;
  }
  .access,
  #interview_member_underlayer .access_flex_wrapper .flex img{
    margin: 0 auto;
    padding-top: 1rem;
  }
  .loop_text_wrapper{
    margin-bottom: 2rem;
  }
  .loop_text{
    font-size: 55px;
    margin: 0;
  }
  /* /interview_member_underlayer */
}


