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

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

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

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

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

/************************************
** ナビゲーションメニュー
************************************/


/*** グローバルメニューカスタマイズ ***/

/* 文字を太字に */
.navi-in .menu-header .item-label {
	font-weight: bold;
}


/* マウスホバー時　下線が引かれる（アニメーション）*/
.item-label{
	position: relative;
	z-index: 1;
}

.item-label:after{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0px; /* テキストからの距離 */
	width: 0%; /* 初期状態・下線非表示 */
	height: 100%; /* 下線の高さ */
	background: #d6e9ca; /* 下線の色 */
	z-index: -1;
	transition: all 0.4s; /* アニメーション速度 */
}


.menu-header .menu-item:hover .item-label:after {
	width: 100%; /* hover時に表示 */
}


/*** モバイル版も1列に ***/

@media screen and (max-width: 1023px) {
	#navi .navi-in > .menu-mobile li {
		width: 25%;
	}
	#navi .navi-in > .menu-mobile li a {
		font-size: 0.7em; /*場合によってフォントサイズを小さく*/
	}
	
	.header, .header-in, .logo, .site-name-text, .site-logo-image {
		max-height: 30px;
	}
	.header-container-in.hlt-top-menu .logo-header img {
		max-height: 22px;
		margin: 0;
	}
	
	
.header-container {
	position: fixed;  /* 位置を固定する */
	top: 0;  /* 固定する位置を指定 */
	left: 0;
	width: 100%;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05); 
}
	
}



/***************************
 * コンテンツ部
 **************************/

/*** 画像全画面表示 ***/

.section {
	position: relative;
	top: 0;
	width: 100%;
	min-height: 100vh;
	overflow: hidden;
	margin-bottom: 0;
}

.top-bg {
	background-image: url(https://specialites.tokyo/wp-content/uploads/2024/03/specialites_top_bg.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	z-index: -100;
}



/*** 全画面表示のための余白等調整 ***/

.home .entry-title {
	display: none;
}

.home .content {
	padding: 0;
	margin: 0;
}

.home .content-in {
	width: 100%;
	margin: 0;
}

.home .main {
	width: 100%;
	padding: 0;
	margin: 0;
	border: none;
	background-color:  #fff;
}

.home .entry-content {
	margin: 0;
	position: relative;
	z-index: 10;
}

.home .date-tags {
	margin-bottom: 0;
}

.body .article {
	margin: 0;
}

.home .sidebar {
	display: none;
}


/*** トップページタイトル非表示 ***/

.home .entry-title {
	display: none;
}


/*** 文字余白調整 ***/

.article p {
	margin-top: 0.5em;
	margin-bottom: 0.5em;
}

/*** トップ画像上に要素表示 ***/

/* アイコン */
.specialites-icon {
	position: absolute;
	top: 10%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	text-align: center;
}

.specialites-icon img {
	max-width: 40%;
}

/*1366px以下*/
@media screen and (max-width: 1366px){
.specialites-icon {
	top: 15%;
}
.specialites-icon img {
	max-width: 40%;
}
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.specialites-icon {
	top: 25%;
}
.specialites-icon img {
	max-width: 40%;
}
}

/*834px以下*/
@media screen and (max-width: 834px){
.specialites-icon {
	top: 20%;
}
.specialites-icon img {
	max-width: 50%;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.specialites-icon {
	top: 25%;
}
.specialites-icon img {
	max-width: 60%;
}
}

/* キャッチコピー */

.specialites-copy {
	position: absolute;
	top: 40%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	text-align: center;
	width: 100%;
}

.specialites-copy p {
	font-size: 2em;
	color: white;
}

/*1366px以下*/
@media screen and (max-width: 1366px){
.specialites-copy {
	top: 40%;
}
.specialites-copy p {
	font-size: 1.8em;
}
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.specialites-copy {
	top: 50%;
}
}

/*834px以下*/
@media screen and (max-width: 834px){
.specialites-copy {
	top: 45%;
}
.specialites-copy p {
	font-size: 1.5em;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.specialites-copy {
	top: 40%;
}
}



/* ロゴ風文字 */

.specialites-logo {
	position: absolute;
	top: 65%;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}


.specialites-logo p {
	font-size: 5em;
	color: white;
	font-family: 'Alegreya';
	margin: 0;
}

/*480px以下*/
@media screen and (max-width: 480px){
	
.specialites-logo {
	top: 70%;
}
.specialites-logo p {
	font-size: 3.5em;
}
	
}

.specialites-logo-j {
	position: absolute;
	top: 85%;
	left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}

.specialites-logo-j p {
	color: white;
}


/*** 名前由来ブロック余白追加 ***/

.meaning {
	margin-left: 1.8em;
	margin-right: 1.8em;
}


/*** 名前由来説明フォントサイズ調整 ***/
/*480px以下*/
@media screen and (max-width: 480px){
.meaning-text {
	font-size: 0.8em;
}
}


/*** 区切り位置 ***/

.season-right {
	text-align: right;
}
.season-right img {
	max-height: 200px;
}

.season-left {
	text-align: left;
}
.season-left img {
	max-height: 200px;
}


/*** 自己紹介 ***/

.introduction-1, .introduction-2 {
	text-align: center;
}

.introduction-1 p {
	font-size: 3em;
	color: #00552E;
}

@media screen and (max-width: 834px){
.introduction-1 p {
	font-size: 1.5em;
}
}

@media screen and (max-width: 834px){
.introduction-1 p {
	font-size: 1.7em;
}
}

@media screen and (max-width: 480px){
.introduction-1 p {
	font-size: 1.2em;
}
}

.introduction-2 p {
	font-size: 1.5em;
}

@media screen and (max-width: 834px){
.introduction-2 p {
	font-size: 1.3em;
}
}

@media screen and (max-width: 834px){
.introduction-2 p {
	font-size: 1.1em;
}
}

@media screen and (max-width: 480px){
.introduction-2 p {
	font-size: 1em;
}
}


/*** スペシャリテ ***/

.business-details {
	margin-right: 8em;
	margin-left: 8em;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.business-details {
	margin-right: 4em;
	margin-left: 4em;
}
}

/*834px以下*/
@media screen and (max-width: 834px){
.business-details {
	margin-right: 2em;
	margin-left: 2em;
}
}

.specialites-heading {
	text-align: center;
}

.specialites-heading p {
	font-size: 2em;
	font-weight: bold;
	filter: drop-shadow(5px 5px 5px #eebbcb);
	line-height: 1.2em;
}

@media screen and (max-width: 480px){
.specialites-heading p {
	font-size: 1.5em;
}
}

.business-details-title, .cas-office-name {
	text-align: center;
}

.business-details-title p {
	font-size: 2.5em;
	font-weight: bold;
	color: #00552E;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.business-details-title p {
	font-size: 2em;
}
}

/834px以下*/
@media screen and (max-width: 480px){
.business-details-title p {
	font-size: 1.8em;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.business-details-title p {
	font-size: 1.5em;
}
}

.cas-office-name {
	font-size: 2em;
	color: #00552E;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.cas-office-name {
	font-size: 1.8em;
}
}

/*834px以下*/
@media screen and (max-width: 480px){
.cas-office-name {
	font-size: 1.5em;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.cas-office-name {
	font-size: 1.2em;
}
}

.specialites-image {
	text-align: center;
}

.details {
	text-align: center;
}


.others-image {
	text-align: center;
}


/*783px以下 (縦並び)*/
@media screen and (max-width: 783px){
.specialites-image img, .others-image img {
	max-width: 50%;
}
}


/*480px以下 (縦並び)*/
@media screen and (max-width: 480px){
.details {
	font-size: 0.8em;
}
}


/*** こんなとき ***/
.box-case {
	position: relative;
	margin: 1.2em 15em;
	padding: 1.2em;
	border: none; /* 枠線の太さ・色 */
	border-radius: 15px;
	color: #333333; /* 文字色 */
	background-color: #fff;
	box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.25);
	text-align: center;
	z-index: -10;
}

.box-case p {
	font-size: 1.2em;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.box-case {
	margin: 1.2em 3em;
	padding: 1.2em;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.box-case {
	margin: 1.2em 2em;
	padding: 1.2em;
}
	
.box-case p {
	font-size: 0.8em;
}
}


/*** ツアーブランド紹介 ***/

/* 枠 */
.box {
	position: relative;
	margin: 2em auto;
	padding: 1.2em;
	width: 100%;
	border: 1px solid #47885E; /* 枠線の太さ・色 */
	color: #333333; /* 文字色 */
	background-color: #fff;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
	z-index: -10;
}

.box-title {
	position: absolute;
	left: 20px;
	top: -15px;
	padding: 0 .5em;
	font-weight: bold;
	font-size: 1.1em;
	color: #47885E; /* タイトル色 */
	background-color: #fff;
}


/*480px以下*/
@media screen and (max-width: 480px){
.box p {
	font-size: 0.8em;
}
}

.box p {
    margin: 0; 
    padding: 0;
}

/* アイコン配置 */
.brand-icon {
	position: absolute;
	right: 0;
	top: 5%;
	z-index: 10;
	width: 15%
}


.brand-icon img {
	width: 100%
}


/*** その他できること紹介 ***/

/* 大きな枠 */
.box-big {
	position: relative;
	margin: 2em auto;
	padding: 1.2em;
	width: 100%;
	color: #333333; /* 文字色 */
	background-color: #D6E9CA;
	box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
	text-align: center;
	z-index: -10;
}

.others-title p {
	font-size: 1.8em;
	font-weight: bold;
	color: #00552E;
	margin-top: 0;
	line-height: 1.3em;
}

/*480px以下*/
@media screen and (max-width: 480px){
.others-title p {
	font-size: 1.4em;
}
}

/*410px以下*/
@media screen and (max-width: 410px){
.others-title p {
	font-size: 1.1em;
}
.others-details p {
	font-size: 0.6em;
}
}

.business-image {
	filter: drop-shadow(5px 5px 5px #aaa);
}

/* 装飾配置 */
.deco1 {
	position: absolute;
	right: -10%;
	bottom: -5%;
	z-index: 10;
	width: 25%;
}

.deco1 img {
	width: 100%;
}

.deco2 {
	position: absolute;
	left: 0;
	top: -10%;
	z-index: 10;
	width: 25%;
}

.deco2 img {
	width: 100%;
}


.deco3 {
	position: absolute;
	right: -5%;
	top: 5%;
	z-index: 10;
	width: 25%;
}

.deco3 img {
	width: 100%;
}


/*** snsリンク ***/

.sns-links {
	margin: 0 10em 0 10em;
	background-color: #f6f6f6;
	border-radius: 18px;
	padding-top: 1.5em;
}


/*1023px以下*/
@media screen and (max-width: 1023px){
.sns-links {
	margin: 0 4em 0 4em;
	padding-top: 1.5em;
}
}

/*834px以下*/
@media screen and (max-width: 834px){
.sns-links {
	margin: 0 2em 0 2em;
	padding: 1em 0 2em 0;
}
}


.heading-sns {
	text-align: center;
}

.heading-sns p {
	font-size: 3em;
	font-weight: bold;
}

.sns-account {
	text-align: center;
}

.sns-account p {
	font-size: 1.2em;
	font-weight: bold;
	margin-top: 1em;
	margin-bottom: 0;
}

.sns-account img {
	width: 18%;
	margin-bottom: 0.5em;
}

.sns-icon, .sns-icon-youtube {
	text-align: center;align-content
}

 .sns-icon-youtube {
	margin-top: 1em;
}

.sns-icon img {
	width: 8%;
	margin: 0 2em 0 2em;
}

.sns-icon a {
	text-decoration-line: none;
}


.sns-icon-youtube img {
	width: 85%;
}


/*783px以下 (縦並び)*/
@media screen and (max-width: 783px){
.sns-icon, .sns-icon-youtube {
	text-align: center;
}

.sns-account img {
	width: 20%;
	margin-bottom: 0.5em;
}

.sns-icon img {
	width: 10%;
	margin: 0 1.2em 0 1.2em;
}	
	
.sns-icon-youtube img {
	width: 85%;
}


}

/*480px以下 (縦並び)*/
@media screen and (max-width: 480px){
.sns-icon img {
	margin: 0 0.5em 0 0.5em;
}
}


/* ホバー時拡大する */

.sns-icon a :hover {
	transform: scale(1.1,1.1);
	transition: all 0.4s;
	opacity: 0.5;
}

.sns-icon-youtube a :hover {
	transform: scale(1.1,1.1);
	transition: all 0.4s;
	opacity: 0.5;
}



/*** ハーブ香房づくり説明 ***/

.herb-maison p {
	text-align: center;
	font-size: 1.2em;
	margin-left: 1em;
	margin-right: 1em;
}

/*1023px以下*/
@media screen and (max-width: 1023px){
.herb-maison p {
	font-size: 1em;
}
}

/*834px以下*/
@media screen and (max-width: 834px){
.herb-maison p {
	font-size: 0.8em;
}
}

/*480px以下*/
@media screen and (max-width: 480px){
.herb-maison p {
	font-size: 0.6em;
}
}
	
/*** 檜原村について ***/

.hinohara-bg {
	background-image: url(https://specialites.tokyo/wp-content/uploads/2024/03/henbori.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	z-index: -100;
	filter: brightness(40%);
}

.hinohara-title {
	text-align: center;
	color: #fff;
	margin-top: 3em;
}

.hinohara-title p {
	font-size: 2em;
	font-weight: bold;
}

.hinohara-copy, .hinohara-note {
	text-align: center;
	color: #fff;
}

.hinohara-note {
	font-size: 0.8em;
}



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

.contact-bg {
	background-image: linear-gradient(to top, rgba(255,255,255,0.25) 65%, rgba(255,255,255,0.3) 70%, rgba(255,255,255,0.8) 80%, rgba(255,255,255,1) 95%), url(https://specialites.tokyo/wp-content/uploads/2024/03/contact.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	min-height: 100vh;
	z-index: -100;

}

.contact-title {
	text-align: center;
	color: #fff;
	margin-top: 10em;
}

.contact-title p {
	font-size: 2em;
	font-weight: bold;
}

.contact-info {
	text-align: center;
	color: #fff;
	line-height: 1.4em;
}

/* メール送信リンク */

.contact-mail {
	text-align: center;
}

.contact-mail a {
	display: inline-block;
	color: #fff;
	text-decoration: none;
	position: relative;
	transition: .3s;
}

.contact-mail a::after {
	position: absolute;
	bottom: 0;
	left: 50%;
	content: '';
	width: 0;
	height: 1px;
	background-color: #fff;
	transition: .3s;
	transform: translateX(-50%);
}

.contact-mail a:hover::after {
	width: 100%;
}


/***************************
 * フッター
 **************************/

.footer {
	margin: 0;
	padding: 0;
	background-color: #fff;
}

.footer-bottom {
	margin: 0;
	padding: 0;
}

.footer-bottom-content {
	float: none;
	text-align: center;
}

.copyright {
    margin-bottom: 8px;
}

.footer .logo {
   display: none;
}