﻿@charset "UTF-8";

/* ------------------------- 
anatika header [start] 固定 
---------------------------- */
.anatika__header {
	width: 100%;
	height: auto;
	text-align: center;
}

/* anatika header__img 固定 */
.anatika__header h1 a img {
	width: 80%;
	height: auto;
}

/* anatika header__catch 固定 */
.anatika__header h2 {
	margin-left: 3rem;
	position: relative;
	text-align: left;
}
.anatika__header h2::after {
	content: "";
	position: absolute;
  display: block;
	min-width: 10em;
  height: 3px;
  background: linear-gradient(to right, #93c1e7, #007EE2);
}

.anatika__header .catchcopy {
	width: 80%;
	margin: 0 auto;
	text-align: left;
}
	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.anatika__header h1 a img {
			width: 100%;
			height: auto;
		}

		.anatika__header h2 {
			margin-left: 0;
		}

		.anatika__header .catchcopy {
			width: 100%;
			margin: 0;
		}
	}

/* ------------------------- 
business/notice/communication
各トップページの
header-nav
---------------------------- */
.anatika__header .top-nav {
	width: 80%;
	height: auto;
	margin: 0 auto;
	padding: 1rem 0;
	background-color: #f4f4f4;
}

.anatika__header .top-nav ul {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
}

.anatika__header .top-nav ul li a {
	color: #6f6f6f;
	text-decoration: none;
	transition: all 0.3s;
}
.anatika__header .top-nav ul li a:hover {
	color: #555;
	text-decoration: underline;
}

@media only screen and (max-width: 600px) {
	.anatika__header .top-nav {
		width: 100%;
	}
	
	.anatika__header .top-nav ul {
		flex-flow: column wrap;
		justify-content: space-around;
		align-items: center;	
	}

	.anatika__header .top-nav ul li::after {
		content: "-";
		display: block;
		clear: both;
	}
}

/* ------------------------- 
anatika header [end] 固定 
---------------------------- */





/* ------------------------- 
anatika contents [start] 固定 
---------------------------- */
.anatika__contents {
	width: 100%;
	height: auto;
	border-top: 3px dashed #f4f4f4;
	border-bottom: 3px dashed #f4f4f4;
	padding: 2rem 0;
}

.anatika__contents h2 {
	margin: 0 0 2rem 2rem;
}

@media only screen and (max-width: 600px) {
	.anatika__contents h2 {
		margin: 0 0 1rem;
	}
}
/* ------------------------------ 
anatika top contents [start] 変動 
--------------------------------- */
.contents-menu {
	display: flex;
	flex-flow: row nowrap;
	justify-content: space-around;
	align-items: center;
}

/* card layout */
.card{
  width: 30%;
  height: auto;
  border-radius: 8px;
  overflow: hidden;
	transition: box-shadow 0.3s;
}

.card a {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

.card__imgFrame{
	position: relative;
  width: 100%;
  padding-top: 97.77%;
  box-sizing: border-box;
}
.card__imgFrame img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.card__textBox{
  width: 100%;
  height: 12rem;
  padding: 0 18px 10px;
  background: #fff;
  box-sizing: border-box;
	display: flex;
	flex-flow: column nowrap;
	justify-content: space-around;
	align-items: center;
}
.card__title {
	flex-basis: auto;
	flex-shrink: 1;
}
.card__title p {
  font-size: clamp(1rem, 0.9387rem + 0.2614vw, 1.125rem);
  min-height: 0vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: bold;
	color: #6f6f6f;
	transition: color 0.3s;
}
.card__text {
	flex-basis: auto;
	flex-shrink: 2;
}
.card__text p {
  font-size: clamp(0.75rem, 0.6887rem + 0.2614vw, 0.875rem);
	min-height: 0vw;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: normal;
	color: #A2A2A2;
	transition: color 0.3s;
}
/* card layout */

/* hover layout */
.card:hover {
	cursor: pointer;
	box-shadow: 0 12px 15px 0 rgba(0, 126, 226, 0.24), 0 17px 50px 0 rgba(0, 126, 226, 0.19);
}

.card a:hover {
	text-decoration: none;
}

.card a:hover .card__title p {
	color: #63B7E6;
}
.card a:hover .card__text p {
	color: #555;
}
/* hover layout */



	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.contents-menu {
			display: flex;
			flex-flow: column nowrap;
			justify-content: space-between;
			align-items: flex-start;
		}

		/* card layout */
		.card{
			width: 100%;
			height: auto;
			margin: 1rem 0;
		}

		.card a {
			flex-flow: row nowrap;
		}

		.card__imgFrame{
			padding-top: 50%;
			transition: box-shadow 0.3s;
		}

		.card__textBox{
			justify-content: space-evenly;
			align-items: center;
		}
		.card__title {
			text-align: center;
		}
		.card__text {
			text-align: center;
		}

		/* hover layout */
		.card a:hover {
			text-decoration: underline;
		}

		.card a:hover .card__imgFrame {
			box-shadow: 0 12px 15px 0 rgba(0, 126, 226, 0.24), 0 17px 50px 0 rgba(0, 126, 226, 0.19);
		}
	}
/* ------------------------------ 
anatika top contents [end] 変動 
--------------------------------- */

/* ------------------------- 
anatika contents [end] 固定 
---------------------------- */





/* ------------------------- 
anatika footer [start] 固定 
---------------------------- */
.anatika__footer {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	border: 3px solid #f4f4f4;
	background: #f4f4f4;
}

.anatika__footer .footer__txt {
	width: 50%;
	text-align: center;
	margin: auto 0;
}
.anatika__footer .footer__txt h3, .footer__txt p {
	color: #747272;
}

.anatika__footer .footer__sns {
	display: flex;
	width: 50%;
	background: #ffffff;
	justify-content: space-around;
}
.anatika__footer .footer__sns img {
	width: 3rem;
	height: auto;
	margin: 2rem 0;
}


	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.anatika__footer {
			flex-direction: column;
		}
		
		.anatika__footer .footer__txt {
			width: 100%;
			margin: 1rem 0;
		}

		.anatika__footer .footer__sns {
			width: 100%;
		}
		.anatika__footer .footer__sns img {
			width: 2.5rem;
			margin: 1rem 0;
		}
	}
/* ------------------------- 
anatika footer [end] 固定 
---------------------------- */





/* ------------------------- 
anatika business-top [start] 固定 
---------------------------- */
.anatika__business-top .business__menu ul {
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

.anatika__business-top .business__menu ul li:first-child,
.anatika__business-top .business__menu ul li:last-child {
	margin: 0;
}
.anatika__business-top .business__menu ul li {
	margin: 3.5rem auto;
	width: 60%;
	height: auto;
	flex-basis: 100%;
}

.anatika__business-top .business__menu ul li a {
	text-decoration: none;
	margin: 0 auto;
}
.anatika__business-top .business__menu ul li a:hover {
	text-decoration: none;
	opacity: 0.5;
}

.b-photo__frame {
  position: relative;
	width: 100%;
  overflow: hidden;
  padding-top: 60%; /* 比率 */
}
.b-photo__frame img {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.business__menu .b-menu__info {
	margin: 1rem 0;
	width: 100%;
	height: auto;
}

.business__menu .b-name {
	font-size: clamp(1.0625rem, 0.9706rem + 0.3922vw, 1.25rem);
	min-height: 0vw;
	font-weight: bolder;
}
.business__menu .b-name__info {
	font-size: clamp(0.75rem, 0.6887rem + 0.2614vw, 0.875rem);
	font-weight: normal;
	line-height: 2;
}

.business__menu .b-name__btn {
	margin-top: 1rem;
	line-height: 2;
	position: relative;
	z-index: 1;
}
.business__menu .b-name__btn::before {
	content: "▶︎";
	display: inline-block;
}
.business__menu .b-name__btn::after {
	content: "";
	position: absolute;
	left: 0;
  bottom: -10px;/*テキストからの距離*/
  width: 0%;/*初期状態では下線非表示*/
  height: 2px;/*下線の高さ*/
  background: #000000;/*下線の色*/
  z-index: -1;
  transition: all 0.3s;/*アニメーション速度*/
}
.business__menu ul li a:hover .b-name__btn::after {
	width: 100%;/*hover時に表示*/
}

	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.anatika__business-top .business__menu ul li {
			width: 90%;
		}
	}

/* ------------------------- 
anatika business-top [end] 固定 
---------------------------- */



/* ------------------------- 
anatika business-interview [start] 固定 
---------------------------- */
/* business__interview 全体のflex */
.business__interview {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-content: center;
}/* flex-1 */

/* .layout-box__profile と .layout-box__text の flex */
.i-layout__box {
	width: 100%;
	height: auto;
	display: flex;
	flex-flow: column nowrap;
	justify-content: center;
	align-items: center;
}

/* .layout-box__profile の設定 */
.layout-box__profile {
	width: 80%;
	height: auto;
	flex-shrink: 1;
	position: relative;
}

.interview__frame {
	padding: 0;
}
.interview__frame img {
	width: 100%;
	height: auto;
/*	aspect-ratio: 2 / 1; */
	object-fit: cover;
}

.interview__info {
	display: block;
	position: absolute;
	top: 85%;
	left: -5%;
	width: 60%;
	padding: 1em;
	text-align: left;
}

.i-name {
	display: block;
}
.i-name p {
	font-size: clamp(1.0625rem, 0.9706rem + 0.3922vw, 1.25rem);
	min-height: 0vw;
	font-weight: bolder;
	line-height: 2;
}

.i-name__info {
	display: block;
	text-align: justify;
}
.i-name__info p {
  font-size: clamp(0.75rem, 0.6887rem + 0.2614vw, 0.875rem);
	min-height: 0vw;
	font-weight: normal;
}

/* .layout-box__text の設定 */
.layout-box__text {
	width: 80%;
	height: auto;
	flex-shrink: 1;
	margin-top: 8rem;
}

.box__title {
	width: fit-content;
	height: auto;
	text-align: justify;

	background: linear-gradient(transparent 70%, #93c1e7 0%);
  display: inline;
  /*横に余白をつけたり、下にずらしたりするときは以下のpaddingを調整してください*/
  padding: 2px 2px 4px 0;
}
.box__title h3 {
	font-size: clamp(1rem, 0.9387rem + 0.2614vw, 1.125rem);
	min-height: 0vw;
	font-weight: bolder;
	display: inline;
	letter-spacing: 0.2em;
	line-height: 2.0;
}

.box__text {
	margin-top: 2rem;
	text-align: justify;
	overflow-wrap: break-word;
}

.box__text p br {
	display: block;
	margin-bottom: 1em;
}

/* .content-box__movie の設定 */
.content-box__movie {
	width: 100%;
	height: auto;
	margin-top: 5rem;
	position: relative;
}

.box__movie-frame {
	position: relative;
	width: 100%;
	height: 100%;
  padding-top: 56.25%; /* 比率 */
}
.box__movie-frame iframe {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 80%; /* 動画の横幅 */
	height: 80%; /* 動画の高さ */
	/* 
	YouTube本来の
	width: 560px;
	height: 315px;
	 */
}

.l-wall {
	width: 80%;
	height: 50%;
	position: absolute;
	bottom: 0;
	right: 0;
	overflow: hidden;
}

	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.layout-box__profile {
			width: 100%;
			flex-shrink: 0;
		}
		
		.interview__frame {
			text-align: center;
		}
		
		.interview__info {
			width: 80%;
		}

		.layout-box__text {
			margin-top: 8rem;
			width: 100%;
			flex-shrink: 0;
		}
		
		.box__title {
			width: 100%;
		}

		.content-box__movie {
			margin-top: 8rem;
		}
		
		.box__movie-frame iframe {
			width: 100%;
			height: 100%;
		}
		
		.l-wall {
			width: 80%;
			height: 50%;
			top: -10%;
			left: 25%;
		}
	}
/* ------------------------- 
anatika business-interview [end] 固定 
---------------------------- */






/* ------------------------- 
anatika notice-top [start] 固定 
---------------------------- */
.anatika__contents .anatika__notice-top {
	width: 80%;
	height: auto;
	margin: 0 auto;
}

.anatika__notice-top ul {
	text-align: left;
}

.anatika__notice-top ul li {
	position: relative;
	padding: 1rem 0;
}
.anatika__notice-top ul li::after {
	position: absolute;
	content: "▶︎";
	display: block;
	top: 1.3em;
	left: -1.5em;
}

.anatika__notice-top ul li h3 a {
	font-size: clamp(1.0625rem, 0.9706rem + 0.6922vw, 2rem);
	min-height: 0vw;
	font-weight: bolder;
	padding-bottom: .25em;
  background: linear-gradient(#000, #000) 0 100%/0 2px no-repeat;
  transition: background .4s;
  text-decoration: none;
  color: #017ee2;
}
.anatika__notice-top ul li h3 a.revers {
	background-position: 100% 100%;
}
.anatika__notice-top ul li h3 a:hover {
background-size: 100% 2px;
}

/* ------------------------- 
anatika notice-top [end] 固定 
---------------------------- */



/* ------------------------- 
anatika notice-newsQuiz [start] 固定 
---------------------------- */
.anatika__contents .anatika__notice-newsQuiz {
	width: 100%;
	height: auto;
	margin: 0 auto;
}

.anatika__notice-newsQuiz .timeOfCreation {
	font-size: clamp(0.75rem, 0.6887rem + 0.2614vw, 0.875rem);
	font-weight: normal;
	color: #686868;
}


.anatika__notice-newsQuiz .bookends {
  border-width: 5px;
  border-color: hsl(0, 0%, 50%) transparent;
  height: 11px;
  border-style: double;
  width: 20%;
	margin: 5rem auto;
}


.anatika__notice-newsQuiz .quiz-wrapper .quiz-title {
	padding: 1.5rem;
}
.anatika__notice-newsQuiz .quiz-wrapper .quiz-title h3 {
	color: #FEF57E;
	letter-spacing: 0.3em;
}

.quiz-wrapper .title__bg-1 {
	background: #42BCB3;
	padding: 1rem;
}
.quiz-wrapper .title__bg-2 {
	background: #F29A37;
	padding: 1rem;
}
.quiz-wrapper .title__bg-3 {
	background: #79C36E;
	padding: 1rem;
}

.quiz-wrapper .content__bg-1 {
	background: #DBEFED;
}
.quiz-wrapper .content__bg-2 {
	background: #FDF6E0;
}
.quiz-wrapper .content__bg-3 {
	background: #F2FAED;
}

.quiz-wrapper .quiz-content details {
	padding: 1rem;
}

.quiz-wrapper .quiz-content summary {
	list-style: none;
	position: relative;
	margin-bottom: 10px;
	padding: 20px 20px 20px 80px;
	cursor: pointer;
}

.quiz-wrapper .quiz-content summary::-webkit-details-marker {
	display: none;
}

.quiz-wrapper .quiz-content summary:hover,
details[open] summary {
	background-color: #cecaca51;
}

.anatika__notice-newsQuiz summary::before {
	content: '+';
	position: absolute;
	top: 50%;
	left: 30px;
	transform: translateY(-50%);
	transition: transform 0.5s;
	font-size: 30px;
}

.anatika__notice-newsQuiz details[open] summary::before {
	transform: translateY(-50%) rotate(45deg);
}

.quiz-wrapper .quiz-content .summary__answer {
	padding: 20px 20px 20px 80px;
}
.quiz-wrapper .quiz-content .summary__answer p {
	margin-bottom: 1rem;
}
.quiz-wrapper .quiz-content .summary__answer iframe {
	width: 100%;
	height: auto;
	aspect-ratio: 16 / 9;
}

.quiz-wrapper .quiz-content details[open] .summary__answer {
	animation: fadein 0.5s ease;
}

@keyframes fadein {
	0% { opacity: 0; }
	100% { opacity: 1; }
}

.subscribe__btn {
	text-align: center;
}
.subscribe__btn button {
	width: fit-content;
	display: inline-block;
	border: none;
	border-radius: 8px 8px 8px 8px;
	background: #007EE2;
	transition: all 0.3s;
	padding: 1rem;
}
.subscribe__btn button:hover {
	opacity: 60%;
}
.subscribe__btn button a {
	color: #fff;
  font-size: clamp(1rem, 0.9387rem + 0.2614vw, 1.125rem);
	min-height: 0vw;
	font-weight: normal;
	padding: 1.5rem;
}


	/* width(600px以下)SPの時 */
	@media only screen and (max-width: 600px) {
		.quiz-wrapper .quiz-content .summary__answer {
			padding: 20px;
		}
	}
/* ------------------------- 
anatika notice-newsQuiz [end] 固定 
---------------------------- */








/* ------------------------- 
anatika communication-top [start] 固定 
---------------------------- */
.anatika__contents .anatika__communication-top {
	text-align: center;
}

/* ------------------------- 
anatika communication-top [end] 固定 
---------------------------- */