@charset "utf-8";
/* CSS Document */

/*
* BASE
******************************************************/
* {
	word-wrap:break-word;
	background-repeat:no-repeat;
	overflow-wrap:break-word
}
html {
	scroll-behavior:smooth;
	font-family: "EB Garamond", "Noto Serif Japanese", serif;
	font-weight: 400;
	font-size: 62.5%;
}
body {
	font-size: 1.6rem;
	line-height: 1.75;
	letter-spacing: 0.05em;
	overflow-wrap: break-word;
	word-break: normal;
}

/* LINK */
body, body a {
	color: #31335c;
}
body a,
body a:hover,
body a:visited {
 text-decoration:none;
}
a {
 transition:.2s ease-in-out;
}

/* IMG HOVER */
a img {
 transition:.2s ease-in-out;
}
a:hover img {
	opacity: 0.8;
	filter: alpha(opacity=80);
	-ms-filter: "alpha( opacity=80 )";
}
/* IE */
main {
	display:block;
}

/*
* LOADING ANIMATION
******************************************************/
.load-fade {
	opacity: 0;
	visibility: hidden;
	transition: all 4s;
}
.load-fade.is-show {
	opacity: 1;
	visibility: visible;
  }
#is-loading {
	display: block;
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	background: #FFF;
	z-index: 9998;
}
#loading {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 200px;
	height: 200px;
	text-align: center;
	color: #fff;
	margin-top: -100px;
	margin-left: -100px;
	z-index: 9999;
}
#loading img {
	width: 200px;
}
@media screen and (max-width:768px) {
	#loading {
		width: 160px;
		margin-top: -60px;
		margin-left: -70px;
	}
	#loading img {
		width: 160px;
	}
}

/*
* PC-SP
******************************************************/
.ge_spOnly {
	display:none;
}
@media screen and (max-width:768px) {
	.ge_pcOnly {
		display:none;
	}
	.ge_spOnly {
		display:block;
	}
}

/*
* HEADER PC-SP
******************************************************/
.header-sp {
	display:none;
}
@media screen and (max-width:980px) {
	.header-pc {
		display:none;
	}
	.header-sp {
		display:block;
	}
}

/*
* PC MENU
******************************************************/
.global-pc-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 174px;
	background: #ffffff;
}
.global-pc-header_inner {
	margin: 0 50px;
}
.global-pc-header_logo {
	margin: auto;
	width: 100%;
	padding: 16px 0;
}
.global-pc-header_logo h1 {
	text-align: center;
}
.global-pc-header_nav {

}
.global-pc-header_menu ul {
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.global-pc-header_menu li:not(:last-child) {
	margin-right: 22px;
}
.global-pc-header_menu li a {
	font-size: 1.3rem;
	color: #31335c;
}
/* menu text en-jp */
.global-pc-header_dropdown-menu-size {
	width: 118px;
	text-align: center;
}
.global-pc-header_menu li a span.menu-en {
	display: inline;
}
.global-pc-header_menu li a:hover span.menu-en {
	display: none;
}
.global-pc-header_menu li a span.menu-jp {
	display: none;
	font-size: 1.0rem;
}
.global-pc-header_menu li a:hover span.menu-jp {
	display: inline;
}
.dropdown-toggle {
	position: relative;
	margin-right: 1em;
}
.dropdown-toggle::after {
	position: absolute;
	top: 8px;
	display: inline-block;
	content: "";
	width: 0;
	height: 0;
	border-left: 5px solid transparent;
	border-right: 5px solid transparent;
	border-top: 5px solid #31335c;
	color: #31335c;
	margin-left: 0.4em;
}
.global-pc-header_sns-link {
	margin-right: 32px;
}
@media screen and (min-width:798px) and (max-width:1180px) {
	.global-pc-header_menu li {
		margin-right: 0px;
	}
}
/* DROPDOWN MENU */
.global-pc-header_dropdown-menu {
	display: table;
	table-layout: fixed;
}
.global-pc-header_dropdown-menu li {
	position: relative;
}
.global-pc-header_dropdown-menu ul {
	width: 170px;
	margin: 0;
	padding: 0;
	position: absolute;
	visibility: hidden;
	top: 40px;
	left: -50px;
	display: table-cell;
	vertical-align: middle;
}
.global-pc-header_dropdown-menu li:hover ul {
	visibility: visible;
}
.global-pc-header_dropdown-menu li ul li {
	background: #adaebd;
	height: 54px;
	line-height: 54px;
	margin: 0 !important;
	text-align: center;
	-webkit-transition: all 0.2s ease;
	transition: all 0.2s ease;
}
.global-pc-header_dropdown-menu li ul li a {
	display: block;
}
.global-pc-header_dropdown-menu li ul li:hover {
	background: #c1c2ce;
}
.global-pc-header_dropdown-menu li ul li a,
.global-pc-header_dropdown-menu li ul li a:hover {
	color: #ffffff;
}
/* FORM BUTTON */
.global-pc-form-button {
	position: absolute;
	top: 60px;
	right: 0;
	font-size: 1.2rem;
}
.global-pc-form-button ul {
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.global-pc-form-button li {
	width: 120px;
	margin-left: 10px;
	text-align: center;
}
.global-pc-form-button li a {
	color: #ffffff;
	background: #adaebd;
	display: block;
	padding: 5px 10px;
}
.global-pc-form-button li a:hover {
	background: #c1c2ce;
	display: block;
	padding: 5px 10px;
}


/*
* SP MENU
******************************************************/
.global-sp-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	width: 100%;
	height: 40px;
	background: #ffffff;
}
.global-sp-header_inner {
	position: relative;
	margin: 0;
}
.global-sp-header_logo {
	position: absolute;
	top: 0;
	left: 5px;
}
.global-sp-header_logo img {
	max-width: 129px;
}
.global-sp-header_nav {
	position: fixed;
	right: -310px;
	top: 0;
	width: 310px;
	height: 100vh;
	padding-top: 40px;
	background: rgba(193, 194, 206, 0.8);
	transition: all .6s;
	z-index: 99;
	overflow-y: auto;
}
.global-sp-header_nav-list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.global-sp-header_nav-item {

}
.global-sp-header_nav-item a {
	display: block;
	padding: 20px;
	line-height: 20px;
	color: #31335c;
}
/* accordion */
.sp-accordion-inner li {
	background: rgba(255, 255, 255, 0.4);
}
.sp-accordion-inner li:hover {
	background: rgba(255, 255, 255, 0.6);
}
.sp-accordion-inner li a {
	padding-left: 2.5em;
}
.child {
	display: none;
}
/* toggle button */
.toggle-menu {
	position: absolute;
	right: 27.5px;
	top: 0;
	width: 36px;
	height: 36px;
	cursor: pointer;
	z-index: 999;
}
.toggle-btn {
	position: absolute;
	left: 11px;
	width: 24px;
	height: 1px;
	background-color: #31335c;
	transition: all .6s;
}
.toggle-line1 {
	top: 12px;
}
.toggle-line2 {
	top: 20px;
}
.toggle-line3 {
	top: 28px;
}
.nav-open .global-sp-header_nav {
  right: 0;
}
.nav-open .toggle-line1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .toggle-line2 {
  width: 0;
  left: 50%;
}
.nav-open .toggle-line3 {
  transform: rotate(-45deg);
  top: 20px;
}
/* SP PICKUP NAVI */
.global-sp-header_pickup-nav {
	width: 100%;
	margin-top: 40px;
}
.global-sp-header_pickup-nav-list {
	background: #c1c2ce;
	line-height: 1.2;
}
.global-sp-header_pickup-nav-list ul {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.global-sp-header_pickup-nav-list li {
	width: calc(33% - (1px * 2) / 3);
	text-align: center;
	font-size: 1.1rem;
	padding: 8px 0;
	letter-spacing: 0;
}
.global-sp-header_pickup-nav-list li:not(:last-child) {
	border-right: 1px solid #9899ad;
}
.global-sp-header_pickup-nav-list li a {
}
.global-sp-header_pickup-nav-list li a span {
	display: block;
}
/* SP SNS LINKS */
.global-sp-header_sns-link ul {
	display: flex;
	justify-content: space-around;
	padding: 20px 40px 15px 40px;
}

/*
* BREADCRUMBS
******************************************************/
.breadcrumbs {
	width: 100%;
	height: 40px;
	background: #eaeaef;
}
.breadcrumbs_list {
	max-width: 1170px;
	line-height: 40px;
	margin:auto;
	font-size:1.4rem;
}
.breadcrumbs_list ul {
	display:flex;
	-webkit-box-pack: start;
 	justify-content: flex-start;
}
.breadcrumbs_list li {
	padding-right:1em;
}
.breadcrumbs_list li:not(:last-child) {
	position:relative;
	padding-right: 2em;
}
.breadcrumbs_list li:not(:last-child)::after {
	content: ">";
	display: block;
	position: absolute;
	top: 1px;
	right: 10px;
}
@media screen and (max-width:768px) {
	  .breadcrumbs_list {
		  padding:0 20px;
	  }
	  .breadcrumbs_list ul {
		  display:block;
		  overflow-x: auto;
		  overflow-y: hidden;
		  -webkit-overflow-scrolling: touch;
		  overflow-scrolling: touch;
		  overflow: auto;
		  white-space: nowrap;
	  }
	  .breadcrumbs_list li {
		  display:inline;
		  padding-right:20px;
		  flex: 0 0 40%;
	  }
	  .breadcrumbs_list li:not(:last-child)::after {
		  top: -10px;
	  }
  }

/*
* CONTENT
******************************************************/
.global-main-content {
	margin-top: 174px;
}
.ge-content {
	margin: 0 auto;
	width: auto;
	max-width: 1170px;
	padding: 150px 0;
}
@media screen and (max-width:768px) {
	.global-main-content {
		margin-top: 80px;
	}
	.ge-content {
		margin: 0 20px auto;
		max-width: inherit;
		padding: 75px 0;
	}
}

/*
* TITLE
******************************************************/
.ge-heading {
	font-size: 3.2rem;
	font-weight: 400;
	text-align: center;
	margin: 0 0 100px 0;
	line-height: 1;
}
.ge-heading span {
	display: block;
	font-size: 1.4rem;
	font-weight: 400;
	line-height: 3;
}
@media screen and (max-width:768px) {
	.ge-heading {
		font-size: 2.2rem;
		text-align: center;
		margin: 0 0 50px 0;
	}
	.ge-heading span {
		font-size: 1.3rem;
		line-height: 3;
		margin-right: 1em;
	}
}

/*
* CATEGORY NAVIGATION
******************************************************/
.ge-category-nav ul {
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.ge-category-nav li {
	font-size: 2.2rem;
	margin-right: 25px;
	line-height: 1;
	padding-bottom: 2px;
}
.ge-category-nav li:last-child {
	margin-right: 0;
}
.ge-category-nav_current,
.ge-category-nav li a:hover {
  border-bottom: 2px solid #31335c;
}
@media screen and (max-width:768px) {
	.ge-category-nav li {
		font-size: 1.2rem;
		letter-spacing: 0;
	}
}


/*
* 3 COLUMUN LIST (TOP / NEWS)
******************************************************/
.ge-list-3col ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.ge-list-3col li {
	width: calc(33% - (30px * 2) / 3);
	position: relative;
	margin-left: 30px;
	margin-top: 100px;
}
.ge-list-3col li:nth-child(-n+3) {
	margin-top: 0;
}
.ge-list-3col li:nth-child(3n+1) {
	margin-left: 0;
}
.ge-list-3col_img {
	position: relative;
	box-sizing: border-box;
	width: 370px;
	height: 370px;
	overflow: hidden;
}
.ge-list-3col_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
@supports ( object-fit: cover ) {
	.ge-list-3col_img img {
		position: static;
		height: 100%;
		width: 100%;
		left: 0;
		-o-object-fit: cover;
		object-fit: cover;
		top: 0;
	}
}
.ge-list-3col_img img:hover {
	transform: scale( 1.25, 1.25 );
	transition-duration: 0.5s;
}
.ge-list-3col_img::after {
	content: "";
	/*position: absolute;*/
	height: 370px;
	width: 370px;
	z-index: 0;
	box-sizing: border-box;
	top: 0;
	left: 0;
	border-color: inherit;
}
.ge-list-3col_desc {
	margin-top: 20px;
}
.ge-list-3col_category {
	font-size: 1.8rem;
}
.ge-list-3col_date {
	font-size: 1.4rem;
}
.ge-list-3col_heading {
	font-size: 1.4rem;
	font-weight: 400;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
	overflow: hidden;	
}
.ge-list-3col_text {
	font-size: 1.4rem;
	margin: 20px 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media screen and (min-width:600px) and (max-width:1169px) {
	.ge-list-3col {
		width: auto;
	}
	.ge-list-3col ul {
		width: calc(100vw - 40px);
	}
	.ge-list-3col li {
		width: calc(32vw - (30px * 2) / 3);
		margin-left: 2.75vw;
	}
	.ge-list-3col_img {
		width: calc(32vw - (30px * 2) / 3);
		height: calc(32vw - (30px * 2) / 3);
	}
	.ge-list-3col_img::after {
		width: calc(32vw - (30px * 2) / 3);
		height: calc(32vw - (30px * 2) / 3);
	}
	.ge-list-3col_img img {
		height: calc(32vw - (30px * 2) / 3);
		width: calc(32vw - (30px * 2) / 3);
		max-width: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width:600px) {
	.ge-list-3col ul {
		display: block;
	}
	.ge-list-3col li {
		width: auto;
		margin-bottom: 45px;
		margin-left: 0;
		margin-top: 50px;
	}
	.ge-list-3col li:nth-child(-n+3) {
		margin-top: 0;
	}
	.ge-list-3col li:nth-child(3n+1) {
		margin-left: 0;
	}
	.ge-list-3col li:last-child {
		margin-bottom: 0;
	}
	.ge-list-3col_img {
		width: calc(100vw - (20px * 2));
		height: calc(100vw - (20px * 2));
	}
	.ge-list-3col_img img {
		max-width: 100%;
	}
	.ge-list-3col_desc {
		margin-top: 15px;
	}
	.ge-list-3col_category {
		font-size: 1.8rem;
	}
	.ge-list-3col_date {
		font-size: 1.2rem;
	}
	.ge-list-3col_heading {
		font-size: 1.2rem;
	}
	.ge-list-3col_text {
		font-size: 1.2rem;
		margin: 15px 0;
	}
}

/*
* 4 COLUMUN LIST (GUIDE)
******************************************************/
.ge-list-4col ul {
	display: flex;
	flex-wrap: wrap;
	margin: 0 auto;
}
.ge-list-4col li {
	width: calc(24% - (30px * 2) / 4);
	position: relative;
	margin-left: 30px;
	margin-top: 100px;
}
.ge-list-4col li:nth-child(-n+4) {
	margin-top: 0;
}
.ge-list-4col li:nth-child(4n+1) {
	margin-left: 0;
}
.ge-list-4col_img {
	position: relative;
	box-sizing: border-box;
	width: 270px;
	height: 270px;
	overflow: hidden;
}
.ge-list-4col_img img {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 50%;
	left: 50%;
	min-height: 100%;
	min-width: 100%;
	object-fit: cover;
	transition-duration: 0.5s;
}
@supports ( object-fit: cover ) {
	.ge-list-4col_img img {
		position: static;
		height: 100%;
		width: 100%;
		left: 0;
		-o-object-fit: cover;
		object-fit: cover;
		top: 0;
	}
}
.ge-list-4col_img img:hover {
	transform: scale( 1.25, 1.25 );
	transition-duration: 0.5s;
}
.ge-list-4col_img::after {
	content: "";
	/*position: absolute;*/
	height: 270px;
	width: 270px;
	z-index: 0;
	box-sizing: border-box;
	top: 0;
	left: 0;
	border-color: inherit;
}
.ge-list-4col_heading {
	font-size: 1.4rem;
	font-weight: 400;
	/*display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;*/
	margin: 20px 0 0 0;
	/*overflow: hidden;*/
}
.ge-list-4col_heading span {
	display: block;
	font-size: 1.2rem;
}
.ge-list-4col_catch {
	height: 40px;
	font-size: 1.2rem;
	margin: 20px 0;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
@media screen and (min-width:600px) and (max-width:1169px) {
	.ge-list-4col {
		width: auto;
	}
	.ge-list-4col ul {
		width: calc(100vw - 40px);
	}
	.ge-list-4col li {
		width: calc(32vw - (30px * 2) / 3);
		margin-left: 2.75vw;
	}
	.ge-list-4col_img {
		width: calc(32vw - (30px * 2) / 3);
		height: calc(32vw - (30px * 2) / 3);
	}
	.ge-list-4col_img::after {
		width: calc(32vw - (30px * 2) / 3);
		height: calc(32vw - (30px * 2) / 3);
	}
	.ge-list-4col_img img {
		height: calc(32vw - (30px * 2) / 3);
		width: calc(32vw - (30px * 2) / 3);
		max-width: 100%;
		object-fit: cover;
	}
}
@media screen and (max-width:600px) {
	.ge-list-4col li {
		width: calc(48% - (30px * 2) / 2);
		margin-bottom: 45px;
		margin-left: 50px;
		margin-top: 50px;
	}
	.ge-list-4col li:nth-child(-n+4) {
		margin-top: 0;
	}
	.ge-list-4col li:nth-child(4n+1) {
		margin-left: 0;
	}
	.ge-list-4col li:nth-child(-n+2) {
		margin-top: 0;
	}
	.ge-list-4col li:nth-child(2n+1) {
		margin-left: 0;
	}
	.ge-list-4col li:last-child {
		margin-bottom: 0;
	}
	.ge-list-4col_img {
		width: calc(48vw - (30px * 2) / 2);
		height: calc(48vw - (30px * 2) / 2);
	}
	.ge-list-4col_img img {
		max-width: 100%;
	}
	.ge-list-4col_heading {
		font-size: 1.2rem;
	}
	.ge-list-4col_catch {
		font-size: 1.2rem;
		margin: 15px 0;
	}
}


/*
* BUTTON
******************************************************/
.ge-button {
	width: 170px;
	height: 30px;
	margin: 0 auto;
	font-size: 1.4rem;
}
.ge-button a {
	height: 30px;
	line-height: 30px;
	text-align: center;
	text-decoration: none;
	display: block;
	color: #31335c;
	border: 1px solid #31335c;
	transition: all 0.3s;
}
.ge-button a:hover {
	color: #ffffff;
	background: #31335c;
}
@media screen and (max-width:768px) {
	.ge-button {
		width: 155px;
		height: 40px;
		font-size: 1.6rem;
	}
	.ge-button a {
		height: 40px;
		line-height: 40px;
	}
}

/*
* PAGENATION
******************************************************/
.pagination {
	width: 100%;
	max-width: 1170px;
	margin: 50px auto 150px;
}
.pagination nav {
	width: 100%;
	margin: auto;
	text-align: center;
}
.pagination ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.pagination li {
	height: 25px;
	margin: 0 2em 0 0;
	text-decoration: none;
}
.pagination li:last-child {
	margin: 0;
}
.pagination li.pagenation-current {
	border-bottom: 2px solid #31335c;
}
@media screen and (max-width:768px) {
	.pagination {
		width: auto;
		max-width: inherit;
		margin: 25px auto 75px;
	}
}

/*
* FLOAT BUTTON
******************************************************/
.float-button {
	display: none;
	position: fixed;
	z-index: 4;
	color: #ffffff;
	background-color: rgba(173, 174, 189, 0.7);
	right: 0;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
	height: 120px;
	padding: 10px;
	text-align: center;
	font-size: 1.8rem;
}
.float-button a {
	color: #ffffff;
}
/*
.float-button_inner img {
	width: 45px;
	opacity: 0.8;
}
*/
@media screen and (max-width:768px) {
}
@media screen and (max-width:375px) {
	.float-button {
		width: 30px;
	}
	/*
	.float-button_inner img {
		width: 32px;
	}
	*/
}
/*
* SNS LINKS
******************************************************/
.grobal-sns-links {
	padding: 100px 0;
}
.grobal-sns-links ul {
	display: flex;
	-webkit-justify-content: center;
	justify-content: center;
}
.grobal-sns-links li {
	padding: 0;
	margin-left: 40px;
}
.grobal-sns-links li:first-child {
	margin-left: 0;
}


/*
* FOOTER
******************************************************/
.global-footer {
	padding: 30px 0;
	background: #31335c;
}
.global-footer_content {
	margin: 0 auto;
	width: auto;
	max-width: 1170px;
	position: relative;
}
.global-footer_inner {
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
}
.footer-logo {
	width: 186px;
	height: 50px;
}
.footer-logo img {
	max-width: 100%;
}
.global-footer_inner-links {
	max-width: 390px;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	margin-top: 15px;
}
.nav1 {
	max-width: 200px;
	font-size: 2.2rem;
	margin-right: 60px;
}
.nav2 {
	max-width: 170px;
	font-size: 1.6rem;
}
.global-footer_nav li {
	height: 40px;
	line-height: 40px;
}
.footer-text,
.footer-text a {
	color: #ffffff;
}
.footer-text a:hover {
	color:#ff6687;
}
.copyright {
	font-size: 1.6rem;
	margin-top: 58px;
}
.sns-links {
	position: absolute;
	bottom: 0;
	right: 60px;
}
.sns-links ul {
	display: flex;
	-webkit-justify-content: flex-end;
	justify-content: flex-end;
}
.sns-links li {
	margin-left: 60px;
}
@media screen and (min-width:768px) and (max-width:1169px) {
	.global-footer {
		padding: 44px 20px 30px;
	}
}
@media screen and (max-width:768px) {
	.global-footer {
		padding: 20px 0 0;
	}
	.global-footer_content {
		margin: 0 30px auto;
		max-width: inherit;
	}
	.global-footer_inner {
		display: block;
	}
	.global-footer_nav {
		margin: 0;
	}
	.global-footer_inner-links {
		margin-top: 0;
		margin: auto;
	}
	.nav1 {
		max-width: inherit;
		font-size: 1.5rem;
		margin-right: auto;
	}
	.nav2 {
		max-width: inherit;
		font-size: 1.2rem;
	}
	.copyright {
		font-size: 1.2rem;
		margin: 30px 0 10px;
		text-align: center;
		letter-spacing: 0;
	}
	.sns-links {
		margin-top: 30px;
		position: static;
	}
	.sns-links ul {
		display: flex;
		-webkit-justify-content: center;
		justify-content: center;
	}
	.sns-links li {
		padding: 0;
		margin-left: 70px;
	}
	.sns-links li:first-child {
		margin-left: 0;
	}
	.back-to-top-button {
		background: #c7cbc8;
		height: 40px;
		line-height: 40px;
		text-align: center;
	}
	.back-to-top-button a {
		color: #fff;
	}
}