@charset "UTF-8";
/* CSS Document */

/*ALL*/
*,
*::before,
*::after {
  box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
}
body, h1, h2, h3, h4, p,figure, blockquote, dl, dd {
    margin: 0;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	color: #444;
	padding-top: 50px;
}
ul, ol {
	list-style: none;
	margin: 0;
	padding: 0;
}
h1, h2, h3, h4,button, input, label {
    line-height: 1.1;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha(opacity=70)";
}
img{
	width: 100%;
}
/*Smartphone only call*/
@media screen and (min-width: 768px) {
	a[href*="tel:"] {
	pointer-events: none;
	cursor: default;
	text-decoration: none;}
}

.wrapper{
	width: 100%;
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}
header {
	width: 100%;
    max-width: 600px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #fff;
	position: fixed;
	top: 0;	left: 0; right: 0;
	z-index: 1000;
}

/* ロゴ */
.logo{
	max-width: 24%;
	width: 100%;
	margin: 5px;
}
.logo img {
	width: 100%;
}
.site-name {
	font-size: .6rem;
	line-height: 1.4;
	font-weight: 400;
}
.site-name span {
	font-size: .8rem;
	font-weight: 400;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 7px;
	margin-left: auto;
}

.header-cta img {
	width: auto;
	height: 30px;
	display: block;
}

/* ハンバーガーボタン */
.menu-btn {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 13px 10px 8px 10px;
  background: #6cc5d9;
}
.menu-btn .bar {
  width: 28px;
  height: 1px;
  background: #fff;
  transition: transform .25s ease;
}
.menu-btn .txt {
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

/* メニュー（閉じた時） */
.menu {
	width: 600px;
	margin: auto;
	position: fixed;
	top: 50px;
	left: 0;
	right: 0;
	background: rgba(255,255,255,.94);
	border-bottom: 1px solid #e5e5e5;
	max-height: 0;
	overflow: hidden;
	transition: max-height .3s ease;
	z-index: 999;
}
.menu ul {
	margin: 0;
	padding: 8px 16px 16px;
}
.menu li {
	border-bottom: 1px solid #e5e5e5;
}
.menu a {
	display: block;
	padding: 10px 4px;
	text-decoration: none;
	color: #333;
	font-weight: 400;
}

/* 開いたとき */
#menu-toggle:checked ~ nav.menu {
	width: 600px;
	margin: auto;
	max-height: calc(100vh - 50px);
	overflow-y: scroll;
	overflow-x: hidden;
}
#menu-toggle:checked ~ header .menu-btn .bar:nth-child(1) {
	transform: rotate(45deg) translate(4px, 4px);
}
#menu-toggle:checked ~ header .menu-btn .bar:nth-child(2) {
  transform: rotate(-45deg) translate(3px, -3px);
}

/*first-campaign*/
.first-campaign{
	padding: 24px 16px;
	background: #fff0;
	text-align: center;
}
.first-campaign__container{
	background: #fff;
	box-shadow: 0 6px 18px rgba(0,0,0,.08);
	padding: 20px;
	border: #efeae7 1px solid;
}
.first-campaign__title h2 {
  margin: -20px -16px 16px;
  padding: 12px 8px;
  color: #fff;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: .05em;
  background: linear-gradient(to right, #c8a96e, #b89554);
}

/* 価格ブロック */
.first-campaign__price {
	margin: 6px 0 18px;
	scroll-margin-top: 80px;
}
.first-campaign__price h3 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
}
.first-campaign__price p {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .02em;
}

.first-campaign__price .del{
	text-decoration: line-through;
}
.first-campaign__price .label-blue{
	background: #58b2cf;
	color: #fff;
	font-size: 16px;
	padding: 5px 5px 1px;
}
.first-campaign__price .label-blue img{
	width: 80px;
}
.first-campaign__price .font-gold{
	color: #bba258;
	font-weight: 500;
	font-size: 18px;
    display: inline-block;
	position: relative;
	background: linear-gradient(transparent 70%, #f9f5c3 0%, #f9f5c3 85%, transparent 80%);
}
.font-gold__big{
	font-size: 50px;
}
.first-campaign__menu__big{
	font-size: 160%;
	font-weight: 400;
	background: none;
}
.first-campaign__menu {
  margin: 0 6px 20px;
  padding: 18px 14px;
  background: #eef9fd;
  border: 1px solid #bfe3f2;
  border-radius: 10px;
  text-align: center;
}
.first-campaign__menu h3 {
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}

/* タグ風バッジ */
.first-campaign__menu p .label-blue {
  display: inline-block;
  padding: 6px 12px;
  margin: 6px 1px 0;
  border-radius: 4px;
  background: #58b2cf;
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
}
.first-campaign__menu p + p {
  margin-top: 12px;
  font-size: 20px;
}
.first-campaign__menu p + p strong,
.first-campaign__menu p + p .label-blue {
  font-weight: 700;
}

/* CTA */
.cta {
  display: block;
  width: 95%;
  max-width: 540px;
  margin: 0 auto;
  padding: 10px 18px;
  text-decoration: none;
  background: linear-gradient(90deg,#f49aa1 0%, #f27b8b 100%);
  color: #fff;
  border-radius: 9999px;                  /* 楕円ボタン */
  text-align: center;
  position: relative;
}
.cta__text {
  display: inline-block;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: .04em;
}
.cta::after {
  content: "›";
  position: absolute;
  right: 18px;
  top: 40%;
  transform: translateY(-50%);
  font-size: 30px;
  opacity: .95;
}
.cta.bk-color__pink:hover {
  opacity: 0.85;
}

/*worries*/
.worries{
	background: #6dbbd1;
	margin-top: 50px;
	scroll-margin-top: 80px;
}
.worries__title{
	display: flex;
	align-items: center;
	gap:20px;
	justify-content: center;
	padding: 20px;
	color: #fff;
	font-size: 17px;
}
.worries__title img{
	margin: -40px 0 0 0 ;
	width: 110px;
	display: block;
}

.worries__contents .flexbox{
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px 0 0;
}
.worries__contents .reversebox{
	display: flex;
	flex-direction: row-reverse;
	align-items: center;
	justify-content: center;
	gap: 20px;
	padding: 20px 0 0;
}
.worries__contents .flexbox img,
.worries__contents .reversebox img{
  max-width: 150px; 
  height: auto;
  display: block;
}
.worries__contents .flexbox p,
.worries__contents .reversebox p{
  font-size: 1rem;
  width: 140px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}
.worries_strong {
	text-decoration: underline;
	text-decoration-color: #50acc6;
	text-decoration-thickness: 1px;
	text-underline-offset: 4px;
}

.worries__contents .flexbox .balloon,
.worries__contents .reversebox .balloon{
  position: relative;
  padding: 20px 10px;
  background: #fff;
  border-radius: 8px;
  font-size: 17px;
  line-height: 1.5;
  margin: 0;
  width:160px;
}

.worries__contents .flexbox .balloon::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-left-color: #fff;
}
.worries__contents .reversebox .balloon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    border: 10px solid transparent;
    border-right-color: #fff;
}

.worries__text {
  margin: -1px 0px 20px 0px;
  padding: 50px 20px 70px;
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 22px;
  background: #6dbbd1;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
  font-weight: 600;
}

/*resolution*/
.resolution{
	text-align: center;
	scroll-margin-top: 80px;
}
.resolution__copy{
	font-size: 24px;
	margin: 40px 20px;
}
.resolution__movie{
	margin: 20px;
}
.resolution__movie video{
	width: 100%;
}
.resolution__detail{
	padding: 0 10px;
}
.resolution__detail h2{
	font-weight: 700;
	font-size: 24px;
	margin: 10%;
	display: inline-block;
    padding-bottom: 10px;
    border-bottom: 3px solid #6dbbd1;
}
.result_text{
	font-size: 16px;
	font-weight: 300;
	margin: 30px 0px 50px;
	line-height: 1.7;
}
@media (min-width: 400px){
.result_text{
	font-size:18px;
}
}
.result_text .underline_blue{
	display: inline-block;
    padding-bottom: 1px;
    border-bottom: 1px solid #6dbbd1;
}

/*before_after*/
.before_after{
	padding-top: 50px;
	padding-bottom: 50px;
	background-image:url('../-images/before_after-bg.jpg');
	background-repeat: repeat;
	background-size: contain;
	background-position: top;
	scroll-margin-top: 80px;
}
.before_after h2{
	font-size: 16px;
	font-weight: 400;
	
}
.before_after__title .text_gold{
	color: #bfad77;
	font-size: 40px;
	font-family: 'Marcellus', serif;
	line-height: 1.6;
}
.before_after__wrap{
	padding: 0 30px;
}
.before_after__contents h3{
	background: #6dbbd1;
	color: #fff;
	font-weight: 600;
	padding: 10px 5px;
	font-size: 18px;
	margin-top: 30px;
}

/*keep*/
.keep{
	padding-top: 50px;
}
.position_after_ba_text{
	font-size: 19px;
	text-align: center;
}
.position_after_ba_text .marker_gold{
	font-size: 38px;
	color: #bfad77;
	font-weight: 600;
	margin: 20px 0 0px;
	display: block;
}

.keep-box1{
	background: #fafafa;
	margin-top: 50px;
	text-align: center;
	margin-left: 10px;
	margin-right: 10px;
	padding: 0 20px;
}
.keep__contents{
	font-size: 19px;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 400;
	line-height: 2;
}
.keep__contents img{
	border-radius: 10px;
}
.keep__contents::after {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url('../-images/keep__contents-arrow.png') no-repeat center;
    background-size: contain;
    margin: 0px auto 0;
}
.keep__contents:last-child::after {
    display: none;
}

/*keep-box2*/
.keep-box2{
	margin-top: 30px;
	scroll-margin-top: 80px;
}
.keep-box2 h3{
	font-weight: 700;
	font-size: 20px;
	margin: 20px 7px;
	display: block;
	text-align: center;
    padding-bottom: 10px;
    border-bottom: 3px solid #6dbbd1;
}
.keep-box2__step{
	padding: 0 30px;
}
.keep-box2__step li{
	display: flex;
	align-items: flex-start;
	font-size: 17px;
	margin-bottom: 10px;
}

.keep-box2__step img{
	max-width: 80px;
	width: 100%;
	margin-right: 10px;
}
.keep-box2__images {
	margin: -1px auto 20px;
	padding: 10px 0px 50px;
	background: #fff;
	clip-path: polygon(0 0, 100% 0, 100% 90%, 50% 100%, 0 90%);
	text-align: center;
	scroll-margin-top: 80px;
}
.keep-box2__images img{
	padding: 10px 30px;
}
.keep-box2__images .lead{
	background: #6dbbd1;
	text-align: center;
	font-size: 22px;
	font-weight: 600;
	color: #fff;
	padding: 20px;
}
.keep-box2__images .text{
	line-height: 1.7;
	font-size: 17px;
	padding: 20px 20px 30px 20px;
}
.keep-box2__images .text .underline{
	display: inline-block;
    padding-bottom: 0px;
    border-bottom: 1px solid #6dbbd1;
}

/*keep-box3*/
.keep-box3{
	background: #6dbbd1;
	margin-top: -110px;
}
.keep-box3__title{
	padding: 110px 10px 10px;
}
@media screen and (min-width : 440px) {
.keep-box3{
	margin-top: -150px;
}
.keep-box3__title{
	padding: 150px 10px 10px;
}
}

.keep-box3__title h3{
	font-size: 20px;
	text-align: center;
	color: #fff;
	line-height: 1.8;
	font-weight: 400;
}
.keep-box3__title img{
	margin-top: 30px;
}

/*conclusion*/
.conclusion{
	padding-top: 30px;
	text-align: center;
	background: #fff;
}

.conclusion__title h3{
	font-size: 26px;
	font-weight: 400;
	line-height: 1.6;
}
.conclusion__title .underline{
	display: inline-block;
    padding-bottom: 0px;
    border-bottom: 2px solid #6dbbd1;
} 
.conclusion__text{
	margin-top: 20px;
	font-size: 18px;
	line-height: 1.6;
}
.conclusion__text .underline{
	display: inline-block;
    padding-bottom: 0px;
    border-bottom: 1px solid #6dbbd1;
}
.conclusion__text .text-big{
	font-size: 120%;
}
.conclusion__contents{
	background: #f6fbfc;
	margin: 30px 20px;
	padding: 20px 15px 30px 15px;
	border: 1px solid #6dbbd1;
}
.conclusion__text{
	line-height: 1.8;
	margin-bottom: 10px;
}
.conclusion__text .text-big{
	font-size: 130%;
}
.conclusion__contents .flexbox{
	display: flex;
	flex-wrap: wrap;
	gap:5px;
}
.conclusion__contents .flexbox figure{
	width: 49%;
	margin-top: 10px;
}
.conclusion__contents .flexbox figcaption{
	color: #444;
}
.conclusion-bottom__text{
	font-size: 18px;
	margin-top: 20px;
}

/*easy_point*/
.easy_point{
	margin-top: 50px;
	background: #fafafa;
	scroll-margin-top: 80px;
}
.easy_point__title {
	width: 100%;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 70px 20px;
}

.easy_point__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../-images/easy_point__title.png") no-repeat center center;
	background-size: contain;
	width: 60%;
	height: 100%;
	z-index: 0;
}

.easy_point__title h2 {
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 17px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0;
	z-index: 1;
}
.easy_point_wrap{
}
.easy_point_contents {
	margin: 30px 20px 20px;
	padding: 30px 15px 20px;
	position: relative;
	border: 1px solid #ddd;
	background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}
.easy_point__badge {
	padding: 10px 30px 10px 10px;
	position: absolute;
	top: -5px;
	left: -5px;
	background: #bfad77; 
	color: #fff;
	font-size: 16px;
	line-height: 1;
	font-weight: 400;
	clip-path: polygon(
		0 0,
		calc(100% - 16px) 0,
		100% 0%,
		calc(100% - 16px) 100%,
		0 100%
  );
}
.easy_point_contents h3{
	font-weight: 400;
	margin-top: 20px;
	font-size: 22px;
	color: #666666;
	line-height: 1.4;
}
.easy_point_contents img{
	margin-top: 20px;
}
.easy_point__text{
	margin-top: 10px;
	line-height: 1.6;
	color: #666666;
	font-size: 17px;
}
.easy_point__lead {
  margin: -1px 0px 20px 0px;
  padding: 20px 20px 70px;
  position: relative;
  text-align: center;
  font-size: 24px;
  background: #fafafa;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 50% 100%, 0 75%);
}

/*first-offer*/
.first-offer {
	background: #6dbbd1;
	text-align: center;
	margin-top: -70px;
	padding: 80px 20px 50px;
	scroll-margin-top: 80px;
}

.first-offer h2 {
	position: relative;
	font-size: 24px;
	color: #fff;
	display: inline-block;
	margin: 0;
	padding: 0 10px;
	z-index: 1;
	text-shadow: 
	2px 2px 1px #2c8aa2,
	1px 1px 1px #2c8aa2;
}

.first-offer h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 100%;
  height: 20px; 
  background: #45a3bd; 
  z-index: -1;
}
.first-offer__fukidashi{
	margin: 40px 10px 0px;
}
.first-offer__text{
	text-align: center;
	color: #fff;
	line-height: 3;
	font-size: 18px;
	font-weight: 600;
}
.first-offer__text .marker{
	display: inline-block;
	padding: 0px 20px;
	color: #409fba;
	background: #fff;
	border-radius: 40px;
	font-size: 20px;
	line-height: 2;
	font-weight: 600;
}
.first-offer__reviews{
	text-align: center;
	margin: 0 0 0 10px;
}
.first-offer__experience{
	text-align: center;
	margin: 0;
}
.first-offer__reviews img{
	display: block;
	margin: 0px 0 0 0px;
}
.first-offer__experience img{
	display: block;
	margin: 30px 0 0 0px;
}
.first-offer-bottom__text{
	text-align: center;
	color: #fff;
	line-height: 1.6;
	font-size: 19px;
	margin-top: 30px;
	font-weight: 600;
}
.first-offer .flexbox{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	gap:5px;
}
.first-offer .flexbox li{
	margin-top: 30px;
	width: 33.3333%;
	text-align: justify;
}
.first-offer .flexbox li .title{
	font-size: 13px;
	background: #248dab;
	color: #fff;
	border-radius: 6px 6px 0 0;
	padding: 5px;
	text-align: center;
}
.first-offer .flexbox li img{
	object-fit: cover;
	height: 90px;
}
.first-offer .flexbox li .text{
	margin-top: -5px;
	padding: 10px 5px 10px 10px;
	font-size: 12px;
	color: #fff;
	line-height: 1.4;
	background: #55a2b8;
	text-align: left;
}

/*first-offer__price*/
.first-offer__price {
	margin: 50px 0 18px;
}
.first-offer__price p {
  font-size: 20px;
  line-height: 1.75;
  font-weight: 400;
  letter-spacing: .02em;
	color: #fff;
}
.first-offer__price .del{
	text-decoration: line-through;
}
.first-offer__price .label-gold{
	background: #bfad76;
	color: #fff;
	font-size: 16px;
	padding: 5px 5px 1px;
}
.first-offer__price .label-gold img{
	width: 80px;
}
.first-offer__price .font-gold{
	color: #fff;
	font-weight: 500;
	font-size: 18px;
    display: inline-block;
	position: relative;
	background: linear-gradient(transparent 70%, #248dab 0%, #248dab 85%, transparent 80%);
}
.font-gold__big{
	font-size: 50px;
}

.easy_point__lead p{
	text-align: center;
	font-size: 21px;
	line-height: 1.6;
}
.easy_point__lead .underline{
	display: inline-block;
    padding: 0;
    border-bottom: 2px solid #bfad77;
}

/*flow*/
.flow{
	background: #fff;
	padding: 30px;
	scroll-margin-top: 80px;
}
.flow__title {
	width: 100%;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 70px 20px;
}

.flow__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../-images/flow.png") no-repeat center center;
	background-size: contain;
	width: 28%;
	height: 100%;
	z-index: 0;
}

.flow__title h2 {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0;
	z-index: 1;
}
.flow__contents {
  display: flex;
  gap: 20px;
  position: relative;
	margin-top: 30px;
}

.flow__step {
  position: relative;
  flex-shrink: 0;
}
.flow__step img{
  width: 30px;
}

.flow__step::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
  width: 4px;
  height: 280px;
  background-image: radial-gradient(circle, #bfad76 2px, transparent 1px);
  background-size: 4px 18px;
  background-repeat: repeat-y;
  background-position: center;
}

.flow__wrap {
  flex: 1;
}

.flow__wrap h3 {
  margin-bottom: 15px;
	font-weight: 400;
	color: #bfad77;
}

.flow__wrap img {
  width: 100%;
  height: auto;
  margin-bottom: 15px;
}
.flow__wrap p {
  color: #666;
  font-size: 17px;
}
.flow__course{
	margin-top: 30px;
}
.flow__course h3{
	color: #fff;
	text-align: center;
	background: #bfad76;
	padding: 10px;
	font-size: 18px;
	font-weight: 400;
}
.flow__course img{
	margin-top: 10px;
}
.flow__course p{
	line-height: 1.6;
	color: #666;
	font-size: 16px;
	margin-top: 10px;
}

/*voice*/
.voice{
	margin-top: 30px;
	scroll-margin-top: 80px;
}
.voice__title{
	position: relative;
	background: #f8f5ea;
	padding: 20px 0 ;
}
.voice__title h2{
	position: absolute;
	top: 25%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 400;
}
.voice__images{
	background: #f8f5ea;
	padding: 20px 20px 30px;
	margin-top: -20px;
}
.voice__images img{
	margin-top: 10px;
}

/*price*/
.price{
	background: #fff;
	padding: 30px;
}
.price__title {
	width: 100%;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 30px 20px;
}

.price__title::before {
	content: "";
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../-images/price-title.png") no-repeat center center;
	background-size: contain;
	width: 28%;
	height: 100%;
	z-index: 0;
}

.price__title h2 {
	position: absolute;
	top: 115%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0;
	z-index: 1;
}
.price__experience{
	text-align: center;
	font-size: 20px;
	line-height: 2;
	margin-top: 50px;
}
.price__experience .underline{
	display: inline-block;
    padding-bottom: 0px;
	margin-top: -5px;
    border-bottom: 1px solid #6dbbd1;
}
.price__experience .text-big{
	font-size: 120%;
}

.price__detail h3{
	margin-top: 30px;
	font-size: 20px;
	font-weight: 400;
}
.price__wrap dl{
	background: #f6fbfc;
	margin-top: 10px;
	padding: 0 10px;
}
.price__list{
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid #cccccc;
	font-size: 18px;
}
.price__list:last-child {
    border-bottom: none;
}

.price__list dt,
.price__list dd{
	padding: 15px;
}
.price__list dd{
	text-align: right;
}
.price__list .text-small{
	font-size: 82%;
}
.price__list .attention{
	font-size: 10px;
}
.price__copy{
	text-align: center;
	font-size: 19px;
	font-weight: 500;
	line-height: 1.6;
	margin: 30px 10px;
	color: #50acc6;
}
.price__copy .underline{
	display: inline-block;
	border-bottom: 1px solid #50acc6;
}

/*profile*/
.profile{
	margin-top: 30px;
}
.profile__title{
	background-color: #fbf9f5;	
}
.profile__title h2{
	text-align: center;
	color: #bfad77;
	font-weight: 400;
	font-size: 22px;
	margin: 10px;
	line-height: 1.6;
}
.profile__title h2 .text-small{
	font-size: 70%;
}
.profile__text{
	background-color: #fbf9f5;	
	margin-top: -10px;
	font-size: 16px;
	padding: 20px;
	line-height: 1.8;
}
.profile__career{
	background: #fbf9f5;
	padding-bottom: 40px;
}
.profile__career .inner{
	padding-top: 20px;
	border: 1px solid #bfad77;
	background: #fff;
	padding: 16px;
	margin: 0 20px;
}
.profile__career .inner ul{
	margin-top: 10px;
	padding-left: 0;
	margin-bottom: 0.5em;
}
.profile__career .inner ul li{
	position: relative;
	padding-left: 1.2em;
	color: #444444;
}
.profile__career .inner ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 0.6em;
  height: 0.6em;
  background: #bfa66f;
  transform: rotate(45deg);
}

/*faq*/
.faq{
	padding: 30px 20px;
	background: #fafafa;
	scroll-margin-top: 80px;
}
.faq__title {
	width: 100%;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 30px 20px;
	margin-bottom: 20px;
}

.faq__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../-images/faq-title.png") no-repeat center center;
	background-size: contain;
	width: 28%;
	height: 100%;
	z-index: 0;
}

.faq__title h2 {
	position: absolute;
	top: 85%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0 ;
	z-index: 1;
}
.faq-item {
  border: 1px solid #ddd;
  border-radius: 10px;
  margin: 10px 0;
  overflow: hidden;
  background: #fff;
	box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.faq-item input[type="checkbox"] {
  display: none;
}

/* 質問部分 */
.faq-question {
  display: flex;
  align-items: center;
  padding: 15px 40px 15px 15px;  /* 右にアイコン分の余白を確保 */
  cursor: pointer;
  font-size: 16px;
  line-height: 1.6;
  position: relative;           /* 子要素の絶対配置基準にする */
}

/* Qマーク */
.faq-question .faq-mark.q {
  flex: 0 0 24px;
  height: 24px;
  margin-right: 8px;
  background: url("../-images/Q.png") no-repeat center/contain;
}

/* テキストは自然に左寄せ */
.faq-question .text {
  flex: 1;
  text-align: left;
}

/* 右端の＋−アイコン（固定配置） */
.faq-question::after {
  content: "+";
  font-size: 20px;
  color: #bfa66f;
  position: absolute;
  right: 15px;   /* 右端からの距離 */
  top: 50%;
  transform: translateY(-50%); /* 縦方向中央揃え */
}

/* 開いたときは−に切り替え */
.faq-item input[type="checkbox"]:checked + .faq-question::after {
  content: "−";
}


.faq-question .faq-mark.q {
  flex: 0 0 24px;               /* 固定幅を確保 */
  height: 24px;
  margin-right: 8px;
  background: url("../-images/Q.png") no-repeat center/contain;
}
.faq-question span.text {
  flex: 1;                      /* 残りを全部使う */
  display: inline-block;
}

.faq-answer {
	position: relative;
	max-height: 0;
	overflow: hidden;
	padding: 0 15px 0 40px;
	line-height: 1.8;
	transition: max-height .3s ease, padding .3s ease;
}
.faq-answer p{
	margin: 0;
	padding-left: 12px;
}

.faq-answer .faq-mark.a{
	position: absolute;
	left: 15px; 
	top: 15px;
	width: 20px;
	height: 20px;
	background: url("../-images/A.png") no-repeat center/contain;
}

/* 開いたとき */
.faq-item input[type="checkbox"]:checked ~ .faq-answer{
  max-height: 500px;           /* 充分に大きく */
  padding: 15px 15px 15px 40px;/* 上下パディング付与 */
}

/*access*/
.access{
	padding: 20px 20px 40px 20px;
	scroll-margin-top: 80px;
}
.access__title {
	width: 100%;
	position: relative;
	text-align: center;
	display: inline-block;
	padding: 30px 20px;
}

.access__title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: url("../-images/access-title.png") no-repeat center center;
	background-size: contain;
	width: 34%;
	height: 100%;
	z-index: 0;
}

.access__title h2 {
	position: absolute;
	top: 80%;
	left: 50%;
	transform: translateX(-50%);
	font-size: 16px;
	font-weight: 400;
	color: #666;
	line-height: 1.4;
	margin: 0;
	z-index: 1;
}
.access__info{
	margin-top: 20px;
	text-align: center;
}
.access__info .name{
	margin-top: 20px;
	text-align: center;
}
.access__logo{
	width: 70%;
	margin: 10px auto;
	display: block;
}
.access__info h3{
	text-align: center;
	margin-top: 10px;
}
.access__info p,
.access__address p,
.access__guidance p{
	text-align: center;
	font-size: 16px;
	font-weight: 300;
	line-height: 1.6;
	margin-top: 5px;
}
.access__info .border{
    border: 1px solid #666;
    padding: 5px 10px;
	display: inline-block;
	margin-top: 10px;
    width: 40%;
}
.access__address p,
.access__guidance p{
	margin-top: 20px;
}
.access__map iframe{
	width: 100%;
	margin-top: 30px;
	height: 250px;
}

.parking-link {
	display: block;
/*
	width: 84%;
    max-width: 540px;
*/
	padding: 10px 20px 15px;
	background: linear-gradient(to right, #5fc0d4, #45a3bd);
	color: #fff;
	text-decoration: none;
	border-radius: 999px; /* 横長の丸ボタンにする */
	transition: 0.3s ease;
	margin: 20px 0;
	text-align: center;
}

.parking-link:hover {
  opacity: 0.85; /* ホバー時に少し暗くする */
}

.parking-link .cta__text {
  display: inline-block;
	font-weight: 400;
	font-size: 18px;
}

/*closing*/
.closing{
	margin-top: 50px;
}
.closing__title h2{
	margin-top: -26px;
	text-align: center;
	color: #fff;
	font-size: 20px;
	font-weight: 400;
	line-height: 1.8;
	padding: 20px; 
  background: linear-gradient(90deg, #beac75, #af9855);
}
.closing__title p{
	width: 84%;
	margin: auto;
}
.dot-char {
  position: relative;
  display: inline-block;
  margin: 0 2px;
  color: #fff;
  font-weight: bold;
}

.dot-char::before {
  content: "・";
  position: absolute;
  top: -1em;   /* 点を上に配置 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8em; /* 点の大きさ調整 */
  color: #fff;   /* 点の色 */
}
.closing__text{
	margin-top: 30px;
	margin-bottom: 30px;
	text-align: center;
	font-size: 20px;
	line-height: 2;
}
.closing__text .del{
	text-decoration: line-through;
}
.closing__text .label-blue{
	background: #58b2cf;
	color: #fff;
	font-size: 16px;
	padding: 5px 5px 1px;
}
.closing__text .label-blue img{
	width: 80px;
}
.closing__text .font-gold{
	color: #bba258;
	font-weight: 500;
	font-size: 18px;
    display: inline-block;
	position: relative;
	background: linear-gradient(transparent 70%, #f9f5c3 0%, #f9f5c3 85%, transparent 80%);
}
.font-gold__big{
	font-size: 50px;
}
















/*fixed-cta*/
.fixed-cta {
    width: 100%;
    max-width: 600px;
    background: #fff;
    padding: 10px 20px 5px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

/* 表示状態：元の位置 */
.fixed-cta.show {
    display: block;
    transform: translateY(0);
    opacity: 1;
    animation: slideUp 0.4s ease-out forwards;
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);  /* ← 両方組み合わせ */
        opacity: 1;
    }
}

.fixed-cta.show {
    transform: translateX(-50%) translateY(0);  /* ← 両方組み合わせ */
    opacity: 1;
}

/*footer*/
footer{
	padding-bottom: 100px;
}
.copyright{
	font-size: 12px;
	text-align: center;
	margin: 20px;
}

.parking2-link {
	display: block;
/*
	width: 84%;
    max-width: 540px;
*/
	padding: 10px 20px 15px;
	background: linear-gradient(to right, #f39d00, #f39d00);
	color: #fff;
	text-decoration: none;
	border-radius: 999px; /* 横長の丸ボタンにする */
	transition: 0.3s ease;
	margin: 20px 0;
	text-align: center;
}

.parking2-link:hover {
  opacity: 0.85; /* ホバー時に少し暗くする */
}

.parking2-link .cta__text {
  display: inline-block;
	font-weight: 400;
	font-size: 20px;
	font-weight: bold;
}