@charset "utf-8";
/* CSS Document */
* { -webkit-text-size-adjust: none; }

.clearfix::after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
/*hides from IE-mac \*/
* html .clearfix{ height: 1%; }
.clearfix { display: block; }
/*End hide from IE-mac*/

/*---------------------------------------------------------------- 
Common
----------------------------------------------------------------*/
/*　調整用　*/
.display-pc { display: block !important; }
.display-sp { display: none !important; }
@media screen and (max-width: 768px) {
	.display-pc { display: none !important; }
	.display-sp { display: block !important; }
}
.display-mb { display: none !important; }
@media screen and (max-width: 600px) {
	.display-mb { display: block !important; }
	.display-mb-none { display: none !important; }
}

.pt10 { padding-top: 10px !important; }
.pt-none { padding-top: 0 !important; }
.pb-none { padding-bottom: 0 !important; }
.mt-10 { margin-top: -10px !important; }
.mt-20 { margin-top: -20px !important; }
.mt10 { margin-top: 10px !important; }
.mt20 { margin-top: 20px !important; }
.mt40 { margin-top: 40px !important; }
.mb10 { margin-bottom: 10px !important; }
.mb20 { margin-bottom: 20px !important; }
.mb40 { margin-bottom: 40px !important; }
.mt-none { margin-top: 0 !important; }
.mb-none { margin-bottom: 0 !important; }

@media screen and (min-width: 769px) {
	.mt-pc-none { margin-top: 0 !important; }
}
@media screen and (max-width: 768px) {
	.mt-sp-none { margin-top: 0 !important; }
}

html {
    width: 100%;
    height: auto;
}
body {
	margin: 0;
	padding: 0;
	position: relative;
	font-size: 16px;
	line-height: 1.6;
	word-break: break-all;
}
p {
	margin: 0;
}
ul, ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
dl, dd {
	margin: 0;
}
form, fieldset {
	margin:0;
	padding:0;
	border-style:none;
}
figure {
	margin: 0;
	text-align: center;
}
figcaption {
	text-align: left;
	line-height: 1.4;
}

/*　見出し、フォントサイズ　*/
h1, h2, h3, h4,h5 {
	margin: 0;
	padding:  0;
	line-height: 1.2;
}
h2 {
	font-size: 26px;
}
@media screen and (max-width:768px) {
	h2 { font-size: 22px; }
}
h3 {
	font-size: 22px;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	h3 { font-size: 20px; }
}
h4 {
	font-size: 20px;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	h4 { font-size: 18px; }
}
h5 {
	font-size: 18px;
	font-weight: bold;
}
@media screen and (max-width:768px) {
	h5 { font-size: 16px; }
}
.text-center {
	text-align: center;
}
.text-center-left {
	text-align: center;
}
@media screen and (max-width:600px) {
	.text-center-left {
		text-align: left;
	}
}
.font-big {
	font-size: 24px;
	font-weight: bold;
}
.phoneNumber {
	font-size: 42px;
    color: #0E446E;
	line-height: 1;
}
@media screen and (max-width:600px) {
	.font-big {
		font-size: 20px;
	}
	.phoneNumber {
		font-size: 28px;
	}
}

.fontWeight-bold {
	font-weight: bold;
}
.fontColor-red {
	color: #f00;
}
.tax-small {
	font-size: 11px;
}
.fontWeight-normal {
	font-weight: normal;
}

.marker {
	/*必要に応じてstyle_funayadoで適当な色に変えてください*/
	background: linear-gradient(transparent 60%, rgb(255,204,204) 60%);
}

.link-symbol::before {
	content: ">>";
}

/*　画像　*/
img {
	vertical-align: middle;
	border-style: none;
    max-width: 100%;
	height: auto;
}
@media all and (-ms-high-contrast: none) {
	img {
		width: 100%;
	}
}
h2 img {
	vertical-align: -5px;
	height: 28px;
	width: auto;
	margin-right: 3px;
}
@media only screen and (max-width:768px) {
	h2 img {
		height: 25px;
		margin-right: 3px;
	}
}
.img-responsive {
	width: 100%;
	height: auto;
}
.img-decoration img {
	box-sizing: border-box;
	border: 1px solid #fff;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.img-decoration-no img {
	box-sizing: border-box;
	border: none;
	-webkit-box-shadow: none;
	box-shadow: none;
}
.img-border img {
	border: 1px solid #CFCFCF;
}

/*　画像を横に並べたい時ulに下記クラス名を付ける
　　※liのmargin-topが邪魔な時は一緒にmt-10を付ける　*/
/*　横2枚　*/
.pic_container2 {
	display: flex;
	flex-wrap: wrap;
}
.pic_container2 li {
	margin-top: 10px;
	width: 49%;
	margin-right: 2%;
}
.pic_container2 li:nth-child(2n) {
	margin-right: 0;
}

/*　横3枚　*/
.pic_container3 {
	display: flex;
	flex-wrap: wrap;
}
.pic_container3 li {
	margin-top: 10px;
	width: 32%;
	margin-right: 2%;
}
.pic_container3 li:nth-child(3n) {
	margin-right: 0;
}

/*　横4枚　*/
.pic_container4 {
	display: flex;
	flex-wrap: wrap;
}
.pic_container4 li {
	margin-top: 10px;
	width: 23.5%;
	margin-right: 2%;
}
.pic_container4 li:nth-child(4n) {
	margin-right: 0;
}

/*　横4枚(スマホは2枚)　*/
.pic_container4-2 {
	display: flex;
	flex-wrap: wrap;
}
.pic_container4-2 li {
	margin-top: 10px;
	width: 23.5%;
	margin-right: 2%;
}
.pic_container4-2 li:nth-child(4n) {
	margin-right: 0;
}
@media screen and (max-width: 600px) {
	.pic_container4-2 li {
		width: 49%;
	}
	.pic_container4-2 li:nth-child(2n) {
		margin-right: 0;
	}
}
.pic_container2 figcaption,
.pic_container3 figcaption,
.pic_container4 figcaption,
.pic_container4-2 figcaption {
	margin-top: 5px;
	font-size: 13px;
}

/*　埋め込み動画サイズのレスポンシブ化　*/
.video__container {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
}
.video__container iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100% !important;
	height: 100% !important;
}

/*　ページレイアウト　*/
.wrapper {
	margin: 0 auto;
	max-width: 1050px;
	display: flex;
	flex-direction: row-reverse;
}
.mainArea{
	width: 67%;
}
.sideArea {
	width: 31%;
	margin-right: 2%;
}
@media screen and (max-width: 768px) {
	.wrapper {
		flex-direction: column;
	}
	.mainArea {
		width: 100%;
		min-height: 0%;
	}
	.sideArea {
		width: 100%;
		margin-right: 0;
		min-height: 0%;
	}
}
.frame, .side-frame {
	margin: 0 0 10px;
	padding: 0 10px 10px;
}
.frame .frame-inner, .side-frame .frame-inner {
	box-sizing: border-box;
	margin: 0;
	padding: 20px;
}
.frame-inner-border {
	padding: 20px;
}
@media screen and (max-width: 600px) {
	.frame, .side-frame {
		padding: 0;
	}
	.frame-inner-border {
		padding: 10px;
	}
	/* .frame .frame-inner {
		padding: 10px;
	}*/
}

.arrow-next {
	margin: 0 auto;
	display: block;
}

/*パンくずリスト*/
ol.pageNavi {
	max-width: 1050px;
	margin: 0 auto;
	padding: 5px;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	font-size: 18px;
}
@media screen and (max-width: 768px) {
	ol.pageNavi {
		padding: 65px 0 0 5px;
		font-size: 14px;
	}
}
ol.pageNavi li {
	margin: 0;
	flex: 0 1 auto;
	word-break: break-all;
}
ol.pageNavi li::after{
	content:"  > ";
}
ol.pageNavi li:last-child:after{
	content: none;
}
ol.pageNavi li a {
	text-decoration: underline;
}

/*---------------------------------------------------------------- 
header
----------------------------------------------------------------*/
.header__wrapper {
	margin: 0 auto;
	max-width: 1050px;
	width: 100%;
	box-sizing: border-box;
	display: flex;
	display:-webkit-box;
  	display:-ms-flexbox;
	justify-content: space-between;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
}
.header__logo a{
	display: block;
	box-sizing: border-box;
}
.header-h1 {
	margin: 0;
	padding: 0;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	.spNav--fixed {
		position: fixed;
		width: 100%;
		height: 60px;
		z-index: 900;
		top: 0;
	}
}

#global-nav {
	width: 100%;
	z-index: 999;
}
#global-nav.m_fixed {
	left: 0;
	position: fixed;
	top: 0;
}
#global-nav ul {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1050px;
	display: flex;
}
#global-nav li {
	flex-grow: 1;
	text-align: center;
}
#global-nav li a {
	display: block;
}
#global-nav li a:hover, #global-nav li .active {
	text-decoration: none;
}

/*---------------------------------------------------------------- 
side
----------------------------------------------------------------*/
.side__title {
	font-size: 20px;
	font-weight: bold;
}
.side__menu li:last-child,
.side__contents li:last-child {
	border-bottom: none;
}
.side__menu li a,
.side__contents li a {
	position: relative;
	display: block;
	padding: 10px 20px;
}
.side__menu li a::after,
.side__contents li a::after {
	position: absolute;
	top: 21px;
	right: 20px;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 7px;
	transform: rotate(45deg);
	width: 7px;
	transition: all .2s;
}
.side__menu li a:hover::after,
.side__contents li a:hover::after {
	right: 10px;
}
.side__banner {
	display: block;
	text-align: center;
	padding: 10px 0 0;
}
.side__banner img {
	width: 100%;
}
.side__menu p,
.side__contents p {
	position: relative;
	display: block;
	margin: 0;
	cursor: pointer;
}
.side__menu p::before,
.side__contents p::before {
	position: absolute;
	top: 19px;
	left: 14px;
	border-radius: 1px;
	content: "";
	margin: 0 0 0 10px;
	height: 7px;
	transform: rotate(135deg);
	width: 7px;
	transition: all .2s;
}
.side__menu p:hover::before,
.side__contents p:hover::before {
	top: 25px;
}
.archive-style {
	padding: 10px 20px;
	font-size: 20px;
}
/* @media screen and (max-width:768px){
	.side {
		margin-top: 20px;
	}
} */
@media screen and (max-width: 600px) {
	/* .side {
		margin-top: 10px;
	} */
	.side__menu ul {
		border-radius: 0;
	}	
	.side__banner {
		padding: 0 0 10px;
	}
	.side__title {
		padding: 5px 10px;
	}
}
.side__line {
	background-color: #fff;
	text-align: center;
	line-height: 1;
	border-radius: 2px;
}
.side__line >div {
	display: block;
}
@media screen and (max-width:768px){
	.side__line >div {
		display: inline-block;
		vertical-align: bottom;
		margin: 10px;
	}
}
.side__twitter {
	line-height: 1;
	vertical-align: bottom;
}
.facebook__wrapper {
    max-width: 500px; /* Facebook Page Plugin の最大幅 */
    margin: 0 auto;
}
 
.facebook__wrapper > .fb-page {
    width: 100%;
}
 
.facebook__wrapper > .fb-page > span,
.facebook__wrapper iframe {
    width: 100% !important;
}

/* ▼ VOD link ここから*/
.fishing-v__link ul {
	line-height: 1;
}

.fishing-v__link li {
	margin-top: 10px;
	text-align: center;
}

.fishing-v__link li img {
	margin: 0 auto;
	vertical-align: bottom;
	width: 100%;
}
/* ▲ VOD link ここまで*/

/*---------------------------------------------------------------- 
index　|　TOP
----------------------------------------------------------------*/
/*topImage ここから*/
.topImage {
	width:100%;
}
@media screen and (max-width: 768px) {
	.topImage {
		margin-top: 60px;
	}
}

.topImage__inner {
	margin: 0 auto;
	max-width: 1050px;
	width: 100%;
	text-align: center;
}
/*topImg ここまで*/

/*topSlider ここから*/
.slick {
	display: none;
}
.slick.slick-initialized {
	display: block; /*slick-initializedが付与されたら表示*/
}
.topSlider {
	box-sizing: border-box;
	margin: 20px auto;
	max-width: 1070px;
	padding: 0 6px 0 5px;
	position: relative;
}
.slick li {
	margin: 0 5px;
	box-sizing: border-box;
}
@media screen and (max-width: 768px) {
	.topSlider {
		margin: 10px auto;
	}
}
@media screen and (max-width: 600px) {
	.slick li {
		margin: 0 2px;
	}
}
.slick-prev:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.slick-next:before {
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
}
.slick-next {
    /* right: -30px; */
    z-index: 99;
}
.slick-prev {
    /* left: -30px; */
    z-index: 100;
}
@media screen and (max-width: 1130px) {
	.slick-next {
		right: 8px;
	}
	.slick-prev {
		 left: 8px;
	}
}
.slider-cover-left, .slider-cover-right {
	position: absolute;
	top: 0;
	height: 100%;
	width: 10px;
}
.slider-cover-left {
	left: 0;
}
.slider-cover-right {
	right: 0;
}
@media screen and (max-width: 768px) {
	.slider-cover-left, .slider-cover-right {
		width: 6px;
	}
}
/*topSlider ここまで*/

/*旬の魚のご紹介 ここから*/
.post h3 {
	font-size: 20px;
}
@media only screen and (max-width:768px) {
	.post h3 { font-size: 18px; }
}
.post-detail p {
	padding-top: 5px;
}
.post-detail img {
	width: 100%;
}
.post-detail img {
	width: 100%;
}

/* 説明文を右 */
.post__detail--right {
	display: flex;
}
.post__detail--right >figure {
	width: 40%;
}
.post__detail--right >div {
	width: 60%;
}
.post__detail--right >div p {
	padding-left: 10px;
	padding-top: 0;
	box-sizing: border-box;
}
@media screen and (max-width: 600px) {
	.post__detail--right {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
	}
	.post__detail--right >figure,.post__detail--right >div {
		width: 100%;
		height: 100%;
	}
	.post__detail--right >div p {
		padding-left: 0;
		padding-top: 10px;
	}
}

/* 横2列 */
.post__box2 {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.post__box2 li {
	width: 48%;
	margin-right: 4%;
}

.post__box2 li:nth-child(2n) {
	margin-right: 0;
}
@media screen and (max-width: 600px) {
	.post__box2 {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
	}
	.post__box2 li {
		width: 100%;
		height: 100%;
		margin-right: 0;
	}
}
/* 横3列 */
.post__box3 {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	flex-wrap: wrap;
}
.post__box3 li {
	width: 32%;
	margin-right: 2%;
	margin-top: 20px;
}

.post__box3 li:nth-child(3n) {
	margin-right: 0;
}
@media screen and (max-width: 600px) {
	.post__box3 {
		flex-direction: column;
		align-items: flex-start;
		margin: 0;
	}
	.post__box3 li {
		width: 100%;
		height: 100%;
		margin-right: 0;
	}
}
/* テキストが横 */
.post__box--textrow {
	display: flex;
}
.post__box--textrowImg {
	width: 30%;
}
.post__box--textrowImg img {
	width: 100%;
}
.post__box--textrowText {
	box-sizing: border-box;
	width: 70%;
	padding-left: 10px;
}
@media screen and (max-width: 600px) {
	.post__box--textrow {
		flex-direction: column;
		align-items: flex-start;
	}
	.post__box--textrowImg {
		width: 100%;
		min-height: 0%;
	}
	.post__box--textrowText {
		box-sizing: border-box;
		width: 100%;
		padding-left: 0;
		padding-top: 5px;
	}
}
/*旬の魚のご紹介 ここまで*/

/*釣果速報 ここから*/
.topChoka {
	display: flex;
	flex-wrap: wrap;
	padding: 20px 0 10px;
}

.topChoka:last-child {
	padding: 20px 0 0;
	border-bottom: none;
}

.topChoka__img {
	width: 70px;
    padding: 0;
	margin-right: 10px;
}

.topChoka dl {
	width: calc(100% - 80px);
}

/*釣果速報 ここまで*/

/*カレンダー ここから*/
#cal {
	/* リンク位置保持用 */
	height: 0;
	width: 0;
	margin-top: -60px;
	padding-top: 60px;
}
#calendar #befaft {
	display: flex;
	justify-content: space-between;
}
#calendar p.calendar_before, #calendar p.calendar_after {
	font-weight: 900;
}
#calendar .day {
	display: none;
}
#calendar .day {
	display: block;
	font-size: 1.5em !important;
	font-weight: bold;
}
.day span.small {
	font-size: 70%;
}
@media only screen and (max-width:568px) {
	.day span.small{
		display:none;
	}
}
#calendar .sat {
	color: #3867ab;
}
#calendar .sun {
	color: #900;
}
#calendar ul {
	display: flex;
	justify-content: space-between;
	font-size: 15px;
	flex-wrap: wrap;
}
#calendar li {
	width: 13.7%;
	background: #F5F5F5;
	margin: 2px 0;
}
#calendar ul li span.number {
	padding: 3px;
	text-align: center;
	width: 12.3%;
	font-size: 1.2em;
}
#calendar ul li span.event1,
#calendar ul li span.event2,
#calendar ul li span.event3,
#calendar ul li span.event4 {
	font-size: 0.79em;
	line-height: 1.2em !important;
	text-align: left;
	color: #FFF;
	display: inline-block;
	padding: 5px;
    border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	margin: 1px 0 0 0;
	box-sizing: border-box;
	width: 100%;
}
#calendar ul li span.event1 {
	background: #055aa2;
}
#calendar ul li span.event2 {
	background: #10A9AF;
}
#calendar ul li span.event3 {
	background: #eeb016;
}
#calendar ul li span.event4 {
	background: #db4114;
}
#calendar ul li span#event_c1,
#calendar ul li span#event_c2,
#calendar ul li span.event_cevent_c3,
#calendar ul li span.event_cevent_c4 {
	font-size: 0.79em;
	line-height: 1.2em !important;
	text-align: left;
	color: #FFF;
	display: inline-block;
	padding: 5px;
    border-top-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	border-top-right-radius: 3px;
	-moz-border-radius-topright: 3px;
	border-bottom-left-radius: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-bottom-right-radius: 3px;
	-moz-border-radius-bottomright: 3px;
	margin: 1px 0 0 0;
	box-sizing: border-box;
	width: 100%;
}
#calendar ul li span.event_c1 {
	background: #055aa2;
}
#calendar ul li span.event_c2 {
	background: #10A9AF;
}
#calendar ul li span.event_c3 {
	background: #eeb016;
}
#calendar ul li span.event4 {
	background: #db4114;
}

#calendar ul li span a {
	color: #FFF;
	display: block;
}
#calendar ul li.day {
	font-variant: small-caps;
	font-size: 13px;
	background: #fff;
	height: 30px;
	text-align: center;
}
#calendar ul li span {
	font-size: 11px;
	color: #666;
}

/**カレンダーJS**/
div.tooltip	{
	width: 250px;
	position: absolute;
	left: -9999px;
	background: #900;
	padding: 5px 5px 0 4px;
}
div.tooltip p {
	color: #FFF;
	background: #900;
	padding: 5px 10px;
}
/*カレンダー ここまで*/

/*---------------------------------------------------------------- 
blog　|　釣果情報
----------------------------------------------------------------*/
.left-arrow::before {
	font-family: "Font Awesome 5 Free";
	content: '\f104';
	font-weight: 600;
}
.right-arrow::before {
	font-family: "Font Awesome 5 Free";
	content: '\f105';
	font-weight: 600;
}
.blogNav {
	display: flex;
	align-items: center;
	padding: 10px;
	margin-bottom: 20px;
}
.blog__title {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
}
.blogNav h2{
	padding: 0;
	line-height: 1;
}
.blog__page {
	flex: 1 1 auto;
	font-size: 20px;
	text-align: center;
	font-weight: bold;
}
.blog__page a {
	padding: 2px 7px;
	font-weight: normal;
}
.blog__page a:link {
	text-decoration: none;
}

.blog__page a:hover {
	opacity: .7;
}
.blog__number1, .blog__number2 {
	margin-left: 10px;
	font-size: 20px;
}
@media screen and (max-width:950px) {
	.blogNav {
		flex-direction: column;
	}
	.blog__title {
		margin-bottom: 7px;
	}
	.blog__number2 {
		margin-left: 0;
	}
}
time {
	display: block;
	font-size: 18px;
	line-height: 1;
}
@media screen and (max-width:768px) {
	time {
		font-size: 16px;
	}
	.blog-number1, .blog-number2 {
		font-size: 16px;
	}
}
@media screen and (max-width:600px) {
	.blogNav {
		border-radius: 0;
	}
	.blog__page{
		border-radius: 0;
		width: 100%;
	}
	time {
		padding: 10px 10px 0;
	}
}
.blog__photo {
	width:100%;
	display: flex;
	flex-wrap: wrap;
}
.choka_info {
	margin-top: 10px;
	line-height: 1;
}
.choka_comment {
	margin-top: 10px;
}
@media screen and (max-width:768px) {
	.choka_comment {
		font-size: 14px;
	}
}
.blog__photo a {
	display: block;
	width: 24%;
	margin-right: 1%;
	margin-top: 20px;
}
.blog__photo a:nth-child(n+5) {
	margin-top: 1%;
}

/*---------------------------------------------------------------- 
infomation　|　紹介
----------------------------------------------------------------*/
.infoContainer {
	margin: 0;
	padding: 0;
	display: flex;
}
.infoContainer__picture {
	box-sizing: border-box;
}
.infoContainer__text {
	box-sizing: border-box;
	padding: 0 0 0 10px;
}
@media screen and (max-width: 600px) {
	.infoContainer {
		flex-direction: column;
	}
	.infoContainer__picture {
		min-height: 0%;
	}
	.infoContainer__picture img {
		max-width: 400px;
		width: 100%;
	}
	.infoContainer__text {
		padding: 10px 0 0;
	}
}

.infoFune__picture {
	margin: 10px auto;
	max-width: 500px;
}
.infoFune section {
	padding-bottom: 20px;
}
.infoFune section:last-child {
	padding-bottom: 0;
}

/*　↓　スタッフが複数人いる場合　↓　*/
.infoGroup section {
	margin-bottom: 10px;
	padding: 10px;
	display: flex;
}
.infoGroup section:last-child {
	margin-bottom: 0;
}
.infoGroup section figure {
	box-sizing: border-box;
	flex: 0 1 40%;
}
.infoGroup section >div {
	box-sizing: border-box;
	flex: 0 1 60%;
	padding: 0 0 0 15px;
	font-size: 14px;
}
@media screen and (max-width: 600px) {
	.infoGroup section {
		flex-direction: column;
	}
	.infoGroup section figure {
		margin: 0 auto;
		flex: 1 auto;
		min-height: 0%;
	}
	.infoGroup section >div {
		padding: 10px 0 0;
		flex: 1 auto;
	}
}
/*　↑　スタッフが複数人いる場合　↑　*/

/*　↓　プロフィールがある場合　↓　*/
.infoProfile section {
	display: flex;
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dashed #CFCFCF;
}
.infoProfile section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: 0;
}
.infoProfile section figure {
	box-sizing: border-box;
	width: 35%;
}
.infoProfile section >div {
	box-sizing: border-box;
	width: 65%;
	padding-left: 20px;
}
@media screen and (max-width: 600px) {
	.infoProfile section {
		flex-direction: column;
	}
	.infoProfile section figure {
		width: 100%;
		min-height: 0%;
	}
	.infoProfile section >div {
		margin-top: 10px;
		width: 100%;
		padding-left: 0;
	}
}
.infoProfile figcaption {
	margin-top: 5px;
	font-weight: bold;
}
.infoProfile table {
	font-size: 14px;
	border-collapse: separate;
	border-spacing: 0;
	border-radius: 6px;
}
.infoProfile table tr td {
	border-right: 1px dashed #999;
	border-bottom: 1px dashed #999;
	padding: 4px;
}
.infoProfile table tr:first-child td {
	border-top: 1px solid #999;
}
.infoProfile table tr td:first-child{
	background: #fff8e1;
	border-left: 1px solid #999;
	width: 110px;
}
.infoProfile table tr td:last-child {
	border-right: 1px solid #999;
}
.infoProfile table tr:last-child td {
	border-bottom: 1px solid #999;
}
.infoProfile table tr:first-child td:first-child {
	border-radius: 5px 0 0 0;
}
.infoProfile table tr:first-child td:last-child {
	border-radius: 0 5px 0 0;
}
.infoProfile table tr:last-child td:last-child {
	border-radius: 0  0 5px 0;
}
.infoProfile table tr:last-child td:first-child {
	border-radius: 0  0 0 5px;
}

/*---------------------------------------------------------------- 
guide　|　利用案内
----------------------------------------------------------------*/
/* .guide h3 {
	border-left: none;
	margin: 0;
	padding: 7px 0 4px 10px;
} */
.guide-picture {
	width: 49%;
}
@media screen and (max-width: 600px) {
	.guide-picture {
		width: 100%;
	}
}

/*　フローを分ける　*/
.guideDetail {
	display: flex;
	flex-wrap: wrap;
}
.guideDetail >div {
	width: 49%;
}
.guideDetail >div:nth-child(odd) {
	margin-right: 2%;
}
.guideDetail ul {
	display: flex;
	flex-wrap: wrap;
}
.guideDetail li {
	width: 49%;
	margin-top: 5px;
	margin-right: 2%;
}
.guideDetail li:nth-child(even) {
	margin-right: 0;
}
@media screen and (max-width: 600px) {
	.guideDetail li {
		width: 100%;
		margin-right: 0;
	}
}

/*　divの高さをそろえたい時　*/
.guide-grow {
	display: flex;
	flex-direction: column;
}
.guide-grow-text {
	flex-grow: 1;
}

/*---------------------------------------------------------------- 
access　|　アクセス
----------------------------------------------------------------*/
.accessMap {
	position: relative;
	width: 100%;
	padding-top: 75%;
	margin-top: 10px;
}
.accessMap iframe {
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	border: none;
}
.accessContainer {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	margin-top: 20px;
}
.accessContainer >figure {
	width: 49%;
}
/* .accessContainer figure {
	margin-right: 2%;
} */
.accessContainer >figure:nth-child(4n+1) {
	margin-right: 2%;
}
.accessContainer >figure:last-child {
	margin-right: 0;
}
.accessContainer >img {
	margin: 10px 0;
}

@media screen and (max-width: 600px) {
	.accessContainer >figure {
		width: 100%;
	}
	.accessContainer >figure:nth-child(4n+1) {
		margin-right: 0;
	}
}

/*---------------------------------------------------------------- 
tackle　|　タックル
----------------------------------------------------------------*/
.tackle section >div {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.tackle section >div figure {
	width: 49%;
}
.tackle figcaption {
	margin-top: 5px;
}
.tackle__text {
	width: 49%;
}
.tackle-comment {
	width: 100%;
	margin-top: 10px;
}

.tackle figure img {
	border: 1px solid #000;
	-webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.5);
	box-shadow: 0 1px 3px rgba(0,0,0,0.5);
}
.tackle li::before {
	content:"◇";
}

@media screen and (max-width: 600px) {
	.tackle section >div {
		flex-direction: column;
	}
	.tackle section >div figure {
		width: 100%;
		min-height: 0%;
	}
	.tackle section >div figure:nth-child(2n) {
		margin-top: 10px;
	}
	.tackle__text {
		width: 100%;
		padding-top: 10px;
	}
}

/*---------------------------------------------------------------- 
facilities　|　周辺施設案内
----------------------------------------------------------------*/
.facilitiesContainer {
	display: flex;
	justify-content: space-between;
	padding: 10px;
}
.facilitiesContainer__picture {
	width: 40%;
}
.facilitiesContainer__text {
	width: 58%;
}
.facilitiesContainer__text h3 {
	font-size: 20px;
	margin-top: 0;
}
.facilitiesContainer__text .contact {
	margin-top: 10px;
	font-size: 14px;
}

@media screen and (max-width: 600px) {
	.facilitiesContainer {
		flex-direction: column;
	}
	.facilitiesContainer__picture {
		width: 100%;
		min-height: 0%;
	}
	.facilitiesContainer__text {
		width: 100%;
		padding-top: 10px;
	}
}

/*---------------------------------------------------------------- 
movie　|　動画
----------------------------------------------------------------*/
.movieContainer {
	display: flex;
}
.movieContainer__movie {
	width: 65%;
	display: block;
	text-align: center;
}
.movieContainer__movie img:hover {
	cursor: pointer;
}
.movieContainer__text {
	width: 35%;
	padding-left: 10px;
}
.movieContainer__text ul {
	margin-top: 10px;
	list-style: disc;
	padding-left: 24px;
}
@media screen and (max-width: 600px) {
	.movieContainer {
		flex-direction: column;
	}
	.movieContainer__movie {
		width: 100%;
		min-height: 0%;
	}
	.movieContainer__movie img {
		width: 100%;
	}
	.movieContainer__text {
		width: 100%;
		padding-left: 0;
		padding-top: 10px;
	}
}
/*---------------------------------------------------------------- 
cooking　|　料理
----------------------------------------------------------------*/
.cookingContainer {
	display: flex;
	flex-wrap: wrap;
}
.cookingContainer a {
	display: block;
}

.cookingContainer__picture {
	width: 49%;
	margin-right: 2%;
	margin-bottom: 10px;
}
.cookingContainer__picture:nth-child(even) {
	margin-right: 0;
}
.cookingContainer__picture >p {
	padding: 5px 0;
}
.cookingContainer__text {
	width: 49%;
	margin-bottom: 10px;
}
.cookingContainer__text--bottom {
	display: flex;
	align-items: flex-end;
}

.cookingRecipe li {
	counter-increment: li;
}
.cookingRecipe li::before {
	content: counter(li) '：';
}

@media screen and (max-width: 600px) {
	.cookingContainer__picture,
	.cookingContainer__text {
		width: 100%;
		margin-right: 0;
	}
}

/*---------------------------------------------------------------- 
offshore　|　オフショアマガジン
----------------------------------------------------------------*/
.offshoreContainer {
	display: flex;
	align-items: flex-start;
}
.offshoreContainer__picture {
	flex: 0 0 200px;
	text-align: center;
}
.offshoreContainer__picture img {
	width: 100%;
}
.offshoreContainer__text {
	flex: 0 1 100%;
	padding-left: 20px;
}

@media screen and (max-width: 600px) {
	.offshoreContainer {
		flex-direction: column;
	}
	.offshoreContainer__picture {
		flex: 0 1 auto;
		width: 100%;
		min-height: 0%;
	}
	.offshoreContainer__text {
		flex: 0 1 auto;
		width: 100%;
		padding-left: 0;
		padding-top: 10px;
	}
}

/*---------------------------------------------------------------- 
iso　|　釣り場紹介
----------------------------------------------------------------*/
.iso figure a,
.isoContainer a {
	display: inline-block;
}
.iso figure img {
	max-width: 400px;
	width: 100%;
	margin-top: 10px;
}
.isoContainer {
	display: flex;
}
.isoContainer a:nth-child(odd) {
	margin-right: 10px;
}

@media screen and (max-width: 600px) {
	.isoContainer {
		flex-direction: column;
	}
	.isoContainer a {
		min-height: 0%;
	}
	.isoContainer a:nth-child(odd) {
		margin-right: 0;
	}
}

/*---------------------------------------------------------------- 
mag　|　メールマガジン
----------------------------------------------------------------*/
.mag__img {
	width: auto;
}
.mailMagazine__method dl {
	margin-top: 7px;
}
.mailMagazine__method dl dt {
	font-weight: bold;
}
.mailMagazine__method dl dd {
	margin-left: 5.5rem;
	margin-top: -25px;
}
@media screen and (max-width: 600px) {
	.mailMagazine__method dl dd {
		margin-left: 0;
		margin-top: 0;
		margin-bottom: 5px;
	}
	.mailMagazine__method dl dd:last-child {
		margin-bottom: 0;
	}
}

/*---------------------------------------------------------------- 
food　|　食堂
----------------------------------------------------------------*/
.food__main__img img {
	width: 100%;
}
.food__main__text p {
	margin-top: 10px;
}
.food table thead {
	box-sizing: border-box;
	border: 1px solid #999;
}
.food table td {
	font-size: 14px;
	padding: 6px;
	border-top: 1px solid #999;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-left: 1px solid #999;
}
.food table td:nth-child(odd) {
	width: 30%;
	background: #fff8e1;
}
.food table td:nth-child(even) {
	text-align: right;
	padding-right: 10px;
	width: 20%;
}
@media screen and (max-width: 600px) {
	.food table th {
		display: block;
	}
	.food table tr {
		border-right: 1px solid #999;
		border-left: 1px solid #999;
	}
	.food table td {
		display: inline-block;
		vertical-align: top;
		height: 100%;
		border-top: none;
		border-right: none;
	}
	.food table td:nth-child(odd) {
		width: 60%;
		border-left: none;
	}
	.food table td:nth-child(even) {
		width: 40%;
	}
	.food__table--hight {
		line-height: 3.2;
	}
}


/*---------------------------------------------------------------- 
link　|　リンク
----------------------------------------------------------------*/
.linkWider__banner a {
	display: block;
}
/* 横長 */
.linkWider {
	display: flex;
	align-items: center;
}
.linkWider__banner {
	flex: 0 0 150px;
	text-align: center;
}
.linkWider__text {
	flex: 0 1 100%;
	padding-left: 20px;
	box-sizing: border-box;
}
.linkWider__text p:last-child {
	text-align: right;
}
.linkWider__link {
	text-align: right;
}
.linkOffshore__list {
	margin-top: 5px;
}
.linkOffshore__list li {
	text-decoration: none;
    border-bottom: 1px dashed #36F;
    padding: 8px 0;
	font-size: 15px;
}

@media screen and (max-width: 600px) {
	.linkWider {
		flex-direction: column;
	}
	.linkWider__banner {
		flex: 0 1 auto;
		width: 100%;
	}
	.linkWider__banner img {
		max-width: 150px;
	}
	.linkWider__text {
		flex: 0 1 auto;
		width: 100%;
		padding-left: 0;
		padding-top: 10px;
	}
}

/* 横2個 */
.linkRows2 {
	display: flex;
	flex-wrap: wrap;
}
.linkRows2__box {
	width: 49%;
}
.linkRows2__box:nth-child(odd) {
	margin-right: 2%;
}
.linkRows2__box:nth-child(n+3) {
	margin-top: 20px;
}
@media screen and (max-width: 600px) {
	.linkRows2 {
		flex-direction: column;
	}
	.linkRows2__box {
		width: 100%;
	}
	.linkRows2__box:nth-child(odd) {
		margin-right: 0;
	}
	.linkRows2__box:nth-child(n+2) {
		margin-top: 20px;
	}
}


/* アイコンのみ */
.linkContainer {
	display: flex;
	flex-wrap: wrap;
}
.linkContainer a {
	width: 24%;
	margin-right: 1.33%;
	margin-bottom: 10px;
}
.linkContainer a:nth-child(4n) {
	margin-right: 0;
}

.linkContainer__name {
	font-size: 14px;
}

@media screen and (max-width: 600px) {
	.linkContainer a {
		box-sizing: border-box;
		width: 49%;
		margin-right: 2%;
		margin-bottom: 5px;
		padding: 5px;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.linkContainer a:nth-child(2n) {
		margin-right: 0;
	}
	.linkContainer__box {
		width: 100%;
		display: flex;
		flex-wrap: wrap;
		align-items: center;
	}
	.linkContainer__img {
		flex: 0 0 30%;
		min-height: 0%;
		background-color: #fff;
	}
	.linkContainer__name {
		flex: 0 1 67%;
		padding-left: 3%;
	}
}
@media screen and (max-width: 400px) {
	.linkContainer a {
		width:100%;
		margin-right: 0;
	}
	.linkContainer__name {
		font-size: 16px;
	}
}

/*---------------------------------------------------------------- 
footer
----------------------------------------------------------------*/
#to-pagetop {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 20;
}
#to-pagetop >div {
	padding: 7px 10px;
	border-radius: 2px 2px 0 0;
	font-size: 10px;
	text-decoration: none;
	transition: all 0.5s;
}
#to-pagetop >div:hover {
	cursor: pointer;
}

footer {
	margin-top: 40px;
}

.funayado {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1070px;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.funayado li{
	line-height: 1.3;
	font-size: 16px;
}

.funayado li.funayado__name{
	font-size: 32px;
}

.footer__copyright{
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 1050px;
}

.copyright{
	width: 100%;
	padding: 7px 0;
	text-align: center;
	font-size: 16px;
}
@media screen and (max-width: 768px) {
	#to-pagetop {
		right: 10px;
		bottom: 10px;
	}
	.copyright {
		margin: 0;
		padding: 5px 0;
		font-size: 12px;
	}
	footer ul.funayado {
		display: none;
	}
}