@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
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*
 * おでかけブログ Cocoon子テーマ追加CSS
 * Cocoon設定 > 追加CSS、または子テーマ style.css 末尾へ追記。
 */

.odekake-area-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
	gap: 12px;
	margin: 24px 0;
}

.odekake-area-card {
	display: block;
	min-height: 118px;
	padding: 16px;
	border: 1px solid #d8ded8;
	border-radius: 8px;
	background: #fff;
	color: #1f2a24;
	text-decoration: none;
	box-shadow: 0 1px 0 rgba(31, 42, 36, 0.05);
}

.odekake-area-card:hover,
.odekake-area-card:focus {
	border-color: #3f7d58;
	color: #184b2c;
	text-decoration: none;
}

.odekake-area-card__label {
	display: block;
	margin-bottom: 8px;
	font-size: 1.08rem;
	font-weight: 700;
	line-height: 1.35;
}

.odekake-area-card__description {
	display: block;
	font-size: 0.9rem;
	line-height: 1.65;
	color: #55625b;
}

.odekake-spot-info {
	width: 100%;
	margin: 20px 0;
	border-collapse: collapse;
	border-top: 1px solid #d8ded8;
}

.odekake-spot-info th,
.odekake-spot-info td {
	padding: 12px 14px;
	border-bottom: 1px solid #d8ded8;
	vertical-align: top;
	line-height: 1.7;
}

.odekake-spot-info th {
	width: 7.5em;
	background: #f5f8f5;
	font-weight: 700;
	text-align: left;
	white-space: nowrap;
}

.odekake-hub-back {
	margin: 28px 0;
}

.odekake-hub-back a {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	padding: 11px 16px;
	border: 1px solid #3f7d58;
	border-radius: 8px;
	color: #184b2c;
	background: #f7fbf7;
	font-weight: 700;
	text-decoration: none;
}

.odekake-hub-back a::before {
	content: "<";
	font-weight: 700;
}

.odekake-faq {
	margin: 24px 0;
}

.odekake-faq__item {
	border: 1px solid #d8ded8;
	border-radius: 8px;
	background: #fff;
}

.odekake-faq__item + .odekake-faq__item {
	margin-top: 10px;
}

.odekake-faq__item summary {
	cursor: pointer;
	padding: 14px 16px;
	font-weight: 700;
	line-height: 1.6;
}

.odekake-faq__answer {
	padding: 0 16px 16px;
	line-height: 1.8;
	color: #2f3a34;
}

@media (max-width: 600px) {
	.odekake-area-cards {
		grid-template-columns: 1fr;
	}

	.odekake-spot-info th,
	.odekake-spot-info td {
		display: block;
		width: 100%;
	}

	.odekake-spot-info th {
		padding-bottom: 6px;
		border-bottom: 0;
	}

	.odekake-spot-info td {
		padding-top: 6px;
	}
}


/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}
