@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/

/************************************
** 共通
************************************/
.inline-center {
	text-align:center;	/* 中央寄せ*/
}

.container-85w {
	width: 85%;			/* 横幅調整*/
	margin: 0 auto;     /* 中央寄せ*/
}
.container-60w {
	width: 60%;			/* 横幅調整*/
	margin: 0 auto;     /* 中央寄せ*/
}

.text-decoration-none {
	text-decoration: none;		/* 下線非表示*/
}

/************************************
** アコーディオン
************************************/
.toggle-button, .toggle-content {
	text-align: left;	/*見出しを左寄せ*/
	width: 70%;			/* 横幅調整*/
	margin: 0 auto;     /* 中央寄せ*/
}

/************************************
** ヘッダー
************************************/
div#header-in {
	flex-direction: row;		/* ヘッダーロゴと予約ボタンを横並び */
	flex-wrap: wrap; 			/* 折り返し可能にする */
}
.tagline {
	flex-basis: 100%; 			/* 自分だけ1行占める＝縦並びに見える */
}

.header-contact {
	display: flex;
	align-items: center;		/* 縦方向の中央揃え */
	margin: 15px 5px;			/* 予約ボタン, 各種アイコンにmarginを追加 */
}

/************************************
** メニュー
************************************/
.item-label{
	font-size: 18px;			/* フォントサイズを調整 */
}
/************************************
** テーブル
************************************/
.align-center-table th,
.align-center-table td {
	text-align: center !important;	/* 中央揃え */
}

/************************************
** 親テーマを上書き
************************************/
.is-style-sticky-blue {
	border-color: #0693e3;
	background-color: #E5F2FF;
}

.article h2 {
    background-color: #0693e3;
}

/************************************
** ボタン
************************************/
.btn-blue {
	background: #0693e3;
	border-radius: 50px;
	font-weight: bold;
	padding : 8px 15px ;
	color: #fff;
	text-decoration: none;
	padding: 15px;
}

.btn-blue:hover {
	color: #fff;
	opacity: 0.8;
}

.btn-red {
	background: #f75065;
	border-radius: 50px;
	font-weight: bold;
	padding : 8px 15px ;
	color: #fff;
	text-decoration: none;
	padding: 15px;
}

.btn-red:hover {
	color: #fff;
	opacity: 0.8;
}

.btn-reserve{
	position: relative;
	display: block;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #f75065;
	padding: 5px 0;
	margin: auto;
	max-width: 250px;
	text-decoration: none;
}

.btn-reserve::after{
	content: "";
	background: url(https://pureral-whitening.jp/wp-content/image/reserve.png) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: calc(50% - 12px);
	left: 15px;
	text-decoration: none;
}

.btn-reserve:hover {
	color: #fff;
	opacity: 0.8;
}

.btn-tel{
	position: relative;
	display: block;
	border-radius: 50px;
	color: #fff;
	font-weight: bold;
	text-align: center;
	background: #f75065;
	padding: 5px 0;
	margin: auto;
	max-width: 250px;
	text-decoration: none;
}

.btn-tel::after{
	content: "";
	background: url(https://pureral-whitening.jp/wp-content/image/telephone.png) no-repeat center;
	background-size: contain;
	width: 24px;
	height: 24px;
	position: absolute;
	top: calc(50% - 12px);
	left: 15px;
	text-decoration: none;
}

.btn-tel:hover {
	color: #fff;
	opacity: 0.8;
}

/************************************
** Top
*************************************
** セクション
************************************/
/* 共通 */
.common-section {
	padding: 2rem 0;
}

.common-container {
	max-width: 1200px;
    margin: 0 auto;
	padding: 0 2rem;
}

.section-title {
	text-align: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 3rem;
}

.section-subtitle {
	font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

/* 効果実証 */
#proof {
	background: white;
	/*background-image: url(https://pureral-whitening.jp/wp-content/image/wave.jpg);*/
	text-align: center;
}

.proof-stats {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  	max-width: 800px;
	gap: 2rem;			/* アイテム同士の間隔を調整 */
	margin: 0 auto;		/* 中央寄せ */
}

.stat-card {
	background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
	font-size: 3rem;
    font-weight: bold;
    color: #ff6b6b;
    margin-bottom: 0.5rem;
}

.stat-label {
	font-size: 1.1rem;
    color: #333;
}

.before-after {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.before-after-card {
	background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.before-after-image {
	height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
	display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
}

.before-after-content {
	padding: 1.5rem;
}

/* メニュー・料金 */
#pricing {
	background: white;
}
.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  	max-width: 800px;
	gap: 2rem;			/* アイテム同士の間隔を調整 */
	margin: 0 auto;		/* 中央寄せ */
}

.pricing-card {
	background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
	transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular1 {
	border: 3px solid #ff6b6b;
}

.pricing-card.popular1::before {
	content: "⭐️⭐️人気No.1⭐️⭐️";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-card.popular2 {
	border: 3px solid #ff6b6b;
}

.pricing-card.popular2::before {
	content: "⭐️人気No.2⭐️";
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ff6b6b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: bold;
}

.pricing-title {
    color: #2c5282;
    margin-bottom: 1rem;
    font-weight: bold;
}

.pricing-price {
	font-size: 2.5rem;
    color: #ff6b6b;
    font-weight: bold;
    margin-bottom: 1rem;
}

.pricing-features {
	list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
	padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
    color: #666;
}

.pricing-features li:last-child {
	border-bottom: none;
}

.pricing-button {
	background: linear-gradient(45deg, #ff6b6b, #ff8e8e);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    width: 100%;
}

.pricing-button:hover {
	transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

.pricing-p {
	margin:0px !important;
}

/* 選ばれる理由 */
#reasons {
	background: white;
}

.reasons-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.reason-card {
	background: #f8fbff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #0693e3;
}

.reason-number {
	background: #0693e3;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 1rem;
}

.reason-title {
	font-size: 1.3rem;
    color: #2c5282;
    margin-bottom: 1rem;
    font-weight: bold;
}

.reason-text {
	color: #666;
    line-height: 1.8;
}

/* お客様の声 */
#testimonials {
	background: white;
}

.testimonials-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  	max-width: 800px;
	gap: 2rem;			/* アイテム同士の間隔を調整 */
	margin: 0 auto;		/* 中央寄せ */
}

.testimonial-card {
	background: #f8fbff;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #2c5282;
}

.testimonial-rating {
	color: #ffd700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
	color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
	font-weight: bold;
    color: #2c5282;
}

.testimonial-details {
	font-size: 0.9rem;
    color: #999;
}

/* 安全性・効果 */
#safety {
	background: white;
}

.safety-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    align-items: center;
}

.safety-content h3 {
	font-size: 2rem;
    color: #2c5282;
    margin-bottom: 1rem;
}

.safety-features {
	list-style: none;
}

.safety-features li {
	padding: 0.8rem 0;
    border-bottom: 1px solid #e0e0e0;
    color: #666;
    position: relative;
    padding-left: 2rem;
}

.safety-features li::before {
	content: "✓";
    position: absolute;
    left: 0;
    color: #ff6b6b;
    font-weight: bold;
}

.safety-image {
	height: 300px;
    background: linear-gradient(45deg, #f0f0f0, #e0e0e0);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
}


/* 施術までの流れ */
#flow {
	background: white;
}

/* よくある質問 */
#faq {
	background: white;
}

.faq-toggle {
	margin: 0 !important;
}

/* フッター */
#foot {
	background: white;
    padding: 3rem 0;
}

.footer-grid {
	display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
	margin-bottom: 1rem;
    color: black;
}

.footer-section p, .footer-section a {
	color: black;
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
	color: #ff6b6b;
}

/************************************
** フロー
************************************/
.inline-center_redbtn {
	text-align:center;	/* 中央寄せ*/
	margin:2em;
}

/************************************
** 店舗情報
************************************/
.information_table {
	width:75%;
	max-width:75%;
	min-width:50%;
	margin-left: auto;
	margin-right: auto;
}

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
		/* 共通 */
	.container-85w {
		width: 100%;
	}
	.container-60w {
		width: 90%;
	}
	.toggle-button, .toggle-content {
		width: 100%;
	}
	.common-container {
		padding: 0;
	}
	
	/* 効果実証 */
	.before-after {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.stat-number {
		font-size: 3rem;
	}
	
	/* メニュー・料金 */
	.pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	.pricing-title {
		font-size: 1.3rem !important;
    }
	
	/* 選ばれる理由 */
	.reasons-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
	
	/* お客様の声 */
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	/* 安全性・効果 */
	.safety-grid {
		grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
	}
	
	/* 店舗情報 テーブル */
	.information_table {
		width:100%;
		max-width:100%;
		min-width:75%;
	}
}

/*834px以下*/
@media screen and (max-width: 834px){
	
}

/*480px以下*/
@media screen and (max-width: 480px){
	
	/* 共通 */
	.container-85w {
		width: 100%;
	}
	.container-60w {
		width: 100%;
	}
	.toggle-button, .toggle-content {
		width: 100%;
	}
	.common-container {
		padding: 0;
	}
	
	/* 効果実証 */
	.before-after {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	.stat-number {
		font-size: 3rem;
	}
	
	/* メニュー・料金 */
	.pricing-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	/* 選ばれる理由 */
	.reasons-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
	
	/* お客様の声 */
	.testimonials-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	/* 安全性・効果 */
	.safety-grid {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	}
	
	/* 店舗情報 テーブル */
	.information_table {
		width:100%;
		max-width:100%;
		min-width:75%;
	}
}