﻿/*====================

全体

====================*/

@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url('https://fonts.googleapis.com/css?family=M+PLUS+1p');
@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300&display=swap');

* {
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	margin: 0;
	padding: 0;
	border: 0;
}

html {
	width: 100%;
	height: 100%;	
}

body {
	position: relative;
	font-size: 16px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	letter-spacing: 0.1em;
	line-height: 32px;
	color: #4d4d4d;
}

#wrap {
	margin: 0;
	padding: 0;	
	background: linear-gradient(to bottom, #f9e1ec 0%, #f6efe7 100%);
}

header,nav,main,footer {
	display: block;
	margin: 0 auto;
}

ol,ul {
	list-style: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

img {
	vertical-align: bottom;
}

a {
	color: #4d4d4d;
	text-decoration: none;
	transition:all .5s;
}

a:hover {
	color: #f6bfbc;
}

.text_center {
	text-align: center;
}

.text_right {
	text-align: right;
}

.text_left {
	text-align: left;
}

/*====================

ボタン

====================*/

/*====================

TOPボタン

====================*/
#page_top{
	width: 100px;
	height: 100px;
	position: fixed;
	right: 20px;
	bottom: 20px;
	background: #ef3f98;
	opacity: 0.6;
	border-radius: 50%;
  }

  #page_top a{
	position: relative;
	display: block;
	width: 100px;
	height: 100px;
	text-decoration: none;
  }

  #page_top a::before{
	font-weight: 900;
	content: '▲';
	font-size: 20px;
	color: #fff;
	position: absolute;
	width: 25px;
	height: 25px;
	top: -40px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
  }
  #page_top a::after{
	content: 'PAGE TOP';
	font-size: 11px;
	color: #fff;
	position: absolute;
	top: 45px;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	text-align: center;
  }


.btn,
a.btn,
button.btn {
	font-size: 12px;
	line-height: 1.5;
	position: relative;
	display: inline-block;
	margin: 20px auto;
	padding: 24px 26px;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	color: #212529;
	border-radius: 8px;
}

a.btn-malformation {
	font-size: 14px;
	padding: 16px 30px;
	color: #fff;
	border-radius: 100% 80px / 80px 100%;
	background-color: #eeaccb;
}

a.btn-malformation:hover {
	color: #fff;
	border-radius: 60% 80% / 100% 80%;
}

.btn-malformation--pastel {
	background: #fca1a1;
	background: -webkit-linear-gradient(-45deg, #ffb1d0 40%, #ffcc99 100%);
	background: -webkit-linear-gradient(315deg, #ffb1d0 40%, #ffcc99 100%);
	background: linear-gradient(135deg, #ffb1d0 40%, #ffcc99 100%);
	-webkit-box-shadow: 30px 10px 0 #f1d8cb;
	box-shadow: 30px 10px 0 #f1d8cb;
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffb1d0', endColorstr='#fc9', GradientType=1);
}

/*====================

JavaScript用
（1文字ずつ表示）

====================*/
.tgt {opacity: 0;}

.tgt span{opacity: 0;}

/*====================

下から浮かぶ動き

====================*/
.rise {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 3s, visibility 1s, transform 2s;
}

.is-fadein {
	opacity: 1;
	visibility: visible;
	transform: translateX(0);
}

.rise_btn {
	opacity: 0;
	visibility: hidden;
	transform: translateY(10px);
	transition: opacity 3s, visibility 1s, transform 2s;
}

/*====================

header

====================*/

/*スマホ用ナビの非表示*/
nav.globalMenuSp {
	display: none;
}

/*PC用ナビ*/
nav.globalMenuPC {
	width:100%;
	position: fixed;
	display:flex;
	flex-wrap: nowrap;
	z-index: 9999;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.95;
}

nav.globalMenuPC ul {
	display: flex;
	flex: 1;
	max-width: 1200px;
	margin: 0 auto;
}

nav.globalMenuPC li {
	width: 100%;
	display: inline;
	flex: auto;
	text-align: center;
}

nav.globalMenuPC li a {
	width: 100%;
	height: 80px;
	line-height: 80px;
	display: inline-block;
	font-size: 18px;
	text-decoration:none;
	font-family: 'Lora', serif;
	letter-spacing: 0.2em;
}

nav.globalMenuPC li a img {
	height: 80px;
	line-height: 80px;
	padding: 30px;
	box-sizing: border-box;
}

nav.globalMenuPC li a:hover {
	text-decoration: none;
	transition:all .8s;
}

/*====================

footer

====================*/
footer{
	width:80%;
	max-width: 1000px;
	margin: 200px auto 0;
	padding: 0 0 60px 0;
}

footer img {
	width: 200px;
	margin: 0 0 40px 0;
}

.footer_flex {
	width: 100%;
	margin: 0 auto;
	display: flex;
}

.footer_l {
	width: 70%;
	min-width: 600px;
}

.footer_l table {
	width: 70%;
	margin: 32px 0;
	font-size: 16px;
}

.footer_l table td {
	padding: 0 16px;
	border-bottom: 1px solid #fff;
}

.footer_l table .bg_td {
	background: #f1d8cb;
}

.footer_r {
	width: 30%;
}

#footer-ul a{
	text-decoration: none;
	margin-left: 40px;
	height: 80px;
	line-height: 80px;
	align-items: center;
	display: flex;
}

#footer-ul a:before {
border-top: 3px solid #fc6;
content: "";
width: 16px;
margin-right: 40px;
}

#footer-ul a:hover{
	color: #fc6;
}

#footer-ul a img {
	width: 30px;
	margin-top: 45px;
}

.footer_p {
	height: 40px;
	line-height: 40px;
	background: #f1d8cb;
	color: #4d4d4d;
	font-size: 12px;
	text-align: center;
}






/*====================

スマートフォン対応

====================*/

@media screen and (max-width: 768px) {
#wrap {
	font-size: 16px;
	margin: 0 auto;
	padding: 0;
}

/*====================

ハンバーガーメニュー

====================*/
nav.globalMenuPC {
	display: none;
}



.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : 14px;
	top : 14px;
	width : 30px;
	height: 30px;
	cursor: pointer;
	text-align: center;
	z-index: 9999;
}

.hamburger span {
	display : block;
	position: absolute;
	width : 30px;
	height: 2px ;
	left: 6px;
	background : #666;
	-webkit-transition: 0.5s all;
	-moz-transition : 0.5s all;
	transition: 0.5s all;
}

.hamburger span:nth-child(1) {
	top: 10px;
}

.hamburger span:nth-child(2) {
	top: 20px;
}

.hamburger span:nth-child(3) {
	top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top : 16px;
	left: 6px;
	-webkit-transform: rotate(-45deg);
	-moz-transform : rotate(-45deg);
	transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2) {
	left: 60%;
	opacity: 0;
	-webkit-animation: active-btn17-bar02 .8s forwards;
	animation: active-hamburger-bar02 .8s forwards;
}

@-webkit-keyframes active-hamburger-bar02 {
100% {
	height: 0;
}
}
@keyframes active-hamburger-bar02 {
100% {
	height: 0;
}
}
.hamburger.active span:nth-child(3) {
	top: 16px;
	-webkit-transform: rotate(45deg);
	-moz-transform : rotate(45deg);
	transform: rotate(45deg);
}

.hamburger::after {
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	content: '';
	width: 80px;
	height: 80px;
	margin: -45px 0 0 -43px;
	transition: all .75s;
}

nav.globalMenuSp {
	display: block;
	position: fixed;
	z-index : 9998;
	top: 0;
	left : 0;
	color: #000;
	background: #fff;
	text-align: center;
	transform: translateX(100%);
	transition: all 0.6s;
	width: 100%;
	height: 90vh;
}

nav.globalMenuSp ul {
	margin: 0 auto;
	padding: 0;
	width: 100%;
	height: 90vh;
}

nav.globalMenuSp ul li {
	list-style-type: none;
	width: 100%;
	height: calc(90vh / 7);
	line-height: calc(90vh / 7);
	background: #f6efe7;
}

nav.globalMenuSp ul li:last-child {
	padding-bottom: 0;
}

nav.globalMenuSp ul li a:hover{
	color: #fc6;
}

nav.globalMenuSp ul li a {
	display: block;
	color: #333;
	padding: 0;
	font-size: 20px;
	letter-spacing: 0.2em;
	text-decoration :none;
}

nav.globalMenuSp ul li a img {
	width: 30px;
	height: 30px;
	vertical-align: middle;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
	transform: translateX(0%);
}

/*====================

footer(768px)

====================*/
footer{
	width: 90%;
	max-width: none;
	margin: 100px auto 0;
	padding: 0 0 20px 0;
	text-align: center;
}

footer img {
	width: 100px;
	margin: 0 auto;
}

.footer_flex {
	display: block;
}

.footer_l {
	width: 100%;
	min-width: auto;
}

.footer_l table {
	width: 100%;
	text-align: left;	
	font-size: 14px;
}

.footer_l table td {
	width: 100%;
	display: block;
	border-bottom: none;
	line-height: 24px;
}

.footer_l .map {
	display: block;
	width: 100%;
	margin: 0;
	padding: 0;
}

.footer_r {
	width: 100%;
	margin-top: 20px;
}

#footer-ul a{
	margin-left: 40px;
	height: 30px;
	line-height: 30px;
	font-size: 14px;
}

#footer-ul a img {
	width: 20px;
	height: 20px;
	margin: 0;
	padding: 0;
}

.footer_p {
	height: 40px;
	line-height: 40px;
	background: #f1d8cb;
	color: #999;
	font-size: 12px;
	text-align: center;
}

/*====================

TOPボタン

====================*/
#page_top{
	display: none;
}
}
/*========レスポンシブ終了========*/
