@charset "UTF-8";


/* reset ---------------------------------------*/

div,dl,dt,dd,ul,ol,
li,h1,h2,h3,h4,h5,
h6,pre,code,form,fieldset,legend,
input,textarea,p,blockquote,
th,td{margin:0;padding:0;}
table{border-collapse:collapse;border-spacing:0;word-break: break-all;font-size:inherit;width:100%;}
fieldset,img{border:0;}
address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal;}
li{list-style:none;}
caption,th{text-align:left;}
h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal;}
q::before,q::after{content:'';}
abbr{border:0;font-variant:normal;}
sup{vertical-align:text-top;}
sub{vertical-align:text-bottom;}
input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;}
input,textarea,select{*font-size:100%;}
legend{color:#000;}
select,input,button,textarea{font-size:inherit;font-family:inherit;box-sizing: border-box;}
pre,code,kbd,samp{font-family:monospace;*font-size:108%;line-height:100%;}
figure{padding:0;margin:0;}
input[type="submit"],
input[type="button"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration,
button::-webkit-search-decoration {display: none;}
input[type="submit"]::focus,
input[type="button"]::focus,
button::focus {outline-offset: -2px;}


/* base ---------------------------------------*/

*{
	box-sizing:border-box;
	min-height: 0vw;
}

html,body{height:100%;}

body{
	-webkit-text-size-adjust: 100%;
	padding:0;
	margin: 0;
	font-family: 'Noto Sans JP', 'Roboto', sans-serif;
	font-feature-settings: "palt" 1;
	-webkit-font-feature-settings: "palt" 1;
	color:var(--text-color);
	overflow-x: hidden;
	font-size: 16px;
	line-height: 2;
}

a{
	text-decoration: none;
	color:inherit;
	transition: 0.6s;
}

a:not(.btn-outline, .btn-white, .btn-blue, .btn-red):hover {
	opacity: 0.6;
}

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

small {font-size: 12px;}


/* common item ---------------------------------------*/

.clearfix::after,
.inner::after {
	visibility: hidden;
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}

.ov-h{overflow: hidden;}

.font-en {
	font-family: 'Roboto', sans-serif;
}

/* browser adjust ---------------------------------------*/

@media all and (-ms-high-contrast:none){
	.foo { color: green }
}


/* layout ---------------------------------------*/

.inner{
	max-width:1140px;
	padding: 0 50px;
	margin:0 auto;
}


/* color ---------------------------------------*/

:root {
	--text-color: #333333;
	--bg-color-blue: #F7FBFD;
	--bg-color-gray: #FAFAFA;
	--ac-color-blue: #0A7EBF;
}

.text-blue {
	color: var(--ac-color-blue);
}


/* header ---------------------------------------*/

.header {
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9997;
	transition: 0.6s;
}

.header-inner{
	margin: 0 40px;
	position: relative;
	height: 100px;
}

.header-logo{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 151px;
	height: 32px;
	transition: 0.6s;
	z-index: 10;
}

.header-logo:hover {opacity: 0.6;}
.header-logo img{
	width: 100%;
	transition: 0.6s;
	vertical-align: unset;
}

.header .header-logo::after{
	display:block;
	content:'';
	background:url('../img/coaresearcher/index/logo.png') no-repeat left top;
	background-size:100%;
	width: 151px;
 	height: 32px;
	position:absolute;
	left:0;
	top:50%;
	transform: translateY(-50%);
	transition: 0.6s;
	opacity: 0;
}

/* gnav ---------------------------------------*/

.gnav{
	display: flex;
	align-items: center;
	justify-content: space-between;
	width: 100%;
	align-items: center;
	width: calc(100% - 250px);
	position: absolute;
	top: 50%;
	right: 40px;
	transform: translateY(-50%);
}

.gnav-list{
	font-size: 14px;
	line-height: 1.6;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.gnav-list > li{
	margin-right: 20px;
	letter-spacing: 0.08em;
}

.gnav-list > li a{
	color: #ffffff;
	display: block;
	transition: 0.6s;
}

.gnav-list > li a:hover{opacity: 0.6;}

.gnav-list li a[target="_blank"]::after{
	display: inline-block;
	content:'';
	-webkit-mask-image: url('../img/coaresearcher/index/blank.svg');	
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: 0 0;
	-webkit-mask-size: contain;
	mask-image: url('../img/coaresearcher/index/blank.svg');
	mask-repeat: no-repeat;
	mask-position: 0 0;
	mask-size: contain;
	background: #fff;
	width:10px;
	height:10px;
	margin-left: 6px;
	vertical-align: middle;
	transition: 0.6s;
}

#openmenu{display:none;}


/* fixed header */

.header.is-fixed{
	background: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
}

.header.is-fixed .gnav-list > li a{color: #333;}
.header.is-fixed .gnav-list li a[target="_blank"]::after{background: #333;}
.header.is-fixed .header-logo::after{opacity: 1;}
.header.is-fixed .header-logo img{opacity: 0;}
.header.is-fixed .header-inner{height:80px;}


/* interview01 ---------------------------------------*/
.fixedheader {
	background: #fff;
	width: 100%;
	position: fixed;
	top: 0;
	z-index: 9997;
	transition: 0.6s;
}


.fixedheader-inner{
	margin: 0 40px;
	position: relative;
	height: 80px;
}

.fixedheader-logo{
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	width: 151px;
	height: 32px;
	transition: 0.6s;
	z-index: 10;
}

.fixedheader-logo:hover {opacity: 0.6;}
.fixedheader-logo img{
	width: 100%;
	transition: 0.6s;
	vertical-align: unset;
}

.fixedheader .gnav .gnav-list > li a{
	color: var(--text-color);
}

.fixedheader .gnav-list li a[target="_blank"]::after{
	background: var(--text-color);
}


/* /interview01 ---------------------------------------*/



/* btn ---------------------------------------*/

.btn-wrapper li {
	display: inline-block;
}

.btn-wrapper li:nth-of-type(n+2) {
	margin-left: 13px
}

.btn-outline,
.btn-white,
.btn-blue,
.btn-red {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-weight: 700;
	line-height: 1.6;
	cursor: pointer;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
	padding-bottom: 1px;
}

.btn-outline {
	background-color: transparent;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.btn-white {
	background-color: #ffffff;
	color: var(--ac-color-blue);
	border: 1px solid var(--ac-color-blue);
}

.btn-blue {
	background-color: var(--ac-color-blue);
	color: #ffffff;
	border: 1px solid var(--ac-color-blue);
}

.btn-red {
	background-color: #E95B5B;
	color: #ffffff;
	border: 1px solid #ffffff;
}

.gnav-btn-01 {
	font-size: 14px;
	width: 180px;
	height: 48px;
	border-radius: 24px;
}

.gnav-btn-02 {
	font-size: 14px;
	width: 140px;
	height: 48px;
	border-radius: 24px;
}

.kv-btn{
	font-size: 16px;
	width: 280px;
	height: 56px;
	border-radius: 28px;
}

.cta-btn{
	font-size: 16px;
	width: 280px;
	height: 52px;
	border-radius: 26px;
}

.ambassador-btn {
	font-size: 16px;
	width: 280px;
	height: 48px;
	border-radius: 24px;
	margin: auto auto 0;
}

.footer-btn{
	font-size: 16px;
	width: 200px;
	height: 48px;
	border-radius: 24px;
}

.btn-outline:hover {
	background-color:#ffffff;
	border: 2px solid var(--ac-color-blue);
	color: var(--ac-color-blue);
}

.btn-white:hover {
	background-color:var(--ac-color-blue);
	color: #ffffff;
}

.btn-blue:hover {
	background-color: #ffffff;
	color: var(--ac-color-blue);
}

.btn-red:hover {
	background-color: #C53B40;
}


/* section-title ---------------------------------------*/

.section-title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 40px;
	text-align: left;
	letter-spacing: 0.07em;
}

.section-title-blue{
	color: var(--ac-color-blue);
	font-size: 20px;
	font-weight: 400;
	line-height: 1.4;
	padding-bottom: 8px;
	display: block;
	letter-spacing: 0;
}


/* kv ---------------------------------------*/

.kv {
	position: relative;
	background-image: url(../img/coaresearcher/index/kv.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
	padding: 0 40px;
}

.kv-inner {
	max-width:1040px;
	padding: 126px 0 52px;
	margin: auto;
}

.kv-image-text{
	width: 338px;
	filter: drop-shadow(4px 4px 20px rgba(0, 0, 0, 0.1));
	padding-bottom: 3px;
	transition: all .75s ease;
	opacity: 0;
	transform: translate(-20px, 0);
}

.kv-title {
	color: #ffffff;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	padding-bottom:28px;
	text-shadow: 0px 0px 20px 0px rgba(1, 96, 149, 0.6);
	transition: all .75s ease;
	opacity: 0;
	transform: translate(-20px, 0);
	letter-spacing: 0.04em;
}

.kv-title strong {
	display: block;
	font-size: 64px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.08em;
	padding-bottom: 20px;
}

.kv-btn-wrapper {
	transition: all .75s ease;
	transition-delay: 0.5s;
	opacity: 0;
	transform: translate(-20px, 0);
}

.kv.is-active .kv-title,
.kv.is-active .kv-btn-wrapper,
.kv.is-active .kv-image-text {
	opacity: 1;
	transform: translate(0, 0);
}

/* logo ---------------------------------------*/

.logoarea{
	padding: 32px 0;
}

.logoarea .swiper:not(.swiper-initialized) {
	max-width:1140px;
	padding: 0 50px;
	margin:0 auto;
}

.logoarea-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: center;
	margin-bottom: 10px;
}

.logoarea .swiper:not(.swiper-initialized) .swiper-wrapper{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -15px;
}

.logoarea .swiper-slide {
	margin: 0 7.5px;
}

.logoarea .swiper:not(.swiper-initialized) .swiper-slide {
	width: calc(calc(100% - 90px) / 6);
	margin: 0 0 15px 15px;
}

.logoarea .swiper:not(.swiper-initialized) .swiper-slide img{width:100%;}

.logoarea .swiper.swiper-initialized .swiper-wrapper{
    transition-timing-function: linear;
}




/* feature ---------------------------------------*/

.bg-gray{background: var(--bg-color-gray);}

.feature{
	/* padding-top: 120px; 24/03/26 アップデート */
	padding-top: 80px;
}

.feature-wrapper{
	padding-top: 35px;
	padding-bottom: 20px;
}

.feature-block {
	display: flex;
	flex-wrap: wrap;
	gap: 8%;
	padding-bottom: 100px;
	text-align: left;
}

.feature-block:last-of-type {
	padding-bottom: 72px;
}

.feature-block-image {
	width: 42%;
}

.block-odd {order: 2;}
.feature-block-content {width: 50%;}

.feature-block-content p{
	padding-bottom: 20px;
	letter-spacing: 0.05em;
}

.feature-block-title {
	font-size: 24px;
	font-weight: 700;
	padding-bottom: 24px;
	line-height: 1.5;
	letter-spacing: 0.06em;
}

.feature-block-title-num {
	color: var(--ac-color-blue);
	font-size: 14px;
	font-weight: 400;
	padding-bottom: 6px;
	display: block;
	letter-spacing: 0;
}

.feature-block-wrapper {
	max-width: 490px;
	background: #ffffff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
	padding: 24px;
}

.feature-block-wrapper-title {
	font-weight: 700;
	padding-bottom: 10px;
	line-height: 1.5;
	letter-spacing: 0.05em;
}

.feature-block-wrapper-list {font-size: 14px;}

.feature-block-wrapper-list > li{
	position: relative;
	padding-left: 10px;
}

.feature-block-wrapper-list > li::before{
	display:block;
	content:'';
	background:#333;
	background-size:100%;
	width:3px;
	height:3px;
	border-radius: 50%;
	position:absolute;
	left: 2px;
	top: 13px;
}

.feature-block-case-icon {
	position: relative;
	padding-left: 58px;
}

.feature-block-case-icon:not(:first-child){margin-top: 10px;}

.feature-block-case-icon::before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 48px;
	height: 48px;
	content: "";
	background: url(../img/coaresearcher/index/feature_icon.png) no-repeat;
	background-size: contain;
	transform: translateY(-50%);
}

.feature-block-case-icon p{
	font-size: 14px;
	padding-bottom: 0;
	line-height: 1.7;
}

.feature-block-case-icon small{
	display: block;
	font-size: 12px;
}

.feature-block-change {
	width: 100%;
	order: 3;
	margin-top: 25px;
}

.feature-block-change-title {
	position: relative;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.08em;
	text-align: center;
	margin-bottom: 60px;
}

.feature-block-change-title::after {
	position: absolute;
	content: "";
	width: 160px;
	height: 1px;
	background: var(--text-color);
	bottom: -20px;
	left: 0;
	right: 0;
	margin: 0 auto;
}

.feature-block-change-list {
	display: flex;
	justify-content: space-between;
	gap: 20px;
}

.feature-block-change-list li {
	max-width: 320px;
	width: 100%;
	background: #fff;
	box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.08);
	border-radius: 4px;
	padding-bottom: 20px;
}

.feature-block-change-list-title {
	position: relative;
	width: 100%;
	height: 40px;
	border-radius: 4px 4px 0 0;
	overflow: hidden;
	margin-bottom: 12px;
}

.feature-block-change-list-title img {
	object-fit: cover;
	width: 100%;
	height: 100%;
}

.feature-block-change-list-title span {
	position: absolute;
	color: #fff;
}

.feature-block-change-list-title span:first-of-type {
	font-size: 14px;
	letter-spacing: 0.2em;
	top: 7px;
	left: 20px;
}

.feature-block-change-list-title span:nth-of-type(2) {
	font-size: 12px;
	top: 8px;
	right: 20px;
}

.feature-block-change-list-lead {
	text-align: center;
	padding: 0 10px;
	margin-bottom: 16px;
}

.feature-block-change-list-lead span {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.1em;
	color: #fff;
	background: var(--text-color);
	padding: 4px 6px;
	margin-bottom: 4px;
}

.feature-block-change-list-lead p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.feature-block-change-list-case {
	width: 100%;
	text-align: center;
	padding: 0 10px;
	margin: 0 auto 16px;
}

.feature-block-change-list-content {
	background: var(--bg-color-blue);
	border-radius: 4px;
	padding: 12px 5px 8px;
	margin: 0 20px;
}

.feature-block-change-list-content p {
	font-size: 16px;
	line-height: 1.5;
	text-align: center;
}

.feature-block-change-list-content span {
	font-size: 20px;
	font-weight: 700;
	color: transparent;
	background-image: url(../img/coaresearcher/index/feature_change_bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-clip: text;
	-webkit-background-clip: text;
}

.feature-block-change-list-content span.fs-28 {
	font-size: 28px;
	line-height: 1.1;
	margin: 0 5px;
}


/* move ---------------------------------------*/
.move {
	padding-top: 0;
	padding-bottom: 120px;
}

.move-wrapper {
	position: relative;
	width: 77%;
	height: 0;
	padding-top: 43%;
	margin: 0 auto;
	margin-bottom: 40px;
}

.move-wrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/* cta ---------------------------------------*/

.cta {
	position: relative;
	background-image: url(../img/coaresearcher/index/cta_bg.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.cta-inner {
	max-width:1140px;
	margin: auto;
	text-align: center;
	padding:100px 0 80px;
}

.cta-title {
	color: #ffffff;
	font-size: 40px;
	font-weight: 700;
	line-height: 1.5;
	text-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
	padding-bottom: 20px;
	letter-spacing: 0.03em;
}

.cta-text {
	color: #ffffff;
	font-size: 16px;
	line-height: 1.5;
	padding-bottom: 4px;
	letter-spacing: 0.05em;
}

.cta-inner a {margin: 0 auto;}


/* ambassador ---------------------------------------*/

.ambassador{
	padding-top: 120px;
}

#ambassadoranchor{}

.ambassador-wrapper {
	/* margin-bottom: 120px; */
}

.cliant-wrapper {
	margin-bottom: 120px;
}

.ambassador-wrapper:not(:first-child){margin-top: 30px;}

.cliant-wrapper:not(:first-child){margin-top: 30px;}

.ambassador-title{
	font-size: 24px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 20px;
}

.ambassador-list{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	margin-left: -15px;
}

.ambassador-list > li{
	width: 160px;
	margin-left: 15px;
	margin-bottom: 15px;
}

.ambassador-list > li img{width:100%;}

.ambassador-lead{
	font-size: 16px;
	letter-spacing: 0.05em;
}

.ambassador-container{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 40px 0;
}

.ambassador-block{
	width: calc(33.333% - 27px);
	margin: 0 0 0 40px;
	display: flex;
	flex-direction: column;
}

.ambassador-block:nth-child(3n + 1){margin-left: 0;}

.ambassador-block-image{
	margin-bottom: 20px;
}

.ambassador-block-title{
	font-size: 16px;
	font-weight: 700;
	line-height: 1.5;
	margin-bottom: 15px;
}

.ambassador-block-title-en{
	font-weight: 400;
	margin-left: 10px;
	color: #777;
	font-size: 14px;
}

.ambassador-block-text{
	line-height: 1.8;
	font-size: 12px;
	letter-spacing: 0.08em;
	padding-bottom: 20px;
}

.ambassador-blog-image {
	text-align: center;
}

/* global-interview ---------------------------------------*/

.globalinterview {
	padding-top: 120px;
}

.globalinterview-lead{
	font-size: 16px;
	letter-spacing: 0.05em;
}

.globalinterview-container{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	margin: 40px 0;
}
.globalinterview-listbnr {
	border-radius: 4px;
}
  @media screen and (min-width: 641px) {
	.globalinterview-listbnr {
	  width: calc((100% - 40px) / 2);
	}
  }
  @media screen and (max-width: 768px) {
	.globalinterview-listbnr {
	  width: 100%;
	}
  }

.globalinterview-listitem-link {
	display: block;
	overflow: hidden;
	position: relative;
	min-height: auto;
	height: 100%;
	border-radius: 4px;
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
  }
  .globalinterview-listitem-link:hover {
	box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
	opacity: 1!important;
  }

/* flow ---------------------------------------*/

.flow{
	padding-top: 120px;
}

.flow-wrapper{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.flow-block{
	width: calc(33.333% - 27px);
	margin: 0 0 0 40px;
	padding-bottom: 85px;
	position: relative;
}

.flow-block:nth-child(3n + 1){margin-left: 0;}

.flow-block::after{
	content: '';
	position:absolute;
	right: -25px;
	top: 99px;
	width: 12px;
	height:  12px;
	border-top: 2px solid #333;
	border-right: 2px solid #333;
	transform: translate(0, -50%) rotate(45deg);
}

.flow-block:last-child::after{display: none;}

.flow-block-image{
	text-align: center;
	background: #fff;
	display: block;
	box-shadow: 0px 0px 8px rgba(0,0,0,0.05);
}

.flow-block-title{
	font-size: 20px;
	line-height: 1.5;
	font-weight: 700;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
	text-align: center;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	letter-spacing: 0.05em;
}


/* faq ---------------------------------------*/

.faq{
	padding-top: 120px;
	padding-bottom: 120px;
	position: relative;
}

.faq::after{
	display:block;
	content:'';
	background:#F7FBFD;
	width:100%;
	height:calc(100% - 200px);
	position:absolute;
	left:0;
	top:194px;
}

.faq-inner{
	position: relative;
	z-index: 3;
}

.faq-list{border-bottom: 1px solid #eee;}

.faq-list > li{
	padding: 25px 40px 35px;
	border-top: 1px solid #eee;
}

.faq-list dt{
	position: relative;
	color: var(--ac-color-blue);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	display: block;
	padding: 10px 0 0 40px;
	margin-bottom: 10px;
}

.faq-list dd{
	position: relative;
	padding: 15px 0 0 40px;
	font-size: 14px;
	line-height: 1.8;
}

.faq-list dt::before,
.faq-list dd::before{
	position: absolute;
	left: 0;
	top: 0;
	font-weight: 700;
	font-size: 32px;
	font-family: 'Roboto', sans-serif;
}

.faq-list dt::before{content:'Q';}
.faq-list dd::before{content:'A';}

.faq-list dd > ul{}

.faq-list dd > ul > li{
	position: relative;
	padding-left: 22px;
}

.faq-list dd > ul > li::after{
	display:block;
	content:'';
	background:#333;
	background-size:100%;
	width:3px;
	height:3px;
	position:absolute;
	left:9px;
	top:12px;
	border-radius: 50%;
}


/* footer ---------------------------------------*/

.footer{
	background: #333;
	color: #fff;
}

.footer-inner{
    max-width: 1220px;
    padding: 0 50px 65px;
    margin: 0 auto;
    position: relative;
}

.footer-container{
	padding: 80px 40px 0;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.footer-block{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	width: 630px;
}

.footer-logo{width: 151px;}

.footer-nav{
	width: 400px;
	display: flex;
	justify-content: space-between;
}

.footer-nav-list{width: 43%;}

.footer-nav-list li{
	font-size: 14px;
	margin: 0 0 15px 0;
	letter-spacing: 0.05em;
}

.footer-nav-list li a{position: relative;}

.footer-nav-list li a[target="_blank"]::after{
	display:block;
	content:'';
	background:url('../img/coaresearcher/index/blank.svg') no-repeat left top;
	background-size:100%;
	width:10px;
	height:10px;
	position:absolute;
	right:-15px;
	top:55%;
	transform:translate(0,-50%);
}

.footer-btn-wrapper{
	width: 200px;
}

.footer-btn-list{}

.footer-btn-list li:not(:last-child){margin-bottom: 20px;}

.copyright {
	border-top: 1px solid #fff;
	display: block;
	text-align: center;
	color: #fff;
	line-height: 1;
	font-size: 10px;
	padding: 23px 0;
}


/* index animation ---------------------------------------*/

.animation, .animation-footer {
	transition: all 1.25s ease;
	opacity: 0;
	transform: translate(0,20px);
}

.animation.on, .animation-footer.on {
	opacity: 1;
	transform: translate(0,0);
}



/* interview01 ---------------------------------------*/

/* pankuzu ---------------------------------------*/
.interview-pankuzu {
	padding:100px 0 20px;
}

.interview-pankuzu-list > li {
		display: inline-block;
		font-size: 14px;
		font-weight: 700;
		line-height: 2;
}

.interview-pankuzu-list > li a {
	position: relative;
	padding-right: 38px;
	font-weight: 400;
	transition: 0.6s;
}

.interview-pankuzu-list > li a:hover {
	opacity: 0.7;
}

.interview-pankuzu-list > li a:after {
		display: block;
		content: '／';
		position: absolute;
		right: 6px;
		top: -4px;
}


/* subpage - interview01 ---------------------------------------*/
.bg-white{background: #ffffff;}
.bg-blue{background: var(--bg-color-blue);}

.interview-inner {
	max-width:1140px;
	padding: 0 50px 80px;
	margin:0 auto;
}

.interview-wrapper {
	padding: 48px;
	margin-bottom: 80px;
}

.interview-image{
	margin: 0 auto;
	margin-bottom: 48px;
}

.interview-image img{
	width: 100%;
}

.interview-career {
	padding: 24px;
	margin-bottom: 48px;
	letter-spacing: 0.03em;
}

.interview-container {
}

.wp-block-custom-interview-block-group {
	margin-bottom: 48px;
}

.wp-block-custom-interview-block-title{
	color: var(--ac-color-blue);
	font-size: 24px;
	font-weight: 700;
	padding-left: 34px;
	position: relative;
	margin-bottom: 32px;
	letter-spacing: 0.08em;
}

.wp-block-custom-interview-block-title:before {
	position: absolute;
	content: "ー";
	top: 0;
	left: 0;
	width: 24px;
	text-align: center;
}

.wp-block-custom-interview-block-text{
	letter-spacing: 0.08em;
}

.interview-cta {
	background: var(--bg-color-blue);
	padding: 40px;
}

.interview-cta a {
	margin: 0 auto;
}

.interview-cta-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.5;
	text-align: center;
	letter-spacing: 0.05em;
	color: var(--ac-color-blue);
	margin-bottom: 20px;
}




/* pc only */
@media screen and (min-width: 900px){
	.sp{display: none !important;}
	.spbr{display: none;}
}


/* small pc */
@media screen and (min-width: 900px) and (max-width: 1390px){
	.header-inner,
	.fixedheader-inner	{margin: 0 20px;}

	.gnav {
		right: 20px;
		width: calc(100% - 210px);
	}

	.gnav-btn-01{width: 160px;}
	.gnav-btn-02{width: 110px;}
	.btn-wrapper li:nth-of-type(n+2){margin-left: 10px;}
}

/* small pc 2 */
@media screen and (min-width: 900px) and (max-width: 1260px){
	.header-inner,
	.fixedheader-inner {
		margin: 0 10px 0 15px;
	}

	.header-logo,
	.header .header-logo::after,
	.fixedheader-logo {
		width: 130px;
		height: 28px;
	}

	.gnav {
		right: 10px;
		width: calc(100% - 180px);
	}

	.gnav-list > li {		
		font-size: 13px;
		margin-right: 15px;
	}
	.gnav-list > li:last-child {
		margin-right: 0;
	}

	.gnav-btn-01,
	.gnav-btn-02{
		font-size: 12px;
		font-weight: 400;
	}
	.gnav-btn-01{width: 140px;}
	.gnav-btn-02{width: 100px;}
}

/* small pc 3 */
@media screen and (min-width: 900px) and (max-width: 1130px){
	.header-logo,
	.header .header-logo::after,
	.fixedheader-logo {
		width: 100px;
		height: 22px;
	}

	.gnav {
		right: 10px;
		width: calc(100% - 140px);
	}

	.gnav-list > li {
		font-size: 12px;
		margin-right: 10px;
	}
	.gnav-btn-01{width: 130px;}
	.gnav-btn-02{width: 90px;}

	.footer-container{padding:80px 0 0;}
}

/* small pc 4 */
@media screen and (min-width: 900px) and (max-width: 995px){
	.header-logo,
	.header .header-logo::after,
	.fixedheader-logo {
		width: 90px;
		height: 20px;
	}

	.gnav {
		right: 10px;
		width: calc(100% - 120px);
	}

	.gnav-list > li {font-size: 11px;}

	.gnav-btn-01{
		width: 125px;
		font-size: 11px;
	}

	.gnav-btn-02{
		width: 80px;
		font-size: 11px;
	}

	.btn-wrapper li:nth-of-type(n+2) {margin-left: 5px;}
}



/* sp only */
@media screen and (max-width: 899px){

	/* common item ---------------------------------------*/

	.pc{display: none !important;}
	.pcbr{display: none;}


	/* layout ---------------------------------------*/

	.inner{padding: 0 24px;}


	/* header ---------------------------------------*/

	.header{transition: all .75s ease;}
	.header.UpMove{transform: translate(0,-110%);}
	.header.DownMove{transform: translate(0,0);}
	.header.is-fixed{background: rgba(255,255,255,0.9);}

	.header-inner{
		margin: 0 16px;
		height: 77px;
	}

	.header.is-fixed .header-inner{height:77px;}

	.header-logo{
		width: 120px;
		height: 26px;
	}

	.header .header-logo::after {
		width: 120px;
		height: 26px;
	}

	.header-logo img{width: auto;}

	.header-btn{
		font-size: 14px;
		width: 140px;
		height: 47px;
		border-radius: 24px;
		position: absolute;
		right: 68px;
		top: 16px;
	}

	#openmenu{
		display:block;
		width:48px;
		height:48px;
		overflow: hidden;
		position:absolute;
		right:15px;
		top:15px;
		z-index: 9999;
		background: #1770C9;
		border-radius:50%;
		transition: all .6s ease;
	}

	#openmenu.is-open{background: #fff;}

	#openmenu span{
		content:'';
		display: block;
		width:16px;
		height:1px;
		position: absolute;
		left:50%;
		transform: translateX(-50%);
		transition: 0.6s;
		background: #fff;
	}

	#openmenu span:nth-child(1){top:17px;}
	#openmenu span:nth-child(2){top:23px;}
	#openmenu span:nth-child(3){top:29px;}

	#openmenu.is-open span{background: #0A7EBF;}

	#openmenu.is-open span:nth-child(1){
		transform:translateX(-50%) rotate(45deg);
		top:24px;
	}

	#openmenu.is-open span:nth-child(2){opacity:0;}

	#openmenu.is-open span:nth-child(3){
		transform:translateX(-50%) rotate(-45deg);
		top:24px;
	}

	.bodyfixed{
		position: fixed;
		width: 100%;
		height: 100%;
	}

	.overlay{
		content: '';
		display: block;
		width: 10px;
		height: 10px;
		border-radius: 50%;
		background: #0A7EBF;
		transform: scale(1);
		position: absolute;
		right: 0;
		top: 0;
		opacity: 0;
		transition: all 1s ease;
		z-index: 100;
	}

	.overlay.is-large{
		transform: scale(300);
		opacity: 1;
	}

	/* interview01 ---------------------------------------*/
	.fixedheader{
		background: rgba(255,255,255,0.9);
	}

	.fixedheader-inner{
		margin: 0 16px;
		height: 77px;
		background: transparent;
	}	

	.fixedheader-logo{
		width: 100px;
		height: 22px;
	}

	.fixedheader-logo img{width: auto;}
	/* /interview01 ---------------------------------------*/


	/* gnav ---------------------------------------*/

	.gnav{
		height: 100dvh !important;
		border:none;
		padding: 85px 25px 20px;
		overflow:auto;
		z-index:100;
		position: absolute;
		right: 0;
		left:0px;
		top:0px;
		width:100%;
		align-items: unset;
		display: block;
		transform: translateY(0);
		display: none;
	}

	#gnav.is-active{}

	.gnav-list{
		padding-right: 0;
		display: block;
		max-width: 330px;
		margin: 0 auto;
	}

	.gnav-list > li{
		display: block;
		margin-bottom: 28px;
		font-size: 16px;
		transition: all .75s ease;
		opacity: 0;
		transform: translate(0,20px);
	}

	.gnav-list > li:nth-child(1){transition-delay: 0s;}
	.gnav-list > li:nth-child(2){transition-delay: 0.1s;}
	.gnav-list > li:nth-child(3){transition-delay: 0.2s;}
	.gnav-list > li:nth-child(4){transition-delay: 0.3s;}
	.gnav-list > li:nth-child(5){transition-delay: 0.4s;}
	.gnav-list > li:nth-child(6){transition-delay: 0.5s;}
	.gnav-list > li:nth-child(7){transition-delay: 0.6s;}
	.gnav-list > li:nth-child(8){transition-delay: 0.7s;}
	.gnav-list > li:nth-child(9){transition-delay: 0.8s;}
	.gnav-list > li:nth-child(10){transition-delay: 0.9s;}

	#gnav.is-active .gnav-list > li{
		opacity:1;
		transform: translate(0,0);
	}

	.gnav-list li a {display: inline-block;}
	.gnav-list li:nth-of-type(n+2) {margin-left: 0;}
	.gnav .btn-wrapper li{display: block;}

	.gnav .btn-wrapper{
		padding-bottom: 20px;
		max-width: 330px;
		margin: 0 auto;
		opacity: 0;
		transform: translate(0,20px);
	}

	#gnav.is-active .btn-wrapper{
		transition: all .75s ease;
		transition-delay: 0.8s;
		opacity: 1;
	}

	.header.is-fixed .gnav-list > li a {color:#fff;}
	.header.is-fixed .gnav-list li a[target="_blank"]::after{background: #fff;}

/* interview01 ---------------------------------------*/
	.fixedheader .gnav .gnav-list > li a{color: #fff;}
	.fixedheader .gnav-list li a[target="_blank"]::after{background: #fff;}
/* /interview01 ---------------------------------------*/


	/* btn ---------------------------------------*/

	.btn-wrapper li {display: inline-block;}
	.btn-wrapper li:nth-of-type(n+2) {margin: 20px 0 0 0;}

	.btn-outline,
	.btn-white,
	.btn-blue {
		display: flex;
		justify-content: center;
		align-items: center;
		text-align: center;
		font-weight: 700;
		line-height: 1.6;
		cursor: pointer;
		box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.04);
		padding-bottom: 1px;
	}

	.btn-outline {
		background-color: #ffffff;
		color: var(--ac-color-blue);
		border: 1px solid var(--ac-color-blue);
	}

	.btn-white {
		background-color: #ffffff;
		color: var(--ac-color-blue);
		border: 1px solid var(--ac-color-blue);
	}

	.btn-blue {
		background-color: var(--ac-color-blue);
		color: #ffffff;
		border: 1px solid var(--ac-color-blue);
	}

	.gnav-btn-01 {
		font-size: 16px;
		width: 330px;
		height: 48px;
		border-radius: 24px;
		max-width: 100%;
	}

	.gnav-btn-02 {
		font-size: 16px;
		width: 330px;
		height: 48px;
		border-radius: 24px;
		max-width: 100%;
	}

	.kv-btn{
		width: 330px;
		height: 54px;
		margin: 0 auto;
		max-width: 100%;
	}

	.cta-btn{
		width: 330px;
		max-width: 95%;
	}

	.ambassador-btn {
		width: 330px;
		max-width: 100%;
	}

	.footer-btn{
		font-size: 16px;
		width: 200px;
		height: 48px;
		border-radius: 24px;
	}

	.btn-outline:hover {
		background-color:#ffffff;
		border: 2px solid var(--ac-color-blue);
		color: var(--ac-color-blue);
	}

	.btn-white:hover {
		background-color:var(--ac-color-blue);
		color: #ffffff;
	}

	.btn-blue:hover {
		background-color: #ffffff;
		color: var(--ac-color-blue);
	}

	/* interview01 ---------------------------------------*/
	.fixedheader .gnav .btn-wrapper > li .btn-blue{
		background-color: #ffffff;
		color: var(--ac-color-blue);
		border: 1px solid var(--ac-color-blue);
	}

	.fixedheader .gnav .btn-wrapper > li .btn-blue:hover{
		background-color:var(--ac-color-blue);
		color: #ffffff;
	}
	/* /interview01 ---------------------------------------*/




	/* section-title ---------------------------------------*/

	.section-title {
		font-size: 26px;
		line-height: 1.4;
		margin-bottom: 10px;
		letter-spacing: 0.08em;
	}

	.section-title-blue{
		font-size: 18px;
		padding-bottom: 7px;
		letter-spacing: 0;
	}


	/* kv ---------------------------------------*/

	.kv {
		background: url('../img/coaresearcher/index/kv_sp.jpg') no-repeat center top;
		background-size: cover;
		padding: 0 0px;
	}

	.kv-inner {padding: 70vw 0 50px;}

	.kv-image-text{
		width: 327px;
		margin: 0 auto;
	}

	.kv-title {
		font-size: 16px;
		text-align: center;
		font-weight: 600;
		padding-bottom: 23px;
	}

	.kv-title strong {
		font-size: 38px;
		text-align: center;
		line-height: 1.65;
		letter-spacing: 3px;
		padding-bottom: 10px;
	}


	/* logoarea ---------------------------------------*/

	.logoarea {
		padding: 28px 0;
	}

	.logoarea .swiper:not(.swiper-initialized) {
		padding: 0 24px;
	}

	.logoarea-title{
		font-size: 20px;
	}

	.logoarea .swiper:not(.swiper-initialized) .swiper-wrapper{
		justify-content: flex-start;
		flex-wrap: wrap;
		margin-left: -4%;
	}

	.logoarea .swiper-slide {
		margin: 0 2%;
	}

	.logoarea .swiper:not(.swiper-initialized) .swiper-slide {
		width: calc(88% / 3);
		margin: 0 0 4% 4%;
	}


	/* feature ---------------------------------------*/

	.feature{
		/* padding-top: 80px; 24/03/26　アップデート */
		padding-top: 40px;
	}

	.feature-wrapper{padding-bottom: 10px;}

	.feature-block {
		display: block;
		gap: 0;
		padding-bottom: 50px;
	}

	.feature-block:last-of-type {
		padding-bottom: 32px;
	}

	.feature-block-image {
		width: auto;
		text-align: center;
		margin-bottom: 10px;
	}

	.block-odd {order: 0;}
	.feature-block-content {width: auto;}

	.feature-block-content p{
		font-size: 14px;
		letter-spacing: 0.07em;
	}

	.feature-block-title {
		font-size: 20px;
		line-height: 1.6;
		padding-bottom: 20px;
		letter-spacing: 0.04em;
	}

	.feature-block-title-num {
		letter-spacing: 0;
		padding-bottom: 4px;
	}

	.feature-block-wrapper {
		max-width: 400px;
		padding: 22px;
	}

	.feature-block-wrapper-title {padding-bottom: 8px;}

	.feature-block-case-icon {padding-left: 50px;}
	.feature-block-case-icon p {
		font-size: 14px;
		padding-bottom: 0;
		line-height: 1.7;
		letter-spacing: 0.05em;
	}

	.feature-block-case-icon::before {
		width: 42px;
		height: 42px;
	}

	.feature-block-change {
		margin-top: 14px;
	}

	.feature-block-change-title {
		font-size: 20px;
		margin-bottom: 30px;
	}

	.feature-block-change-title::after {
		width: 80px;
		bottom: -10px;
	}

	.feature-block-change-list {
		display: block;
	}

	.feature-block-change-list li {
		max-width: unset;
		margin-bottom: 20px;
	}


	/* move ---------------------------------------*/
	.move {
		padding-bottom: 80px;
	}

	.move .section-title {
		margin-bottom: 40px;
	}

	.move-wrapper {
		width: 100%;
		padding-top: 56%;
	}


	/* cta ---------------------------------------*/

	.cta {background-image: url('../img/coaresearcher/index/cta_bg_sp.jpg');}
	.cta-inner {padding:95px 0 95px;}

	.cta-title {
		font-size: 28px;
		padding-bottom: 22px;
		padding-right: 8px;
		letter-spacing: 0.03em;
	}

	.cta-text {
		font-size: 15px;
		padding-bottom: 5px;
	}


	/* ambassador ---------------------------------------*/

	.ambassador{
		padding-top: 80px;
	}

	.ambassador-wrapper {
		/* margin-bottom: 80px; */
	}

	.cliant-wrapper {
		margin-bottom: 80px;
	}

	.ambassador-wrapper:not(:first-child) {
		margin-top: 40px;
	}

	.cliant-wrapper:not(:first-child) {
		margin-top: 40px;
	}

	.ambassador-title{
		font-size: 20px;
		letter-spacing: 0.05em;
		margin-bottom: 23px;
	}

	.ambassador-list{
		align-items: flex-start;
		margin-left: 0;
	}

	.ambassador-list > li{
		width: 31%;
		margin: 0 0 10px 3.5%;
	}

	.ambassador-list > li:nth-child(3n + 1){margin-left: 0;}

	.ambassador-container{
		margin-top: 30px;
	}

	.ambassador-block{
		width: auto;
		margin: 0 0 30px;
	}

	.ambassador-block:last-of-type {
		margin: 0;
	}

	.ambassador-block-image{margin-bottom: 24px;}

	.ambassador-block-image img{width:100%;}

	/* global-interview ---------------------------------------*/

	.globalinterview {
		padding-top: 80px;
	}
	.globalinterview-container{
		margin-top: 30px;
	}

	/* flow ---------------------------------------*/

	.flow{
		padding-top: 80px;
	}

	.flow-wrapper{
		display: block;
		max-width: 330px;
		margin: 0 auto;
		padding-top: 35px;
	}

	.flow-block{
		width: auto;
		margin: 0 0 55px;
		padding-bottom: 0;
	}

	.flow-block::after{
		content: '';
		position:absolute;
		right: 50%;
		top: auto;
		bottom: -35px;
		width: 10px;
		height:  10px;
		transform: translate(0, -50%) rotate(135deg);
	}

	.flow-block:last-child{margin-bottom: 0;}

	.flow-block:last-child::after{display: none;}

	.flow-block-image{margin-bottom: 20px;}

	.flow-block-title{
		font-size: 18px;
		position: relative;
		height: auto;
		display: block;
		line-height: 1.6;
		letter-spacing: 0.1em;
	}


	/* faq ---------------------------------------*/

	.faq {
		padding: 80px 0;
	}

	.faq::after{
		height:calc(100% - 130px);
		top:130px;
	}

	.faq-list{padding-top: 30px;}

	.faq-list > li{padding: 30px 0;}

	.faq-list dt{
		letter-spacing: 0.05em;
		padding: 10px 0 0 35px;
		margin-bottom: 10px;
	}

	.faq-list dd{
		padding: 15px 0 0 35px;
		font-size: 14px;
		line-height: 2;
		letter-spacing: 0.05em;
	}

	.faq-list dd > ul > li{padding-left: 18px;}


	/* footer ---------------------------------------*/

	.footer{}

	.footer-inner{padding: 0 20px;}

	.footer-container{
		padding: 48px 0px 47px;
		display: block;
	}

	.footer-block{
		display: block;
		width: auto;
	}

	.footer-logo{
		width: 151px;
		margin: 0 auto 40px;
		display: block;
	}

	.footer-logo img{width:100%;}

	.footer-nav{
		display: block;
		width: auto;
		max-width: 330px;
		margin: 0 auto 40px;
	}

	.footer-nav-list{
		display: block;
		width: auto;
	}

	.footer-nav-list li{
		font-size: 15px;
		letter-spacing: 0.1em;
		width: auto;
		margin: 24px 0;
	}

	.footer-btn-wrapper{width: auto;}

	.footer-btn-list{text-align: center;}
	.footer-btn-list > li{
		display: block;
		text-align: center;
	}

	.footer-btn-list > li a{margin:0 auto;}

	.footer-btn{
		width: 330px;
		max-width: 100%;
	}

	.copyright {padding: 28px 0;}



/* subpage - interview01 ---------------------------------------*/
	.interview-pankuzu {
		padding:97px 0 20px;
	}

	.interview-inner {
		width:100%;
		padding: 0 0 64px;
		margin:0 auto;
	}

	.interview-wrapper {
		padding: 0 24px 32px;
		margin-bottom: 64px;
	}

	.interview-image{
		margin-left: calc(50% - 50vw);
		margin-right: calc(50% - 50vw);
		margin-bottom: 28px;
	}

	.interview-career {
		font-size: 14px;
		padding: 20px;
		margin-bottom: 28px;
		letter-spacing: 0.05em;
	}

	.interview-container {
	}

	.wp-block-custom-interview-block-group {
		margin-bottom: 28px;
	}

	.wp-block-custom-interview-block-title{
		font-size: 20px;
		padding-left: 32px;
		margin-bottom: 20px;
		letter-spacing: 0.09em;
	}

	.wp-block-custom-interview-block-title:before {
		top: 0;
		left: 0;
		width: 20px;
	}

	.wp-block-custom-interview-block-text{
		font-size: 14px;
		letter-spacing: 0.09em;
	}

	.interview-cta-title {
		font-size: 24px;
		line-height: 1.6;
	}

}

/* iphone5 iphoneSE用 */
@media screen and (max-width: 370px){

}

/* interview wordpress---------------------------------------*/

.interviewTop {
  padding-top: 20px;
}
.interviewTop-accordion {
  overflow: hidden;
  height: 0;
  transition: height 0.5s ease;
}
.interviewTop-btn {
  width: 100%;
  background-color: #fff;
}
.interviewTop-btnSort {
  -webkit-appearance: none;
	 -moz-appearance: none;
		  appearance: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  width: 100%;
  border: 1px solid #0a7ebf;
  background-color: #fff;
  color: #0a7ebf;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  transition: 0.5s;
}
@media screen and (min-width: 641px) {
  .interviewTop-btnSort {
	padding: 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-btnSort {
	padding: 12px 0;
  }
}
.interviewTop-btnSort::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/coaresearcher_interview/arrow_icon_blue.png);
  background-size: cover;
}
.interviewTop-btnSort.is-open {
  width: 100%;
  background-color: #0a7ebf;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
.interviewTop-btnSort.is-open::after {
  content: "";
  display: block;
  width: 24px;
  aspect-ratio: 1;
  background-image: url(../img/coaresearcher_interview/arrow_icon.png);
  background-size: cover;
}
.interviewTop-btn2 {
  width: 100%;
  border-top: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .interviewTop-btn2 {
	padding: 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-btn2 {
	padding: 8px 0;
  }
}
.interviewTop-btn2Reset {
  display: block;
  padding: 8px 12px;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-inline: auto;
}
.interviewTop-btn2Reset:hover {
  color: #0a7ebf;
}
.interviewTop-terms {
  -webkit-appearance: none;
	 -moz-appearance: none;
		  appearance: none;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .interviewTop-terms {
	padding: 28px 40px;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-terms {
	overflow-y: scroll;
	padding: 18px 20px;
	max-height: 372px;
  }
}
.interviewTop-termsField {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 641px) {
  .interviewTop-termsField {
	gap: 24px;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-termsField {
	gap: 14px;
  }
}
.interviewTop-termsItem {
  display: flex;
}
@media screen and (min-width: 641px) {
  .interviewTop-termsItem {
	align-items: center;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-termsItem {
	align-items: flex-start;
	flex-direction: column;
  }
}
.interviewTop-termsItem-ttl {
  flex-shrink: 0;
  padding: 6px 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .interviewTop-termsItem-ttl {
	width: 10%;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-termsItem-ttl {
	width: 100%;
  }
}
.interviewTop-termsItem-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
@media screen and (min-width: 641px) {
  .interviewTop-termsItem-choice {
	padding-left: 20px;
	border-left: 1px solid #ccc;
  }
}
@media screen and (max-width: 640px) {
  .interviewTop-termsItem-choice {
	justify-content: left;
	padding-top: 10px;
	width: 100%;
	border-top: 1px solid #ccc;
  }
}
.interviewTop-termsItem-choiceInput {
  position: absolute !important;
  clip: rect(0px, 0px, 0px, 0px);
  border-radius: 50px;
}
.interviewTop-termsItem-choiceLabel {
  display: inline-block;
  box-sizing: border-box;
  padding: 7px 12px 8px;
  border: 1px solid #fff;
  border-radius: 50px;
  font-size: 14px;
  line-height: 1.5;
  transition: all 0.3s;
}
.interviewTop-termsItem-choiceInput:checked + .interviewTop-termsItem-choiceLabel {
  border: 1px solid #0a7ebf;
  background: #f7fbfd;
  color: #0a7ebf;
}
.interviewTop-termsItem-choiceInput:focus + .interviewTop-termsItem-choiceLabel {
  outline-style: auto;
  outline-color: #0a7ebf;
}
.interviewTop-list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 40px;
  padding: 40px 0 120px;
}
.interviewTop-listItem {
  border-radius: 4px;
}
@media screen and (min-width: 641px) {
  .interviewTop-listItem {
	width: calc((100% - 80px) / 3);
  }
  .interviewTop-listBnr {
	width: calc((100% - 40px) / 2);
  }
}
@media (max-width: 768px) and (min-width: 641px) {
	.interviewTop-listItem {
		width: calc((100% - 40px) / 2);
	}
	.interviewTop-listBnr {
		width: 100%;
	}
}
@media screen and (max-width: 640px) {
  .interviewTop-listItem {
	width: 100%;
  }
}
.interviewTop-listItem-link {
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 400px;
  height: 100%;
  border-radius: 4px;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.04);
}
.globalinterviewTop-listItem-link {
	min-height: auto;
}
.interviewTop-listItem-link:hover {
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.12);
  opacity: 1!important;
}
.interviewTop-listItem-link:hover .interviewTop-listItem-ttl {
  color: #0a7ebf;
}
.interviewTop-listItem-txt {
  padding: 20px;
  border-radius: 4px;
}
.interviewTop-listItem-ttl {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.5;
  transition: 0.3s;
}
.interviewTop-listItem-name {
  padding-top: 12px;
  font-size: 12px;
  line-height: 1.8;
}
.interviewTop-listItem-tag {
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	padding: 20px;
}
.interviewTop-listItem-tagItem {
  padding: 4px 6px;
  background-color: #f7fbfd;
  color: #0a7ebf;
  font-size: 10px;
  line-height: 1;
}