@charset "UTF-8";
/*
 * HTML
 * -------------------------------------------------------------------
 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Comfortaa:wght@500&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");

:root {
	--primary-color: #0098AA;
	--font-color: #333;
	--gradient-color:linear-gradient(90deg, rgba(5,172,150,1) 0%, rgba(0,152,170,1) 100%);
	--gray-color:#EFECEC;
}

html {
	font-size: 62.5%;
}

body {
	font-family: "Pontano Sans","Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "?ҥ饮?νǥ? ProN W3", Hiragino Kaku Gothic ProN, Arial, "?ᥤ?ꥪ", Meiryo, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 1.8em;
	line-height: 1.6;
	letter-spacing: 0.05em;
	font-weight: 500;
	scroll-behavior: smooth;
}

.overflow{
	overflow-x: hidden;
}


@media(max-width:575px){
	body{
		font-size: 1.6em;
	}
}

a {
	text-decoration: none;
	outline: none;
}

/*
 * wrapper
 * -------------------------------------------------------------------
 */
.wrapper {
	display: block;
	margin: 0px auto;
	padding: 0px;
	overflow-x: hidden;
	position: relative;
}

.top__page .wrapper {
	min-height: 100vh;
}

.top__page .wrapper::before{
	content: "";
	display: block;
	width: 80%;
	height: 97vh;
	background-color: var(--gray-color);
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width:768px){
	.wrapper::before{
		width: 85%;
		height: 95vh;
	}
}

@media (max-width:575px){
	.wrapper::before{
		width: 90%;
		height: 92vh;
	}
}

.wrapper > section:nth-of-type(3) {
	background: var(--gray-color);
}

/* A Modern CSS Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

ul[role="list"],
ol[role="list"] {
	list-style: none;
}

html {
	scroll-behavior: auto;
}

body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
}

a:not([class]) {
	text-decoration-skip-ink: auto;
}

img,
picture {
	max-width: 100%;
	display: block;
}

input,
button,
textarea,
select {
	font: inherit;
}

@keyframes menu-container-appeared {
	0% {
	transform: translateX(100%);
	}
	100% {
	transform: translateX(0);
	}
}

@keyframes menu-container-leaved {
	0% {
	transform: translateX(0);
	}
	100% {
	transform: translateX(100%);
	}
}

@keyframes menu-overlay-appeared {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

@keyframes menu-overlay-leaved {
	0% {
	opacity: 1;
	}
	100% {
	opacity: 0;
	}
}

/*
 * MODAL PHOTO
 * -------------------------------------------------------------------
 */
@keyframes modal-photo-open {
	0% {
	opacity: 0;
	}
	100% {
	opacity: 1;
	}
}

@keyframes modal-photo-close {
	0% {
	opacity: 1;
	}
	100% {
	opacity: 0;
	}
}

/* =WordPress Core
-------------------------------------------------------------- */
.responsive__wrap{
	display: inline-block;
}

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #fff;
	border: 1px solid #f0f0f0;
	max-width: 96%;
	/* Image does not overflow the content area */
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption p.wp-caption-text {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
	/* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/*
 * Mixin
 * -------------------------------------------------------------------
 */
/*
 * Module
 * -------------------------------------------------------------------
 */


/**********************
	nav-header__pc
/**********************/

@media (min-width: 992px) { 
	.nav-header {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1000;
		width: 100%;
		height: 10vh;
	}

	.nav-header:before{
		content: "";
		position: absolute;
		width: 40%;
		background-color: #fff;
		height: 10vh;
		display: block;
		z-index: 1005;
		left: 0;
		top: 0;
	}

	.nav-header:after{
		content: "";
		position: absolute;
		width: 60%;
		background: var(--gradient-color);
		height: 10vh;
		display: block;
		z-index: 1005;
		right: 0;
		top: 0;
	}

	.nav-header__container {
		display: flex;
		justify-content: flex-end;
		max-width: 90vw;
		height: 70px;
		margin: 0 auto;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		height: 10vh;
	}

	.nav-header__logo {
		display: flex;
		align-items: center;
		margin-right: auto;
		position: relative;
		z-index: 5000;
		width: 250px;
	}

	.nav-header__logo > img{
		mix-blend-mode:color-dodge;
	}

	.nav-header__logo-image {
		display: block;
		max-width: 100%;
		max-height: 100%;
		padding: 7px;
	}
	.nav-header__menu {
		display: flex;
		align-items: center;
		list-style: none;
		margin: 0;
		padding: 0;
		position: relative;
		z-index: 1010;
	}

	.nav-header__menu-item {
		display: flex;
		justify-content: flex-start!important;
		align-items: center;
		position: relative;
		height: 100%;
	}

	.nav-header__link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		color: #fff;
		text-align: center;
		font-size: 1.8rem;
		font-weight: 700;
		padding: 0 2rem;
		min-width: 100px;
	}

	.nav-header__link:after {
		display: block;
		opacity: 0;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
		width: 0;
		height: 4px;
		background: #fff;
		content: "";
		-ms-transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
	}

	.nav-header__menu-item:hover .nav-header__link:after {
		opacity: 0.6;
		width: 100%;
	}
	.nav-header__contact {
		display: inline-flex;
		justify-content: center;
		align-items: center;
		position: relative;
		border: none;
		line-height: 1;
		text-decoration: none;
		text-align: center;
		outline: none;
		cursor: pointer;
		transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
		background-color: var(--primary-color);
		color: #ffffff;
		margin-left: 1.6rem;
		padding: 1.2rem 3.2rem;
		border-radius: 100px;
	}

	.nav-header__contact:hover {
		background-color: #079698;
	}
	.nav-header__children{
		transform: none;
		opacity: 0;
		position: fixed;
		z-index: 9999;
		top: 70px;
		right: 30px;
		width: calc(100% - 285px);
		display: flex;
		flex-wrap: wrap;
		background: #fff;
		border-radius: 5px;
		box-shadow: 0 1rem 2rem hsl(0 0% 0% / 20%);
		padding: 20px;
		gap: 15px;
		pointer-events: none;
	}
	.nav-header__menu-item:hover .nav-header__children{
		opacity: 1;
		pointer-events: auto;
	}
	.nav-header__children__item{
		width: calc(25% - 12px);
		list-style: none;
	}
	.nav-header__children__link{
		color: var(--font-color);
		font-weight: 700;
	}
	.nav-header__children__link:hover{
		opacity: .75;
	}
	.nav-header__toggle{
		display: none;
	}
}

@media (min-width: 1200px) { 
	.nav-header {
		position: fixed;
		top: 0;
		right: 0;
		left: 0;
		z-index: 1000;
		width: 100%;
		height: 10vh;
	}

	.nav-header:before{
		content: "";
		position: absolute;
		width: 40%;
		background-color: #fff;
		height: 10vh;
		display: block;
		z-index: 1005;
		left: 0;
		top: 0;
	}

	.nav-header:after{
		content: "";
		position: absolute;
		width: 60%;
		background: var(--gradient-color);
		height: 10vh;
		display: block;
		z-index: 1005;
		right: 0;
		top: 0;
	}

	.nav-header__link {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		height: 100%;
		color: #fff;
		text-align: center;
		font-size: 1.8rem;
		font-weight: 700;
		padding: 0 4rem;
		min-width: 100px;
	}
}

/**********************
	l-header__sp
/**********************/
@media (max-width: 991.98px) {
	.menu-open{
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	.nav-header__logo {
		position: relative;
		display: flex;
		align-items: center;
		margin-right: auto;
		width: 70%;
		max-width: 250px;
		height: 64px;
		z-index: 11;
		margin-left: 5vw;
		margin-top: 1.5rem;
	}

	.nav-header__logo-image {
		display: block;
		max-width: 100%;
		max-height: 100%;
		padding: 7px;
	}
	.nav-header__toggle {
		position: fixed;
		top: 1.5rem;
		right: 5vw;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 65px;
		height: 65px;
		background: var(--gradient-color);
		cursor: pointer;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		border: none;
		z-index: 11;
	}
	.nav-header__toggle:hover {
		background: #079698;
	}

	.nav-header__toggle-line {
		display: inline-block;
		width: 35px;
		height: 2px;
		background: #fff;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		transition: .5s;
	}

	.nav-header__toggle-line:nth-of-type(1){
		top: 22.5px;
	}
	.nav-header__toggle-line:nth-of-type(2){
		top: 32.5px;
	}
	.nav-header__toggle-line:nth-of-type(3){
		top: 42.5px;
	}
	.menu-open .nav-header__toggle-line{
		top: 50%;
	}
	.menu-open .nav-header__toggle-line:nth-of-type(1){
		transform: translateX(-50%) translateY(-50%) rotate(40deg);
	}
	.menu-open .nav-header__toggle-line:nth-of-type(2){
		display: none;
	}
	.menu-open .nav-header__toggle-line:nth-of-type(3){
		transform: translateX(-50%) translateY(-50%) rotate(-40deg);
	}
	
	.nav-header {
		width: 100%;
		height: 90px;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		overflow: hidden;
		z-index: 1002;
		background-color: #fff;
	}
	.nav-header__container{
		height: 100%;
	}

	.nav-header__menu {
		position: fixed;
		height: 100%;
		background: #fff;
		padding: 120px 12% 0;
		transition: .3s;
		overflow: hidden;
		top: 0;
		left: 100%;
		width: 100%;
		color: #fff;
		z-index: 10;
		margin: 0;
	}
	.menu-open .nav-header__menu {
		opacity: 1;
		left: 0;
	}
	.nav-header__menu{
		
	}
	.nav-header__menu-item:nth-of-type(n+2){
		border-top: 1px solid #ddd;
	}
	.nav-header__link,
	.nav-header__contact{
		position: relative;
		display: block;
		font-weight: 600;
		padding: 15px 0 15px 30px;
		color: var(--font-color);
	}
/*	.nav-header__link:before{
		position: absolute;
		top: 23px;
		left: 10px;
		width: 7px;
		height: 7px;
		background-color: var(--font-color);
		content: '';
		transition: transform .15s ease;
		border-radius: 50%;
	}*/
	.nav-header__children{
		display: flex;
		flex-wrap: wrap;
		gap: 5px;
		margin: 0 0 15px;
		font-size: 1.2rem;
	}
	.nav-header__children__item {
		width: calc(50% - 3px);
	}
	.nav-header__children__link{
		color: var(--font-color);
	}
	.nav-header__contact{
		display: block;
		position: relative;
		line-height: 1;
		text-decoration: none;
		text-align: center;
		background-color: var(--primary-color);
		color: #ffffff;
		margin: 30px 15px;
		padding: 15px;
		border-radius: 100px;
	}
	.nav-header__children__image{
		display: none;
	}
	
}
/*@media (min-width: 768px) {





}*/
@media (max-width: 575px) {
	.menu-open{
		overflow: hidden;
		width: 100%;
		height: 100%;
	}
	.nav-header__logo {
		position: relative;
		display: flex;
		align-items: center;
		margin-right: auto;
		width: 70%;
		max-width: 250px;
		height: 64px;
		z-index: 11;
		margin-left: 2.5vw;
		margin-top: 1.5rem;
	}

	.nav-header__logo-image {
		display: block;
		max-width: 100%;
		max-height: 100%;
		padding: 7px;
	}
	.nav-header__toggle {
		position: fixed;
		top: 1.5rem;
		right: 2.5vw;
		display: flex;
		align-items: center;
		justify-content: center;
		flex-direction: column;
		width: 65px;
		height: 65px;
		background: var(--gradient-color);
		cursor: pointer;
		-webkit-transition: all 0.2s;
		-moz-transition: all 0.2s;
		-ms-transition: all 0.2s;
		-o-transition: all 0.2s;
		transition: all 0.2s;
		border: none;
		z-index: 11;
	}
}

/**********************
	l-header__sp
/**********************/
/*@media (max-width: 767.98px) {


	.nav-drawer {
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		overflow: hidden;
		z-index: 1002;
	}

	.nav-drawer__container {
		display: flex;
		flex-direction: column;
		position: absolute;
		right: 0;
		top: 0;
		width: 80%;
		height: 100%;
		max-width: 350px;
		min-width: 200px;
		background: #fff;
		border-left: #e2e2e2 1px solid;
		box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
		overflow: hidden;
		animation-duration: var(--nav-drawer-duration);
		animation-fill-mode: forwards;
	}

	.menu-open .nav-drawer__container {
		animation-name: menu-container-appeared;
	}

	.menu-open .nav-drawer__container {
		animation-name: menu-container-leaved;
	}

	.nav-drawer__menu {
		display: block;
		margin: 0;
		padding: 0;
		list-style: none;
		overflow-y: auto;
	}

	.nav-drawer__menu-item {
		border-bottom: #e2e2e2 1px dashed;
	}

	.nav-drawer__menu-item:hover {
		background: #efefef;
	}

	.nav-drawer__link {
		position: relative;
		display: block;
		align-items: center;
		justify-content: space-between;
		color: inherit;
		letter-spacing: 0.01em;
		padding: 1em 2.5em 1em 2em;
		text-decoration: none;
	}

	.nav-drawer__link-main {
		display: block;
		font-weight: 500;
	}

	.nav-drawer__link-sub {
		color: #aaa;
		display: block;
	}

	.nav-drawer__menu-button {
		display: flex;
		margin: 0px;
		padding: 0px;
	}

	.nav-drawer__button-close {
		position: relative;
		background-color: var(--primary-color);
		margin: 0px 0px 0px auto;
		padding: 0px;
		width: 6rem;
		height: 6rem;
		border: none;
		box-shadow: 0 0 12px rgba(0, 0, 0, 0.15);
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		cursor: pointer;
	}

	.nav-drawer__button-close:hover, .nav-drawer__button-close:focus {
		outline: none;
		background: #09c6c8;
	}

	.nav-drawer__button-close-line {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		width: 40%;
		height: 2px;
		margin: auto;
		background: #fff;
	}

	.nav-drawer__button-close-line:nth-child(1) {
		transform: translateY(0) rotate(45deg);
	}

	.nav-drawer__button-close-line:nth-child(2) {
		transform: translateY(0) rotate(-45deg);
	}

	.nav-drawer__overlay {
		position: absolute;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		z-index: -1;
		background: rgba(0, 0, 0, 0.08);
		animation-duration: var(--nav-drawer-duration);
		animation-fill-mode: forwards;
	}

	.nav-drawer[data-open="true"] .nav-drawer__overlay {
		animation-name: menu-overlay-appeared;
	}

	.nav-drawer[data-open="false"] .nav-drawer__overlay {
		animation-name: menu-overlay-leaved;
	}
}*/

.nav-pagetop {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: fixed;
	bottom: 60px;
	right: 15px;
	z-index: -1000;
	width: 70px;
	height: 70px;
	font-size: 10px;
	font-weight: 400;
	line-height: 1.6;
	color: #fff;
	background: var(--primary-color);
	border-radius: 50%;
	opacity: 0;
	cursor: pointer;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.nav-pagetop.active {
	opacity: 1;
	z-index: 1000;
}

.nav-pagetop:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5ce";
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.nav-pagetop:after {
	content: 'PAGETOP';
	display: block;
	padding: 4px 0px;
}

.nav-pagetop:hover {
	background: #079698;
	box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.15);
}

.nav-pagetop:hover:before {
	transform: translateY(-4px);
}

/*.mainvisual {
	position: relative;
	background-image: url("../img/mainvisual01.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	max-width: 90vw;
	margin-inline: auto;
}*/
.mainvisual__container {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
}

.mainvisual__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    opacity: 0;
    transition: opacity 0.8s;
}

.mainvisual__slide > img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
}

@media (max-width:575px){
	.mainvisual__container > .mainvisual__slide:nth-of-type(1) > img{
		object-position: 35% 100%;
	}
	.mainvisual__container > .mainvisual__slide:nth-of-type(2) > img{
		object-position: 40% 100%;
	}
	.mainvisual__container > .mainvisual__slide:nth-of-type(3) > img{
		object-position: 50% 100%;
	}
	.mainvisual__container > .mainvisual__slide:nth-of-type(4) > img{
		object-position: 68% 100%;
	}

}

.mainvisual__slide.show {
    opacity: 1;
}

.mainvisual {
    position: relative;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


.mainvisual::after {
	content: "";
	display: block;
	position: absolute;
	right: -10%;
	bottom: -15%;
	z-index: 5;
	width: 450px;
	height: 450px;
	background-image: url("../img/deco_blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

@media (max-width:1200px){
	.mainvisual::after {
		width: 300px;
		height: 300px;
		bottom: -15%;
	}
}

@media (max-width:992px){
	.mainvisual::after {
		right: -12.5%;
		bottom: -12.5%;
	}
}

@media (max-width:768px){
	.mainvisual::after {
		right: -12.5%;
		bottom: -12.5%;
		width: 180px;
		height: 180px;
	}
}

@media (max-width:575px){
	.mainvisual::after {
		right: -20%;
		bottom: -5%;
		z-index: 10;
	}
}

.mainvisual__container {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	max-width: 90vw;
	height: 80vh;
	padding-top: 10vh;
	margin: 10vh auto 0;
	position: relative;
	z-index: 1;
	overflow-x: hidden;
}

.mainvisual__text-main {
	font-family: "Expletus Sans", cursive;
	font-weight: 500;
	font-size: 4.0rem;
	line-height: 1;
	color: #fff;
	font-style: italic;
	letter-spacing: 0.1em;
	line-height: 1.25;
	position: absolute;
	bottom: 6.5rem;
	left: 10rem;
	z-index: 50;
	text-shadow: 2px 3px 10px rgba(20, 20, 20, 0.4);
}


.mainvisual__text-sub {
	padding-top: 2.6rem;
	color: #fff;
	font-size: 2.6rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 2;
	position: absolute;
	bottom: 1.5rem;
	left: 10rem;
	z-index: 50;
	text-shadow: 2px 3px 10px rgba(20, 20, 20, 0.4);
}

@media (max-width: 992px) {
	.mainvisual__text-main {
		font-size: 3rem;
		left: 6.0rem;
		bottom: 5.5rem;
	}

	.mainvisual__text-sub {
		left: 6.0rem;
		font-size: 2.25rem;
	}
}


@media (max-width: 768px) {
	.mainvisual__text-main {
		font-size: 2.5rem;
	}

	.mainvisual__text-sub {
		font-size: 2rem;
		bottom: 1.75rem;
	}
}

@media (max-width: 575px){
	.mainvisual {
		position: relative;
/*		background-image: url("../img/mainvisual01.jpg");
		background-position: 39% 100%;
		background-size: cover;
*/		background-repeat: no-repeat;
		max-width: 95vw;
		margin-inline: auto;
	}
	.mainvisual__container {
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		max-width: 95vw;
		height: 80vh;
		padding-top: 10vh;
		margin: 10vh auto 0;
		position: relative;
		z-index: 4;
	}

	.mainvisual__text-main {
		font-size: 2.0rem;
		letter-spacing: 0.05em;
		bottom: 4rem;
		left: 1.5rem;
		line-height: 1.25;
		z-index: 15;
	}


	.mainvisual__text-sub {
		padding-top: 2.6rem;
		font-size: 1.6rem;
		left: 1.5rem;
		font-weight: 500;
		letter-spacing: 0.1em;
		line-height: 2;
		bottom: 1.0rem;
	}
}
.pagevisual {
	position: relative;
	z-index: 0;
	margin: 0;
	padding-top: calc(6rem + 6.4rem);
	padding-bottom: 6.4rem;
	background-image: url("../img/mainvisual.jpg");
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.pagevisual::before {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background-color: rgba(255, 255, 255, 0.5);
	content: "";
}

.pagevisual__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
	z-index: 2;
	padding-top: 0;
	padding-bottom: 0;
}

.pagevisual__text-main {
	font-weight: 700;
	font-family: "Expletus Sans", cursive;
	font-size: 3.2rem;
}

.pagevisual__text-main:after {
	display: block;
	max-width: 20rem;
	margin: 1.6rem 0rem;
	border-bottom: 3px solid #222222;
	background: #222222;
	content: "";
}

.pagevisual__text-sub {
	color: #222222;
}
@media (min-width: 992px) {
	.pagevisual {
		padding-top: calc(6rem + 9.6rem);
		padding-bottom: 9.6rem;
	}
	.pagevisual__text-main {
		font-size: 4.0rem;
	}
}
.breadcrumbs__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: .8rem 15px;
}

.breadcrumbs__list {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

.breadcrumbs__list-item {
	font-size: 1.8rem;
}

.breadcrumbs__list-item:not(:first-child)::before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cc";
}

.breadcrumbs__link {
	color: #222222;
}

.breadcrumbs__link:hover, .breadcrumbs__link:focus {
	text-decoration: underline;
}

.page-heading__content {
	margin: 0;
	padding: 0;
}

.page-heading__content--left {
	text-align: left;
}

.page-heading__content--center {
	margin: 0 auto;
	position: relative;
}

#about__us__anchor{
	padding-top: 70px;
	margin-top: -70px;
}

.top-about__us .page-heading__content--center {
	margin: 0 auto;
	position: relative;
	width: fit-content;
}

.page-heading__content--right {
	text-align: right;
}

.page-heading__text-main {
	font-weight: 700;
	font-family: "Zen Kaku Gothic New", cursive;
	font-size: 4.0rem;
	letter-spacing: 0.1em;
}


@media(max-width:575px){
	.page-heading__text-main {
		font-size: 3rem;
	}
}

.top-about__us .page-heading__text-main {
	color: var(--primary-color);
	position: relative;
}

.top-about__us .page-heading__text-main:before{
	content: "";
	width: 1px;
	height: 50px;
	display: block;
	left: 50%;
	top: -1.5em;
	position: absolute;
	background-color: var(--primary-color);
	z-index: 50;
}

@media(max-width:575px){
	.top-about__us .page-heading__text-main:before{
	top: -2.5em;
}
}


.page-heading__content--left .page-heading__text-main::after {
	margin-left: 0;
	margin-right: auto;
}

.page-heading__content--center .page-heading__text-main::after {
	margin-left: auto;
	margin-right: auto;
}

.page-heading__content--right .page-heading__text-main::after {
	margin-left: auto;
	margin-right: 0;
}

.page-heading__text-sub {
	font-size: 1.8rem;
	color: var(--primary-color);
	opacity: 0.2;
	position: absolute;
	font-family: "Expletus Sans", sans-serif;
	font-style: italic;
	font-weight: 900;
	letter-spacing: 0.1em;
}

.notfound__page .page-heading__text-sub{
	position: initial;
	opacity: initial;
	font-size: 5rem;
	color: var(--primary-color);
	font-family: "Expletus Sans", sans-serif;
	font-style: italic;
	font-weight: 900;
	letter-spacing: 0.1em;
	margin-bottom: 2rem;
}


@media (max-width:575px){
	#top-message{
		padding-top: 85px;
		margin-top: -85px;
	}

	#contact-guide{
		padding-top: 100px;
		margin-top: -100px;
	}
}

#top-message .page-heading__text-sub{
	right: 0;
	bottom: -34rem;
	font-size: 10rem;
}

@media(max-width:992px){
	#top-message .page-heading__text-sub{
		right: 0;
		bottom: -26rem;
	}
}

@media(max-width:796px){
	#top-message .page-heading__text-sub{
		right: 0;
		font-size: 6rem;
		bottom: -24rem;
	}
}

@media(max-width:575px){
	#top-message .page-heading__text-sub{
		right: 0;
		bottom: -22.5rem;
	}
}

@media(max-width:400px){
	#top-message .page-heading__text-sub{
		right: 0;
		bottom: -27rem;
		font-size: 5rem;
	}
}

.top-about__us{
	position: relative;
}

.top-about__us::before{
	content: "About Us";
	position: absolute;
	right: -10rem;
	top: 20rem;
	transform: rotate(90deg);
	font-size: 8rem;
	color: var(--primary-color);
	opacity: 0.2;
	font-family: "Expletus Sans", sans-serif;
	font-weight:900;
	font-style: italic;
	letter-spacing: 0.1em;

}

.top-about__us::after{
	content: "";
	display: block;
	position: absolute;
	left: -5%;
	bottom: -5%;
	z-index: 5;
	width: 300px;
	height: 300px;
	background-image: url("../img/deco_white.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

@media(max-width:1400px){
	.top-about__us::after{
		left: -10%;
	}
}

@media(max-width:1200px){
	.top-about__us::before{
		right: -10rem;
		top: 20rem;
		font-size: 6rem;
	}

	.top-about__us::after{
		left: -10%;
		bottom: -5%;
		width: 225px;
		height: 225px;
	}
}

@media(max-width:992px){
	.top-about__us::before{
		right: -6.5rem;
		top: 9.5rem;
		font-size: 4rem;
	}

	.top-about__us::after{
		display: none;
	}
}

@media(max-width:575px){
	.top-about__us::before{
		right: -4.5rem;
		top: 8rem;
		font-size:3rem;
	}
}


.page-heading__message {
	max-width: 800px;
	margin: 0 auto;
	padding-top: 6.4rem;
	color: #aaaaaa;
	font-weight: 400;
	font-size: 1.8rem;
	text-align: center;
}

.page-heading-sub__content {
	margin: 0;
	padding: 0;
}

.page-heading-sub__content--left {
	text-align: left;
}

.page-heading-sub__content--center {
	text-align: center;
}

.page-heading-sub__content--right {
	text-align: right;
}

.page-heading-sub__text {
	position: relative;
	font-size: 2.4rem;
}

.page-heading-sub__text:before {
	display: inline-block;
	vertical-align: middle;
	width: 6px;
	height: 1.6em;
	margin-right: .8rem;
	border-radius: 3px;
	background: var(--primary-color);
	content: "";
}

.page-heading-sub__message {
	margin: 0 auto;
	padding-top: 1.6rem;
	color: #aaaaaa;
	font-weight: 400;
	font-size: 1.8rem;
}

.footer__bnr{
	max-width: 1140px;
	margin-inline: auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 15px 12.4rem;
}

.footer__bnr > a + a{
	margin-left: 2rem;
}

@media (max-width:992px){
	.footer__bnr > a + a{
		margin-left: 1rem;
	}
}


@media (max-width:768px){
	.footer__bnr{
		flex-direction: column;
		align-items: center;
		justify-content: center;
		padding: 0 15px 6.2rem;
	}

	.footer__bnr > a + a{
		margin-top: 1rem;
	}
}

.footer {
	background: var(--gradient-color);
	position: relative;
	overflow-x: hidden;
}

.footer__container:before{
	content: "";
	display: block;
	position: absolute;
	right: -5%;
	top: -15%;
	z-index: 5;
	width: 250px;
	height: 250px;
	background-image: url("../img/deco_transparent.svg");
	background-size: contain;
	background-repeat: no-repeat;
	opacity: 0.5;
}

@media (max-width:575px){
	.footer__container:before{
		right: -15%;
		top: -10%;
		width: 200px;
		height: 200px;
	}
}

.footer__container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 90px 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #fff;
	align-items: center;
}

.footer__container > div{
	width: fit-content;
}
.footer__info{
	width: 40%;
	margin-right: 2rem;
}
@media (max-width:992px){
	.footer__container{
		display: block;
	}
	.footer__info{
		width: fit-content;
		margin-right: 0rem;
		margin-bottom: 2rem;
	}
}
.footer__info p:nth-of-type(n+2){
	margin-top: .5em;
}
.footer__info a {
	color: #fff;
	text-decoration: underline;
}
.footer__menu{
	width: 60%;
}
.footer__menu-list{
	line-height: 2;
}
.footer__menu-item-wrap{
	min-width: 250px;
}
.footer__menu-item-wrap .footer__menu-item:nth-of-type(n+2){
	margin-top: 15px;
}
.footer__menu-item-link {
	color: #fafafa;
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.footer__menu-item-link:hover, .footer__menu-item-link:focus {
	text-decoration: underline;
}
.footer__menu-children{
	padding-left: 25px;
	margin: 5px 0 0;
}
.footer__menu-children a{
	color: #fafafa;
}
.footer__menu-children-item:not(:first-child){
	padding-top: 5px;
}
.footer__copy{
	width: 100%;
	color: #fff;
	font-size: 1.2rem;
	text-align: center;
	background-color: var(--font-color);
	line-height: 3;
}


.button-guide {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
	width: 100%;
	max-width: 60rem;
	margin: 0 auto;
	padding: 1.6rem;
	border: none;
	border-radius: 8px;
	background: #eeeeee;
	color: #222222;
	font-weight: 400;
	font-size: 1.8rem;
}

.button-guide:hover, .button-guide:focus {
	background: var(--primary-color);
	color: #ffffff;
}

.button-detail {
	display: flex;
	flex-wrap: wrap;
	max-width: 60rem;
	margin: 0 auto;
}

.button-detail .button-detail__button, .button-detail .button-detail__button--back, .button-detail .button-detail__button--prev, .button-detail .button-detail__button--next {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: none;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
	margin-bottom: 2.4rem;
	padding: 1.6rem 2.4rem;
	border-radius: 0.4rem;
	background: #eeeeee;
	color: #222222;
}

 .button-detail .button-detail__button:hover, .button-detail .button-detail__button--back:hover, .button-detail .button-detail__button--prev:hover, .button-detail .button-detail__button--next:hover, .button-detail .button-detail__button:focus, .button-detail .button-detail__button--back:focus, .button-detail .button-detail__button--prev:focus, .button-detail .button-detail__button--next:focus {
	background: var(--primary-color);
	color: #ffffff;
}

.button-detail__button--back {
	width: 100%;
}

.button-detail__button--back:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e896";
	margin-right: 0.8rem;
}

.button-detail__button--prev {
	width: 100%;
}

.button-detail__button--prev:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cb";
	margin-right: 0.8rem;
}

.button-detail__button--next {
	width: 100%;
}


.button-detail__button--next:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cc";
	margin-left: 0.8rem;
}

@media (min-width: 992px) {
	.button-detail__button--prev {
		width: calc(50% - 15px);
		margin-right: 15px;
	}
	.button-detail__button--next {
		width: calc(50% - 15px);
		margin-left: 15px;
	}
}
.pagination__list,
.pagination .page-numbers {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.pagination__list-item,
.pagination .page-numbers > li {
	margin: 0.3rem;
}

.pagination .pagination__link,
.pagination .page-numbers > li > a, .pagination .pagination__link--prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev, .pagination .pagination__link--next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
	-webkit-transition: background-color 0.2s;
	-moz-transition: background-color 0.2s;
	-ms-transition: background-color 0.2s;
	-o-transition: background-color 0.2s;
	transition: background-color 0.2s;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.2rem 1.6rem;
	border-radius: 6px;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
	cursor: pointer;
}

.pagination__link,
.pagination .page-numbers > li > a {
	background-color: #eeeeee;
	color: #222222;
}

.pagination__link:hover, .pagination__link:focus,
.pagination .page-numbers > li > a:hover,
.pagination .page-numbers > li > a:focus {
	background-color: var(--primary-color);
	color: #ffffff;
}

.pagination__link--prev, .pagination__link.prev,
.pagination .page-numbers > li > a--prev,
.pagination .page-numbers > li > a.prev {
	min-width: 12rem;
	background-color: #eeeeee;
	color: #222222;
}

.pagination__link--prev:before, .pagination__link.prev:before,
.pagination .page-numbers > li > a--prev:before,
.pagination .page-numbers > li > a.prev:before {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cb";
	display: inline-block;
	margin-right: 0.6rem;
	transition: transform 0.2s;
}

.pagination__link--prev:hover, .pagination__link--prev:focus, .pagination__link.prev:hover, .pagination__link.prev:focus,
.pagination .page-numbers > li > a--prev:hover,
.pagination .page-numbers > li > a--prev:focus,
.pagination .page-numbers > li > a.prev:hover,
.pagination .page-numbers > li > a.prev:focus {
	background-color: var(--primary-color);
	color: #ffffff;
}

.pagination__link--prev:hover:before, .pagination__link--prev:focus:before, .pagination__link.prev:hover:before, .pagination__link.prev:focus:before,
.pagination .page-numbers > li > a--prev:hover:before,
.pagination .page-numbers > li > a--prev:focus:before,
.pagination .page-numbers > li > a.prev:hover:before,
.pagination .page-numbers > li > a.prev:focus:before {
	transform: translateX(-4px);
}

.pagination__link--next, .pagination__link.next,
.pagination .page-numbers > li > a--next,
.pagination .page-numbers > li > a.next {
	min-width: 12rem;
	background-color: #eeeeee;
	color: #222222;
}

.pagination__link--next:after, .pagination__link.next:after,
.pagination .page-numbers > li > a--next:after,
.pagination .page-numbers > li > a.next:after {
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cc";
	display: inline-block;
	margin-left: 0.6rem;
	transition: transform 0.2s;
}

.pagination__link--next:hover, .pagination__link--next:focus, .pagination__link.next:hover, .pagination__link.next:focus,
.pagination .page-numbers > li > a--next:hover,
.pagination .page-numbers > li > a--next:focus,
.pagination .page-numbers > li > a.next:hover,
.pagination .page-numbers > li > a.next:focus {
	background-color: var(--primary-color);
	color: #ffffff;
}

.pagination__link--next:hover:after, .pagination__link--next:focus:after, .pagination__link.next:hover:after, .pagination__link.next:focus:after,
.pagination .page-numbers > li > a--next:hover:after,
.pagination .page-numbers > li > a--next:focus:after,
.pagination .page-numbers > li > a.next:hover:after,
.pagination .page-numbers > li > a.next:focus:after {
	transform: translateX(4px);
}

.pagination .pagination__text,
.pagination .page-numbers > li > span, .pagination .pagination__text--current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current, .pagination .pagination__text--dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.2rem 1.6rem;
	border-radius: 6px;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 1;
	text-align: center;
}

.pagination__text,
.pagination .page-numbers > li > span {
	background-color: #eeeeee;
	color: #222222;
}

.pagination__text--current, .pagination__text.current,
.pagination .page-numbers > li > span--current,
.pagination .page-numbers > li > span.current {
	background-color: var(--primary-color);
	color: #ffffff;
}

.pagination__text--dots, .pagination__text.dots,
.pagination .page-numbers > li > span--dots,
.pagination .page-numbers > li > span.dots {
	background-color: #eeeeee;
	color: #222222;
}


.form__form-group-title {
	padding: 1rem;
}

.form__form-group-content {
	padding: 1rem;
	display: flex;
}


.form .form__label, .form .form__label--itemname, .form .form__label--required {
	display: inline-block;
	font-weight: 400;
	line-height: 1;
	letter-spacing: 0.08em;
}

.form__label--itemname {
	color: #222222;
}

.form__label--required {
	margin-left: 0.4rem;
	padding: 0.4em 0.6em;
	border-radius: 3px;
	background: #fafafa;
	color: #aaaaaa;
	font-size: 1.4rem;
}

.form__list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.form__list-item {
	margin-bottom: 0.6rem;
}

.form .form__input, .form .form__input--text, .form .form__input--text-half, .form .form__input--textarea, .form .form__input--textarea-half, .form .form__input--select, .form .form__input--radio, .form .form__input--check {
	position: relative;
	width: 100%;
	padding: 0.4rem;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input, .form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea, .form .form__input--select select, .form__input--select .form select {
	display: inline-flex;
	align-items: center;
	position: relative;
	width: 100%;
	margin: 0;
	border: 2px solid #efefef;
	background: #ffffff;
	font-weight: 400;
	font-size: 1.8rem;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	/* ??dge???? */
	/* IE???? */
}

.form .form__input--text input::-ms-expand, .form__input--text .form input::-ms-expand, .form .form__input--text-half input::-ms-expand, .form__input--text-half .form input::-ms-expand, .form .form__input--textarea textarea::-ms-expand, .form__input--textarea .form textarea::-ms-expand, .form .form__input--textarea-half textarea::-ms-expand, .form__input--textarea-half .form textarea::-ms-expand, .form .form__input--select select::-ms-expand, .form__input--select .form select::-ms-expand {
	display: none;
}

.form .form__input--text input::placeholder, .form__input--text .form input::placeholder, .form .form__input--text-half input::placeholder, .form__input--text-half .form input::placeholder, .form .form__input--textarea textarea::placeholder, .form__input--textarea .form textarea::placeholder, .form .form__input--textarea-half textarea::placeholder, .form__input--textarea-half .form textarea::placeholder, .form .form__input--select select::placeholder, .form__input--select .form select::placeholder {
	color: #cccccc;
}

.form .form__input--text input::-ms-input-placeholder, .form__input--text .form input::-ms-input-placeholder, .form .form__input--text-half input::-ms-input-placeholder, .form__input--text-half .form input::-ms-input-placeholder, .form .form__input--textarea textarea::-ms-input-placeholder, .form__input--textarea .form textarea::-ms-input-placeholder, .form .form__input--textarea-half textarea::-ms-input-placeholder, .form__input--textarea-half .form textarea::-ms-input-placeholder, .form .form__input--select select::-ms-input-placeholder, .form__input--select .form select::-ms-input-placeholder {
	color: #cccccc;
}

.form .form__input--text input:-ms-input-placeholder, .form__input--text .form input:-ms-input-placeholder, .form .form__input--text-half input:-ms-input-placeholder, .form__input--text-half .form input:-ms-input-placeholder, .form .form__input--textarea textarea:-ms-input-placeholder, .form__input--textarea .form textarea:-ms-input-placeholder, .form .form__input--textarea-half textarea:-ms-input-placeholder, .form__input--textarea-half .form textarea:-ms-input-placeholder, .form .form__input--select select:-ms-input-placeholder, .form__input--select .form select:-ms-input-placeholder {
	color: #cccccc;
}

.form .form__input--text input, .form__input--text .form input, .form .form__input--text-half input, .form__input--text-half .form input {
	padding: 0.8rem 1.6rem;
	transition: border-color 0.4s;
}

.form .form__input--text input:focus, .form__input--text .form input:focus, .form .form__input--text-half input:focus, .form__input--text-half .form input:focus {
	border: 2px solid var(--primary-color);
}

.form .form__input--textarea textarea, .form__input--textarea .form textarea, .form .form__input--textarea-half textarea, .form__input--textarea-half .form textarea {
	padding: 1.6rem;
	transition: border-color 0.4s;
}

.form .form__input--textarea textarea:focus, .form__input--textarea .form textarea:focus, .form .form__input--textarea-half textarea:focus, .form__input--textarea-half .form textarea:focus {
	border: 2px solid var(--primary-color);
}

.form__input--text-half {
	max-width: 50%;
}

.form__input--textarea-half {
	max-width: 50%;
}

.form__input--select {
	max-width: 300px;
}

.form__input--select select {
	padding: 0.8rem 2.4rem 0.8rem 1.6rem;
	cursor: pointer;
}

.form__input--select::after {
	display: inline-block;
	position: absolute;
	top: 0;
	right: 12px;
	bottom: 0;
	z-index: 1;
	width: 0;
	height: 0;
	margin: auto 0;
	border-width: 6px 4px 0;
	border-style: solid;
	border-color: #cccccc transparent transparent transparent;
	content: "";
	pointer-events: none;
}

.form__input--radio {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.form__input--radio .radio-input {
	display: block !important;
	visibility: visible !important;
	opacity: 0 !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 4px !important;
	height: 4px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: none !important;
}

.form__input--radio .radio-icon {
	display: inline-block;
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.8rem;
	border: 1px solid #cccccc;
	border-radius: 50%;
}

.form__input--radio .radio-icon:before {
	opacity: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 1.5rem;
	height: 1.5rem;
	margin: auto;
	border-radius: 50%;
	background: var(--primary-color);
	content: "";
	transition: opacity 0.4s;
}

.form__input--radio .radio-text {
	color: #cccccc;
	transition: color 0.4s;
}

.form__input--radio .radio-input:checked + .radio-icon {
	border-color: var(--primary-color);
}

.form__input--radio .radio-input:checked + .radio-icon:before {
	opacity: 1;
}

.form__input--radio .radio-input:checked ~ .radio-text {
	color: var(--primary-color);
}

.form__input--check {
	display: inline-flex;
	align-items: center;
	cursor: pointer;
}

.form__input--check .check-input {
	display: block !important;
	visibility: visible !important;
	opacity: 0 !important;
	position: fixed !important;
	top: 0 !important;
	left: 0 !important;
	width: 4px !important;
	height: 4px !important;
	margin: 0 !important;
	padding: 0 !important;
	overflow: hidden !important;
	border: none !important;
}

.form__input--check .check-icon {
	display: inline-block;
	position: relative;
	width: 2.5rem;
	height: 2.5rem;
	margin-right: 0.8rem;
	border: 2px solid #cccccc;
}

.form__input--check .check-icon:after {
	opacity: 0;
	position: absolute;
	top: 0.5rem;
	left: 0.3rem;
	width: 1.6rem;
	height: 0.8rem;
	border-bottom: 2px solid transparent;
	border-left: 2px solid transparent;
	content: "";
	transition: opacity 0.4s;
}

.form__input--check .check-text {
	color: #cccccc;
	transition: color 0.4s;
}

.form__input--check .check-input:checked + .check-icon {
	border-color: var(--primary-color);
}

.form__input--check .check-input:checked + .check-icon:after {
	opacity: 1;
	transform: rotate(-45deg);
	border-bottom: 2px solid var(--primary-color);
	border-left: 2px solid var(--primary-color);
}

.form__input--check .check-input:checked ~ .check-text {
	color: var(--primary-color);
}

@media (min-width: 992px) {
	.form__form-group {
		display: flex;
	}
	.form__form-group-title {
		width: 260px;
		padding: 1.6rem;
	}
	.form__form-group-content {
		width: calc(100% - 260px);
		padding: 1.6rem;
	}
}
.table-overview {
	width: 100%;
	line-height: 1.8;
	text-align: left;
}

.table-overview tr th {
	width: 16rem;
	padding: .8rem;
	vertical-align: top;
}

.table-overview tr td {
	width: calc(100% - 16rem);
	padding: .8rem 1.6rem;
	vertical-align: top;
}

.news-item {
	display: flex;
	flex-wrap: wrap;
}


.news-item__date {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 3.2rem 1.6rem 0;
}


.news-item__category {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 3.2rem 1.6rem 0;
}


.news-item__category-label {
	display: flex;
	justify-content: center;
	align-items: center;
	min-width: 12rem;
	padding: 0.3rem 0.6rem;
	border: 2px solid var(--primary-color);
	color: var(--primary-color);
	font-size: 1.4rem;
}

.news-item__title {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #222222;
}

.news-item__title:hover, .news-item__title:focus {
	text-decoration: underline;
}

.news-content {
	font-size: 1.8rem;
	line-height: 2.0;
	letter-spacing: .05em;
	text-align: left;
}

.news-content h1 {
	margin-top: 3.6rem;
	margin-bottom: 1.8rem;
	font-size: 3.6rem;
}

.news-content h2 {
	margin-top: 3.2rem;
	margin-bottom: 1.6rem;
	font-size: 3.2rem;
}

.news-content h3 {
	margin-top: 2.8rem;
	margin-bottom: 1.4rem;
	font-size: 2.8rem;
}

.news-content h4 {
	margin-top: 2.4rem;
	margin-bottom: 1.2rem;
	font-size: 2.4rem;
}

.news-content h5 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 2rem;
}

.news-content h6 {
	margin-top: 1.6rem;
	margin-bottom: 0.8rem;
	font-size: 1.8rem;
}

.news-content p {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.news-content ul {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.news-content ol {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.news-content .box {
	margin-top: 3.6em;
	margin-bottom: 3.6em;
	padding: 2.4em;
	border: 4px solid #EFEFEF;
}

@media (min-width: 992px) {
	.news-item {
		flex-wrap: nowrap;
	}
	.news-item__date {
		margin: 0 1.6rem 0 0;
	}
	.news-item__category {
		margin: 0 1.6rem 0 0;
	}
}
.service-feature-item__thumbnail {
	overflow: hidden;
}

.service-feature-item__thumbnail-image {
	display: block;
	margin: 0 auto;
	max-width: 200px;
	border-radius: 100%;
}

.service-feature-item__content {
	padding: 1.6rem;
}

.service-feature-item__content-title {
	margin-bottom: 1.6rem;
	font-weight: 700;
	font-size: 2.0rem;
	text-align: center;
}

.service-feature-item__content-text {
	color: #aaaaaa;
}


.service-content-item__thumbnail-image {
	display: block;
	max-width: 100%;
	margin: 0 auto;
	border-radius: .8rem;
}

.service-content-item__content {
	padding: 1.6rem;
}


.service-content-item__content-title {
	margin-bottom: 1.6rem;
	font-weight: 700;
	font-size: 2rem;
	text-align: center;
}


.service-content-item__content-text {
	color: #aaaaaa;
}

@media (min-width: 992px) {
	.service-content-item {
		display: flex;
	}
	.service-content-item__thumbnail {
		width: 30rem;
	}
	.service-content-item__content {
		width: calc(100% - 30rem);
		padding: 3.2rem;
	}
	.service-content-item__content-title {
		font-size: 2.4rem;
		text-align: left;
	}
}
.works-item {
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	display: block;
	max-width: 600px;
	margin: 0 auto;
	padding: 0;
	overflow: hidden;
	border-radius: 0.8rem;
	background: #ffffff;
	color: #222222;
	cursor: pointer;
}

.works-item__thumbnail {
	overflow: hidden;
}

.works-item__thumbnail-image {
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.works-item__content {
	padding: 0.8rem;
}


.works-item__content-title {
	color: #222222;
	font-weight: 400;
	font-size: 1.8rem;
	text-align: center;
}

.works-item:hover {
	box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.3);
}

.works-item:hover .works-item__thumbnail-image {
	transform: scale(1.1);
}

.works-item:hover .works-item__button-more {
	background: #222222;
	color: #ffffff;
}

.works-item:hover .works-item__button-more:after {
	transform: translateX(4px);
}

@media (min-width: 992px) {
	.works-item__content {
		padding: 1.6rem;
	}
}
.blog-item {
	display: block;
	max-width: 600px;
	margin: 0 auto;
	padding: 0;
	border-radius: .8rem;
	background: #ffffff;
	color: #222222;
	overflow: hidden;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.blog-item__thumbnail-image {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.blog-item__content {
	padding: 1.6rem;
}

.blog-item__title {
	margin: 0 0 .8rem 0;
	color: #222222;
	font-weight: 700;
	font-size: 2.4rem;
}

.blog-item__read {
	margin: 0 0 .8rem 0;
	color: #aaaaaa;
	font-size: 1.8rem;
}

.blog-item__button {
	text-align: right;
}

.blog-item__button-more {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: none;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
	padding: 1.2rem 2.4rem;
	background: #eeeeee;
	border-radius: 100px;
	color: #222222;
}

.blog-item__button-more:after {
	margin-left: 0.4rem;
	font-family: 'Material Icons';
	font-weight: normal;
	font-style: normal;
	display: inline-block;
	line-height: 1;
	text-transform: none;
	letter-spacing: normal;
	word-wrap: normal;
	white-space: nowrap;
	direction: ltr;
	/* Support for all WebKit browsers. */
	-webkit-font-smoothing: antialiased;
	/* Support for Safari and Chrome. */
	text-rendering: optimizeLegibility;
	/* Support for Firefox. */
	-moz-osx-font-smoothing: grayscale;
	/* Support for IE. */
	font-feature-settings: 'liga';
	content: "\e5cc";
	-webkit-transition: all 0.2s;
	-moz-transition: all 0.2s;
	-ms-transition: all 0.2s;
	-o-transition: all 0.2s;
	transition: all 0.2s;
}

.blog-item:hover {
	box-shadow: 0 0 2.4rem 0 rgba(0, 0, 0, 0.3);
}

.blog-item:hover .blog-item__button-more {
	background: #e1e1e1;
	color: #222222;
}

.blog-item:hover .blog-item__button-more:after {
	transform: translateX(4px);
}

.blog-content {
	font-size: 1.8rem;
	line-height: 2.0;
	letter-spacing: .05em;
	text-align: left;
}

.blog-content h1 {
	margin-top: 3.6rem;
	margin-bottom: 1.8rem;
	font-size: 3.6rem;
}

.blog-content h2 {
	margin-top: 3.2rem;
	margin-bottom: 1.6rem;
	font-size: 3.2rem;
}

.blog-content h3 {
	margin-top: 2.8rem;
	margin-bottom: 1.4rem;
	font-size: 2.8rem;
}

.blog-content h4 {
	margin-top: 2.4rem;
	margin-bottom: 1.2rem;
	font-size: 2.4rem;
}

.blog-content h5 {
	margin-top: 2rem;
	margin-bottom: 1rem;
	font-size: 2rem;
}

.blog-content h6 {
	margin-top: 1.6rem;
	margin-bottom: 0.8rem;
	font-size: 1.8rem;
}

.blog-content p {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.blog-content ul {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.blog-content ol {
	margin-top: 2.0em;
	margin-bottom: 2.0em;
}

.blog-content .box {
	margin-top: 3.6em;
	margin-bottom: 3.6em;
	padding: 2.4em;
	border: 4px solid #EFEFEF;
}

@media (min-width: 992px) {
	.blog-item {
		display: flex;
		max-width: 1000px;
	}
	.blog-item__thumbnail {
		width: 40%;
	}
	.blog-item__content {
		width: 60%;
		padding: 3.2rem;
	}
}

/*
 * -------------------------------------------------------------------
 * ?ȥåץک`??
 * -------------------------------------------------------------------
 */
.top-message{
	display: flex;
	padding-inline: 5vw;
	justify-content: center;
	padding-block: 5rem;
}

@media (max-width:1200px){
	.top-message__container{
		width: 55%!important;
	}

	.top-message__image{
		width: 40%!important;
	}
}

@media (max-width:992px){
	.top-message{
		flex-direction: column;
	}

	.top-message__container{
		width: 100%!important;
	}

	.top-message__image{
		width:min(400px,100%)!important;
		align-self: center;
		padding: 3rem 0!important;
	}
}

#top-message .page-heading__text-main{
	color: #fff;
	background:var(--gradient-color);
	width: fit-content;
	padding: 1rem 4rem;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}

@media(max-width:575px){
	#top-message .page-heading__text-main {
		padding: 1rem 2rem;
	}
}

.top-message__container {
	position: relative;
	padding: 12.4rem 0px;
	margin-right: 5rem;
	width: 40%;
}

@media(max-width:992px){
	.top-message__container {
		padding-top: 6.2rem;
	}
}

@media(max-width:768px){
	.top-message__container {
		padding-bottom:6.2rem;
	}
}


@media(max-width:575px){
	.top-message__container {
		position: relative;
		padding:3.2rem 0px ;
		margin-right: 5rem;
		width: 40%;
	}
}

.top-message__content {
	max-width: 800px;
	margin: 0 auto;
}

/*.top-message__heading {
	margin-bottom: 50px;
}*/

.top-message__text {
	color: var(--font-color);
	font-size: 1.8rem;
	line-height: 2.25;
	font-weight: 600;
}

@media(max-width:575px){
	.top-message__heading {
		margin-bottom: 25px;
	}

	.top-message__text {
		font-size: 1.6rem;
		line-height: 2.0;
	}
}

.top-message__guide {
	padding-top: 6.4rem;
}

.top-message__image{
	width: 30%;
	padding: 12.4rem 0px;
	position: relative;
}

.top-message__image img{
	box-shadow: 1.5rem 1.5rem 0px var(--primary-color);
}

@media (max-width:450px){
	.top-message__image img{
		box-shadow: 1.0rem 1.0rem 0px var(--primary-color);
	}
}
/*
.top-message__image::after{
	content:"";
	width: 100%;
	height: 100%;
	display: block;
	background: var(--gradient-color);
	position: relative;
	top: calc(-100% + 1.5rem);
	left: 1.5rem;
	z-index: -1;
}*/

.top-about__us__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.top-about__us__heading {
	margin-bottom: 6.4rem;
}


@media(max-width:575px){
	.top-about__us__heading{
		margin-bottom: 3rem;
	}
}

.top-about__us__list {
/*	background: #fff;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);*/
}

.top-about__us__list dl{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	line-height: 2;
}

.top-about__us__list dl dt{
	width: 25%;
	background-color: rgba(0, 152, 170, 0.1);
	color: var(--primary-color);
	padding: 30px;
	border-top: 2px var(--primary-color) solid;
	font-weight: 700;
	text-align: center;
}

.top-about__us__list dl dt:last-of-type{
	border-bottom: 2px var(--primary-color) solid;
}

.top-about__us__list dl dd{
	width: 60%;
	background-color: #fff;
	padding: 30px;
	border-top: 2px var(--primary-color) solid;
	line-height: 2.25;
}

.top-about__us__list dl dd:last-of-type{
	border-bottom: 2px var(--primary-color) solid;
}

.to_toppage{
	margin-top: 2rem;
}

.top-about__us__list dl li a,.to_toppage a{
	padding-bottom: 0.25rem;
	border-bottom: 1px solid var(--font-color);
}


@media screen and (min-width:768px){
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
	}
}

.top-about__us__list dl a:hover{
	border-bottom: none;
}

@media(max-width:992px){
	.top-about__us__list dl dt{
		width: 30%;
		background-color: rgba(0, 152, 170, 0.1);
		color: var(--primary-color);
		padding: 15px;
		border-top: 2px var(--primary-color) solid;
		font-weight: 700;
		text-align: center;
	}

	.top-about__us__list dl dd{
		width: calc(70% - 1rem);
		background-color: #fff;
		padding: 15px;
		border-top: 2px var(--primary-color) solid;
	}
}

@media(max-width:575px){
	.top-about__us__list dl dt{
		width: 30%;
		background-color: rgba(0, 152, 170, 0.1);
		color: var(--primary-color);
		padding: 10px;
		border-top: 2px var(--primary-color) solid;
		font-weight: 700;
		text-align: center;
	}

	.top-about__us__list dl dd{
		width: 70%;
		background-color: #fff;
		padding: 10px;
		border-top: 2px var(--primary-color) solid;
	}
}
.top-about__us__list-item {
	padding: 2.4rem 1.6rem;
}


.top-about__us__guide {
	padding-top: 6.4rem;
}


@media (min-width: 992px) {
	.top-about__us__list {
		display: flex;
		padding: 3.2rem;
	}
	.top-about__us__list-item:not(:first-child) {
		border-left: 1px dashed #aaaaaa;
	}
}
.top-works__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.top-works__heading {
	margin-bottom: 6.4rem;
}

.top-works__list {
	margin: 0 -15px 0 -15px;
}


.top-works__list-item {
	margin: 15px 15px 4.8rem 15px;
}


.top-works__guide {
	padding-top: 6.4rem;
}

@media (min-width: 992px) {
	.top-works__list {
		display: flex;
		flex-wrap: wrap;
	}
	.top-works__list-item {
		width: calc(100% / 3 - 30px);
		margin: 15px;
	}
}
.top-news__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.top-news__heading {
	margin-bottom: 6.4rem;
}

.top-news__list {
	display: block;
	padding: 0;
	margin: 0 auto;
	max-width: 100rem;
}

.top-news__list-item {
	display: block;
	margin: 0;
	padding: 0;
}

.top-news__list-item:not(:first-child) {
	margin-top: 1.6rem;
	padding-top: 1.6rem;
	border-top: 1px dashed #222;
}

.top-news__guide {
	padding-top: 6.4rem;
}

.top-blog {
	background: #fafafa;
}

.top-blog__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.top-blog__heading {
	margin-bottom: 6.4rem;
}

.top-blog__list {
	margin: 0;
}

.top-blog__list-item:not(:last-child) {
	margin: 0 0 4.8rem 0;
}

.top-blog__guide {
	padding-top: 6.4rem;
}

/*
 * ?????
 * -------------------------------------------------------------------
 */
.news-list__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.news-list__list {
	display: block;
	padding: 0;
	margin: 0 auto;
	max-width: 100rem;
}

.news-list__list-item {
	display: block;
	margin: 0;
	padding: 0;
}

.news-list__list-item:not(:first-child) {
	margin-top: 1.6rem;
	padding-top: 1.6rem;
	border-top: 1px dashed #222;
}

.news-list__pagination {
	padding-top: 6.4rem;
}

.news-detail__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.news-detail__title {
	margin-bottom: 4.8rem;
	font-weight: 700;
	font-size: 3.2rem;
}

.news-detail__image {
	margin-bottom: 4.8rem;
}

.news-detail__image img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.news-detail__body {
	margin-bottom: 4.8rem;
	background: #ffffff;
}

.news-detail__button {
	padding-top: 3.2rem;
}

@media (min-width: 992px) {
	.news-detail__body {
		padding: 3.6rem;
	}
	.news-detail__button {
		padding-top: 6.4rem;
	}
}

/*
 * ???`?ӥ??B??
 * -------------------------------------------------------------------
 */
.service-feature__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.service-feature__heading {
	margin-bottom: 6.4rem;
}

.service-feature__list {
	background: #fff;
	box-shadow: 0 0 1.6rem 0 rgba(0, 0, 0, 0.15);
}


.service-feature__list-item {
	padding: 2.4rem 1.6rem;
}


.service-feature__guide {
	margin-top: 6.4rem;
}

.service-content__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.service-content__heading {
	margin-bottom: 6.4rem;
}

.service-content__list {
	max-width: 100rem;
	margin: 0 auto;
}

.service-content__list-item {
	margin-bottom: 4.8rem;
}

.service-content__guide {
	margin-top: 6.4rem;
}

@media (min-width: 992px) {
	.service-feature__list {
		display: flex;
		padding: 3.2rem;
	}
	.service-feature__list-item:not(:first-child) {
		border-left: 1px dashed #aaaaaa;
	}
}
/*
 * ???g??
 * -------------------------------------------------------------------
 */
.works-list__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.works-list__list {
	margin: 0 -15px 0 -15px;
}


.works-list__list-item {
	margin: 15px 15px 4.8rem 15px;
}


.works-list__pagination {
	padding-top: 6.4rem;
}

.works-detail__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.works-detail__image .works-detail__image {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.works-detail__image--main {
	margin-bottom: 4rem;
}

.works-detail__image--sub {
	margin-bottom: 1.6rem;
}

.works-detail__list {
	list-style: none;
	margin: 0 -15px;
	padding: 0;
}


.works-detail__list-item {
	margin: 0 15px;
	margin-bottom: 4rem;
}


.works-detail__text-main {
	margin-bottom: 4rem;
	color: #aaaaaa;
}

.works-detail__text-sub {
	margin: 0;
	color: #aaaaaa;
	font-size: 1.4rem;
}

.works-detail__button {
	padding-top: 3.2rem;
}

@media (min-width: 992px) {
	.works-list__list {
		display: flex;
		flex-wrap: wrap;
	}
	.works-list__list-item {
		width: calc(100% / 3 - 30px);
		margin: 15px;
	}
	.works-detail__list {
		display: flex;
		flex-wrap: wrap;
	}
	.works-detail__list-item {
		width: calc(100% / 2 - 30px);
	}
	.works-detail__button {
		padding-top: 6.4rem;
	}
}

/*
 * ????
 * -------------------------------------------------------------------
 */
.about-me__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.about-me__content-left {
	margin-bottom: 4.8rem;
}


.about-me__content-right {
	display: flex;
	align-items: center;
}


.about-me__image img {
	display: block;
	max-width: 100%;
	border-radius: 1.6rem;
}

.company-overview__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.company-overview__heading {
	margin-bottom: 6.4rem;
}



.company-overview__content-image img {
	border-radius: 1.6rem;
}

.company-overview__content-table {
	padding: 3.2rem 0 0 0;
}


.company-overview__guide {
	padding-top: 6.4rem;
}

.about-info__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.about-info__heading {
	margin-bottom: 6.4rem;
}


.about-info__content-image img {
	border-radius: 1.6rem;
}

.about-info__content-table {
	padding: 3.2rem 0 0 0;
}

.about-info__guide {
	padding-top: 6.4rem;
}

@media (min-width: 992px) {
	.about-me__content {
		display: flex;
	}
	.about-me__content-left {
		width: 50%;
		padding-right: 2.4rem;
		margin-bottom: 0;
	}
	.about-me__content-right {
		width: 50%;
	}
	.company-overview__content {
		display: flex;
	}
	.company-overview__content-image {
		width: 50%;
	}
	.company-overview__content-table {
		width: 50%;
		padding: 0 0 0 3.2rem;
	}
	.about-info__content {
		display: flex;
	}
	.about-info__content-image {
		width: 50%;
	}
	.about-info__content-table {
		width: 50%;
		padding: 0 0 0 3.2rem;
	}
}
/*
 * ?֥??
 * -------------------------------------------------------------------
 */
.blog-list__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.blog-list__list {
	margin: 0;
}

.blog-list__list-item:not(:last-child) {
	margin: 0 0 4.8rem 0;
}

.blog-list__pagination {
	padding-top: 6.4rem;
}

.blog-detail__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.blog-detail__title {
	margin-bottom: 4.8rem;
	font-weight: 700;
	font-size: 3.2rem;
}

.blog-detail__image {
	margin-bottom: 4.8rem;
}

.blog-detail__image img {
	display: block;
	max-width: 100%;
	margin: 0 auto;
}

.blog-detail__body {
	margin-bottom: 4.8rem;
	background: #ffffff;
}


.blog-detail__button {
	padding-top: 3.2rem;
}

@media (min-width: 992px) {
	.blog-detail__body {
		padding: 3.6rem;
	}
	.blog-detail__button {
		padding-top: 6.4rem;
	}
}

/*
 * ??????
 * -------------------------------------------------------------------
 */
#top-publications{
	padding-top: 70px;
	margin-top: -70px;
}

.top-publications__container {
	max-width: 1140px;
	margin: 0 auto;
	padding: 6.4rem 15px;
}

.top-publications .page-heading{
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	flex-wrap: wrap;
}


.top-publications .page-heading h2{
	color: var(--primary-color);
	width: 330px;
	height: 230px;
	margin: 0;
	text-align: center;
	border: 2px solid var(--primary-color);
    display: flex;
    justify-content: center; /* ˮƽ????????? */
    flex-direction: column; /* ??ֱ??????ä?Фˤ??? */
    margin-right: 2rem;
}
.top-publications .page-heading h2 .page-heading__text-main{
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--primary-color);
	width: fit-content;
	margin-inline: auto;
}

.page-heading__files{
	width: calc(100% - 330px - 2rem);
}

@media(max-width:768px){
	.top-publications .page-heading{
		display: block;
	}

	.top-publications .page-heading h2{
		margin-inline: auto;
		height: 200px;
	}

	.page-heading__files{
		width: 80%;
		margin-inline: auto;
		margin-top: 3rem;
	}
}


.top-publications h2 .page-heading__text-sub{
	font-size: 3rem;
	opacity: 1;
	text-align: center;
	position: relative;
	padding-top: 1rem;
}

.page-heading__files a:before{
	content: url(../img/file-pdf-sharp-solid.svg);
	margin-right: 2rem;
}

.page-heading__files a{
	background:var(--gradient-color);
	color: #fff;
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	height: 100px;
	padding-inline: 5rem;
	position: relative;
	z-index: 1;
}

.page-heading__files a:after{
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	background: var(--gray-color);
	width: 100%;
	height: 100%;
	transform: scale(1, 0);
	transform-origin: right top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
/*	border: 1px solid var(--primary-color);*/
}

@media(max-width:575px){
	.top-publications .page-heading{
		display: block;
	}

	.top-publications .page-heading h2{
		width: 85%;
		height: 175px;
	}

	.page-heading__files{
		width: 100%;
		margin-inline: auto;
		margin-top: 3rem;
	}

	.page-heading__files a{
		height: 80px;
		padding-inline: 2.5rem;
	}
}

.page-heading__files a:hover {
  color: var(--primary-color);
}

.page-heading__files a:hover::after {
  transform: scale(1, 1);
}

.page-heading__files a:hover::before{
	content: url(../img/file-pdf-sharp-solid_hover.svg);
}
.page-heading__files > a:nth-child(2){
	margin-top: 3rem;
}




/*
 * ?????Ϥ碌
 * -------------------------------------------------------------------
 */
.contact-guide {
	padding: 12.4rem 15px;
}

@media(max-width:768px){
	.contact-guide {
		padding: 6.2rem 15px;
	}
}

.contact-guide__container {
	box-shadow: 0 0 0.8rem 0 rgba(0, 0, 0, 0.15);
	max-width: 1140px;
	margin: 0 auto;
	padding: 6.4rem 15px;
	background: center / cover no-repeat url("../img/contact__bg.jpg");
	color: #fff;
	position: relative;
}

.contact-guide__container:after{
	content: "";
	height: calc(100% - 5rem);
	width: calc(100% - 5rem);
	border: 1px solid #fff;
	display: block;
	position: absolute;
	top: 2.5rem;
	left: 2.5rem;
}

.contact-guide__heading {
	margin: 0 0 7.5rem 0;
	text-align: center;
}

.contact-guide__heading-main {
	font-weight: 700;
	font-size: 4rem;
	letter-spacing: 0.1em;
}

.contact-guide__heading-sub {
	font-family: "Expletus Sans", cursive;
	font-style: italic;
	font-weight: 900;
	font-size: 3rem;
	padding-top: 0.5rem;
}

.contact-guide__message {
	margin: 0 0 4.8rem 0;
	font-size: 1.8rem;
	text-align: center;
}

.contact-guide__list{
	width: 70%;
	max-width: 800px;
	margin: 0 auto;
}
.contact-guide__list-item {
	margin: 0 0 2.4rem 0;
}

.contact-guide__list-item.number{
}
.form .contact-guide__item {
	width: 100%;
}
.number .contact-guide__item {
}

.contact-guide__button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	text-decoration: none;
	text-align: center;
	outline: none;
	transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
	width: 100%;
	padding: 1.6rem;
	color: #ffffff;
	height: 70px;
	font-weight: 700;
	font-size: 2rem;
}
.number .contact-guide__button{

}
.tel .contact-guide__link{
	pointer-events: none;
}
.contact-guide__title{
	color: #707070;
	margin-right: 10px;
}
.contact-guide__num{
	text-align: left;
	font-family: "Expletus Sans","Zen Kaku Gothic New", cursive;
	font-style: italic;
	font-size: 6rem;
	margin-block: 2rem;
	letter-spacing: 0.05em;
}

.contact-guide__num > span{
	font-size: 2rem;
	letter-spacing: 0.1em;
}

.contact-guide__info{
	display: block;
	font-size: 1.4rem;
	font-weight: 500;
	margin-top: 4.5rem;
	font-style: normal;
	font-family: "Pontano Sans","Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "?ҥ饮?νǥ? ProN W3", Hiragino Kaku Gothic ProN, Arial, "?ᥤ?ꥪ", Meiryo, sans-serif;
	text-align: center;
	margin-bottom: 6.4rem;
}
.contact-guide__info > span{
	padding: 1rem 1.5rem;
	border: 1px solid #fff;
	margin-right: 2rem;
}
.contact-form__container {
	position: relative;
	max-width: 1140px;
	margin: 0 auto;
	padding: 12.4rem 15px;
}

.contact-form__heading {
	margin-bottom: 3.2rem;
}

.contact-form__content {
	margin: 0 auto;
	padding: 3.2rem 1rem;
	background: #fff;
	border: 4px solid #efefef;
}
.contact-form__form {
	max-width: 850px;
	margin: 0 auto 1.6rem auto;
}
.contact-form__button {
	text-align: center;
}
.contact-form__button-submit {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	position: relative;
	border: none;
	line-height: 1;
	text-decoration: none;
	text-align: center;
	outline: none;
	cursor: pointer;
	transition: box-shadow .2s, text-shadow .2s, background-color .2s,  border-color .2s, opacity .2s;
	background: var(--primary-color);
	padding: 1em 3em;
	color: #fff;
	border-radius: 50px;
	width: 100%;
	max-width: 100%;
}

.contact-form__button-submit:hover, .contact-form__button-submit:focus {
	background: #079698;
}

@media (min-width: 992px) {
	.contact-form__content {
		padding: 6.4rem 4rem;
	}
	.contact-form__form {
		margin: 0 auto 6.4rem auto;
	}
	.contact-form__button-submit {
		max-width: 240px;
	}
}
@media (max-width: 991.98px) {
	.contact-guide__list{
		width: 100%;
	}
}

@media (max-width: 768px){
	.contact-guide__num{
		font-size: 5rem;
	}
}

@media (max-width: 575.98px) { 
	.number .contact-guide__item{
		width: 100%;
	}

	.contact-guide__heading-main {
		font-size: 3rem;
	}

	.contact-guide__heading{
		margin-bottom: 3.5rem;
	}

	.contact-guide__num{
		font-size: 4rem;
	}

	.contact-guide__info{
		margin-bottom: 3.2rem;
		margin-top: 3.2rem;
	}

	.contact-guide__container{
		padding:3.2rem 15px;
	}

	.contact-guide__container:after{
		height: calc(100% - 1.5rem);
		width: calc(100% - 1.5rem);
		top: 0.75rem;
		left: 0.75rem;
	}

}

@media (max-width:450px){
	.contact-guide__num{
		font-size: 3rem;
		text-align: center;
	}

	.contact-guide__num > span{
		font-size: 1.6rem;
	}

	.contact-guide__info > span{
		padding: 0.75rem 1rem;
	}
}


.notfound__container {
	position: relative;
	max-width: 1140px;
	margin: 250px auto 150px;
	padding: .8rem 15px;
}

