@charset "utf-8" ;

/* 基本 */
body {
	/* font-family: "Kiwi Maru", serif; */
	/* weight: 300,400,500 */
	font-family: "Zen Maru Gothic", serif;
	/* weight 300,400,500,700,900 */
	font-weight: 400;
	font-style: normal;
	font-size: 18px;
	color: #191919;
	line-height: 1.3;
	background-color: #fff;
	letter-spacing: 0.01em;
	text-align: center;
}

ul, ol  {
	list-style: none ;
}

a  {
	color: inherit;
	text-decoration: none;
}

img {
  width: 100%;
}

.sp {
	display: none;
}

/* h1 */
h1 {
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-size: 35px;
	color: #026497;
}

h1::before {
	content: '-';
	padding-right: 10px;
}

h1::after {
	content: '-';
	padding-left: 10px;
}

/* 下部ボタン固定 */
.btn-fixed {
	position: sticky;
	bottom: 0;
	left: 0;
	z-index: 10;
}

.sticky_form {
	width: 65%;
	margin: 0 auto;
	display: flex;
}

.sticky_form img {
	margin-bottom: -5.5px;
}

/* トップページに戻るボタン */
.btn-txt {
	margin-bottom: 10px;
}
.c-button {
	color: #000;
	font-family: "Kiwi Maru", serif;
	font-weight: 500;
	font-size: 20px;
	text-decoration: none;
	padding: 0.9em 1.6em;
	cursor: pointer;
	display: inline-block;
	vertical-align: middle;
	position: relative;
	z-index: 1;
}
  
.c-button--gooey {
	color: #026497;
	text-transform: uppercase;
	letter-spacing: 2px;
	border: 4px solid #026497;
	background-color: #fff;
	border-radius: 0;
	position: relative;
	transition: all 700ms ease;
}
  
.c-button--gooey .c-button__blobs {
	height: 100%;
	filter: url(#goo);
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	bottom: -3px;
	right: -1px;
	z-index: -1;
}
  
.c-button--gooey .c-button__blobs div {
	background-color: #026497;
	width: 34%;
	height: 100%;
	border-radius: 100%;
	position: absolute;
	transform: scale(1.4) translateY(125%) translateZ(0);
	transition: all 700ms ease;
}
  
.c-button--gooey .c-button__blobs div:nth-child(1) {
	left: -5%;
}
  
.c-button--gooey .c-button__blobs div:nth-child(2) {
	left: 30%;
	transition-delay: 60ms;
}
  
.c-button--gooey .c-button__blobs div:nth-child(3) {
	left: 66%;
	transition-delay: 25ms;
}
  
.c-button--gooey:hover {
	color: #fff;
}
  
.c-button--gooey:hover .c-button__blobs div {
	transform: scale(1.4) translateY(0) translateZ(0);
}

/* ヘッダー */
.header {
	height: 100px;
}

.header-inner {
	height: 100%;
	padding: 10px 2%;
	display: flex;
	align-items: center;
}

/* ハンバーガーボタン固定 */
.background {
	position: fixed;
	top: 20px;
	left: 2%;
	right: 0;
	z-index: 10;
}

/* ハンバーガーボタン開いた時のメニュー */
.header-site-menu {
	width: 38%;
	height: 100vh;
	padding: 100px 0 50px 3%;
	position: absolute;
	top: 0;
	left: 0;
	color: #fff;
	background-color: #026497;
	display: none;
	font-size: 16px;
}

/* メニュー開いた時のポジション */
.header-site-menu.is-show {
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
}

.tel-header {
	width: 25%;
	margin-left: auto;
}

.site-menu li {
	margin-top: 20px;
	text-align: left;
}

.site-menu li::before {
	background: #DFF1FF;
	content: '';
	width: 80%;
	height: 2px;
	position: absolute;
	left: 0;
	bottom: 0;
	margin: auto;
	transform-origin: right top;
	transform: scale(0, 1);
	transition: transform .3s;
}

.site-menu li:hover {
	opacity: 0.7;
}

.site-menu li:hover::before {
	transform-origin: left top;
	transform: scale(1, 1);
}

/* ハンバーガーボタン */
/* <reset-style> ============================ */
button {
	border: none;
	background: none;
	padding: 0;
	margin: 0;
	cursor: pointer;
	font-family: inherit;
}
  /* ============================ */
  /* <style for bg> ======== */
.background {
	border-radius: 16px;
	border: 1px solid #1a1a1a;
	background: rgba(234, 234, 234, 0.39);
	mix-blend-mode: luminosity;
	box-shadow: 0px 0px 0px 1px rgba(0, 0, 0, 0.20);
	backdrop-filter: blur(15px);
	width: 65px;
	height: 65px;
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 100;
}
  
  /* <style for toggle-menu-button> ======== */
.toggle-menu-button {
	width: 32px;
	height: 32px;
	padding: 4px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	align-items: end;
	transition: transform .4s;
}
  
.toggle-menu-button span {
	width: 100%;
	height: 0.25rem;
	border-radius: 0.125rem;
	background-color: #026497;
	box-shadow: 0 .5px 2px 0 hsla(0, 0%, 0%, .2);
	transition: width .4s, transform .4s, background-color .4s;
}
  
.toggle-menu-button :nth-child(2) {
	width: 75%;
}
  
.toggle-menu-button :nth-child(3) {
	width: 50%;
}
  
.toggle-menu-button:hover {
	transform: rotate(-90deg);
}
  
.toggle-menu-button:hover span {
	width: .25rem;
	transform: translateX(-10px);
	background-color: #026497;
}

/* タイトル */
.service {
	margin-top: 120px;
}

/* 料金プラン */
.plan-price {
	margin: 50px 5% ;
}

.plan-price h2 {
	padding-left: 20px;
	color: #026497;
	text-align: left;
	font-size: 25px;
	font-weight: bold;
	line-height: 2;
	border-bottom: 1px solid #026497;
}

.title-txt {
	margin-top: 5px;
	padding-left: 20px;
	font-size: 18px;
	text-align: left;
}

.price-list {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

.price-list li {
	width: 280px;
	margin: 30px 20px;
	padding-bottom: 20px;
	background-color: #fff;
	border: 1px solid #888;
}

.price-list dl {
	padding: 0 10px;
}

.price-list dt {
	font-size: 20px;
	font-weight: 500;
	margin: 20px 0 4px;
}

.price-list dd {
	font-size: 18px;
}

.price-list p {
	margin-top: 10px;
	font-size: 14px;
}

.annotation {
	margin: -50px 0 100px 7%;
	text-align: left;
	font-size: 16px;
}

/* トップページに戻る */
.btn-wrap {
	margin: 0 auto 120px;
}


/* フッター */
.footer {
	background-color: #000;
	font-size: 15px;
	color: #fff;
}




/* スマホ用CSS 450pxまで */
@media (max-width: 450px) {
	body {
		margin: 0 auto;
		font-size:16px;
	}

	.sp {
		display: flex;
	}

	.web {
		display: none;
	}

	/* 下部ボタン固定 */
	.sticky_form {
		width: 100%;
	}

	/* 料金表プラン用ボタン */
	.btn-txt {
		margin-bottom: 5px;
		font-size: 15px;
	}
	.c-button {
		padding: 0.7em 1.4em;
	}
	
	.c-button--gooey {
		letter-spacing: 1px;
	}

	/* ヘッダー */
	.header {
		height: 75px;
	}

	/* ハンバーガーボタン固定 */
	.background {
		position: fixed;
		top: 10px;
		left: 2%;
	}

	/* ハンバーガーボタン開いた時のメニュー */
	.header-site-menu {
		width: 75%;
		padding: 80px 0 50px 5%;
		top: 0;
	}

	.header-site-menu.is-show {
		top: 0;
	}

	.tel-header {
		width: 43%;
	}

	.site-menu li {
		margin-top: 18px;
	}

	/* ハンバーガー */
	.background {
		width: 63px;
		height: 63px;
	}

	/* h1 */
	h1 {
		font-weight: 400;
		font-size: 25px;
	}

	.service p {
		font-size: 18px;
	}

	/* タイトル */
	.service {
		margin-top: 50px;
	}

	/* 料金プラン */
	.plan-price {
		margin: 50px 2%;
	}

	.plan-price h2 {
		padding-left: 2%;
		font-size: 18px;
		line-height: 1.8;
	}

	.title-txt {
		margin-top: 5px;
		padding-left: 2%;
		font-size: 16px;
	}

	.price-list {
		display: block;
	}

	.price-list li {
		width: 100%;
		margin: 25px auto 0;
	}

	.annotation {
		margin: -35px 0 50px 2%;
		font-size: 15px;
	}

	/* トップページに戻る */
	.btn-wrap {
		margin: 0 auto 60px;
	}

	/* フッター */
	.footer {
		background-color: #000;
		font-size: 15px;
		color: #fff;
	}

}

@media (min-width: 450px) {
	/* 電話リンク非表示 */
	a[href^="tel:"] {
        pointer-events: none;
    }
}