@charset "UTF-8";

/*!
Theme Name: 海宝寺
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: 熊本
Template:   cocoon-master
Version:    1.1.3
*/

/***********************************************************
* Cocoon cssリセット
***********************************************************/
.content { margin-top: 0;}
.wrap { width: 100% !important;}
.main { padding: 0 !important; border: none !important;}
.article { margin-bottom: 0 !important;}

@media screen and (max-width: 480px) {
    .body, .menu-content {
        font-size: .9em;
    }
}

/***********************************************************
* Base
***********************************************************/
body,
html {
	width:100%;
	height:100%;
    margin: 0;
    padding: 0;
    font-family: "Noto Sans JP", sans-serif, "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-weight: 500;
	font-size: 16px;
	line-height: 1.9;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	/*background-color: #000;*/
	/*scroll-behavior: smooth;*/
}
body.home { background-color: #000;}
ul,li { list-style: none; margin: 0; padding: 0;}
img { border:0; -ms-interpolation-mode: bicubic; vertical-align: bottom;}
a { text-decoration: none;}
a:hover {}
h1,h2,h3,h4,h5,h6,ul,ol,li,dl,dt,dd,p {
	padding: 0;
	margin: 0;
	font-weight: 500;
	font-size: 1em;
}
@media screen and (max-width:1024px){
    body,
    html { font-size: .95em;}
}
@media screen and (max-width:870px){
    body,
    html { font-size: .95em;}
}
@media screen and (min-width: 750px) {
	/*--- 750px以上はtelリンク無効 ---*/
	a[href^="tel:"] {
		pointer-events: none;
	}
}
@media screen and (max-width:500px){
    body,
    html { font-size: .9em;}
}

/*-----------------------------------------------
clearfix
-----------------------------------------------*/
.clearfix:after {
	content:".";
	height:0;
	clear:both;
	display:block;
	visibility:hidden;
}
/* IE */
.clearfix { display:inline-block;}
/* MacIE \*/
* html .clearfix {height: 1em;}
.clearfix {display: block;}

/*-----------------------------------------------
 画像hover
-----------------------------------------------*/
a.linkimg {
	cursor: pointer;
	transition-duration: 0.3s;
}
a.linkimg:hover {
	opacity: 0.7;
	transition-duration: 0.3s;
}
.linkimg img {
	cursor: pointer;
	transition-duration: 0.3s;
}
.linkimg:hover img {
	opacity: 0.7;
	transition-duration: 0.3s;
}
img.linkimg {
	cursor: pointer;
	transition-duration: 0.3s;
}
img.linkimg:hover {
	opacity: 0.7;
	transition-duration: 0.3s;
}
/*-----------------------------------------------
 ボタンhover
-----------------------------------------------*/
/*  arrow */
.arrow{
	position: relative;
	display: inline-block;
	/*padding-left: 20px;*/
}
.arrow::before {
	content: '';
	display: block;
	width: 7px;
	height: 7px;
	border-top: solid 1.5px #333;
	border-left: solid 1.5px #333;
}
.arrow-right::before {
	transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	position: absolute;
    right: 0%;
    top: 48%;
    margin-top: -4px;
    transition: all .2s;
}
.arrow-left::before {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
    left: 0%;
    top: 48%;
    margin-top: -4px;
    transition: all .2s;
}
@media screen and (max-width:870px){
.arrow::after { width: 10px; height: 10px;}
}

/*-----------------------------------------------
 animation
-----------------------------------------------*/
/* フェードup*/ 
.fadeup {
    opacity: 0;	
    animation: fadeUp 1s ease 0s normal;
    -webkit-animation: fadeUp 1s ease 0s normal;
    animation-fill-mode: forwards;
}
.fadeup_top {
    opacity: 0;	
    animation: fadeUp 1.3s ease .5s normal;
    -webkit-animation: fadeUp 1.5s ease .5s normal;
    animation-fill-mode: forwards;
	will-change: transform;
}
.fadeup_top2 {
    opacity: 0;	
    animation: fadeUp 1.3s ease 1s normal;
    -webkit-animation: fadeUp 1.5s ease 1s normal;
    animation-fill-mode: forwards;
	will-change: transform;
}
@keyframes fadeUp {
    0% {opacity: 0; transform: translateY(50px);}
    100% {opacity: 1; transform: translateY(0);}
}
@-webkit-keyframes fadeUp { /*旧ブラウザ用*/
    0% {opacity: 0; transform: translateY(50px);}
    100% {opacity: 1; transform: translateY(0);}
}
/* フェードdown*/ 
.fadedown {
    opacity: 0;	
    animation: fadeDown 1.0s ease 0s normal;
    -webkit-animation: fadeDown 1s ease 0s normal;
    animation-fill-mode: forwards;
}
.fadedown_top {
    opacity: 0;	
    animation: fadeDown 1s ease 1.5s normal;
    -webkit-animation: fadeDown 1s ease 1.5s normal;
    animation-fill-mode: forwards;
}

@keyframes fadeDown {
    0% {opacity: 0; transform: translateY(-50px);}
    100% {opacity: 1; transform: translateY(0);}
}
@-webkit-keyframes fadeDown { /*旧ブラウザ用*/
    0% {opacity: 0; transform: translateY(-50px);}
    100% {opacity: 1; transform: translateY(0);}
}
/* スクロールフェードup*/ 
.fadeup_scroll {
	opacity : 0;
	transform : translate(0, 50px);
	transition : all 1s;
	}
.fadeup_scroll.scrollin {
	opacity : 1;
	transform : translate(0, 0);
	}
/* スクロールフェード少し遅らせる用 */
.fadeup_scroll_late {
	opacity : 0;
}
.fadeup_scroll_late.scrollin {
    animation: fadescrollin 1s ease .2s normal;
    -webkit-animation: fadescrollin 1s ease .2s normal;
    animation-fill-mode: forwards;
	}
@keyframes fadescrollin {
    0% {opacity: 0; transform : translate(0, 50px);}
    100% {opacity: 1; transform : translate(0, 0);}
}
@-webkit-keyframes fadescrollin {/*旧ブラウザ用*/
    0% {opacity: 0; transform : translate(0, 50px);}
    100% {opacity: 1; transform : translate(0, 0);}
}
/* フェードin*/
.fadein {
    animation: fadeIn 1.5s ease 0s normal;
    -webkit-animation: fadeIn 1.5s ease 0s normal;
}
@keyframes fadeIn {
    0% {opacity: 0;}
    100% {opacity: 1;}
}
@-webkit-keyframes fadeIn {/*旧ブラウザ用*/
    0% {opacity: 0;}
    100% {opacity: 1;}
}

/***********************************************************
* ナビゲーション
***********************************************************/
main {
    display:block;
    z-index: 2;
    /*position: relative;*/
    /*height: 100%;*/
    -webkit-transition: transform .7s ease-in-out;
    -moz-transition: transform .7s ease-in-out;
    -ms-transition: transform .7s ease-in-out;
    -o-transition: transform .7s ease-in-out;
    transition: transform .7s ease-in-out;
	background-image: url("img/bg.jpg");
	background-size: 100px;
	background-position: left top;

}
.home main { background: none; background-color: #000;}

.logo_top { position: relative;}
.logo_top .logo { position: absolute; left: 40px; top: 25px; z-index: 1;}
.logo_top .logo img { width: 160px; height: auto;}

#logoArea { display: none;}
.navbox { position: relative;}
.menu { position: absolute; top: 20px; right: 30px; z-index: 1;}
/*.home*/ .menu li:first-of-type { display: none;}
.menu-item { display: inline-block; position: relative; margin: 0 10px;}
.menu-item a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	color: #333;
	/*filter: drop-shadow(0 0 15px #111);*/
}
.home .menu-item a{ color: #fff;}
.menu-item a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #333;
  bottom: 0; /*アンダーラインが現れ始める位置（aタグの下辺からの高さ）*/
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  }
.home .menu-item a::after { background: #fff;}
.menu-item a:hover::after {
  visibility: visible;
  bottom: -3px; /*アニメーションが止まる位置*/
  opacity: 1;
  }

@media screen and (min-width:1366px){
	.menu-item a {font-size: 17px;}
	.logo_top .logo img { width: 170px;}
}
@media screen and (max-width:870px){
    #logoArea { display: block;}
    .menu li:first-of-type { display: block;}
    .navbox { position: fixed;}
	
    nav {
        height: 100%;
        width: 100%;
        max-width: 400px;
        position: fixed;
        top: 0;
        right: 0;
        left: auto;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        transform: translate(0, 0);
        z-index: 2;
        font-size: 1.15em;
        overflow-y: scroll;
        -ms-overflow-style: none; /*IE Edge*/
        scrollbar-width: none; /*Firefox*/
        background-color: #fff;
        transition: all .5s 0s ease;
        overflow: auto;
        right:-400px;
    }
    nav.active { 
        right: 0;
    }
    .bar {
        display: block;
        height: 3px;
        width: 40px;
        margin: 9px auto;
        background-color: #333;
    }
	.home .bar { background-color: #fff;}
    .button {
        cursor: pointer;
        display: inline-block;
        width: auto;
        margin: 0 auto;
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -ms-transition: all .7s ease;
        -o-transition: all .7s ease;
        transition: all .7s ease;
        position: absolute;
        opacity: 1;
    }
    .nav-right {
        position: fixed;
        left: calc(100vw - 4.5em);
        top: 20px;
    }
    .nav-right.visible-xs { z-index: 3;}
    .middle { margin: 0 auto;}
    .bar {
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -ms-transition: all .7s ease;
        -o-transition: all .7s ease;
        transition: all .7s ease;
    }
    .nav-right.visible-xs .active .bar {
        -webkit-transition: all .7s ease;
        -moz-transition: all .7s ease;
        -ms-transition: all .7s ease;
        -o-transition: all .7s ease;
        transition: all .7s ease;
        background-color: #999;
    }
    .button.active .top {
        -webkit-transform: translateY(14px) rotateZ(45deg);
        -moz-transform: translateY(14px) rotateZ(45deg);
        -ms-transform: translateY(14px) rotateZ(45deg);
        -o-transform: translateY(14px) rotateZ(45deg);
        transform: translateY(14px) rotateZ(45deg);
    }
    .button.active .bottom {
        -webkit-transform: translateY(-10px) rotateZ(-45deg);
        -moz-transform: translateY(-10px) rotateZ(-45deg);
        -ms-transform: translateY(-10px) rotateZ(-45deg);
        -o-transform: translateY(-10px) rotateZ(-45deg);
        transform: translateY(-10px) rotateZ(-45deg);
    }
    .button.active .middle {
      width: 0;
    }
    .move-to-left {
        -webkit-transform: translateX(-400px);
        -moz-transform: translateX(-400px);
        -ms-transform: translateX(-400px);
        -o-transform: translateX(-400px);
        transform: translateX(-400px);
    }
    .menu { text-align: center; padding-top: 70px; position: static;}
    .menu-list {
        padding: 0;
        margin: 0;
        list-style: none;
        position: relative;
        margin-top: 150px;
        text-align: center;
    }
    .menu-anchor {
        text-decoration: none;
        position: relative;
        /*padding-bottom: 7px;*/
    }
    .menu-item {
        display: block;
        line-height: inherit;
        margin-left: 0;
        float: none;
        margin: 30px 0;
        padding: 0;
        /*opacity: 0;*/
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
    }
    .menu-item.active {
      opacity: 1;
    }
      .menu-sns {
        float: none;
        margin-right: 0;
        text-align: center;
        display: block;
        line-height: 68px;
        -webkit-transform: translateY(-20px);
        -moz-transform: translateY(-20px);
        -ms-transform: translateY(-20px);
        -o-transform: translateY(-20px);
        transform: translateY(-20px);
        margin-top: 50px;
    }
    .menu-sns.active {
        opacity: 1;
    }
	.home .menu-item a{ color: #333;}
    .menu-item a { font-weight: 400; display: block; color: #333; display: block; filter: none; font-size: 17px;}
	.menu-item a::after { background: none;}
    .logo_top .logo { left: 30px; top: 20px;}
    .logo_top .logo img { width: 150px;}

}
@media screen and (max-width:670px){
    .logo_top .logo img { width: 140px;}
}
@media screen and (max-width:500px){
	nav { max-width: 100%; right:-100%;}
	.bar { width: 35px; margin: 9px auto;}
	.nav-right { left: calc(100vw - 4.3em); top: 15px;}
	.menu { font-size: 16.5px;}
	.menu-item { margin: 20px 0;}
	.logo_top .logo { left: 20px; top: 15px;}
    .logo_top .logo img { width: 130px;}

}

/***********************************************************
* 共通
***********************************************************/
/*#main { overflow: hidden;}*/
.shadow { filter: drop-shadow(0 0 6px #111);}
.center { display: block; text-align: center; margin: 0 auto;}
.pc { display: block;}
.sp { display:none;}

@media screen and (max-width:500px){
.sp { display: block;}
.pc { display:none;}
}

/***********************************************************
* トップ
***********************************************************/
.home { color: #ffffff;}
#section1 {
    position: relative;
	height: 98vh;
    height: 98svh;
    width: 100%;
    min-height: 560px;
}
#section1 .logo {
    position: absolute;
    top: 26%;
    left: 50%;
	width: 120px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
	z-index: 1;
}
#section1 .logo img { width: 100%; height: auto; will-change: transform;}
#section1 .round {
	position: absolute;
	bottom: 0;
	background:url("img/lound.png");
    width: 100%;
	height: 98vh;
    height: 98svh;
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
	pointer-events: none;
	z-index: 1;
	min-height: 560px;
}
#section1 .round img { width: 100%; height: auto; vertical-align: bottom;}
#section1 .fukusuke {
    position: absolute;
	bottom: 1.5vh;
    bottom: 1.5svh;
    left: 50%;
	width: 160px;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
	animation: fukusuke_mov 5s ease infinite;
	z-index: 1;
}
#section1 .fukusuke img { width: 100%; height: auto; vertical-align: bottom; will-change: transform;}
@keyframes fukusuke_mov {
  0% { transform:translate(-50%, 0) }
  5% { transform:translate(-50%, 0) }
  10% { transform:translate(-50%, 0) }
  20% { transform:translate(-50%, -5px) }
  25% { transform:translate(-50%, 0) }
  33% { transform:translate(-50%, -5px) }
  50% { transform:translate(-50%, 0) }
  100% { transform:translate(-50%, 0) }
}

	
/* Slick */
.slick-slide { height: 95vh; height: 95svh !important; min-height: 560px;}
.slider {
    position: relative;
	height: 95vh;
    height: 95svh;
    width: 100%;
    min-height: 560px;
}
.slider-item01 { background:url(img/sl_img01.jpg);}
.slider-item02 { background:url(img/sl_img02.jpg);}
.slider-item03 { background:url(img/sl_img03.jpg);}
.slider-item04 { background:url(img/sl_img04.jpg);}
.slider-item {
    width: 100%;
	height: 95vh;
    height:95svh !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
	min-height: 560px !important;
}
.slick-list {
    margin-right: 0px;
	height: 95vh;
	height: 95svh;
	min-height: 560px;
}
@media screen and (min-width:1366px){
    #section1 .logo { width: 130px;}
}
@media screen and (max-width:870px){
    #section1,
    #section1 .round { height: 95vh; height: 95svh;}
    .slider,
    .slider-item,
	.slick-list,
    .slick-slide { height: 94vh; height: 94svh !important;}
    #section1 .fukusuke { bottom: -1vh; bottom: -1svh; width: 160px;}
/*    #section1 .logo { width: 110px;}
    #section1 .fukusuke { width: 150px;}*/
}
/*iPad Pro 縦向き*/
@media (max-device-width: 1376px) and (orientation: portrait) {
    #section1 .logo { width: 150px;}
    #section1 .fukusuke { width: 190px;}
}
/*iPad Air 縦向き*/
@media (max-device-width: 820px) and (orientation: portrait) {
    #section1 .logo { width: 140px;}
    #section1 .fukusuke { width: 170px;}
}
/*iPad Air 縦向き*/
@media (max-device-width: 768px) and (orientation: portrait) {
    #section1 .logo { width: 120px;}
    #section1 .fukusuke { width: 160px;}
}
/*iPad Air 横向き*/
@media (max-device-width: 1024px) and (orientation: landscape) {
    #section1 .logo { width: 105px;}
    #section1 .fukusuke { width: 140px;}
}
@media screen and (max-width:500px){
    #section1,
    #section1 .round { min-height: auto !important;}
    .slider,
    .slider-item,
	.slick-list,
    .slick-slide { min-height: auto !important;}
    #section1 .logo { width: 105px;}
    #section1 .fukusuke { bottom: -2vh; bottom: -2svh; width: 130px;}
}
@media screen and (max-width:375px){
    #section1 .logo { width: 95px;}
    #section1 .fukusuke { width: 120px;}
}

/***********************************************************
* 海宝寺について
***********************************************************/
#section2 { padding: 80px 0; margin: auto; width: 85%; max-width: 1200px;}
#section2 .title { text-align: center;}
#section2 .title img { width: 210px; height: auto;}
#section2 .subtitle { color: #d1ba6e; font-size: 1.2em; margin-top: 5px;}
#section2 .content {
	display: flex; 
	justify-content: space-between;
	margin: 70px 0 0;
}
#section2 .content .text { width: 52%; line-height: 2.2; font-weight: 400; text-align: justify;}
#section2 .content .text p { font-weight: 700; font-size: 1.25em; margin-bottom: 30px;}
#section2 .content .photo { width: 40%;}
#section2 .content .photo img { width: 100%; height: auto;}

#section3 {
	display: flex; 
	justify-content: space-between;
	overflow: hidden;
    background-image: url("img/cloud.png");
	background-position: top 150px right -30px;
	background-size: 20% auto;
	background-repeat: no-repeat;
	overflow: hidden;
}
#section3 .content { width: 100%; max-width: 1200px; margin: auto;}
#section3 .photo { width: 75%;}
#section3 .photo img { width: 100%; height: auto; max-width: 1150px;}
#section4 { margin: 100px 0 100px;}
#section4 .photo img { width: 100%; height: auto; max-height: 800px; object-fit: cover;}
#section4 .content { padding: 60px 0 0; margin: auto; width: 85%; max-width: 1200px;}
#section4 .content .text { /*width: 650px;*/ line-height: 2.2; font-weight: 400;}
#section4 .content .text p { font-weight: 700; font-size: 1.25em; margin-bottom: 30px;}
#section4 .content .photo2 { margin: 70px 0 0;}
#section4 .content .photo2 img { width: 100%; height: auto;}

@media screen and (max-width:1024px){
    #section2 { padding: 50px 0; width: 87.5%; margin-top: 20px;}
    #section2 .title img { width: 185px;}
	#section3 { background-position: top 100px right -30px;}
	#section4 { margin: 60px 0;}
	#section4 .content { width: 87.5%; padding: 40px 0 0;}
	#section4 .content .text p {margin-bottom: 20px;}
	#section4 .content .photo2 { margin: 50px 0 0;}
}
@media screen and (max-width:870px){
}
@media screen and (max-width:670px){
	#section2 .content { display: block; margin: 30px 0 0;}
	#section2 .content .text { width: 100%;}
    #section2 .content .text p { font-weight: 500; margin-bottom: 15px; text-align: center;}
    #section2 .content .photo { width: 100%; margin: 50px 0 0; text-align: right;}
	#section2 .content .photo img { width: 65%; max-width: 300px;}
	#section3 { display: block; background-image: none;}
    #section3 .photo { width: 93.5%;}
	#section4 .content .text br { display: none;}
    #section4 .content .text { width: 100%; text-align: justify;}
}
@media screen and (max-width:500px){
    #section2 { padding: 50px 0 30px;}
    #section2 .title img { width: 165px;}
	#section2 .subtitle { font-size: 1.1em;}
	#section2 .content .text { line-height: 2;}
    #section2 .content .photo { margin: 30px 0 0;}
    #section4 { margin: 40px 0 0px;}
	#section4 .photo { overflow: hidden;}
    #section4 .photo img { width: 110%; margin-left: -5%; max-width: inherit;}
    #section4 .content { padding: 20px 0 40px;}
    #section4 .content .text { line-height: 2;}
    #section4 .content .text p { font-weight: 500; margin-bottom: 15px;}
    #section4 .content .photo2 { margin: 30px 0 0;}
}

/***********************************************************
* トップ お知らせ
***********************************************************/
#section5 {
    background-image: url("img/bg.jpg");
	background-size: 100px;
	padding: 80px 0;
	text-align: center;
	position: relative;
	color: #333;
}
#section5 .title img { width: 210px; height: auto;}
#section5 .subtitle { color: #8a7900; font-size: 1.2em; font-weight: 500; margin-bottom: 50px; margin-top: 3px;}
#section5 .tree { position: absolute; right: 40px; bottom: -40px; width: 170px;}
#section5 .tree img { width: 100%; height: auto;}

#section5 .slider-topics ul { margin: 0 20px;}
#section5 .thumbnail img { width: 100%; height: auto; border-radius: 6px;
	object-fit: cover;/* 縦長画像をトリミング */
	aspect-ratio: 1 / 1;/* アスペクト比 */
}
#section5 .slider-topics .slick-slide { height: auto !important;}
#section5 ul { text-align: left;}
#section5 ul .category {
	display: inline-block;
	background-color: #333;
	color: #fff;
	padding: 5px 15px 6px;
	line-height: 1;
	border-radius: 30px;
	font-size: .9em;
	margin: 30px 0 10px;
}
#section5 ul .day { color: #666;}
#section5 ul .title { margin-top: 5px;}
#section5 ul .title a { color: #333; font-weight: 500;}
#section5 .more_btn a {
    display: inline-block;
	background-color: #fff;border: 1px solid #888;
	padding: 10px 35px 11px 50px;
	line-height: 1;
	border-radius: 30px;
	font-size: 1em;
	margin: 50px 0 0;
	color: #333;
}
#section5 .more_btn .arrow-right::before { left: 30px;}

@media screen and (max-width:1024px){
	#section5 { padding: 60px 0;}
    #section5 .title img { width: 185px;}
	#section5 .subtitle { margin-bottom: 40px;}
	#section5 ul .category { margin: 20px 0 10px;}
	#section5 .more_btn a { margin: 40px 0 0;}
    #section5 .tree { width: 150px; bottom: -40px;}
}
@media screen and (max-width:500px){
	#section5 { padding: 40px 0;}
    #section5 .title img { width: 165px;}
    #section5 .tree { right: 20px; bottom: -30px; width: 110px;}
    #section5 .subtitle { margin-bottom: 20px; font-size: 1.1em;}
	#section5 ul .title { margin-top: 3px;}
	#section5 ul .title a { font-size: 1.1em;}
	#section5 ul .category { margin: 20px 0 5px;}
	#section5 .more_btn a { font-size: 1.1em; margin: 20px 0 0;}
	#section5 .more_btn .arrow-right::before { left: 30px;}
}


/* スライド */
.slider-container-topics{
    display: none;
    position: relative;
    clear:both;
    margin:0 auto;
    line-height:1.5;
	margin: auto;
	width: 85%;
	max-width: 1200px;
}
.slider-container-topics.initialized {
    display:block;
}
.slider-topics {
    /*margin: 0 85px;*/
    overflow: hidden;
    padding: 0 85px;
}
.slider-container-topics .slick-list {
    margin-right: 0px;
	height: auto !important;
	min-height: auto !important;
}
.slider-container-topics .slider-arrow {
    position: absolute;
    top: 25%;
    height: 36px;
    margin-top: -25px;  /* 高さの半分だけネガティブマージン */
    cursor: pointer;
    z-index: 1;  /* 重要 */
    padding: 20px;
    width: 20px;
}
.slider-container-topics .slider-arrow::before {
	content: '';
	display: block;
	width: 25px;
	height: 25px;
	border-top: solid 3px #555;
	border-left: solid 3px #555;
}
.slider-container-topics .slider-arrow.arrow-right::before {
	transform: rotate(135deg);
	-ms-transform: rotate(135deg);
	-webkit-transform: rotate(135deg);
	position: absolute;
    right: 40%;
    top: 40%;
    margin-top: -4px;
    transition: all .2s;
}
.slider-container-topics .slider-arrow.arrow-left::before {
	transform: rotate(-45deg);
	-ms-transform: rotate(-45deg);
	-webkit-transform: rotate(-45deg);
	position: absolute;
    left: 40%;
    top: 40%;
    margin-top: -4px;
    transition: all .2s;
}
.slider-container-topics .slider-prev { left:0px;}
.slider-container-topics .slider-next { right:0px;}
.slider-container-topics .slider-prev img,
.slider-container-topics .slider-next img { width: 22px; height: auto; opacity: .7;}
.slider-container-topics .slick-slide {
    padding: 0;
    outline: 0;
}
.topics .arrow { padding: 0;}
.topics .arrow::after { width: 25px; height: 25px;}

@media screen and (max-width:1100px){
	.slider-container-topics .slider-arrow { top: 26%;}
    .slider-container-topics .slider-arrow::before { width: 21px; height: 21px;}
}
@media screen and (max-width:1024px){
	.slider-container-topics { width: 87.5%; max-width: 800px;}
}
@media screen and (max-width:639px){
	.slider-container-topics { max-width: 450px;}
	.slider-container-topics .slider-arrow { top: 30%; padding: 0;}
}
@media screen and (max-width:500px){
	.slider-topics { padding: 0 40px;}
    .slider-container-topics .slider-arrow::before { width: 15px; height: 15px;}
}

/***********************************************************
* トップ バナー
***********************************************************/
#section6 { padding: 100px 0 50px; margin: auto; width: 85%; /*max-width: 1200px;*/ max-width: 700px;}
#section6 ul {
	display: flex; 
	justify-content: space-between;
}
#section6 ul li { /*width: 47%;*/ font-weight: 400; font-size: .9em; text-align: justify; color: #E3E3E3;}
#section6 ul li img.photo { width: 100%; height: auto; border-radius: 6px; vertical-align: bottom;}
#section6 ul li p { font-weight: 500; margin-top: 5px;}
#section6 .box { position: relative; background-color: #666; border-radius: 6px; margin-bottom: 30px;}
#section6 .jyumokuso img.title {
	position: absolute;
    top: 45%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	display: inline-block;
	width: 44%;
	height: auto;
	filter: drop-shadow(0 0 15px #111);
}
#section6 .rental img.title {
	position: absolute;
    top: 47%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
	display: inline-block;
	width: 40%;
	height: auto;
    filter: drop-shadow(0 0 15px #111);
	pointer-events: none;
}
#section6 .linkimg:hover img {
	opacity: 0.98;
	transition-duration: 0.3s;
}
#section6 .linkimg:hover img.title { opacity: 1;}

@media screen and (max-width:1024px){
    #section6 { padding: 80px 0 40px; line-height: 1.9; width: 87.5%;}
	#section6 .box { margin-bottom: 25px;}
}
@media screen and (max-width:700px){
	#section6 { max-width: 500px;}
	#section6 ul { display: block;}
    #section6 ul li { width: 100%;}
	#section6 .box { margin-bottom: 20px;}
	#section6 .jyumokuso { margin-bottom: 40px;}
}
@media screen and (max-width:500px){
    #section6 { padding: 60px 0 30px;}
	#section6 .jyumokuso img.title { top: 48%; width: 52%;}
	#section6 .rental img.title { top: 48%; width: 47%;}
	#section6 ul li p { margin-top: 0;}
}

/***********************************************************
* 交通アクセス
***********************************************************/
#section7 { padding: 80px 0 80px; text-align: center;}
#section7 .sp { display: none;}
#section7 .title img { width: 210px; height: auto;}
#section7 .subtitle { color: #d1ba6e; font-size: 1.2em; font-weight: 500; margin-bottom: 50px; margin-top: 5px;}
#section7 img.access_img {
	width: 100%;
	height: auto;
	/*max-width: 1500px;*/
	max-height: 800px;
	object-fit: cover;
	margin: auto;
	vertical-align: bottom;
}
#section7 ul {
	display: flex; 
	justify-content: space-between;
	padding: 60px 0 10px;
	margin: auto;
	width: 85%;
	max-width: 1200px;
}
#section7 ul li { font-weight: 400; text-align: left;}
#section7 ul li:first-of-type { width: 50%;}
#section7 ul li:last-of-type { width: 41%; padding-top: 30px;}
#section7 ul li .logo { margin: 0 0 10px 0; text-align: left;}
#section7 ul li .logo img { width: 170px;}
#section7 ul li p { font-size: 1.1em; font-weight: 500; margin: 10px 0;}
#section7 ul li p span { font-size: 1.2em; letter-spacing: 1px;}
#section7 ul li b {
	display: inline-block;
	font-size: 1.05em;
	font-weight: 400;
	border-bottom: 1px solid #fff;
	margin-bottom: 10px;
}
/* Googleマップ */
#section7 .map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
#section7 .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width:1200px){
	#section7 ul li:last-of-type { padding-top: 0; line-height: 1.7;}
}
@media screen and (max-width:1024px){
    #section7 { padding: 50px 0 50px;}
    #section7 .title img { width: 185px;}
	#section7 .subtitle { margin-bottom: 40px;}
	#section7 ul { width: 87.5%; padding: 60px 0 20px;}
	#section7 ul li:first-of-type { width: 52%;}
	#section7 ul li .logo img { width: 150px;}
}
@media screen and (max-width:667px){
	#section7 ul { display: block; width: 100%; padding: 0px 0 0px;}
	#section7 ul li:first-of-type { width: 100%;}
    #section7 ul li:last-of-type { width: 87.5%; margin: auto; padding-top: 30px;}
	/*#section7 ul li:last-of-type p br { display: none;}*/
	#section7 .map { padding-top: 50%;}
}
@media screen and (max-width:500px){
	#section7 { padding: 30px 0 30px; line-height: 1.8;}
	#section7 .pc { display: none;}
	#section7 .sp { display: block;}
    #section7 .title img { width: 165px;}
	#section7 .subtitle { margin-bottom: 20px; font-size: 1.1em;}
	#section7 ul li .logo { margin: 0 0 5px 0;}
	#section7 ul li .logo img { width: 140px;}
	#section7 ul li p { margin: 5px 0;}
	#section7 .map { padding-top: 60%;}
}

/***********************************************************
* お問合せ
***********************************************************/
#section8 {
    background-image: url("img/bg.jpg");
	background-size: 100px;
	padding: 80px 0;
	text-align: center;
	position: relative;
	color: #333;
}
#section8 .title img { width: 215px; height: auto;}
#section8 .subtitle {
	color: #8a7900;
	font-size: 1.2em;
	font-weight: 500;
	margin-bottom: 30px;
	 margin-top: 5px;
}
#section8 .privacy {
	display: inline-block;
	text-align: left;
	font-weight: 400;
	font-size: .85em;
	border: 1px solid #666;
	padding: 20px 40px;
	box-sizing: border-box;
	max-width: 85%;
	margin: auto;
}
#section8 .privacy p { font-weight: 500; font-size: 1.25em; margin-bottom: 6px;}
#section8 .privacy span { display: block;}
.recaptcha { font-size: .85em; font-weight: 400; margin: 15px auto 0; max-width: 87.5%; color: #9c998b;}
.recaptcha a { color: #333; color: #9c998b;}
.grecaptcha-badge { visibility: hidden; }


@media screen and (max-width:1024px){
	#section8 { padding: 60px 0;}
    #section8 .title img { width: 185px;}
	#section8 .privacy { max-width: 87.5%; padding: 15px 30px;}
}
@media screen and (max-width:700px){
	#section8 .recaptcha { text-align: left;}
}
@media screen and (max-width:500px){
	#section8 { padding: 40px 0;}
	#section8 .title img { width: 170px;}
	#section8 .subtitle { font-size: 1.1em; margin-bottom: 20px;}
	#section8 .privacy { padding: 10px 20px;}
}

/* コンタクトフォーム */
.wpcf7 {
	width: 85%;
	margin: auto;
	/*margin-bottom: 30px;*/
}
.wpcf7 ul {
	text-align: left;
	display: flex;
	justify-content: space-between;
	max-width: 700px;
	margin: auto;
	font-size: 17px;
	margin-bottom: 15px;
}
.wpcf7 ul li:first-of-type { width: 30%;}
.wpcf7 ul li:last-of-type { width: 70%;}
.wpcf7 ul input, .wpcf7 ul textarea {
	width: 100%;
	font-family: "Noto Sans JP", sans-serif, "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
	font-size: 16px;
	padding: 6px;
	font-weight: 500;
	color: #333;
	border: 1px solid #aeaeae;
	border-radius: 3px;
}
.wpcf7 ul textarea { height: 150px;}
.wpcf7 .red { display: inline-block; color: #d63828; padding-left: 5px; font-size: 1.2em;}
.wpcf7 .contact_btn .wpcf7-submit {
	padding: 16px 0;
	font-size: 1.25em;
	font-weight: 700;
	background-color: #000;
	color: #fff;border-radius: 5px;
	cursor: pointer;
	line-height: 1;
	margin: 30px auto 15px;
	width: 180px;
	display: block;
}
.wpcf7 .wpcf7-not-valid-tip { font-weight: 500;}
.wpcf7 .wpcf7-response-output { max-width: 820px; margin: 20px auto 30px !important; padding: 10px !important;}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {/* 送信ボタン下未入力警告 */
	border-color: #dc3232;
}
.wpcf7 form.sent .wpcf7-response-output {/* 送信ボタン下完了時 */
    border-color: #be9d00;
}

@media screen and (max-width:1024px){
	.wpcf7 .wpcf7-response-output { max-width: 730px; font-size: 1.1em;}
}
@media screen and (max-width:700px){
	.wpcf7 ul { display: block; font-size: 16px; margin-bottom: 10px;}
    .wpcf7 ul li:first-of-type { width: 100%;}
    .wpcf7 ul li:last-of-type { width: 100%; margin-top: 3px;}
	.wpcf7 ul textarea { height: 100px;}
}
@media screen and (max-width:500px){
}

/***********************************************************
* フッター
***********************************************************/
#section9 {
    background-image: url("img/img06.jpg");
	padding: 80px 0 50px;
	text-align: center;
	color: #fff;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	width: 100%;
	font-weight: 400;
	font-size: 15px;
	line-height: 1.7;
}
#section9 img { vertical-align: bottom;}
#section9 a { color: #fff;}
#section9 a:hover { text-decoration: underline;}
#section9 .logo {}
#section9 .logo img { width: 120px; height: auto;}
#section9 .sns { margin-top: 50px;}
#section9 .sns img { width: 50px; height: auto;}
#section9 .sns a { opacity: .75; transition-duration: 0.3s;}
#section9 .sns a:hover { opacity: 1; transition-duration: 0.3s;}
#section9 p { margin: 20px 0 10px; font-weight: 500; font-size: 1.1em;}
#section9 .copy { font-size: .8em; margin-top: 10px;}

@media screen and (max-width:1024px){
	#section9 { font-size: 14px;}
    #section9 .logo img { width: 100px;}
	#section9 .sns img { width: 45px;}
	#section9 .copy { margin-top: 5px;}
}
@media screen and (max-width:500px){
	#section9 { padding: 60px 0 30px; font-size: 13px;}
	#section9 .logo img { width: 85px;}
	#section9 .sns { margin-top: 40px;}
	#section9 .sns img { width: 40px;}
	#section9 p { margin: 10px 0 0; font-size: 1.15em;}
}


/***********************************************************
* お知らせ 一覧
***********************************************************/
#section_topics {
	padding: 160px 0 100px;
	color: #333;
	max-width: 1000px;
	margin: 0 auto;
    overflow: hidden;
	width: 86%;
}
/*#section_topics img { vertical-align: bottom;}*/
#topics_top { /*max-width: 900px; margin: auto;*/}
#topics_top .page_title { text-align: center; margin: 0 0 90px;}
#topics_top .page_title img { width: 210px; height: auto;}
#topics_top .page_title .subtitle { color: #8a7900; font-size: 1.2em; font-weight: 500;  margin-top: 3px;}

#topics_top .topics .topics_content { display: flex; justify-content: space-between; margin-bottom: 60px;}
#topics_top .topics .topics_content a { color: #333;}
#topics_top .topics .topics_content .thumbnail { width: 40%;}
#topics_top .topics .topics_content .thumbnail img {
	width: 100%;
	height: auto;
	border-radius: 6px;
	object-fit: cover;/* 縦長画像をトリミング */
	aspect-ratio: 4 / 2.675;/* アスペクト比 */
}
#topics_top .topics .topics_content ul { width: 55%; font-size: 1.05em;}
#topics_top .topics .topics_content .text { overflow-wrap: break-word; font-weight: 400;}
#topics_top .topics .topics_content .category {
	display: inline-block;
	background-color: #333;
	color: #fff;
	padding: 5px 15px 6px;
	line-height: 1;
	border-radius: 30px;
	font-size: .9em;
	margin: 0 0 5px;
}
#topics_top .topics .topics_content .day { color: #666; display: inline-block; margin-left: 10px;}
#topics_top .topics .topics_content .title { margin: 15px 0 10px; font-size: 1.15em; font-weight: 600;}

@media screen and (min-width:1366px){
    #topics_top .page_title img { width: 220px;}
}
@media screen and (max-width:1240px){
    /*#section_topics { width: 87.5%;}*/
    #topics_top .page_title img { width: 185px;}
}
@media screen and (max-width:870px){
	#section_topics { padding: 150px 0 80px; /*max-width: 700px;*/}
	#topics_top .page_title { margin: 0 0 70px;}
	/*#topics_top .topics ul { font-size: 1.15em;}*/
}
@media screen and (max-width:700px){
	#section_topics { padding: 130px 0 60px; /*max-width: 400px;*/}
	#topics_top .page_title { margin: 0 0 40px;}
	#topics_top .topics .topics_content { display: block; margin-bottom: 70px;}
    #topics_top .topics .topics_content .thumbnail { width: 100%;}
    #topics_top .topics .topics_content ul { width: 100%; margin-top: 15px; font-size: 1.1em;}
	#topics_top .topics .topics_content .title { margin: 10px 0 8px;}
	#topics_top .topics .topics_content .category { /*font-size: .95em;*/}
}
@media screen and (max-width:500px){
	#section_topics { padding: 120px 0 50px; /*max-width: 300px;*/}
	#topics_top .topics .topics_content { margin-bottom: 60px;}
	/*#topics_top .page_title { margin: 0 0 20px;}*/
	#topics_top .page_title img { width: 165px;}
	#topics_top .page_title .subtitle { font-size: 1.1em;}
}

/***********************************************************
* お知らせ 詳細ページ
***********************************************************/
.entry-title, .article h2 { padding: 0;}
.single #section_topics{max-width: 900px;}
.single #topics_top .topics .date { color: #666; display: inline-block; margin-left: 20px; font-size: 1.1em;}
.single #topics_top .topics .title { font-size: 23px; font-weight: 600; margin: 30px 0;}
.single #topics_top .topics .title img { vertical-align: bottom;}
.single #topics_top .page_title .subtitle { line-height: 1;}

.single #topics_top .topics .category {
	display: inline-block;
	background-color: #333;
	color: #fff;
	padding: 5px 15px 6px;
	line-height: 1;
	border-radius: 30px;
	font-size: .9em;
	margin: 0 0 5px;
}
.single #topics_top .topics .text,
.single #topics_top .topics .text p {
	overflow-wrap: break-word;
	font-size: 17px;
	font-weight: 400;
	line-height: 2.2;
}
.single #topics_top .topics .text a { text-decoration: none; color: #8a7900; font-weight: 700;}
.single #topics_top .topics img { max-width: 100%;}

@media screen and (max-width:1240px){
    .single #section_topics { width: 87.5%;}
}
@media screen and (max-width:870px){
	.single #topics_top .topics .title { font-size: 20px; margin: 20px 0;}
	.single #topics_top .topics .text { font-size: 16px;}
}
@media screen and (max-width:700px){
	.single #section_topics { max-width: inherit; padding: 130px 0 60px;}
}
@media screen and (max-width:500px){
	.single #section_topics { max-width: inherit; padding: 115px 0 50px;}
	.single #topics_top .topics .title { font-size: 17px;  margin: 15px 0; /*padding: 0;*/}
	.single #topics_top .page_title .subtitle { line-height: 1; font-size: .71em; margin-top: 0;}
	.single #topics_top .topics .text,
	.single #topics_top .topics .text p { font-size: 14px; line-height: 2;}
}

/***********************************************************
* ページナビゲーション
***********************************************************/
/* 前後ナビゲーション */
.pagenav { text-align: center; margin: 80px 0 120px; font-weight: 500; font-size: 1.05em;}
.pagenav a { color: #333;}
.pagenav_title .arrow::before { width: 10px; height: 10px;}
.pagenav_title .arrow-left { padding: 0 15px 0 15px;}
.pagenav_title .arrow-left::before {  margin-top: -5px;}
.pagenav_title .arrow-right { padding: 0 15px 0 15px;}
.pagenav_title .arrow-right::before { margin-top: -5px;}
.pagenav_title .prev_btn { position: absolute; left: 5px;}
.pagenav_title .next_btn { position: absolute; right: 5px;}
.pagenav_title a.index {
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
}

@media screen and (max-width:870px){
}
@media screen and (max-width:600px){
	.pagenav { margin: 60px 0 100px;}
}
@media screen and (max-width:500px){
	.pagenav { margin: 50px 0 80px;}
}


/** アーカイブページ
**************************/
.pagenation { margin: 80px 0 0 0;}
.page-numbers {
    text-align: center;
    display: block;
    padding-bottom: 10px;
    height: auto;
    width: 100%;
    border: none;
    border-radius: 0;
    font-size: 18px;
	font-weight: 600;
}
.page-numbers li {
    display: inline-block;
    text-align: center;
}
.page-numbers a {
    display: inline-block;
    text-decoration: underline;
	width: 35px;
	color: #333;
}
.page-numbers a:hover { text-decoration: none;}
.page-numbers .current {
	width: 35px;
	display: inline-block;
}
.page-numbers a.prev, .page-numbers a.next { text-decoration: none;}
.page-numbers a.prev:hover, .page-numbers a.next:hover { background-color: transparent;}
.prev.page-numbers::after { content: "\f100"; font: normal normal normal 22px/1 FontAwesome;}
.next.page-numbers::after { content: "\f101"; font: normal normal normal 22px/1 FontAwesome;}

@media screen and (max-width:870px){
	.pagenation { margin: 50px 0 0 0;}
    .page-numbers { font-size: 17px;}
    .page-numbers li { margin: 0 3px 0;}
    .page-numbers a { width: 20px;}
    .page-numbers .current { width: 20px;}
}


