@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Josefin+Slab:wght@400;700&display=swap');

html, body,
h1, h2, h3, h4, h5, h6,
a, p, span,
em, small, strong,
sub, sup,
mark, del, ins, strike,
abbr, dfn,
blockquote, q, cite,
code, pre,
ol, ul, li, dl, dt, dd,
div, section, article,
main, aside, nav,
header, hgroup, footer,
img, figure, figcaption,
address, time,
audio, video,
canvas, iframe,
details, summary,
fieldset, form, label, legend,
table, caption,
tbody, tfoot, thead,
tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
}

/* Typography
* *********************************** */

html {
	font-size: 62.5%;
}

* {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
}

a,
a:visited {
	color: inherit;
}

/* Layout
* *********************************** */

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

* {
	box-sizing: border-box;
}

*::before,
*::after {
	box-sizing: inherit;
}

/* Elements
* *********************************** */

table {
	border-collapse: collapse;
	border-spacing: 0;
}

ol,
ul {
	list-style: none;
}

img,
video {
	max-width: 100%;
}

img {
	border-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote::after,
blockquote::before,
q::after,
q::before {
	content: "";
	content: none;
}

/* Attributes & states
* *********************************** */

[hidden] {
	display: none !important;
}

[disabled] {
	cursor: not-allowed;
}

:focus:not(:focus-visible) {
	outline: none;
}

/* Utility classes
* *********************************** */

.sr-only {
	position: absolute;
	clip: rect(1px, 1px, 1px, 1px);
	left: -9999px;
	top: -9999px;
}


/* ***********************************
*
*		基本設定
*
* *********************************** */

body {
	font-family: "中ゴシックBBB", "Gothic Medium BBB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 1.5rem;
	line-height: 1.8;
	color: #333;
}

.bold {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
}

img {
	vertical-align: bottom;
}

[src$=".svg"] {
	width: 100%;
	max-width: none;
	height: auto;
}

a {
	transition: all 0.3s;
	text-decoration: none;
}

/* ***********************************
*
*		ブレークポイント
*
* *********************************** */

/* スマホとタブレットのみに適用 */
@media (max-width: 979px) {
	.sp-tablet {
		display: none;
	}
}

/* タブレットとPCのみに適用 */
@media (min-width: 768px) {
	.tablet-pc {
		display: none;
	}
}

/* スマホのみに適用 */
@media (max-width: 767px) {
	.sp {
		display: none;
	}
}

/* タブレットのみに適用 */
@media (min-width: 768px) and (max-width: 979px) {
	.tablet {
		display: none;
	}
}

/* PCのみに適用 */
@media (min-width: 980px) {
	.pc {
		display: none;
	}
}

/* PC(大)のみに適用 */
@media (min-width: 1024px) {
	.pcbig {
		display: none;
	}
}


/* ***********************************
*
*		共通
*
* *********************************** */

.l-inner {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.l-inner {
		width: 980px;
		padding-left: 0;
		padding-right: 0;
		margin-left: auto;
		margin-right: auto;
	}
}

.c-contact a {
	width: 100%;
	font-size: 1.8rem;
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: white;
	background-color: #E75297;
	border-radius: 100vh;
	display: block;
}


/* ***********************************
*
*		ヘッダー
*
* *********************************** */

.l-header {
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.l-header .header_inner {
	padding: 0 20px;
}

.l-header .header_inner .header_logo {
	width: 150px;
	height: 50px;
	display: flex;
	align-items: center;
}

.l-header .header_inner .header_logo img {
	filter: drop-shadow(1px 2px 2px rgba(0, 0, 0, .5));
}

@media (max-width: 768px) {
	.l-header .header_inner .header_nav .header_nav_list li:not(:last-child) {
		display: none;
	}
	
	body:not(.l-top) .l-header .header_inner .header_nav {
		display: none;
	}
}

.l-header .header_inner {
	padding: 0 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.l-header .header_inner .header_logo {
	width: 200px;
	height: 70px;
}

.l-header .header_inner .header_nav .header_nav_list {
	display: flex;
	align-items: center;
}

.l-header .header_inner .header_nav .header_nav_list li {
	margin-left: 30px;
}

.l-header .header_inner .header_nav .header_nav_list li.contact {
	width: 230px;
}

.l-header .header_inner .header_nav .header_nav_list li.contact a {
	width: 100%;
	font-size: 1.6rem;
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	line-height: 40px;
	text-align: center;
	color: white;
	background-color: #E75297;
	border-radius: 100vh;
	display: block;
}

.scrolled .header_inner .header_nav .header_nav_list li.contact {
	position: fixed;
	top: 15px;
	right: 20px;
	animation-name: anime;
  animation-duration: 0.5s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 767px) {
	.l-header .header_inner {
		padding-right: 10px;
	}

	.l-header .header_inner .header_nav .header_nav_list li.contact {
		width: 120px;
	}

	.l-header .header_inner .header_nav .header_nav_list li.contact a {
		width: 100%;
		font-size: 1.3rem;
		line-height: 35px;
	}

	.scrolled .header_inner .header_nav .header_nav_list li.contact {
		top: 15px;
		right: 10px;
	}
}



/* ***********************************
*
*		フッダー
*
* *********************************** */

.l-footer {
	margin-top: 80px;
}

.l-footer .footer_content {
	width: 100%;
	background: linear-gradient(135deg, #18B7CD 30%, #EF8EBB);
	padding: 50px 0 100px;
	position: relative;
}

.l-footer .footer_content::after {
	content: "";
	width: 100%;
	height: 100%;
	background: url(../img/footer-bg.png) no-repeat bottom center / 100%;
	display: block;
	position: absolute;
	bottom: -5%;
	left: 0;
	opacity: .1;
}

.l-footer .footer_content .footer_inner {
	padding-left: 20px;
	padding-right: 20px;
	position: relative;
	z-index: 1;
}

.l-footer .footer_content .footer_inner .title {
	font-size: 1.8rem;
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	text-align: center;
	color: white;
	border-bottom: 1px solid white;
	padding-bottom: 10px;
	margin-bottom: 20px;
}

.l-footer .footer_content .footer_inner .tel {
	color: white;
	text-align: center;
}

.l-footer .footer_content .footer_inner .tel a {
	font-size: 3.2rem;
	font-family: 'Josefin Slab', serif;
	font-style: normal;
	font-weight: 700;
	line-height: initial;
}

.l-footer .footer_content .footer_inner .tel span {
	font-size: 1.2rem;
	display: block;
}

.l-footer .footer_content .footer_inner .c-contact {
	max-width: 250px;
	margin: 30px auto 0;
}

.l-footer .copyright {
	width: 100%;
	font-size: 1.2rem;
	text-align: center;
	line-height: 50px;
} 

@media (min-width: 768px) {
	.l-footer {
		margin-top: 150px;
	}
	
	.l-footer .footer_content {
		padding: 50px 0 130px;
		overflow: hidden;
	}
	
	.l-footer .footer_content::after {
		bottom: -13%;
	}
	
	.l-footer .footer_content .footer_inner {
		width: 700px;
		margin: auto;
		padding-left: 0;
		padding-right: 0;
	}
	
	.l-footer .footer_content .footer_inner .title {
		font-size: 3rem;
		padding-bottom: 20px;
		margin-bottom: 30px;
	}
	
	.l-footer .footer_content .footer_inner .tel a {
		font-size: 4.5rem;
	}
	
	.l-footer .footer_content .footer_inner .tel span {
		font-size: 1.6rem;
	}
}


/* ***********************************
*
*		トップ
*
* *********************************** */

.p-top .top-title_text {
	font-family: 'Josefin Slab', serif;
	font-style: normal;
	font-weight: 400;
	font-size: 1.4rem;
	text-align: center;
	color: #98782D;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 10px;
}

.p-top .top-title_text::after {
	content: "";
	width: 40px;
	height: 2px;
	background-color: #98782D;
	display: block;
	margin-top: 5px;
}

.p-top .top-title {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 2.2rem;
	text-align: center;
	margin-bottom: 20px;
}

.p-top .p-top_hero {
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
	position: relative;
	background: url(../img/main-bg.jpg) no-repeat bottom center / cover;
	display: flex;
	align-items: center;
}

.p-top .p-top_hero:before {
  content: "";
  position: absolute;
  bottom: -35px;
  right: calc(50% - 25px);
  display: block;
  width: 155px;
  height: 20px;
  border-radius: 100vh;
  background-color: #F7CBDF;
  transform: rotate(-135deg);
}
.p-top .p-top_hero::after {
  content: "";
  position: absolute;
  bottom: -35px;
  right: calc(50% - 125px);
  display: block;
  width: 155px;
  height: 20px;
  border-radius: 100vh;
  background-color: #F7CBDF;
  transform: rotate(135deg);
}

.p-top .p-top_hero .hero_inner {
	padding: 0 20px;
}

.p-top .p-top_hero .hero_inner .hero_catch {
	text-align: center;
	margin: -10px 0 60px;
	position: relative;
}

.p-top .p-top_hero .hero_inner .hero_catch .caption01 {
	font-size: 2.0rem;
	color: #E75297;
	margin-bottom: 10px;
}

.p-top .p-top_hero .hero_inner .hero_catch .title {
	font-size: 2.4rem;
	line-height: 1.5;
	margin-bottom: 5px;
}


.p-top .p-top_hero .hero_inner .hero_catch .caption02 {
	font-size: 1.5rem;
	line-height: 1.3;
	color: white;
	background-color: #18B7CD;
	padding: 5px 15px;
	border-radius: 100vh;
	display: inline-block;
}

.p-top .p-top_hero .hero_inner .hero_catch .caption03 {
	width: 110px;
	height: 110px;
	font-size: 1.2rem;
	line-height: 1.5;
	color: white;
	background-color: #E75297;
	border-radius: 100vh;
	padding-top: 10px;
	border: 3px solid white;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	bottom: -110px;
	right: 0;
}

.p-top .p-top_hero .hero_inner .hero_img {
	border: 5px solid #98782D;
	border-radius: 6px;
}

@media (min-width: 768px) {
	.p-top {
		overflow: hidden;
	}
	
	.p-top .top-title_text {
		font-size: 2rem;
		margin-bottom: 15px;
	}
	
	.p-top .top-title {
		font-size: 4.2rem;
		margin-bottom: 40px;
	}
	
	.p-top .p-top_hero:before {
		bottom: -35px;
		right: calc(50% - 25px);
		width: 155px;
		height: 20px;
	}

	.p-top .p-top_hero::after {
		bottom: -35px;
		right: calc(50% - 125px);
		width: 155px;
		height: 20px;
	}
	
	.p-top .p-top_hero .hero_inner {
		padding: 0;
	}
	
	.p-top .p-top_hero .hero_inner .hero_catch {
		width: 100%;
		text-align: left;
		margin: 0 0 230px 8%;
		position: relative;
		z-index: 1;
	}
	
	.p-top .p-top_hero .hero_inner .hero_catch .caption01 {
		font-size: 3.6rem;
	}
	
	.p-top .p-top_hero .hero_inner .hero_catch .title {
		font-size: 4.6rem;
		line-height: 1.5;
		margin-bottom: 10px;
	}
	
	
	.p-top .p-top_hero .hero_inner .hero_catch .caption02 {
		font-size: 2.6rem;
		padding: 5px 25px;

	}
	
	.p-top .p-top_hero .hero_inner .hero_catch .caption03 {
		width: 210px;
		height: 210px;
		font-size: 2.3rem;
		text-align: center;
		border-radius: 100vh;
		padding-top: 15px;
		bottom: -230px;
		left: 0;
	}
	
	.p-top .p-top_hero .hero_inner .hero_img {
		width: 45%;
		position: absolute;
		top: 43%;
		left: 50%;
		transform: translate(11%, -50%);
	}
}


.p-top .p-top_about {
	margin-top: 110px;
	margin-bottom: 60px;
}

.p-top .p-top_about .about_inner {}

.p-top .p-top_about .about_inner > .title {
	font-size: 2.6rem;
	text-align: center;
	color: #98782D;
}

.p-top .p-top_about .about_inner > .title span {
	font-size: 2.0rem;
}

.p-top .p-top_about .about_inner .about_item {
	color: #98782D;
	margin: 30px 0 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.p-top .p-top_about .about_inner .about_item li {
	position: relative;
  display: inline-block;
  padding: 15px 10px;
  width: 100%;
	max-width: 300px;
  font-size: 1.8rem;
	line-height: 1.5;
	text-align: center;
  background: white;
  border-radius: 10px;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, .1));
	margin-bottom: 40px;
}

.p-top .p-top_about .about_inner .about_item li:before {
	content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 18px solid white;
}

.p-top .p-top_about .about_inner .about_desc {
	width: 100%;
	padding: 20px;
	background-color: #FDF3F8;
	border-radius: 6px;
	margin-top: 40px;
}

.p-top .p-top_about .about_inner .about_desc .sub-title {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 2rem;
	line-height: 1.3;
	text-align: center;
	color: #E75297;
	margin-top: -46px;
	margin-bottom: 15px;
}

.p-top .p-top_about .about_inner .about_desc .text span {
	color: #E75297;
}

@media (min-width: 768px) {
	.p-top .p-top_about {
		margin-top: 150px;
		margin-bottom: 150px;
	}

	.p-top .p-top_about .about_inner > .title {
		font-size: 4.8rem;
	}
	
	.p-top .p-top_about .about_inner > .title span {
		font-size: 3.2rem;
	}
	
	.p-top .p-top_about .about_inner .about_item {
		justify-content: space-between;
	}
	
	.p-top .p-top_about .about_inner .about_item li {
		padding: 25px 10px;
		max-width: 310px;
		font-size: 2.2rem;
	}
	
	.p-top .p-top_about .about_inner .about_desc {
		padding: 50px 40px 40px;
		background-color: #FDF3F8;
		border-radius: 6px;
		margin-top: 40px;
	}
	
	.p-top .p-top_about .about_inner .about_desc .sub-title {
		font-size: 2.8rem;
		margin-top: -68px;
	}
}

.p-top .p-top_feature {
	padding-bottom: 50px;
	position: relative;
}

.p-top .p-top_feature::after {
  content: "";
  position: absolute;
  top: 100%;
  box-sizing: border-box;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 40px solid #fff;
}

.p-top .p-top_feature .feature_inner .feature_list {
	margin-top: 30px;
}

.p-top .p-top_feature .feature_inner .feature_list > li + li {
	margin-top: 50px;
}

.p-top .p-top_feature .feature_inner .feature_list > li {
	position: relative;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-desc {
	padding: 20px;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, .1));
	border-radius: 10px;
	background-color: white;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .title {
	font-size: 2.4rem;
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	color: #98782D;
	border-bottom: 1px solid #98782D;
	margin-top: -38px;
	margin-bottom: 15px;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .title span {
	font-size: 8rem;
	font-family: 'Josefin Slab', serif;
	font-style: normal;
	font-weight: 700;
	padding-right: 15px;
	line-height: initial;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .block .text {
	margin-bottom: 15px;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-item {
	background-color: #F3FBFC;
	padding: 20px;
	margin-right: -20px;
	margin-left: 20px;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-item::after {
	content: "";
	background-color: #F3FBFC;
	width: 100%;
	height: calc(100% - 62px);
	margin-right: -20px;
	margin-left: 20px;
	position: absolute;
	top: 62px;
	right: 0;
	z-index: -1;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-item .text {
	font-size: 1.5rem;
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	color: #18B7CD;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-item .function li {
	display: flex;
	align-items: center;
	font-size: 1.5rem;
}

.p-top .p-top_feature .feature_inner .feature_list > li .list-item .function li::before {
	content: "";
	width: 5px;
	min-width: 5px;
	height: 5px;
	display: inline-block;
	background-color: #18B7CD;
	border-radius: 100vh;
	margin-left: 5px;
	margin-right: 10px;
}

@media (min-width: 768px) {
	.p-top .p-top_feature {
		padding-bottom: 100px;
	}
	
	.p-top .p-top_feature::after {
		border-top: 100px solid #fff;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list {
		margin-top: 50px;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list li {
		display: flex;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li + li {
		margin-top: 100px;
	}

	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc {
		width: 700px;
		padding: 30px;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .title {
		font-size: 2.8rem;
		margin-top: -52px;
		padding-left: 5px;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .title span {
		font-size: 9rem;
	}

	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .block {
		display: flex;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .block .text {
		width: 310px;
		margin-bottom: 0;
		margin-right: 50px;
	}

	.p-top .p-top_feature .feature_inner .feature_list > li .list-desc .block .img {
		width: 280px;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-item {
		width: calc(280 / 980 * 100%) ;
		background-color: #F3FBFC;
		padding: 30px;
		margin-right: 0;
		margin-left: 0;
		margin-top: 50px;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-item::after {
		content: "";
		background-color: #F3FBFC;
		width: 90%;
		height: calc(100% - 20px);
		margin-right: 0;
		margin-left: 0;
		position: absolute;
		top: 50px;
		right: 0;
		z-index: -1;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-item .text {
		font-size: 1.5rem;
		font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
		font-weight: bold;
		color: #18B7CD;
	}
	
	.p-top .p-top_feature .feature_inner .feature_list > li .list-item .function li {
		display: flex;
		align-items: center;
		font-size: 1.5rem;
	}
}

.p-top .p-top_faq {
	width: 100%;
	background-color: #FDF3F8;
	padding: 70px 0 50px;
}

.p-top .p-top_faq .faq_inner .faq_list {

}

.p-top .p-top_faq .faq_inner .faq_list li {
	margin-top: 15px;
	background-color: white;
	border-radius: 6px;
	filter: drop-shadow(0 0 4px rgba(0, 0, 0, .1));
}

.p-top .p-top_faq .faq_inner .faq_list li .question {
	display: block;
}

.p-top .p-top_faq .faq_inner .faq_list li .question::-webkit-details-marker {
	display: none;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box {
	padding: 20px;
	cursor: pointer;
	display: grid;
	grid-template-columns: 35px 1fr 30px;
	-webkit-align-items: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box::before {
	content: "Q";
	font-size: 3rem;
	font-family: 'Josefin Slab', serif;
	font-style: normal;
	font-weight: 700;
	color: #E75297;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .text {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 1.8rem;
	line-height: 1.5;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .arrow {
	display: block;
	position: relative;
	width: 24px;
	margin-left: 6px;
	flex-shrink: 0;
	transform-origin: center 43%;
	transition: transform 0.4s;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .arrow::before,
.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .arrow::after {
	content: "";
	position: absolute;
	display: block;
	width: 15px;
	height: 3px;
	background-color: #E75297;
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .arrow::before {
	left: 0;
		transform: rotate(45deg);
}

.p-top .p-top_faq .faq_inner .faq_list li .question .question_box .arrow::after {
	right: 0;
	transform: rotate(-45deg);
}

.p-top .p-top_faq .faq_inner .faq_list li details[open] .question .question_box .arrow {
	transform: rotate(180deg);
}

.p-top .p-top_faq .faq_inner .faq_list li .answer {
	padding: 10px 20px 20px;
}

@media (min-width: 768px) {
	.p-top .p-top_faq {
		width: 100%;
		background-color: #FDF3F8;
		padding: 150px 0 150px;
	}
	
	.p-top .p-top_faq .faq_inner {
		width: 800px;
		margin: auto;
	}

	.p-top .p-top_faq .faq_inner .faq_list li .question {
		grid-template-columns: 45px 1fr 40px;
	}
	
	.p-top .p-top_faq .faq_inner .faq_list li .question::before {
		font-size: 3.8rem;
		line-height: initial;
	}
}

.p-top .p-top_price {
	margin-top: 50px;
}

.p-top .p-top_price .price_inner .price_content .block {
	margin: 15px 0 10px;
	text-align: center;
}

.p-top .p-top_price .price_inner .price_content .block p {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	max-width: 250px;
	font-size: 1.8rem;
	text-align: center;
	line-height: 60px;
	border-radius: 6px;
	color: white;
	background-color: #E75297;
	margin: auto;
}

.p-top .p-top_price .price_inner .price_content .block span {
	font-family: "見出しゴMB31", "Midashi Go MB31", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-weight: bold;
	font-size: 2.2rem;
	text-align: center;
	color: #E75297;
}

.example-text{
        font-size: 1.7rem;
        margin-top: 50px
    }
.total-text{
        font-weight: bold;
    }

@media (min-width: 768px) {
	.p-top .p-top_price {
		margin-top: 80px;
	}

	.p-top .p-top_price .price_inner {
		width: 800px;
		margin: auto;
	}

	.p-top .p-top_price .price_inner .price_content .lead {
		text-align: center;
	}
	
	.p-top .p-top_price .price_inner .price_content .block {
		display: grid;
		grid-template-columns: 1fr 80px 1fr;
		-webkit-align-items: center;
		-webkit-box-align: center;
		-ms-flex-align: center;
		margin: 25px 0 15px;
	}
	
	.p-top .p-top_price .price_inner .price_content .block p {
		width: 100%;
		max-width: initial;
		line-height: 70px;
	}
	
	.p-top .p-top_price .price_inner .price_content .block span {
		font-size: 2.8rem;
	}
    .example-text{
        font-size: 1.8rem;
        margin-top: 50px
    }
    .total-text{
        font-weight: bold;
    }
}
    
    .p-top_price table{
        border-collapse: collapse;
        width: 100%;
        margin: 0px 0px 50px 0px;
        font-size: 13px
    }
    
    .tb01 th,
    .tb01 td{
        padding: 10px;
        border: solid 1px #ccc;
        text-align:center;
        box-sizing:border-box;
    }
    
    .tb01 th {
        background: #ff7bac;
        color: #fff;
    }



@media screen and (max-width: 640px) {
    .p-top_price table{
        border-collapse: collapse;
        width: 100%;
        margin: 0px 0px 50px 0px;
        font-size: 15px
    }
    
  .tb01 .head{
    display:none;
  }
  .tb01 {
    width: 100%;
  }
  .tb01 td,
  .tb01 th{
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 td{
    padding: 0px 12px 0 0;
    display: block;
    width: 100%;
    line-height: 2.5;
    text-align:left;
  }
  .tb01 td:before{
    color: #ed1e79;
    content: attr(data-label);
    font-weight: bold;
    padding: 0px 10px;
    display: inline;
    background-color: #fbd1e3;
    margin-right: 10px;
    float: left;
    width: 100px;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}

/* ***********************************
*
*		お問い合わせ
*
* *********************************** */

.p-contact {
	margin-top: 100px;
	margin-bottom: 200px;
}

.p-contact .l-contact {
	max-width: 800px;
	margin: 0 auto;
}

.p-contact .l-contact .headline {
	font-size: 2.4rem;
	text-align: center;
}

.p-contact .l-contact .lead {
	margin-top: 10px;
}

.p-contact .contact_inner {
	padding-left: 20px;
	padding-right: 20px;
}

@media (min-width: 768px) {
	.p-contact {
		margin-top: 150px;
	}

	.p-contact .l-contact .headline {
		font-size: 2.8rem;
	}
	
	.p-contact .l-contact .lead {
		text-align: center;
	}	
}

.p-contact .l-contact .contact_form {
	margin-top: 50px;
}

.p-contact .l-contact .contact_form form dl {
	margin-top: 30px;
	margin-bottom: 30px;
}

.p-contact .l-contact .contact_form form dl dt {
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	margin-top: 15px;
	margin-bottom: 3px;
}

.p-contact .l-contact .contact_form form dl dt span {
	width: 40px;
	font-size: 1rem;
	text-align: center;
	line-height: 16px;
	color: white;
	background-color: #C1272D;
	margin-left: 10px;
	display: inline-block;
}

.p-contact .l-contact .contact_form form dl dd [type=text],
.p-contact .l-contact .contact_form form dl dd [type=email],
.p-contact .l-contact .contact_form form dl dd textarea {
	font-family: "中ゴシックBBB", "Gothic Medium BBB", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック体", "YuGothic", "YuGothic M", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
	width: 100%;
	height: 45px;
	border: 1px solid #B3B3B3;
	background-color: #F2F2F2;
	padding: 10px 15px;
	font-size: 16px;
	border-radius: 6px;
}

.p-contact .l-contact .contact_form form dl dd.kinds  [type=radio] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.p-contact .l-contact .contact_form form dl dd.kinds .label {
  position: relative;
  cursor: pointer;
  padding-left: 3rem;
}

.p-contact .l-contact .contact_form form dl dd.kinds .label::before,
.p-contact .l-contact .contact_form form dl dd.kinds .label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
}

.p-contact .l-contact .contact_form form dl dd.kinds .label::before {
  background-color: #ffffff;
  border: 1px solid #808080;
  width: 2rem;
  height: 2rem;
  left: .5rem;
}

.p-contact .l-contact .contact_form form dl dd.kinds .label::after {
  background-color: #E75297;
  opacity: 0;
  width: 1.6rem;
  height: 1.6rem;
  left: .7rem;
}

.p-contact .l-contact .contact_form form dl dd.kinds input:checked + label::after {
  opacity: 1;
}

.p-contact .l-contact .contact_form form dl dd.kinds .kinds_btn {
  position: absolute;
}


.p-contact .l-contact .contact_form form dl dd .mini {
	width: 180px;
}

.p-contact .l-contact .contact_form form dl dd textarea {
	height: 150px;
}

.p-contact .l-contact .contact_form form dl dd input::placeholder,
.p-contact .l-contact .contact_form form dl dd textarea::placeholder {
	color: #B3B3B3;
}

.p-contact .l-contact .contact_form form .agree {
	font-size: 1.6rem;
	padding: 15px 10px;
	border-top: 1px solid #333333;
	border-bottom: 1px solid #333333;
}

.p-contact .l-contact .contact_form form .agree .desc {
	font-size: 1.4rem;
	display: block;
	margin-left: 26px;
}

.p-contact .l-contact .contact_form form .c-button {
	margin-top: 40px;
}

.p-contact .l-contact .contact_form form .c-button button {
	width: 100%;
	max-width: 240px;
	line-height: 60px;
	font-size: 1.6rem;
	color: white;
	text-align: center;
	border-radius: 100vh;
	border: none;
	margin: auto;
	display: block;
	cursor: pointer;
	background-color: #E75297;
}

.p-contact .copy {
	font-size: 1.2rem;
	text-align: center;
	padding: 10px 0;
}

@media (min-width: 768px) {

	.p-contact .l-contact .contact_form form dl {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		margin-top: 40px;
	}

	.p-contact .l-contact .contact_form form dl dt {
		width: 240px;
		height: 50px;
		margin: 0 0 20px;
	}

	.p-contact .l-contact .contact_form form dl dt span {
		width: 46px;
		font-size: 1.2rem;
		line-height: 20px;
		margin-left: 10px;
	}

	.p-contact .l-contact .contact_form form dl dd {
		width: 540px;
		margin-bottom: 20px;
	}

	.p-contact .l-contact .contact_form form dl dd [type=text],
	.p-contact .l-contact .contact_form form dl dd [type=email],
	.p-contact .l-contact .contact_form form dl dd textarea {
		height: 50px;
	}

	.p-contact .l-contact .contact_form form dl dd.kinds {
		justify-content: left;
		align-items: center;
	}
	
	.p-contact .l-contact .contact_form form dl dd.kinds label {
		margin-right: 50px;
	}
	
	.p-contact .l-contact .contact_form form dl dd textarea {
		height: 150px;
	}

	.p-contact .l-contact .contact_form form .agree {
		padding: 20px 120px;
	}

	.p-contact .l-contact .contact_form form .c-button {
		margin-top: 60px;
	}

	.p-contact .l-contact .contact_form form .c-button button {
		max-width: 300px;
		line-height: 65px;
		font-size: 1.8rem;
		transition: .3s;
	}

	.p-contact .l-contact .contact_form form .c-button button:hover {
		opacity: .7;
	}
}
