@charset "utf-8";
@import "./reset.css";

html {
	font-size: calc(100vw * 10 / 1920);
	scroll-behavior: smooth;
}
@media screen and (max-width: 768px) {
	html {
		font-size: calc(100vw * 10 / 393);
	}
}
* {
	color: #262626;
	box-sizing: border-box;
}
body {
	font-family: "Noto Sans JP", "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 400;
	font-style: normal;
	background: #fff;
	position: relative;
}
body.active {
	overflow-y: hidden;
}
.wrap {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.pc {
	display: block;
}
.sp {
	display: none;
}
.object-fit {
	overflow: hidden;
	object-fit: cover;
	font-family: "object-fit: cover;";
}
@media screen and (max-width: 768px) {
	.pc {
		display: none;
	}
	.sp {
		display: block;
	}
}
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
}

/* font */
.eg {
	font-family: "josefin-sans", sans-serif;
}

/* header */
header {
	width: 100%;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
}
.header__logo {
	width: 25%;
	background: #fff;
	padding: 2rem 0;
}
.header__logo a {
	width: 37rem;
	margin-left: 6rem;
	display: block;
	transition: all 0.3s ease;
}
.header__logo a:hover {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.header__logo img {
	width: 100%;
}
.header__nav {
	width: calc(75% - 10rem);
	background: #70d3a9;
}
.header__nav ul {
	width: fit-content;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
.header__nav ul li {
	padding: 3.5rem 3rem;
	position: relative;
}
.header__nav ul li::before {
	content: "";
	width: 1px;
	height: 50%;
	background: #dae0d7;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.header__nav ul li:last-child::before {
	display: none;
}
.header__nav ul li:first-child {
	padding: 3.65rem 3rem 3.65rem 0;
}
.header__nav ul li:last-child {
	border-right: none;
	padding: 3.65rem 0 3.65rem 3rem;
}
.header__nav ul li.under .header__nav__index {
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__nav ul li.under:hover .header__nav__index {
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease;
}
.header__nav ul li .header__nav__index {
	display: block;
	color: #fff;
	font-size: 1.8rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__nav ul li a.header__nav__index {
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__nav ul li a.header__nav__index:hover {
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease;
}
.header__nav__mega {
	width: 100vw;
	background: rgba(112, 211, 169, 0.95);
	padding: 3rem 0;
	position: fixed;
	top: 10rem;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.2s ease;
}
.header__nav ul li:hover .header__nav__mega {
	opacity: 1;
	visibility: visible;
	transition: all 0.2s ease;
}
.header__nav__mega__inner {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
}
.header__nav__mega__link {
	border-bottom: 1px solid #fff;
	padding: 1.5rem 4rem 1.5rem 0;
	position: relative;
	transition: all 0.3s ease;
}
.header__nav__mega__link::before {
	content: "→";
	color: #fff;
	font-size: 2.4rem;
	font-weight: 100;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}
.header__nav__mega__link.three {
	width: 30%;
}
.header__nav__mega__link.four {
	width: 22%;
}
.header__nav__mega__link.five {
	width: 18%;
}
.header__nav__mega__link:hover {
	opacity: 0.7;
	transition: all 0.3s ease;
}
.header__nav__mega__link p {
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: 0.05em;
}
.header__nav__mega__link__img {
	width: 100%;
	height: 20rem;
	margin: 0 auto;
	position: relative;
}
.header__nav__mega__link__img img {
	width: 100%;
	height: 100%;
	vertical-align: middle;
}
.header__nav__mega__link__img span {
	display: block;
	width: 100%;
	color: #fff;
	font-size: 1.8rem;
	letter-spacing: 0.1em;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__search {
	width: 10rem;
	background: #70d3a9;
	padding: 0 4rem;
}
.header__search__icon {
	width: 3rem;
	margin-top: 3.5rem;
	cursor: pointer;
	transition: all 0.3s ease;
}
.header__search__icon:hover {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.header__search__icon img {
	width: 100%;
}
.header__hamburger {
	width: 10rem;
	aspect-ratio: 1/1;
	background: #262626;
	padding: 3.2rem 0;
	cursor: pointer;
	z-index: 10;
	transition: all 0.3s ease;
}
.header__hamburger.active {
	background: #70d3a9;
	transition: all 0.3s ease;
}
.header__hamburger:hover {
	background: #515151;
	transition: all 0.3s ease;
}
.header__hamburger.active:hover {
	background: #8ae9c2;
	transition: all 0.3s ease;
}
.header__hamburger__icon {
	width: 4rem;
	height: 3rem;
	margin: 0 auto;
	position: relative;
}
.header__hamburger__icon span {
	display: block;
	width: 100%;
	height: 2px;
	background: #fff;
	position: absolute;
}
.header__hamburger__icon span:nth-child(1) {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}
.header__hamburger__icon span:nth-child(2) {
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}
.header__hamburger__icon span:nth-child(3) {
	top: 100%;
	left: 50%;
	transform: translateX(-50%);
	transition: all 0.3s ease;
}
.header__hamburger.active .header__hamburger__icon span:nth-child(1) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(45deg);
	transition: all 0.3s ease;
}
.header__hamburger.active .header__hamburger__icon span:nth-child(2) {
	display: none;
	transition: all 0.3s ease;
}
.header__hamburger.active .header__hamburger__icon span:nth-child(3) {
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) rotate(-45deg);
	transition: all 0.3s ease;
}
@media screen and (min-width: 1920px) {
	.header__logo {
		padding: 20px 0;
	}
	.header__logo a {
		width: 370px;
		margin-left: 60px;
	}
	.header__nav {
		width: calc(75% - 100px);
	}
	.header__nav ul li {
		padding: 36.5px 30px;
	}
	.header__nav ul li:first-child {
		padding: 36.5px 30px 36.5px 0;
	}
	.header__nav ul li:last-child {
		padding: 36.5px 0 36.5px 30px;
	}
	.header__nav ul li .header__nav__index {
		font-size: 18px;
	}
	.header__nav__mega {
		padding: 30px 0;
		top: 100px;
	}
	.header__nav__mega__link {
		padding: 15px 40px 15px 0;
	}
	.header__nav__mega__link::before {
		font-size: 24px;
	}
	.header__nav__mega__link p {
		font-size: 18px;
	}
	.header__nav__mega__link__img {
		height: 200px;
	}
	.header__nav__mega__link__img span {
		font-size: 18px;
	}
	.header__search {
		width: 100px;
		padding: 0 40px;
	}
	.header__search__icon {
		width: 30px;
		margin-top: 35px;
	}
	.header__hamburger {
		width: 100px;
		padding: 32px 0;
	}
	.header__hamburger__icon {
		width: 40px;
		height: 30px;
	}
}
@media screen and (max-width: 768px) {
	.header__logo {
		width: calc(100% - 60px);
		padding: 15px 0;
		position: relative;
		z-index: 9;
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.header__logo a {
		width: 200px;
		margin-left: 0;
	}
	.header__logo a:hover {
		opacity: 1;
	}
	.header__logo a img {
		vertical-align: middle;
	}
	.header__nav {
		display: none;
	}
	.header__search {
		display: none;
	}
	.header__hamburger {
		width: 60px;
		padding: 16px 0;
	}
	.header__hamburger:hover {
		background: #262626;
	}
	.header__hamburger.active:hover {
		background: #70d3a9;
	}
	.header__hamburger__icon {
		width: 30px;
		height: 26px;
	}
	.header__hamburger__icon span {
		height: 2px;
	}
}
@media screen and (max-width: 393px) {
	.header__logo {
		width: calc(100% - 6rem);
		padding: 1.5rem 0;
	}
	.header__logo a {
		width: 20rem;
	}
	.header__hamburger {
		width: 6rem;
		padding: 1.6rem 0;
	}
	.header__hamburger__icon {
		width: 3rem;
		height: 2.6rem;
	}
	.header__hamburger__icon span {
		height: 0.2rem;
	}
}

/* HEADER MENU */
.header__menu {
	width: 100%;
	height: 100%;
	background: #fff;
	padding: 60px 0;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	overflow-y: scroll;
}
.header__menu.active {
	display: block;
}
.header__menu__logo {
	width: 370px;
	margin: 0 auto;
}
.header__menu__logo img {
	width: 100%;
}
.header__menu__inner {
	width: 174rem;
	margin: 50px auto 0;
	display: flex;
}
.header__menu__top {
	width: calc(100% / 3);
	border-right: 1px solid #707070;
	padding: 0 5rem 5rem;
}
.header__menu__top .header__menu__cnt {
	width: 100%;
	height: 150px;
	margin-top: 20px;
	display: block;
	position: relative;
	transition: all 0.3s ease;
}
.header__menu__top .header__menu__cnt:first-child {
	margin-top: 0;
}
.header__menu__top .header__menu__cnt:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.header__menu__top .header__menu__cnt:nth-child(1) {
	background: url("../images/common/header-menu-bg01.jpg") center center
		no-repeat;
	background-size: cover;
}
.header__menu__top .header__menu__cnt:nth-child(2) {
	background: url("../images/common/header-menu-bg02.jpg") center center
		no-repeat;
	background-size: cover;
}
.header__menu__top .header__menu__cnt:nth-child(3) {
	background: url("../images/common/header-menu-bg03.jpg") center center
		no-repeat;
	background-size: cover;
}
.header__menu__top .header__menu__cnt h3 {
	width: 90%;
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.06em;
	line-height: 1.7;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__menu__middle {
	width: calc(100% / 3);
	border-right: 1px solid #707070;
	padding: 0 5rem 5rem;
}
.header__menu__middle__list {
	margin-top: 50px;
}
.header__menu__middle__list:first-child {
	margin-top: 0;
}
.header__menu__middle__list p {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	pointer-events: none;
}
.header__menu__middle__list ul {
	margin-top: 10px;
}
.header__menu__middle__list ul li {
	margin-top: 10px;
}
.header__menu__middle__list ul li:first-child {
	margin-top: 0;
}
.header__menu__middle__list ul li a {
	font-size: 14px;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__menu__middle__list ul li a:hover {
	border-bottom: 1px solid #262626;
	transition: all 0.3s ease;
}
.header__menu__under {
	width: calc(100% / 3);
	padding-left: 8rem;
}
.header__menu__under__list {
	margin-top: 25px;
}
.header__menu__under__list:first-child {
	margin-top: 0;
}
.header__menu__under__list p {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	pointer-events: none;
}
.header__menu__under__list ul {
	margin-top: 10px;
}
.header__menu__under__list ul li {
	margin-top: 10px;
}
.header__menu__under__list ul li:first-child {
	margin-top: 0;
}
.header__menu__under__list ul li a {
	font-size: 14px;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__menu__under__list ul li a:hover {
	border-bottom: 1px solid #262626;
	transition: all 0.3s ease;
}
.header__menu__under__list02 {
	margin-top: 30px;
}
.header__menu__under__list02 a {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__menu__under__list02 a:hover {
	border-bottom: 1px solid #262626;
}
.header__menu__under__search {
	width: 80%;
	height: 50px;
	border: 1px solid #707070;
	border-radius: 50px;
	margin-top: 50px;
	position: relative;
}
.search-field {
	width: 100%;
	height: 100%;
	font-size: 16px;
	letter-spacing: 0.05em;
	background: #fff;
	border-radius: 50px;
	border: none;
	padding: 5px 10px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.header__menu__under__search__icon {
	width: 20px;
	height: 20px;
	background: #fff;
	border: none;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translateY(-50%);
	cursor: pointer;
}
.header__menu__under__search__icon img {
	width: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	transition: all 0.3s ease;
}
.header__menu__under__search__icon:hover img {
	opacity: 0.5;
	transition: all 0.3s ease;
}
.header__menu__under__sns {
	margin-top: 120px;
	display: flex;
	align-items: center;
}
.header__menu__under__sns li {
	margin-left: 20px;
}
.header__menu__under__sns li:first-child {
	margin-left: 0;
}
.header__menu__under__sns li a {
	display: block;
	width: 30px;
	transition: all 0.3s ease;
}
.header__menu__under__sns li a:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.header__menu__under__sns li a img {
	width: 100%;
	vertical-align: middle;
}
.header__menu__under__detail {
	margin-top: 40px;
	display: flex;
}
.header__menu__under__detail li {
	margin-left: 35px;
}
.header__menu__under__detail li:first-child {
	margin-left: 0;
}
.header__menu__under__detail li a {
	font-size: 12px;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.header__menu__under__detail li a:hover {
	border-bottom: 0.1rem solid #262626;
	transition: all 0.3s ease;
}
@media screen and (min-width: 1920px) {
	.header__menu {
		padding-top: 60px;
	}
	.header__menu__logo {
		width: 370px;
	}
	.header__menu__inner {
		width: 1740px;
		margin: 50px auto 0;
	}
	.header__menu__top {
		border-right: 1px solid #707070;
		padding-right: 50px;
	}
	.header__menu__top .header__menu__cnt {
		height: 150px;
		margin-top: 20px;
	}
	.header__menu__top .header__menu__cnt h3 {
		font-size: 14px;
	}
	.header__menu__middle {
		border-right: 1px solid #707070;
		padding: 0 50px;
	}
	.header__menu__middle__list {
		margin-top: 50px;
	}
	.header__menu__middle__list p {
		font-size: 20px;
	}
	.header__menu__middle__list ul {
		margin-top: 10px;
	}
	.header__menu__middle__list ul li {
		margin-top: 10px;
	}
	.header__menu__middle__list ul li a {
		font-size: 16px;
	}
	.header__menu__under {
		padding-left: 80px;
	}
	.header__menu__under__list p {
		font-size: 20px;
	}
	.header__menu__under__list li {
		margin-top: 25px;
	}
	.header__menu__under__list li a {
		font-size: 18px;
		border-bottom: 1px solid transparent;
	}
	.header__menu__under__list li a:hover {
		border-bottom: 1px solid #262626;
	}
	.header__menu__under__list02 {
		margin-top: 30px;
	}
	.header__menu__under__list02 a {
		font-size: 20px;
	}
	.header__menu__under__search {
		height: 50px;
		border: 1px solid #707070;
		border-radius: 50px;
		margin-top: 30px;
	}
	.search-field {
		font-size: 16px;
		border: none;
		border-radius: 50px;
		padding: 5px 10px;
	}
	.header__menu__under__search__icon {
		width: 20px;
		height: 20px;
		right: 20px;
	}
	.header__menu__under__search__icon img {
		width: 20px;
	}
	.header__menu__under__sns {
		margin-top: 120px;
	}
	.header__menu__under__sns li {
		margin-left: 20px;
	}
	.header__menu__under__sns li a {
		width: 30px;
	}
	.header__menu__under__detail {
		margin-top: 40px;
	}
	.header__menu__under__detail li {
		margin-left: 35px;
	}
	.header__menu__under__detail li a {
		font-size: 14px;
	}
	.header__menu__under__detail li a:hover {
		border-bottom: 1px solid #262626;
	}
}
@media screen and (max-width: 768px) {
	.header__menu {
		padding: 0;
		overflow-y: scroll;
	}
	.header__menu.active {
		display: block;
	}
	.header__menu__logo {
		width: 200px;
		margin: 15px 128px 0 auto;
	}
	.header__menu__inner {
		width: 85%;
		padding-bottom: 50px;
		margin: 50px auto 0;
		flex-wrap: wrap;
		min-height: none;
	}
	.header__menu__top {
		display: none;
	}
	.header__menu__middle {
		width: 100%;
		border-right: none;
		padding: 0;
		margin-top: 0;
	}
	.header__menu__middle__list {
		border-bottom: 1px solid #707070;
		margin-top: 0;
	}
	.header__menu__middle__list p {
		font-size: 16px;
		padding: 15px 0;
		position: relative;
		pointer-events: all;
	}
	.header__menu__middle__list p span {
		width: 15px;
		height: 15px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.header__menu__middle__list p span::before {
		content: "";
		width: 100%;
		height: 1px;
		background: #262626;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header__menu__middle__list p span::after {
		content: "";
		width: 1px;
		height: 100%;
		background: #262626;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.3s ease;
	}
	.header__menu__middle__list p span.active::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: all 0.3s ease;
	}
	.header__menu__middle__list ul {
		display: none;
		margin: 0 0 20px;
	}
	.header__menu__middle__list ul li {
		margin-top: 15px;
	}
	.header__menu__middle__list ul li a {
		display: block;
		font-size: 14px;
		line-height: 1.4;
	}
	.header__menu__middle__list ul li a:hover {
		border-bottom: 1px solid transparent;
	}
	.header__menu__under {
		width: 100%;
		padding-left: 0;
	}
	.header__menu__under__list {
		border-bottom: 1px solid #707070;
		margin-top: 0;
	}
	.header__menu__under__list p {
		font-size: 16px;
		padding: 15px 0;
		position: relative;
		pointer-events: all;
	}
	.header__menu__under__list p span {
		width: 15px;
		height: 15px;
		position: absolute;
		top: 50%;
		right: 0;
		transform: translateY(-50%);
	}
	.header__menu__under__list p span::before {
		content: "";
		width: 100%;
		height: 1px;
		background: #262626;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
	.header__menu__under__list p span::after {
		content: "";
		width: 1px;
		height: 100%;
		background: #262626;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
		transition: all 0.3s ease;
	}
	.header__menu__under__list p span.active::after {
		transform: translate(-50%, -50%) rotate(90deg);
		transition: all 0.3s ease;
	}
	.header__menu__under__list ul {
		display: none;
		margin: 0 0 20px;
	}
	.header__menu__under__list ul li {
		margin-top: 15px;
	}
	.header__menu__under__list ul li a {
		display: block;
		font-size: 14px;
		line-height: 1.4;
	}
	.header__menu__under__list02 {
		border-bottom: 1px solid #707070;
		margin-top: 0;
	}
	.header__menu__under__list02 a {
		display: block;
		font-size: 16px;
		padding: 15px 0;
	}
	.header__menu__under__search {
		width: 100%;
		height: 40px;
		border: 1px solid #707070;
		border-radius: 40px;
		margin-top: 30px;
	}
	.search-field {
		font-size: 12px;
		border: none;
		border-radius: 40px;
		padding: 5px 10px;
	}
	.header__menu__under__search__icon {
		width: 15px;
		height: 15px;
		right: 20px;
	}
	.header__menu__under__search__icon img {
		width: 15px;
	}
	.header__menu__under__search__icon:hover img {
		opacity: 1;
	}
	.header__menu__under__sns {
		margin-top: 30px;
		justify-content: center;
	}
	.header__menu__under__sns li {
		margin-left: 30px;
	}
	.header__menu__under__sns li a {
		width: 30px;
	}
	.header__menu__under__sns li a:hover {
		opacity: 1;
	}
	.header__menu__under__detail {
		display: none;
	}
}
@media screen and (max-width: 393px) {
	.header__menu__logo {
		width: 20rem;
		margin: 1.5rem 12.8rem 0 auto;
	}
	.header__menu__inner {
		padding-bottom: 5rem;
		margin: 5rem auto 0;
	}
	.header__menu__middle__list {
		border-bottom: 0.1rem solid #707070;
	}
	.header__menu__middle__list p {
		font-size: 1.6rem;
		padding: 1.5rem 0;
	}
	.header__menu__middle__list p span {
		width: 1.5rem;
		height: 1.5rem;
	}
	.header__menu__middle__list p span::before {
		height: 0.1rem;
	}
	.header__menu__middle__list p span::after {
		width: 0.1rem;
	}
	.header__menu__middle__list ul {
		margin: 0 0 2rem;
	}
	.header__menu__middle__list ul li {
		margin-top: 1.5rem;
	}
	.header__menu__middle__list ul li a {
		font-size: 1.4rem;
	}
	.header__menu__middle__list ul li a:hover {
		border-bottom: 0.1rem solid transparent;
	}
	.header__menu__under__list {
		border-bottom: 0.1rem solid #707070;
	}
	.header__menu__under__list p {
		font-size: 1.6rem;
		padding: 1.5rem 0;
	}
	.header__menu__under__list p span {
		width: 1.5rem;
		height: 1.5rem;
	}
	.header__menu__under__list p span::before {
		height: 0.1rem;
	}
	.header__menu__under__list p span::after {
		width: 0.1rem;
	}
	.header__menu__under__list ul {
		margin: 0 0 2rem;
	}
	.header__menu__under__list ul li {
		margin-top: 1.5rem;
	}
	.header__menu__under__list ul li a {
		font-size: 1.4rem;
	}
	.header__menu__under__list02 {
		border-bottom: 0.1rem solid #707070;
	}
	.header__menu__under__list02 a {
		font-size: 1.6rem;
		padding: 1.5rem 0;
	}
	.header__menu__under__search {
		height: 4rem;
		border: 0.1rem solid #707070;
		border-radius: 4rem;
		margin-top: 3rem;
	}
	.search-field {
		font-size: 1.2rem;
		border: none;
		border-radius: 4rem;
		padding: 0.5rem 1rem;
	}
	.header__menu__under__search__icon {
		width: 1.5rem;
		height: 1.5rem;
		right: 2rem;
	}
	.header__menu__under__search__icon img {
		width: 1.5rem;
	}
	.header__menu__under__sns {
		margin-top: 3rem;
	}
	.header__menu__under__sns li {
		margin-left: 3rem;
	}
	.header__menu__under__sns li a {
		width: 3rem;
	}
}

/* FIX */
.fix__menu {
	position: fixed;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	z-index: 10;
}
.fix__menu__request {
	display: block;
	width: 100px;
	height: 100px;
	background: #70d3a9;
	padding-top: 20px;
	transition: all 0.3s ease;
}
.fix__menu__request:hover {
	background: #89f4c7;
	transition: all 0.3s ease;
}
.fix__menu__request__icon {
	width: 32px;
	margin: 0 auto;
}
.fix__menu__request__icon img {
	width: 100%;
}
.fix__menu__request p {
	color: #fff;
	font-size: 19px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.085em;
	margin-top: 5px;
}
.fix__menu__open {
	display: block;
	width: 100px;
	height: 100px;
	background: linear-gradient(25deg, #57e563, #baff8f);
	padding-top: 10px;
	position: relative;
	transition: all 0.3s ease;
}
.fix__menu__open::before {
	content: "";
	width: 100%;
	height: 100%;
	background: linear-gradient(25deg, #46cb52, #abf77b);
	position: absolute;
	top: 0;
	left: 0;
	transition: all 0.3s ease;
}
.fix__menu__open:hover::before {
	opacity: 0;
	transition: all 0.3s ease;
}
.fix__menu__open__icon {
	width: 30px;
	margin: 0 auto;
	position: relative;
	z-index: 1;
}
.fix__menu__open__icon img {
	width: 100%;
}
.fix__menu__open p {
	color: #fff;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
	position: relative;
	z-index: 1;
}
@media screen and (max-width: 768px) {
	.fix__menu {
		top: 90%;
	}
	.fix__menu__request {
		width: 70px;
		height: 70px;
		padding-top: 15px;
	}
	.fix__menu__request:hover {
		background: #70d3a9;
	}
	.fix__menu__request__icon {
		width: 24px;
	}
	.fix__menu__request p {
		font-size: 12px;
		margin-top: 5px;
	}
	.fix__menu__open {
		width: 70px;
		height: 70px;
		background: linear-gradient(25deg, #57e563, #baff8f);
		padding-top: 10px;
	}
	.fix__menu__open::before {
		background: linear-gradient(25deg, #57e563, #baff8f);
	}
	.fix__menu__open:hover::before {
		opacity: 1;
	}
	.fix__menu__open__icon {
		width: 20px;
	}
	.fix__menu__open p {
		font-size: 12px;
		margin-top: -0.2rem;
	}
}

/* PAGE TTL */
.pagettl {
	width: 100%;
	padding: 100px 0;
	margin-top: 10rem;
}
.pagettl.sports {
	background: url("../images/department/sports-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.social {
	background: url("../images/department/social-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.management {
	background: url("../images/department/management-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.club {
	background: url("../images/campuslife/club-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.facility {
	background: url("../images/campuslife/facility-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.dormitory {
	background: url("../images/campuslife/dormitory-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.about {
	background: url("../images/about/about-ttl-bg.jpg") center center no-repeat;
	background-size: cover;
}
.pagettl.support {
	background: url("../images/support/support-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.research {
	background: url("../images/research/research-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl.news {
	background: url("../images/news/news-ttl-bg.jpg") center center no-repeat;
	background-size: cover;
}
.pagettl.international {
	background: url("../images/international/international-ttl-bg.jpg") center
		center no-repeat;
	background-size: cover;
}
.pagettl.exam {
	background: url("../images/exam/exam-ttl-bg.jpg") center center no-repeat;
	background-size: cover;
}
.pagettl.privacy {
	background: url("../images/privacy/privacy-ttl-bg.jpg") center center
		no-repeat;
	background-size: cover;
}
.pagettl__inner {
	width: 90%;
	max-width: 1450px;
	margin: 0 auto;
}
.pagettl__inner h2 {
	color: #fff;
	font-size: 40px;
	font-weight: 700;
	letter-spacing: 0.05em;
	line-height: 1.45;
	white-space: nowrap;
}
.pagettl__inner h2 span {
	display: block;
	color: #fff;
	font-size: 16px;
	font-weight: 600;
	font-style: italic;
	letter-spacing: 0.05em;
}
@media screen and (min-width: 1920px) {
	.pagettl {
		padding: 100px 0;
		margin-top: 100px;
	}
	.pagettl__inner h2 {
		font-size: 40px;
	}
	.pagettl__inner h2 span {
		font-size: 16px;
	}
}
@media screen and (max-width: 768px) {
	.pagettl {
		padding: 40px 0;
		margin-top: 60px;
	}
	.pagettl.sports {
		background: url("../images/department/sports-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.social {
		background: url("../images/department/social-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.management {
		background: url("../images/department/management-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.club {
		background: url("../images/campuslife/club-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl.facility {
		background: url("../images/campuslife/facility-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.dormitory {
		background: url("../images/campuslife/dormitory-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.about {
		background: url("../images/about/about-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl.support {
		background: url("../images/support/support-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl.research {
		background: url("../images/research/research-ttl-bg-sp.jpg") center
			center no-repeat;
		background-size: cover;
	}
	.pagettl.news {
		background: url("../images/news/news-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl.international {
		background: url("../images/international/international-ttl-bg-sp.jpg")
			center center no-repeat;
		background-size: cover;
	}
	.pagettl.exam {
		background: url("../images/exam/exam-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl.privacy {
		background: url("../images/privacy/privacy-ttl-bg-sp.jpg") center center
			no-repeat;
		background-size: cover;
	}
	.pagettl__inner h2 {
		font-size: 20px;
	}
	.pagettl__inner h2 span {
		font-size: 12px;
	}
}
@media screen and (max-width: 393px) {
	.pagettl {
		padding: 4rem 0;
		margin-top: 6rem;
	}
	.pagettl__inner h2 {
		font-size: 2rem;
	}
	.pagettl__inner h2 span {
		font-size: 1.2rem;
	}
}

/* breadlist */
.breadlist {
	width: 100%;
	background: #fff;
	padding: 20px 0;
}
.breadlist__inner {
	width: 90%;
	max-width: 1450px;
	margin: 0 auto;
}
.breadlist__inner ul {
	width: 100%;
	display: flex;
}
.breadlist__inner ul li {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	margin-right: 10px;
}
.breadlist__inner ul li:last-child {
	margin-right: 0;
}
.breadlist__inner ul li a {
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.05em;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.breadlist__inner ul li a:hover {
	border-bottom: 1px solid #262626;
	transition: all 0.3s ease;
}
@media screen and (min-width: 1920px) {
	.breadlist {
		padding: 20px 0;
	}
	.breadlist__inner ul li {
		font-size: 14px;
		margin-right: 10px;
	}
	.breadlist__inner ul li a {
		font-size: 14px;
	}
}
@media screen and (max-width: 768px) {
	.breadlist {
		padding: 10px 0;
	}
	.breadlist__inner ul li {
		font-size: 10px;
		margin-right: 5px;
	}
	.breadlist__inner ul li a {
		font-size: 10px;
		border-bottom: 1px solid transparent;
	}
	.breadlist__inner ul li a:hover {
		border-bottom: 1px solid transparent;
	}
}
@media screen and (max-width: 393px) {
	.breadlist {
		padding: 1rem 0;
	}
	.breadlist__inner ul li {
		font-size: 1rem;
		margin-right: 0.5rem;
	}
	.breadlist__inner ul li a {
		font-size: 1rem;
		border-bottom: 0.1rem solid transparent;
	}
	.breadlist__inner ul li a:hover {
		border-bottom: 0.1rem solid transparent;
	}
}

/* FOOTER */
footer {
	width: 100%;
	background: #4db957;
	padding: 75px 0 60px;
}
.footer__inner {
	width: 90%;
	max-width: 1000px;
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
}
.footer__info {
	width: 300px;
}
.footer__info__logo {
	width: 100%;
}
.footer__info__logo img {
	width: 100%;
}
.footer__info__address {
	color: #fff;
	font-size: 14px;
	font-weight: 400;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	line-height: 1.7;
	margin-top: 40px;
	text-decoration: none;
	pointer-events: none;
}
.footer__info__address a[href^="tel:"] {
	color: #fff;
	text-decoration: none;
	pointer-events: none;
}
.footer__info__sns {
	margin-top: 30px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.footer__info__sns li {
	width: 30px;
}
.footer__info__sns li a {
	display: block;
	transition: all 0.3s ease;
}
.footer__info__sns li a:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.footer__info__sns li a img {
	width: 100%;
}
.footer__link {
	width: 530px;
}
.footer__link__top {
	width: 100%;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.footer__link__top__btn {
	display: block;
	width: 47%;
	background: #fff;
	padding: 10px 0;
	position: relative;
	transition: all 0.3s ease;
}
.footer__link__top__btn:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.footer__link__top__btn:first-child {
	width: 100%;
	margin-bottom: 20px;
}
.footer__link__top__btn p {
	color: #4db957;
	font-size: 20px;
	font-weight: 700;
	line-height: 1.2;
	text-align: center;
}
.footer__link__top__btn:nth-child(2) p,
.footer__link__top__btn:nth-child(3) p {
	padding-left: 20px;
}
.footer__link__top__btn span {
	display: block;
	color: #4db957;
	font-size: 13px;
	font-weight: 600;
	font-style: italic;
	line-height: 1;
	letter-spacing: 0.05em;
}
.footer__link__top__btn--item {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.footer__link__top__btn:nth-child(1) .footer__link__top__btn--item {
	width: 42px;
	left: 13.4%;
}
.footer__link__top__btn:nth-child(2) .footer__link__top__btn--item {
	width: 33px;
	left: 16%;
}
.footer__link__top__btn:nth-child(3) .footer__link__top__btn--item {
	width: 30px;
	left: 14%;
}
.footer__link__top__btn--item img {
	width: 100%;
	vertical-align: middle;
}
.footer__link__middle {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}
.footer__link__middle li a {
	color: #fff;
	font-size: 14px;
	font-weight: 300;
	border-bottom: 1px solid transparent;
	transition: all 0.3s ease;
}
.footer__link__middle li a:hover {
	border-bottom: 1px solid #fff;
	transition: all 0.3s ease;
}
.footer__link__bottom {
	width: 100%;
	margin-top: 30px;
}
.footer__link__bottom a {
	display: block;
	transition: all 0.3s ease;
}
.footer__link__bottom a:hover {
	opacity: 0.6;
	transition: all 0.3s ease;
}
.footer__link__bottom a img {
	width: 100%;
}
.footer__copy {
	width: 100%;
	background: #262626;
	padding: 13px 0;
}
.footer__copy p {
	color: #fff;
	font-size: 14px;
	font-family: "hiragino-kaku-gothic-pron", sans-serif;
	font-weight: 300;
	text-align: center;
}
@media screen and (max-width: 1000px) {
	.footer__inner {
		max-width: 500px;
		flex-wrap: wrap;
	}
	.footer__info {
		width: 90%;
		max-width: 300px;
		margin: 0 auto;
	}
	.footer__link {
		width: 90%;
		max-width: 530px;
		margin: 50px auto 0;
	}
}
@media screen and (max-width: 768px) {
	footer {
		padding: 60px 0 80px;
	}
	.footer__inner {
		width: 80%;
		flex-wrap: wrap;
	}
	.footer__info {
		width: 260px;
	}
	.footer__info__logo {
		width: 100%;
	}
	.footer__info__address {
		font-size: 12px;
		margin-top: 20px;
	}
	.footer__info__sns li {
		width: 30px;
	}
	.footer__info__sns li a:hover {
		opacity: 1;
	}
	.footer__link {
		width: 100%;
		margin: 80px auto 0;
	}
	.footer__link__top__btn {
		width: 100%;
		padding: 10px 0;
		margin-top: 20px;
	}
	.footer__link__top__btn:first-child {
		margin-top: 0;
	}
	.footer__link__top__btn:hover {
		opacity: 1;
	}
	.footer__link__top__btn:first-child {
		margin-bottom: 0;
	}
	.footer__link__top__btn p {
		font-size: 20px;
	}
	.footer__link__top__btn:nth-child(1) p {
		padding-left: 20px;
	}
	.footer__link__top__btn:nth-child(2) p,
	.footer__link__top__btn:nth-child(3) p {
		padding-left: 25px;
	}
	.footer__link__top__btn span {
		font-size: 12px;
	}
	.footer__link__top__btn:nth-child(1) .footer__link__top__btn--item {
		width: 42px;
		left: 8%;
	}
	.footer__link__top__btn:nth-child(2) .footer__link__top__btn--item {
		width: 33px;
		left: 16%;
	}
	.footer__link__top__btn:nth-child(3) .footer__link__top__btn--item {
		width: 30px;
		left: 14%;
	}
	.footer__link__middle {
		flex-wrap: wrap;
		margin-top: 80px;
	}
	.footer__link__middle li {
		width: 100%;
		margin-top: 15px;
	}
	.footer__link__middle li a {
		color: #fff;
		font-size: 14px;
		font-weight: 300;
		border-bottom: 1px solid transparent;
	}
	.footer__link__middle li a:hover {
		border-bottom: 1px solid transparent;
	}
	.footer__link__bottom {
		margin-top: 50px;
	}
	.footer__link__bottom a:hover {
		opacity: 1;
	}
	.footer__copy p {
		font-size: 10px;
	}
}
@media screen and (max-width: 393px) {
	footer {
		padding: 6rem 0 8rem;
	}
	.footer__info {
		width: 26rem;
	}
	.footer__info__address {
		font-size: 1.2rem;
		margin-top: 2rem;
	}
	.footer__info__sns li {
		width: 3rem;
	}
	.footer__link {
		margin: 8rem auto 0;
	}
	.footer__link__top__btn {
		padding: 1rem 0;
		margin-top: 2rem;
	}
	.footer__link__top__btn p {
		font-size: 2rem;
	}
	.footer__link__top__btn:nth-child(1) p {
		padding-left: 2rem;
	}
	.footer__link__top__btn:nth-child(2) p,
	.footer__link__top__btn:nth-child(3) p {
		padding-left: 2.5rem;
	}
	.footer__link__top__btn span {
		font-size: 1.2rem;
	}
	.footer__link__top__btn:nth-child(1) .footer__link__top__btn--item {
		width: 4.2rem;
	}
	.footer__link__top__btn:nth-child(2) .footer__link__top__btn--item {
		width: 3.3rem;
	}
	.footer__link__top__btn:nth-child(3) .footer__link__top__btn--item {
		width: 3rem;
	}
	.footer__link__middle {
		margin-top: 8rem;
	}
	.footer__link__middle li {
		margin-top: 1.5rem;
	}
	.footer__link__middle li a {
		font-size: 1.4rem;
		border-bottom: 0.1rem solid transparent;
	}
	.footer__link__middle li a:hover {
		border-bottom: 0.1rem solid transparent;
	}
	.footer__link__bottom {
		margin-top: 5rem;
	}
	.footer__copy p {
		font-size: 1rem;
	}
}
