@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Template:   cocoon-master
Version:    1.1.0
*/


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

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

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

/*768px以下*/
@media screen and (max-width: 768px){
/*横書き*/
.tate-all {
writing-mode: lr-tb;
font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
}

/*769px以上*/
@media screen and (min-width: 769px){
/*縦書き*/
.tate-all {
 -webkit-writing-mode: vertical-rl;
 -ms-writing-mode: tb-rl;
 writing-mode: vertical-rl;
-webkit-text-orientation: upright;
 text-orientation: upright;
 font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
 max-height: 16em;
}
/*Edgeのみに適応させるcss*/
@supports (-ms-ime-align:auto) {
.box:nth-child(even) .text {
text-align: center;
margin-left: 10%;
	}
	}
}
.text-combine {
-ms-text-combine-horizontal: all;
text-combine-upright: all;
}


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



/*カラム背景色*/
.header-container,
.main,
.sidebar,
.footer {
background-color: #fff;
}
/*フロント固定ページのタイトルを非表示*/
.home.page .entry-title{
  display: none;
}
/*固定ページのタイトルを非表示*/
.page-id-3896 .entry-title{
  display: none;
}
.page-id-8868 .entry-title{
  display: none;
}
/*固定ページの投稿日など非表示*/
.page .date-tags,
.page .author-info {
    display: none;
} 

/*サイドバーのカテゴリーをコンパクトに*/
.widget_recent_entries ul li a,
.widget_categories ul li a,
.widget_archive ul li a,
.widget_pages ul li a,
.widget_meta ul li a,
.widget_rss ul li a,
.widget_nav_menu ul li a{
	padding:0 0px 0;
	margin:0px;
	line-height:2;
}

/*サイドバーの項目間の余白*/
#sidebar .widget {
margin-bottom: 18px;
}

/*サイドバーの見出しを編集*/
.sidebar h3{/*サイドバー見出し*/
	display:inline-block;
	color:#000000;/*文字色*/
	background:#fff;/*背景色*/
	padding:0px 0px 0px 0px;
	line-height:1;
}
/*サイドバーのホバー時のエフェクト*/
.widget_nav_menu ul li a:hover { /*親子共通マウスホバー時*/
background: #e5e5e5;
transition: 0.3s;
color: #000000;
}

/*リンク色*/
a:link {
color: #000000;
}
a:visited{
color: #000000;
}
a:hover {
color: #0000cd;
}
a:active {
color: #ff8000; 
}
a {
text-decoration: none;
}
/*タイトル左右の横線*/
.title-border {
display: flex;
align-items: center;
}
.title-border:before,
.title-border:after {
border-top: 1px solid;
content: "";
flex-grow: 1;
}
.title-border:before {
margin-right: 1rem;
}
.title-border:after {
margin-left: 1rem;
}
/*固定ページの横幅を指定*/
.page-id-3946 #main{
max-width: 65%;
}
.page-id-4298 #main{
max-width: 90%;
}
/*固定ページの中央寄せ*/
.page-id-3946 #main{
margin-left: auto;
margin-right: auto;
}
.page-id-4298 #main{
margin-left: auto;
margin-right: auto;
}
/*固定ページのタイトルを非表示*/
.page-id-2 .entry-title{
  display: none;
}


/*フッターの高さ調整*/
.footer {
padding-bottom: 140px;
}
/*マウスオーバー時に画像を半透明にする*/
a:hover img{
opacity:0.5;
}
/*スマホで画像の横にテキストを回り込ませない*/
@media only screen and (max-width: 600px) {
img.alignright {
	padding: 0 0 10px 0;
	margin: 0 auto;
	display: block;
	}
 
img.alignleft {
	padding: 0 0 10px 0;
	margin: 0 auto;
	display: block;
	}
.alignright {
	float: none;
	}
.alignleft {
	float: left;
	}
}

/*スマホの端末を横にした場合のフォントサイズ調整*/
body        {
    -webkit-text-size-adjust: 100%;
}
/*点線*/
hr.line1{
  border: none;
  border-top: 1px dotted #999;
}
/*行間*/
p.sample1 {
line-height: 0px;
}
/*ページ読み込みの際のエフェクト効果*/
.appear {
	transform-origin:center top;
	animation:show 1s both;
}
span.appear {display:inline-block;}
.d1 {animation-delay:0.1s;}
.d2 {animation-delay:2s;}
.d3 {animation-delay:3s;}
.d4 {animation-delay:4s;}
.d5 {animation-delay:5s;}
@keyframes show {
	0% {
		transform:translate(0,2em);
		opacity:0;
		text-shadow:0 0 0 #0f0;
	}
	50% {
		text-shadow:0 0 0.5em #0f0;
	}
	100% {
		transform:translate(0,0);
		opacity:1;
		text-shadow:none;
	}
}
/*コンテンツ背景色*/
.main{
background-color: #ffffff;
}
.sidebar{
background-color: #ffffff;
}
/*ブラウザ幅100%表示*/
.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: red;
}

/*特定の固定ページのヘッダーナビ非表示*/
.page-id-2353 #navi {
	display:none;
}
.page-id-2355 #navi {
	display:none;
}
.page-id-2358 #navi {
	display:none;
}
/*特定の固定ページのフッターナビ非表示*/
.page-id-2353 #footer {
	display:none;
}
.page-id-2355 #footer {
	display:none;
}
.page-id-2358 #footer {
	display:none;
}

/*特定の固定ページのパンくずリスト非表示*/
.page-id-2353 #breadcrumb {
	display:none;
}
.page-id-2355 #breadcrumb {
	display:none;
}

.page-id-2358 #breadcrumb {
	display:none;
}


/*スクロールでふわっとフェードするアニメーション*/
.fadeIn {
  transition: 2s;
  opacity: 0;
}

.fadeIn.animated {
 opacity: 1;
}


/*サイトのタイトル非表示*/
.site-name-text{
  display: none;
}

/*アピールエリアのコンテンツを表示するための半透明の白いボックスを非表示*/
.appeal-content{
  display:none;
}

/* アピールエリア周り（追加） */
#appeal{
 min-height: 0px;
}
.appeal-content{
  display:none;
}
/* アピールエリア周り */
#appeal{
 min-height: 0px;
  background-size:auto auto; /*追加*/
}
.appeal-content{
  display:none;
}

/*カラム幅からはみ出して画面一杯に表示する*/
.fluid-box{
width: 100vw;
position: relative;
left: 50%;
transform: translateX(-50%);
padding: 0px;
}
.fluid-box-inner{
 margin: 0 auto;
 padding: 40px;
 background-color: #000000;
}

/*サイト名のフォント指定*/
.site-name-text{
font-family: 'Open Sans', sans-serif;
font-size: 30px;
letter-spacing: 0.2em;
color:#000000;
}

/*Barlowフォント*/
.text {
font-family: 'Barlow', sans-serif;
letter-spacing: 0.1em;
font-weight: 600;
}

/*ホバー時に浮き上がるアニメーション*/
.img_wrap{
  margin: 0px auto 0;
  transition-duration: 0.2s;
}
.img_wrap img{

  cursor: pointer;
}
.img_wrap:hover{
  transform: translateY(-10px);
  transition-duration: 0.2s;
}

/*ホバー時に左からアンダーラインが出るアニメーション*/
.hover {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.hover::after {
  position: absolute;
  bottom: -4px;
  left: 0px;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
transition: transform .3s;
}
.hover:hover::after {
  transform: scale(1, 1);
}
a:hover{
color : #000000;
}

/*ヘッダーメニューのホバー時のリンク色*/
.header-menu:hover {
	color: #a4a4a4;
}


/*レスポンシブ交互表示*/
.box {
display:flex;
flex-direction: row;
justify-content: space-between;
margin-bottom: 0px;
}
.text1 {
width: 60vw;
font-size: 20px;
margin-top: 0px;
text-align: center;
}
.text2{
width: 60vw;
margin-right: 3%;
}
.box:nth-child(even) {
flex-direction: row-reverse;
}
.box:nth-child(even) .text {
text-align: center;
}
.box:nth-child(even) .text2 {
margin-left: 3%;
}


@media (max-width:768px) {
.box {
flex-direction: column;
  }
	
.box:nth-child(even) {
flex-direction: column;
  }

.text1_rsp {
text-align: center;
font-size: 16px;
font-weight: bold; 
margin: 0 auto;
margin-bottom: 10px;
width: 80%;
	
  }
.box:nth-child(even) .text {
text-align: center;
font-size: 16px;
font-weight: bold; 
margin: 0 auto;
margin-bottom: 10px;
width: 80%;
  }
	
.text2_rsp {
margin: 0 auto;
width: 80%;
  }
	
.box:nth-child(even) .text2{
margin: 0 auto;
width: 80%;
  }
}

/*レスポンシブ横並びコンテンツ*/
.wrap-float{
  overflow: hidden;
  width: 860px;
  margin-left: auto;
  margin-right: auto;
}
.left-content{
  float: left;
  width: 400px;

}
.right-content{
  float: right;
  width: 400px;
}
.right-content li a{
  display: block;
 height: 44px;
line-height: 44px;
  text-decoration: none;
}

/* スマホ　767px以下 */
@media only screen and (max-width: 767px) {
  .wrap{
    width: 100%;
  }
  .left-content{
    float: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  .right-content{
    /*　floatを解除 */
    float: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
	margin-bottom: 30px;
  }
}

/*全ページのタイトル非表示*/
.entry-title{ 
	display: none;
}

/*グローバルメニュー用フォント*/
.text_menu{
  font-family: -apple-system, blinkMacSystemFont, /* Macの欧文はSan Francisco (OS X 10.11以降) */
               'Helvetica Neue',            /* Macの欧文 (OS X 10.10以前) */
               'Segoe UI',                  /* Windowsの欧文 */
               'Hiragino Kaku Gothic ProN', /* Macのヒラギノ */
               Meiryo,                      /* Windowsのメイリオ */
               sans-serif;
	color:#333;
	font-size:12px;
	letter-spacing:0.1em;
}



/*文字の太さを600に変更*/
span.sample600 {
	font-weight: 500;
	color: black;
}


@font-face{
    font-family: 'Roboto', sans-serif;
}

/*==================================================
スライダーのためのcss
===================================*/


/*画像の横幅を100%にしてレスポンシブ化*/
.garelly li img{
	width: 100%;
	height: auto;
	vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/

.gallery{
	margin:0 0 5px 0;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
	z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
	cursor: pointer;
	outline: none;
	background:#333;
	width:15%!important;
}

.choice-btn li img{
	opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
	opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
	transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}


/*========= レイアウトのためのCSS ===============*/

/*エリア全体を中央寄せ*/
.wrapper{
	width:94%;
	max-width:900px;
	margin:0 auto;
}

ul{
	margin:0;
	padding: 0;
	list-style: none;
}

a{
	color: #333;
}

a:hover,
a:active{
	text-decoration: none;
}

h1{
	text-align: center;
	font-size:6vw;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	margin:30px 0;
}

p{
	margin:30px 0;
	word-wrap : break-word;
}

/*スライドのキャプション*/
figure{
	text-align:center;
}
figcaption{
	color:grey;
	font:11px arial;
	margin: 10px 0 10px 0;
}

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

.greymidashi {
background-color:#00000000 !important;
color: #2b2b2b !important;
line-height: 1.6 !important;
font-size: 20px !important;
}

.center{
　text-align:center;
}


/*ボックスメニュー*/	
.box-menu{
	padding: 0;
	min-height: 0;
	 box-shadow:none;
	}
	
	.box-menu:hover{
	box-shadow: none;
	opacity: 0.5;
	}

.box-menu-label,
	.box-menu-description{
	color: #000000;　
	font-size: 18px; 
	}

.box-menu-icon *{
	margin: 0;
	max-width: 100%;
	max-height: 220px;
}	


@media screen and (min-width: 480px){
.wwa .box-menu{
	width: 14%;
	margin-right: 3%;
}
.box-menu:last-child{
	margin-right: 0px;
}
}

@media screen and (max-width: 769px){
.wwa .box-menu{
	width: 46%;
	margin-bottom: 3%;
	margin-left: 2%; 
	margin-right: 2%;
}
	


