@charset "utf-8";

/* ========================================================
	top.css => ページ用CSS
======================================================== */

/* header
============================================================================================================ */
@media screen and (max-width: 960px) {
	#header {
		position: relative;
	}
	#header .head {
        border-bottom: 1px solid var(--c-gray);
		padding-bottom: 6px;
    }
	.sp_header_top {
		display: none;
		transition: all 0.3s ease;
	}
	#header.open .sp_header_top {
		display: block !important;
		position: fixed;
		animation: fadeIn 0.7s forwards;
	}
	#header.fixed.open .sp_header_top {
		animation: none;
	}
    .header_top,
    .header_middle {
        display: block;
    }
	.header_top {
		padding-top: 15px;
	}
	.header_middle {
		padding: 20px 0;
	}
	.header_logo_round {
		width: 80px;
		height: auto;
		margin: 0 auto 15px;
	}
	.header_title_sub {
		font-size: clamp(12px, calc(7.512821px + 1.196581vw), 19px);
	}
	.header_title_main {
		padding: 0;
		margin-top: 2px;
	}
	.header_title_main img {
		width: 100%;
	}
	.header_middle .sns_box {
		display: none !important;
	}
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* top contents
============================================================================================================ */
#top_main .catch {
	font-family: var(--font_noto_serif);
	font-size: 8.7rem;
	font-weight: 400;
	text-align: center;
	letter-spacing: -0.06em;
	line-height: 1;
	white-space: nowrap;
	padding-top: 0.5em;
	position:relative;
}
#top_main .catch span:first-child {
	margin-right: -0.6em;
}
#top_main .catch span:nth-child(2) {
	margin-left: -0.1em;
	margin-right: -0.1em;
}
#top_main .catch span:nth-child(3) {
	margin-left: -0.1em;
	margin-right: -0.2em;
}
#top_main .catch span:nth-child(4) {
	margin-left: -0.1em;
	margin-right: -0.4em;
}
#top_main .catch:before,
#top_main .catch:after {
	content:"";
	display: inline-block;
	width: 134px;
	height: 105px;
	z-index: 2;
}
#top_main .catch:before {
	background: url(../images/top/mark_d_quotation_left.svg) no-repeat;
	background-size: contain;
	position: absolute;
	left: -12px;
	top: -75px;
}
#top_main .catch:after {
	background: url(../images/top/mark_d_quotation_right.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: -12px;
	bottom: -135px;
}
#top_main + .section_border {
	position: relative;
}
#top_main + .section_border:after {
	content:"";
	display: inline-block;
	width: 175px;
	height: 1px;
	background: var(--bg-gray);
	position:absolute;
	right: 0;
	top: -1px;
}
@media screen and (max-width: 1360px) {
	#top_main .catch {
		font-size: 6.2vw;
	}
	#top_main .catch:before,
	#top_main .catch:after {
		width: 10vw;
		height: auto;
		aspect-ratio: 134 / 105;
	}
	#top_main .catch:before {
		top: -5.5vw;
	}
	#top_main .catch:after {
		bottom: -10.5vw;
	}
}
@media screen and (max-width: 960px) {
	#container {
        padding-top: 1.5em;
    }
}
@media screen and (max-width: 768px) {
	#top_main .catch {
		font-size: 11vw;
		line-height: 1.2;
		text-align: left;
	}
	#top_main .catch:before,
	#top_main .catch:after {
		width: 12vw;
		aspect-ratio: 134 / 105;
	}
	#top_main .catch:before {
		left: -7px;
		top: -7vw;
	}
	#top_main .catch:after {
		right: -7px;
		bottom: -13vw;
	}
	#top_main + .section_border {
		margin-top: 30px;
	}
	#top_main + .section_border:after {
		width: 13.5vw;
	}
}

/* concept_area
============================================================================================================ */
.concept_area {
	display: flex;
	justify-content: space-between;
}
.concept_area_text {
	width: 33.36%;
}
.concept_area_img {
	width: 58.38%;
}
.concept_area .title_set_l {
    margin-bottom: 2.5em;
}
.concept_area .lead {
	font-family: var(--font_noto_serif);
	font-size: 4.2rem;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: -0.06em;
	margin-bottom: 1em;
	margin-right: -1em;
}
.concept_area .lead > span {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}
.concept_area .lead > span:before {
	content:"";
	display: inline-block;
	width: 100%;
	height: 0.5em;
	background: #eed4d8;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.concept_area .lead > span:last-child:before {
	width: calc(100% - 0.6em);
}
.concept_area .lead > span > span {
	margin-left: -0.2em;
	margin-right: -0.2em;
}
@media screen and (max-width: 960px) {
	.concept_area {
		flex-direction: column-reverse;
	}
	.concept_area_text {
		width: 100%;
	}
	.concept_area_img {
		width: 100%;
		margin-bottom: 5%;
	}
}
@media screen and (max-width: 768px) {
	.concept_area_img {
		margin-bottom: 10%;
	}
	.concept_area .title_set_l {
		margin-bottom: 1.5em;
	}
	.concept_area .lead {
		font-size: 7.5vw;
	}
}

/* top_blog_list
============================================================================================================ */
.top_blog_list {
	display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.top_blog_list > article {
    width: 28.36%;
    margin-bottom: 6rem;
    position:relative;
}
.top_blog_list > article:not(:first-child):after {
    content:"";
    display: inline-block;
    width: 1px;
    height: 100%;
    background: var(--c-gray);
    position: absolute;
    left: -13%;
    top: 0;
}
.top_blog_list:after {
    content:"";
    display: block;
    width: 28.36%;
}
.top_blog_list .blog_image {
    width: 100%;
    height: 226px;
}
.top_blog_list .blog_image img {
    aspect-ratio: 340 / 226;
	object-fit: cover;
    filter: grayscale(1);
    transition: all 0.3s;
	width: 100%;
}
.top_blog_list a:hover .blog_image img {
    filter: grayscale(0);
}
.top_blog_list a {
	text-decoration: none;
}
.top_blog_list .blog_title {
    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
	margin-top: 0.8em;
}
.top_blog_list .blog_date {
    font-size: 1.3rem;
    margin-top: 0.5em;
    letter-spacing: 0.1em;
}
.top_blog_list .blog_text {
    font-size: 1.3rem;
    margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
    .top_blog_list > article {
        width: 100%;
        margin-bottom: 7%;
    }
    .top_blog_list > article:not(:first-child) {
        padding-top: 1.5em;
    }
    .top_blog_list > article:not(:first-child):after {
        content:"";
        display: inline-block;
        width: 100%;
        height: 1px;
        background: var(--c-gray);
        position: absolute;
        left: 0;
        top: 0;
    }
    .top_blog_list:after {
        content:none;
    }
	.top_blog_list .blog_image {
        width: 100%;
        height: 57vw;
    }
    .top_blog_list .blog_image img {
        aspect-ratio: 318 / 212;
        filter: grayscale(0);
    }
	.top_blog_list .blog_title {
		margin-top: 0.5em;
	}
	.top_blog_list .blog_date {
		margin-top: 0.4em;
	}
	.top_blog_list .blog_text {
		margin-top: 0.4em;
	}
}

/* top_voice_list
============================================================================================================ */
.top_voice_cont {
	margin-right: calc(50% - 50vw); 
} 
.top_voice_list {
	display: flex;
	gap: 20px;
	margin-bottom: 6rem;
}
.top_voice_list li {
	width: 380px;
	display: flex;
	margin-right: 20px;
}
.top_voice_list li a {
	display: flex;
	flex-direction: column;
	width: 100%;
	background: #fff;
	padding: 20px;
	text-decoration: none;
}
.top_voice_list .voice_image {
	width: 100%;
	aspect-ratio: 340 / 226;
	overflow: hidden;
}
.top_voice_list .voice_image img {
    aspect-ratio: 340 / 226;
    object-fit: cover;
    transition: all 0.3s;
}
.top_voice_list .voice_title {
	font-size: 1.8rem;
    font-weight: 500;
    line-height: 1.5;
    margin-top: 0.8em;
}
.top_voice_list .voice_date {
	font-size: 1.3rem;
    margin-top: 0.5em;
    letter-spacing: 0.1em;
}
.top_voice_list .voice_text {
	font-size: 1.3rem;
    margin-top: 0.5em;
}
.top_voice_list li a:hover img {
	transform: scale(1.1);
}
.slick-slider {
    margin-bottom: 6rem !important;
}
.slick-prev,
.slick-next {
	position: absolute;
	right: inherit !important;
	left: calc(100% - (100vw - 100%) - 2.65%) !important;
	top: -80px !important;
	width: 30px !important;
	height: 30px !important;
	margin-top: 0 !important;
	z-index: 5 !important;
}
.slick-prev {
	left: calc(100% - (100vw - 100%) - 50px - 2.65%) !important;
}
.slick-prev:before,
.slick-next:before {
	content:none !important;
}
.slick-prev:after,
.slick-next:after {
	content:"";
    display: inline-block;
    width: 30px;
    height: 30px;
    background:url(../images/icon_arrow_round_l.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 0;
    top: 0;
}
.slick-next:after {
	transform: scale(-1, 1);
}
@media screen and (max-width: 768px) {
	.top_voice_list {
		gap: 14px;
		margin-bottom: 3rem;
	}
	.top_voice_list li {
		width: 85.8vw;
		display: flex;
		margin-right: 14px;
	}
	.top_voice_list li a {
		padding: 15px;
	}
	.slick-slider {
		margin-bottom: 3rem !important;
	}
	.slick-prev,
	.slick-next {
		left: inherit !important;
		right: calc(3.55vw + 3.75vw) !important;
		top: calc(-3rem - 30px ) !important;
	}
	.slick-prev {
		left: inherit !important;
		right: calc(3.55vw + 3.75vw + 45px) !important;
	}
}

/* management_checklist_area
============================================================================================================ */
.management_checklist_area {
	text-align: center;
	padding-top: 18rem;
	background: url(../images/top/bg_management_checklist.svg) no-repeat;
	background-size: 100% auto;	
	background-position: 0 5rem;
}
.management_checklist_area + .section_border {
	margin-top: 0;
}
.management_checklist_area .title_set_l {
	margin-bottom: 2.5rem;
}
.management_checklist_area .title_set_l .title_set-en {
	font-size: 7.0rem;
}
.management_checklist_lead {
	font-family: var(--font_noto_serif);
	font-size: 3.2rem;
	font-weight: 300;
	line-height: 1.4;
	letter-spacing: 0em;
	margin-bottom: 0.8em;
}
.management_checklist_lead > span {
	position: relative;
	z-index: 1;
	white-space: nowrap;
}
.management_checklist_lead > span:before {
	content:"";
	display: inline-block;
	width: 100%;
	height: 0.5em;
	background: #eed4d8;
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: -1;
}
.management_checklist_area .btn {
	margin: 5rem 0 6rem;
}
@media screen and (max-width: 768px) {
	.management_checklist_area {
		padding-top: 6.5rem;
		background: url(../images/top/bg_management_checklist_sp.svg) no-repeat;
		background-size: 98% auto;	
		background-position: center 3rem;
	}
	.management_checklist_area .title_set_l {
		margin-bottom: 1.5rem;
	}
	.management_checklist_area .title_set_l .title_set-en {
		font-size: 4.0rem;
	}
	.management_checklist_lead {
		font-size: 2.2rem;
		margin-bottom: 0.8em;
		padding: 0 !important;
	}
	.management_checklist_area > p {
		padding: 0 6%; 
	}
	.management_checklist_area .btn {
		margin: 2.5rem 0 4rem;
	}
}

/* faq_cont
============================================================================================================ */
.faq_cont {
	display: flex;
	justify-content: space-between;
	position:relative;
	margin-bottom: 6rem;
}
.faq_cont:before {
	content:"";
	display: inline-block;
	width: 7px;
    height: 100%;
    background: var(--c-primary);
    position: absolute;
    right: 50%;
	transform: translateX(-50%);
    top: 0;
}
.faq_cont .faq_cont_box {
	width: 41.67%;
}
.faq_list_search {
	display: flex;
	flex-wrap: wrap;
	gap: 1.2em 3.8%;
}
.faq_list_search > li {
	width: 30.8%;
	display: flex;
}
.faq_list_search > li > a {
	display: block;
	position:relative;
	font-size: 1.4rem;
	text-decoration: none;
	padding-bottom: 0.7em;
	display: flex;
	flex-direction: column;
}
.faq_list_search > li > a:hover {
	background: #fff;
}
.faq_list_search .faq_list_search_image {
	aspect-ratio: 154 / 120;
}
.faq_list_search .faq_list_search_image img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.faq_list_search  .faq_list_search_text {
	display: inline-block;
	padding: 0 2.5em 0 1em;
	position: relative;
}
.faq_list_search  .faq_list_search_text:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/icon_arrow_round.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 1em;
    top: 50%;
    transform: translateY(-50%);
}
.faq_list_popular {
	border-top: 1px solid var(--c-gray);
}
.faq_list_popular > li > a {
	display: block;
	text-decoration: none;
	padding: 1.2em 3.5em 1.2em 1.5em;
	border-bottom: 1px solid var(--c-gray);
	position:relative;
}
.faq_list_popular > li > a:after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: url(../images/icon_arrow_round.svg) no-repeat;
    background-size: contain;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
.faq_list_popular > li > a:hover {
	background: #fff;
	opacity: 1;
}
@media screen and (max-width: 768px) {
	.faq_cont {
		display: block;
		margin-bottom: 3rem;
	}
	.faq_cont:before {
		content:none;
	}
	.faq_cont .faq_cont_box {
		width: 100%;
		position:relative;
	}
	.faq_cont > div:first-child {
		padding-bottom: 4.5rem;
	}
	.faq_cont > div:first-child:before {
		content:"";
		display: inline-block;
		width: 100%;
		height: 7px;
		background: var(--c-primary);
		position: absolute;
		left: 0;
		bottom: 0;
	}
	.faq_cont .faq_cont_box + .faq_cont_box {
		margin-top: 2.5rem;
	}
	.faq_list_search {
		gap: 1.0rem 1.0rem;
	}
	.faq_list_search > li {
		width: 48.3%;
	}
	.faq_list_search > li > a {
		background: #fff;
	}
	.faq_list_popular > li > a {
		padding: 0.5em 2.5em 0.5em 0;
	}
	.faq_list_popular > li > a:after {
		right: 10px;
	}
}
