@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap');

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
	display: block;
}
img {
	width: 100%;
	height: auto;
    image-rendering: -webkit-optimize-contrast;
}

:root {
	--color-primary: #de434a;
	--color-secondary: #ffadaf;
	--color-accent: #e7380d;
	--color-body: #333;
	--color-white: #fff;
	--bg-color-pink: #fef6f6;
	--bg-color-gray: #f7f7f5;
}

/* base*/
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.6;
	color: var(--color-body);
}
@media screen and (max-width: 767px) {
	body {
		font-size: 1.4rem;
	}
}

body {
	-webkit-animation: fadeIn 1.5s ease 0s 1 normal;
	animation: fadeIn 1.5s ease 0s 1 normal;
}
@keyframes fadeIn {
	0% { opacity: 0 }
    100% { opacity: 1 }
}
@-webkit-keyframes fadeIn {
	0% { opacity: 0 }
    100% { opacity: 1 }
}


a {	outline: none; color: var(--color-accent); }
a:hover { text-decoration: none; }
ol { list-style-position: inside; }
ol li {	text-indent: -1.5rem; padding-left: 1.5rem; }

.sp { display: none; }
@media screen and (max-width: 767px) {
	.sp { display: block; }
}

.fw-b { font-weight: bold; }

.ta-l { text-align: left; }
.ta-c { text-align: center; }
.ta-r { text-align: right; }

.mt-10 { margin-top: 10px }
.mt-15 { margin-top: 15px }
.mt-20 { margin-top: 20px }
.mt-25 { margin-top: 25px }
.mt-30 { margin-top: 30px }
.mt-40 { margin-top: 40px }
.mt-50 { margin-top: 50px }


/* common */
.mainImage {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100%;
	height: 420px;
}
.mainTitle_inner {
	background-color: var(--color-white);
	max-width: 1080px;
	width: 92%;
	margin: -70px auto 0;
	padding-top: 50px;
}
.title {
	font-family: 'Kosugi Maru';
	font-size: 2.6rem;
	line-height: 1.5;
	letter-spacing: 0.08em;
	text-align: center;
}
.title span {
	display: block;
	font-family: 'Lato';
	font-size: 1.4rem;
	font-weight: 900;
	color: var(--color-secondary);
}
.contents {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 50px;
}
.contTitle {
	font-size: 2.2rem;
	font-weight: 500;
}
.inner {
	margin: 60px auto 120px;
}
@media screen and (max-width: 767px) {
	.mainImage {
		height: 220px;
	}
	.mainTitle_inner {
		width: 95%;
		margin-top: -35px;
		padding-top: 25px;
	}
	.title {
		font-size: 2.4rem;
	}
	.title span {
		font-size: 1.2rem;
	}
	.contents {
		padding: 0 20px;
	}
	.contTitle {
		font-size: 2rem;
	}
	.inner {
		margin: 30px auto 75px;
}
}



.list dl {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 100%;
}
.list dt, .list dd {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
    align-items: center;
}
.list dt {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-ms-flex-preferred-size: 24%;
	flex-basis: 24%;
	font-weight: bold;
	margin-bottom: 25px;
	padding: 15px 30px;
	background-color: var(--bg-color-gray);
}
.list dd {
	-ms-flex-preferred-size: 74%;
	flex-basis: 74%;
	margin-bottom: 25px;
	padding: 15px 30px;
	background-color: var(--bg-color-gray);
}
@media screen and (max-width: 767px) {
	.list dt {
		-ms-flex-preferred-size: 27%;
		flex-basis: 27%;
		margin-bottom: 15px;
		padding: 15px;
	}
	.list dd {
		-ms-flex-preferred-size: 70%;
		flex-basis: 70%;
		margin-bottom: 15px;
		padding: 15px;
	}
}



.icon--news {
	background: url("/assets/images/icon--news.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}
.icon--about {
	background: url("/assets/images/icon--about.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}
.icon--shop {
	background: url("/assets/images/icon--shop.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}
.icon--recruit {
	background: url("/assets/images/icon--recruit.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}
.icon--contact {
	background: url("/assets/images/icon--contact.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}
.icon--privacy {
	background: url("/assets/images/icon--privacy.svg") no-repeat center top;
	background-size: 28px;
	padding-top: 45px;	
}

@media screen and (max-width: 767px) {
	.icon--news, .icon--about, .icon--shop, .icon--recruit, .icon--contact, .icon--privacy {
		background-size: 22px;
		padding-top: 30px;
	}
}



.button_link {
	display: block;
	border: 1px solid var(--color-primary);
	color: var(--color-white);
	background-color: var(--color-primary);
	width: 100%;
	max-width: 320px;
	transition: all 0.3s;
	position: relative;
	margin: 0 auto;
	padding: 10px;
	text-decoration: none;
	text-align: center;
}
.button_link::after{
	transition: all 0.3s;
	content: "→";
	position: absolute;
	top: 25%;
	right: 1.25em;
	margin: auto;
}
.button_link:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
}
.button_link:hover::after{
	right: .75em;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
.button_link {
	width: 90%;
	max-width: 260px;

}
}



.mw_wp_form .button_next [type=submit] {
	display: block;
	border: none;
	outline: 0;
	color: var(--color-white);
	background-color: var(--color-primary);
	height: 3.0em;
	width: 100%;
	transition: 0.3s;
}
.mw_wp_form .button_next {
	display: inline-block;
	border: 1px solid var(--color-primary);
	color: #fff;
	position: relative;
	width: 280px;
	transition: 0.5s;
	margin:0 auto;
}
.mw_wp_form .button_next::after{
	transition: 0.3s;
	content: "→";
	position: absolute;
	top: 25%;
	right: 1.5em;
	margin: auto;
}
.mw_wp_form .button_next input[type="submit"]:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
}
.mw_wp_form .button_next:hover::after{
	right: 1em;
	color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.contact .mw_wp_form .button_next {
		width: 240px;
	}
	.mw_wp_form .button_next {
		width: 160px;
	}
}


.contact .mw_wp_form .button_prev {
	display: none;
}
.contact .mw_wp_form .button_prev::before {
	content: none;
}
.mw_wp_form .button_prev [type=submit] {
	display: block;
	border: none;
	outline: 0;
	color: var(--color-primary);
	background-color: var(--color-white);
	height: 3.0em;
	width: 100%;
	transition: 0.3s;
}
.mw_wp_form .button_prev {
	display: inline-block;
	border: 1px solid var(--color-primary);
	color: var(--color-primary);
	position: relative;
	width: 140px;
	transition: 0.5s;
	margin:0 auto;
}
.mw_wp_form .button_prev::before{
	transition: 0.3s;
	content: "←";
	position: absolute;
	top: 25%;
	left: 1em;
	margin: auto;
}
.mw_wp_form .button_prev input[type="submit"]:hover {
	background-color: var(--color-primary);
	color: var(--color-white);
}
.mw_wp_form .button_prev:hover::before{
	left: 0.5em;
	color: var(--color-white);
}
@media screen and (max-width: 767px) {
	.mw_wp_form .button_prev {
		width: 100px;
	}
}



/* top */
.container {
	padding-top: 75px;
}
@media screen and (max-width: 1024px) {
	.container {
	padding-top: 56px;
}
}
.mainvisual {
    position: relative;
}
.maincopy_area {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);
	background-color: rgba(255, 255, 255, 0.7);
	margin: auto;
	padding: 40px 60px;
	text-align: center;
	line-height: 1;
	letter-spacing: 0.1em;
	
}
.maincopy_area::after {
	position: absolute;
    content: "";
    width: 105%;
    height: 115%;
    left: -2.5%;
    top: -7.5%;
    border: 1px solid #fff;
}
.maincopy_area .maincopy_text {
	font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
	font-size: 3.2rem;
	color: #404040;
}
.maincopy_area .maincopy_text span {
	font-size: 2rem;
	font-weight: 500;
}
@media screen and (max-width: 767px) {
	.maincopy_area {
		width: 75%;
		padding: 20px 15px;
		letter-spacing: 0.05em;
	}
	.maincopy_area .maincopy_text {
		font-size: 2.1rem;
	}
	.maincopy_area .maincopy_text span {
		font-size: 1.3rem;
	}
}



.top_news {
	margin: auto;
	padding: 60px 20px 40px;
}
.top_news_inner {
	max-width: 1080px;
	margin: auto;
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.top_news_left {
	width: 20%;
	margin: auto 0;
}
.top_news_right {
	width: 70%;
}
.news_list {
	font-size: 1.4rem;
	border-top: 1px solid #ccc;
}
.news_list dl {
	overflow: hidden;
}
.news_list__item {
	border-bottom: 1px solid #ccc;
	padding: 25px;
}
.news_list dt {
	float: left;
	width: 10%;
}
.news_list dd a {
	display: block;
	padding-left: 15%;
	text-decoration: none;
	color: var(--color-body);
}
.news_list dd a:hover {
	color: var(--color-accent);
	transition: 0.2s;
}
.tag--new {
	font-family: 'Lato';
	font-size: 1rem;
	font-weight: 900;
	letter-spacing: 0.08em;
	background-color: var(--color-accent);
	color: var(--color-white);
	margin-right: 1em;
	padding: 2px 5px;
	position: relative;
    top: -1px;
}
.top_news .button_link {
	max-width: 180px;
	margin-top: 30px;
}
@media screen and (max-width: 1024px) {
	.top_news {
		padding: 30px 20px 20px;
}
	.top_news_inner {
		display: block;
	}
	.top_news_left {
		width: 100%;
		display:-webkit-box;
		display:-ms-flexbox;
		display: flex;
		-ms-flex-pack: distribute;
		justify-content: space-around;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
	}
	.top_news_left .title, .top_news_left div {
		width: 50%;
	}
	.top_news_right {
		width: 100%;
		margin-top: 30px;
	}
	.top_news .button_link {
		max-width: 180px;
		margin-top: 15px;
	}
}

@media screen and (max-width: 767px) {
	.news_list__item {
		padding: 15px 10px;
	}
	.news_list dt {
		float: inherit;
	}
	.news_list dd a {
		padding-left: 0;
	}
}

/* about */
.top_about {
	margin: 0 auto 50px;
	padding: 40px 20px;
	overflow: hidden;
}
.top_about_inner {
	max-width: 1080px;
	margin: auto;
}
.about_lead {
	font-size: 1.8rem;
	font-weight: 500;
	color: var(--color-primary);
	text-align: center;
	margin-top: 50px;
}
.marker {
	background: linear-gradient(rgba(255, 255, 255, 0) 60%, #FDF6F6 65%);
	padding-left: 0.25em;
}
.top_about_box {
	padding: 50px 0 75px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}
.top_about_box_text {
	width: 42%;
	line-height: 2;
}
.top_about_box_img {
	width: 55%;
	margin-left: auto;
	margin-right: -50px;
	
	position: relative;
}
.img_stack {
	width: 280px;
	position: absolute;
    bottom: -5em;
    right: 2.5em;
}
.img--shadow {
	box-shadow: 2.5em 2.5em var(--bg-color-pink);
}
.order .top_about_box_text {
	order: 2;
	margin-left: auto;
	margin-bottom: -50px;
	-ms-flex-item-align: end;
	align-self: flex-end;
}
.order .top_about_box_text .button_link {
	line-height: 1.8;
}
.order .top_about_box_img {
	order: 1;
	margin-left: -50px;
	margin-right: auto;
}
.order .img_stack {
	max-width: 200px;
}
@media screen and (max-width: 767px) {
	.top_about {
		margin-bottom: 0;
		padding: 40px 15px;
	}
	.about_lead {
		font-size: 1.6rem;
		margin-top: 25px;
	}
	.top_about_box {
		padding: 40px 0 0;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap
	}
	.top_about_box_text {
		width: 100%;
		margin: auto;
		line-height: 1.6;
	}
	.top_about_box_img {
		width: 100%;
		margin: 0 1em 4em 0;
	}
	.img--shadow {
		box-shadow: 1em 1em var(--bg-color-pink);
	}
	.img_stack {
		width: 50%;
		bottom: -3em;
		right: 1em;
	}
	.order--sp .top_about_box_text {
		order: 2;
	}
	.order--sp .top_about_box_img {
		order: 1;
	}
	.order .top_about_box_text {
		margin: auto;
	}
	.order .top_about_box_img {
		margin: 0 1em 4em 0;
	}
	.order .img_stack {
		width: 35%;
	}
}

/* shop */
.top_shop {
	background-color: var(--bg-color-pink);
	margin: auto;
	padding: 40px 20px 80px;	
}
.top_shop_inner {
	max-width: 1080px;
	margin: auto;
	position: relative;
}
.top_shop_list {
	background-color: var(--color-white);
	margin-top: 50px;
	padding: 50px 50px 70px;
}
.top_shop_list__item {
	max-width: 640px;
	margin: auto;
}
.shop-name {
	font-size: 1.8rem;
	font-weight: 500;
}
.shop-info {
	overflow: hidden;
}
.shop-info dt {
	float: left;
	width: 20%;
}
.shop-info dd {
	padding-left: 20%;
}
.top_shop .button_link {
	position: absolute;
	bottom: -25px;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
	.top_shop {
		padding: 40px 15px 60px;	
}
	.top_shop_list {
		margin-top: 30px;
		padding: 30px 20px 50px;
}
	.shop-info dt {
		float: inherit;
		width: auto;
	}
	.shop-info dd {
		padding-left: 0;
	}
}

/* recruit */
.top_recruit_inner {
	background-color: var(--bg-color-gray);
	padding-bottom: 120px;
}
.top_recruit-bg {
	height: 480px;
	background: url("/assets/images/top_img05.jpg") no-repeat 75% center;
	background-size: cover;
	background-attachment: fixed;
}
.ipad .top_recruit-bg {
     background-attachment: scroll;
}
@media screen and (max-width: 767px) {
	.top_recruit-bg {
		background-size: cover;
		background-attachment: scroll;
	}
}

.recruit-cont_wrap {
	padding: 0 20px;
}
.recruit-cont {
	max-width: 1080px;
	margin: -80px auto 0;
	padding: 50px 30px;
	background-color: var(--color-white);
	text-align: center;
}
@media screen and (max-width: 767px) {
	.top_recruit_inner {
		padding-bottom: 80px;
	}
	.top_recruit-bg {
		height: 240px;
	}
	.recruit-cont_wrap {
		padding: 0 15px;
	}
	.recruit-cont {
		margin-top: -40px;
		padding: 30px 20px;
	}
}



/* about */
#about .mainImage {
	background-image: url("/assets/images/main--about.jpg");
}
.irodori_box {
	margin-top: 70px;
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	position: relative;
	height: auto;
}
.irodori_box_img {
	max-width: 540px;
	height: 100%;
	position: absolute;
	top: 22px;
	left: 0;
	z-index: 2;
}
.irodori_box_text {
	background-color: var(--bg-color-gray);
	width: 75%;
	margin: 0 0 0 auto;
	padding: 8rem 4rem 8rem 33rem;
	line-height: 2;
}
.order .irodori_box_img {
	right: 0;
	left: auto;
}
.order .irodori_box_text {
	margin: 0;
	padding: 8rem 33rem 8rem 4rem;
}
@media screen and (max-width: 1024px) {
	.irodori_box {
		margin-top: 50px;
		display: block;
	}
	.irodori_box_img {
		max-width: inherit;
		width: 90%;
		height: auto;
		margin: auto;
		position: static;
	}
	.irodori_box_text, .order .irodori_box_text {
		width: 100%;
		margin: -80px auto 0;
		padding: 10rem 2rem 3rem;
	}
}


/* shop */
#shop .mainImage {
	background-image: url("/assets/images/main--shop.jpg");
}
.schedule {
	border-collapse: collapse;
	width: 100%;
	max-width: 720px;
	margin: 50px auto 0;
	color: var(--color-primary);
	text-align: center;
}
.schedule th, .schedule td {
	border: 1px solid #ffd8d8;
	padding: 15px 30px;
}
.schedule th {
	background-color: var(--bg-color-pink);
}
.schedule td {
	font-size: 1.4rem;
}

.qr_area {
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-top: 50px;
}
.qr_area img {
	width: 120px;
	margin-right: 2em;
}

.info_area div {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	padding: 30px;
	border-top: 1px solid #ccc;
}
.info_area div:last-child {
	border-bottom: 1px solid #ccc;
}
.info_area dt {
	display: -webkit-box;
  	display: -ms-flexbox;
  	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 20%;
	font-weight: bold;
}

@media screen and (max-width: 767px) {
	.schedule {
		margin-top: 25px;
	}
	.schedule th, .schedule td {
		padding: 10px;
	}
	.schedule td {
		font-size: 1rem;
	}
	.qr_area img {
		width: 80px;
		margin-right: 2em;
}
	.info_area div {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		padding: 15px;
	}
	.info_area dt {
		width: auto;
		margin-bottom: 5px;
	}
}


/* recruit */
#recruit .mainImage {
	background-image: url("/assets/images/main--recruit.jpg");
}

/* contact */
#contact .mainImage {
	background-image: url("/assets/images/main--contact.jpg");
}
.contact_form {
	margin-top: 40px;
}
.contact_form table {
	width: 100%;
	table-layout: fixed;
}
.contact_form dt {
	width: 25%;
	font-weight: bold;
}
.contact_form tr {
	padding: 20px;
}
.contact_form th {
	text-align: left;
	width: 250px;
	padding-top: 30px;
}
.contact_form td {
	padding-top: 30px;
}
.contact_form .size-l {
	width: 100%;
}
.contact_form .size-m {
	width: 70%;
}
.note {
	font-size: 1.3rem;
	color: var(--color-accent);
}
select {
  -moz-appearance: menulist;
  -webkit-appearance: menulist;
  appearance: menulist;
}
/*IE用*/
select::-ms-expand {
    display: block;
}
.contact_form input[type="text"], .contact_form input[type="email"],
.contact_form textarea, .contact_form select {
	border: 1px solid #ccc;
	border-radius: 2px;
	padding: 15px;
}
.contact_form input[type="text"]:focus, .contact_form input[type="email"]:focus,
.contact_form textarea:focus, .contact_form select:focus {
	border: 1px solid #005ecc;
	border-radius: 2px;
	outline: 0;
}


@media screen and (max-width: 767px) {
	.contact_form {
		margin-top: 0;
	}
	.contact_form table {
		width: 100%;
	}
	.contact_form table th, .contact_form table td {
		display: block;
	}
	.contact_form table td {
		padding-top: 5px;
	}
	.contact_form .size-l, .contact_form .size-m {
		width: 100%;
	}
	.contact_form input[type="text"], .contact_form input[type="email"],
	.contact_form textarea {
		width: 100%;
		padding: 10px;
	}
	.contact_form select {
		padding: 10px;
	}
}



/* news */
#news .mainImage {
	background-image: url("/assets/images/main--news.jpg");
}
#news .news_list__item dt {
	color: var(--color-primary);
}
.article_heading_date {
	font-size: 1.4rem;
}
.article_heading_title {
	font-size: 2.1rem;
	font-weight: 500;
	color: var(--color-primary);
	margin: 15px 0 30px;
	padding-bottom: 5px;
	border-bottom: 3px solid #f9d9d9;
}
.pagenation {
	margin-top: 70px;
	text-align: center;
}
.pagenation_btn01, .pagenation_btn02 {
	display: inline-block;
}
.pagenation_btn01 a {
	color: var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}
.pagenation_btn01 a:hover {
	color: #666;
	transition: 0.3s;
}
.pagenation_btn02 a {
	background-color: var(--color-primary);
	color: var(--color-white);
	margin: 0 20px;
	padding: 5px 15px;
	border: 1px solid var(--color-primary);
	text-decoration: none;
	transition: 0.3s;
}
.pagenation_btn02 a:hover {
	background-color: var(--color-white);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	transition: 0.3s;
}
.paging {
	text-align: center;
	margin-top: 40px;
}
.paging a {
	text-decoration: none;
}
.paging .page-numbers {
	padding: 0 5px;
}
@media screen and (max-width: 767px) {
	.paging {
		margin-top: 20px;
	}
}


/* privacy */
#privacy .mainImage {
	background-image: url("/assets/images/main--privacy.jpg");
}
.privacy-heading--large {
	font-size: 1.8rem;
	background-color: var(--bg-color-gray);
	margin: 40px 0 20px;
	padding: 0.5em;
}
.privacy-heading--middle {
	font-size: 1.6rem;
	position: relative;
	margin: 40px 0 15px;
	padding-bottom: 5px;
	border-bottom: 2px solid #f9d9d9;
}
.privacy-heading--middle:before {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 0;
	width: 5%;
	height: 2px;
	background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
	.privacy-heading--large {
		font-size: 1.6rem;
	}
	.privacy-heading--middle {
		font-size: 1.4rem;
	}
}


/* 404 */
#error .mainImage {
	background-color: var(--color-white);
	height: 120px;
}


/* header */
header{
	background-color: rgba(255, 255, 255, 0.8);
	position: fixed;
	width: 100%;
	height: 75px;
	z-index: 9999;
}
.header_inner {
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}
.header_logo {
	width: 300px;
	padding-top: 10px;
	padding-left: 25px;
}
.global-nav ul {
	display:-webkit-box;
  	display:-ms-flexbox;
	display: flex;
	list-style-type: none;
}
.global-nav a {
	display: block;
	font-weight: bold;
	color: var(--color-body);
	text-decoration: none;
	padding: 25px;
}
.global-nav a:hover {
	opacity: .7;
	transition: 0.2s;
}
.nav_contact a {
	color: var(--color-white);
	background-color: var(--color-primary);
}
@media screen and (max-width: 1024px) {
header{
	height: 56px;
}
.header_logo {
	width: 210px;
	padding-top: 5px;
	padding-left: 10px;
}
	
/*　ハンバーガーボタン　*/
.hamburger {
	display: block;
	position: fixed;
	z-index: 3;
	right: 0;
	top: 0;
	width: 56px;
	height: 56px;
	cursor: pointer;
	text-align: center;
	background: var(--color-primary);
}
.hamburger span {
  display: block;
  position: absolute;
  width: 26px;
  height: 2px;
  left: 15px;
  background: #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
	top: 18px;
}
.hamburger span:nth-child(2) {
	top: 28px;
}
.hamburger span:nth-child(3) {
	top: 38px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 28px;
	left: 15px;
	background: #fff;
	-webkit-transform: rotate(-45deg);
	-moz-transform   : rotate(-45deg);
	transform        : rotate(-45deg);
}
.hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
	top: 28px;
	background:#fff;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);
}
nav.global-nav {
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	color: #fff;
	background: rgba(0,0,0,0.7);
	text-align: center;
	width: 100%;
	opacity: 0;
	visibility: hidden;
	transition: opacity .6s ease, visibility .6s ease;
	margin-top: 56px
}
nav.global-nav ul {
	display: block;
	margin: 0 auto;
	padding: 0;
	width: 100%;
}
nav.global-nav ul li {
	list-style-type: none;
	padding: 0;
	width: 100%;
	transition: .4s all;
}
nav.global-nav ul li:last-child {
	padding-bottom: 0;
}
nav.global-nav ul li:hover{
	background :#ddd;
}
nav.global-nav ul li a {
	display: block;
	color: #fff;
	padding: 1em 0;
	text-decoration :none;
}

/* jQueryで付与・削除 */
nav.global-nav.active {
  opacity: 100;
  visibility: visible;
	}
}


/* footer */
footer {
	background-color: #6c6c6c;
	color: var(--color-white);
}
.footer_inner {
	max-width: 1080px;
	margin: auto;
	padding: 50px 0;
}
.footer_area01 {
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.footer_logo {
	width: 300px;
	padding-left: 20px;
}
.footer-nav {
	margin-left: auto;
}
.footer_area01 ul {
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
}
.footer_area01 li {
	padding: 0 20px;
}
.footer_area01 li a {
	font-weight: 500;
	color: var(--color-white);
	text-decoration: none;
	padding-left: 13px;
	position: relative;
}
.footer_area01 li a::before {
	content: "";
    position: absolute;
    top: 9px;
    left: 0;
    border: 4px solid transparent;
    border-left: 5px solid #fff;
}
.footer_area01 li a:hover {
	opacity: .7;
	transition: 0.2s;
}
.footer_area02 {
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	font-size: 1.3rem;
}
.footer_area02 ul {
	display: -webkit-box;
  	display: -ms-flexbox;
	display: flex;
	list-style-type: none;
}
.footer_area02 li a {
	color: #dadada;
	text-decoration: none;
	padding: 0 20px;
}
.footer_area02 li a:hover {
	color: var(--color-white);
	transform: 0.2s;
}
.copyright {
	color: #dadada;
	padding-right: 20px;
}

@media screen and (max-width: 767px) {
	.footer_area01 {
		display: block;
	}
	.footer_logo {
		width: 280px;
		margin: auto;
		padding-left: 0;
	}
	.footer_area01 ul {
		display: block;
		margin: 50px 0 0 20px;
	}
	.footer_area01 li {
		margin-top: 20px;
	}
	.footer_area01 li a {
		font-size: 1.4rem;
		padding-left: 10px;
	}
	.footer_area01 li a::before {
		top: 8px;
		left: 0;
		border: 3px solid transparent;
		border-left: 4px solid #fff;
	}
	.footer_area02 {
		display: block;
		text-align: center;
		font-size: 1.2rem;
	}
	.footer_area02 ul {
		-webkit-box-pack: center;
		-ms-flex-pack: center;
		justify-content: center;
	}
	.footer_area02 li a {
		padding: 0 10px;
	}
	.copyright {
		margin-top: 20px;
	}	
}


/* animation */
.top_about_box_img {
  opacity: 0;
  -moz-transition: -moz-transform 0.5s linear;
  -webkit-transition: -webkit-transform 0.5s linear;
  -o-transition: -o-transform 0.5s linear;
  -ms-transition: -ms-transform 0.5s linear;
  transition: transform 0.5s linear;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.img-blur {
  -webkit-animation-name: imageBlur;
  animation-name: imageBlur;
  opacity: 1;
  transition: .7s;
}

@-webkit-keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
    opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}
@keyframes imageBlur {
  from {
    opacity: 0;
    -webkit-filter: blur(15px);
    -moz-filter: blur(15px);
    -ms-filter: blur(15px);
    -o-filter: blur(15px);
    filter: blur(15px);
  }

  to {
      opacity: 1;
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -ms-filter: blur(0px);
    -o-filter: blur(0px);
    filter: blur(0px);
  }
}