@charset "UTF-8";
/*
Theme Name: 船主
Author: Kota Nishihara
Description: 金谷にある船主のHPです。
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
}

p,a,h1,h2,h3,div{
  font-family:"ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN";
}

p{
  line-height: 2;
}

a{
  color: black;
  text-decoration: none;
}

a:hover{
  text-decoration: underline;
}

h1{
  line-height: 2;
  font-size: 32px;
  text-align: center;
  margin: 0 0 50px;
}

h2{
  font-size: 25px;
  font-weight: 100;
  max-width: 768px;
  width: 100%;
  border-bottom: 2px solid;
  padding-bottom: 10px;
  margin-top: 30px;
}

.h1-underline{
  border-bottom: 1px solid #313131;
  padding-bottom: 15px;
}

table {
  border-collapse: collapse;
}

th{
  background-color: rgba(64,66,71,0.3);
  font-weight: 100;
}

table th, table td {
  border: solid 1px black;
  border: solid 1px black;
  padding: 15px 0 15px 15px;
}

table  ul {
		padding-left : 20px;
	}

img {
  max-width: 100%;
}

.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

.btn-contact{
  padding: 20px;
  background: #313131;
  border-radius: 5px;
  text-align: center;
}

.btn-contact a{
  color: white;
  font-weight: bold;
}

/*---header.php---*/
.header{
  background-color: #313131;
}
.header-top{
  position: relative;
  display: flex;
  height: 62px;
}
.funaosa-logo{
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 200px;
}
.header-top p{
  color: white;
  font-size:12px;
  position: absolute;
  opacity: 0.8;
  left: 32%;
  top: 15%;
	/* 0903 修正 */
	margin-top: 1px;
}


.contact-btn{
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
}
.header-top,.container{
  max-width: 768px;
  width: 100%;
  margin:0 auto;
}
.funaosa-logo:hover,.contact-btn:hover,.btn-contact:hover, .blog-banner:hover,.top-sns-box:hover,.swiper2 .swiper-wrapper .swiper-slide a:hover,.campaign-box a:hover{
  opacity: 0.7;
}

/*---index.php---*/

/*---スライダー---*/
.swiper1 {
  max-width: 100%;
}

.swiper2{
  width: 668px;
  height: auto;
  padding: 10px;
}

.swiper-custom-parent{
  width: 768px;
  position: relative;
}

.swiper-slide {
  text-align: center;
}

.first-slider{
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.swiper-custom-button{
  background-image: none !important;
  font-size: 24px;
  text-align: center;
  width: 16px !important;
  height: 64px !important;
  line-height: 64px;
}
.swiper-custom-button .fa{
  line-height: 62px;
}

.swiper-slide img{
  display: block;
  width: 100%;
  height: auto;
}

.swiper-slide {
  padding-top: 0px; /* 画像位置の調整用 */
}

/*---gnavi---*/
.global-nav-wrap{
  background-color: #313131;
  padding:5px 0;
  margin-top: -0.5%;
}

.global-nav{
  width: 540px;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
	.global-nav{
	display: flex;
	justify-content:center;
	}
}

.global-nav ul{
  display: flex;
  padding-left: 0
}

.global-nav ul li{
  list-style: none;
  padding-right: 34px;
}

li#menu-item-28 {
  padding-right: 0;
}

.global-nav ul li a{
  color: white;
  text-decoration: none;
}

.global-nav ul li a:hover{
  border-bottom: 3px solid white;
  padding-bottom: 18px;

}

.pc_sp-width{
  width: 768px;
  margin:0 auto;
}

.section-box{
  padding: 50px 0;
}

/* 0909修正 */
/* .display-flex{
  display: flex;
  align-items: flex-start;
}

.align-items-center{
  align-items: center;
} */

/*---アラート---*/
.alert {
	box-sizing: border-box;
  color: #313131;
	display: block;
	font-size: 12px;
	padding: 16px;
	text-align: center;
	text-decoration: none;
	width: 100%;
}

@media screen and (min-width:600px){
	.alert:hover {
		text-decoration: underline;
	}
		
}

/*---モーダル---*/
.modal-wrapper {
	background: rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
	display: none;
	width: 100vw;
	height: 100vh;
	opacity: 0;
	overflow: auto;
	padding: 10vh 0;
	position: fixed;
	-webkit-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
	z-index: 9100;
	top: 0;
	left: 0;
}

.modal-wrapper.js-active {
	display: block;
	opacity: 1;
}

.modal-wrapper .container {
	box-sizing: border-box;
	margin: 0 auto;
	max-width: 648px;
	padding: 0 16px;
	width: 100%;
}

.modal {
    background: #ffffff;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
    position: relative;
    padding: 16px;
}


.modal-content {
	margin-top: 10px;
	text-align: left;
	line-height: 1.6;
}

.modal-content p,
.modal-content h3{
	margin : 16px 0;
}

.modal-content h3 {
	margin-top: 24px
}

.modal-content img {
	height: auto;
}

.modal-content strong {
  font-weight: bold;
}

.modal-btn-wrapper {
	margin-top: 10px;
	text-align: center;
}

.modal-btn {
	background: #313131;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    color: #ffffff;
    display: inline-block;
    font-size: 16px;
    line-height: 48px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-align: center;
    padding: 0 1rem;
    height: 48px;
	min-width: 120px;
}

.modal-batsu {
	font-size: 16px;
	position: absolute;
	right: 16px;
	text-decoration: none;
	top: 16px;
	line-height: 1;
	color: #313131;
}

.line-it-button {
  margin-top: 16px;
  height: 20px !important; 
  width: 94px !important;
}

/*---小スライダー---*/
.index-slider,.index-section03{
  background-image: url("funaosa/images/top-background01.jpg");
  width: 100%;
}
.swiper2 .swiper-wrapper .swiper-slide a img{
  max-width: 216px;
  width: 100%;
  height: 144px;
}

/*---お店からの一言--*/
.index-section02{
  background-image: url("funaosa/images/top-background02.jpg");
  width: 100%;
}

.index-section03{
  padding:70px 0;
}

.index-section02-text h1{
  margin-bottom: 30px;
}

.index-section02-text p{
  font-size: 19.68px;
  margin: 0;
}


/*--blog・SNS--*/
/* 0909  バーナー　位置調整*/
.blog-banner{
  max-width: 300px;
  width: 100%;
	margin: 0 auto;
}

.top-sns {
  max-width: 320px;
  width: 100%;
}
.top-sns-box{
  padding: 40px;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  margin:0 30px;
  max-width: 100%;
  text-align: center;
}

.top-sns-box a{
  color: white;
}

.top-sns-facebook{
  background: #3B5998;
}
.top-sns-instagram{
  margin-top: 30px;
  background: linear-gradient(to right, #5478f2 0%, #f23f79 60%, orange 100%);
}


/*---footer---*/
.footer{
  background-color: #313131;
  padding: 5px 0;
  color: white;
  text-align: center;
}


/*---page.php---*/
.contents-wrapper{
  width: 100%;
  padding: 50px 0;
  background-image: url(funaosa/images/top-background01.jpg);
}

.contents-wrapper2{
  background-image: url(funaosa/images/top-background01.jpg);
}

.contents-wrapper3{
  background-image: url(funaosa/images/top-background01.jpg);
}

.contents-wrapper2,.contents-wrapper3{
  width: 100%;
  padding: 75px 0;
}


/*---船主こだわり五調---*/
.gotyou-text01,.page-text1{
  letter-spacing: 5px;
}
.gotyou-sentense{
  text-align: center;
}
.gotyou-sentense,.gotyou-text01{
  margin: 70px auto 100px;
}
.gotyou-sentense img{
  max-width: 320px;
  width:100%;
}
.gotyou-flex-box{
  margin-bottom: 50px;
}
.gotyou-sp{
  display: none;
}
.img-100{
  margin:100px auto;
}
.gotyou-box{
  width: 32%;
}
.gotyou-box-center{
  margin:0 10px;
  border-right: 1px solid;
  border-left: 1px solid;
  padding:0 10px;
}
.gotyou-box p{
  margin-top: 0;
}
.display-flex-gotyou{
  display: flex;
  align-items: flex-start;
}


/*---メニュー--*/
.menu-section h1{
  margin-bottom: 0;
}

.menu-title{
  width: 100%;
  margin: 30px 0 50px;
}

p.title-support {
  text-align: center;
  margin: 10px 0 30px;
}

.menu-box{
  float: left;
  width: 30.73%;
}

.display-flex-menu{
  display: flex;
  flex-wrap: wrap;
  margin:0 auto;
}

.menu-5box{
  margin: 0 15px;
}

.menu-box-middle{
  margin: 0 30px;
}

.menu-5box-middle{
  margin: 0 15px;
}

.menu-5box-img {
  background-image: url(funaosa/images/top-background02.jpg);
  padding: 6px;
}

.menu-5box-img img{
  width: 150px;
  height: 150px;
  object-fit: cover;
}

p.menu-box-text {
  text-align: center;
  font-size: 18px;
  margin: 5px 0 30px;
}

.menu-5box-text{
  text-align: center;
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.5;
}

.menu-5box-price{
  text-align: center;
  font-size: 13px;
  margin: -5px 0 30px;
}

.menu-sp{
  display: none
}


/*---宴会---*/
.course-box{
  margin-bottom: 20px;
}
.course-img{
  width: 100%;
}
.dantai-eyecatch{
  text-align: center;
}
.menu-omotikaeri{
  margin-bottom: 50px;
}




/*---キャンペーン---*/
.campaign-h1{
  margin-bottom: 55px;
}

.campaign-box {
  float: left;
  width: 29.4%;
  padding: 5px;
  background-image: url("funaosa/images/top-background02.jpg");
  margin: 0 10px 20px;
  height: 235px;
}

.campaign-box a img{
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.campaign-title{
  margin: 2px 0;
  line-height: 2;
  font-size: 13px;

}

.campaign-title a{
  color: black;
  text-decoration: none;
}


/*---お問い合わせ---*/
.wpcf7-form{
  text-align: center;
  font-size: 18px;
}



/*---single.php---*/
.article-time{
  margin: 0 0 10px;
}

/*---page.php---*/
.page-text1{
  letter-spacing: 5px;
}

/*---category---*/
.post-categories{
  margin: 0;
}

.post-categories li{
  list-style: none;
}

.post-categories li a{
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #313131;
  padding-bottom: 15px;
}

.category-article {
  width: 100%;
  text-align: left;
  margin: 0 auto;
  padding: 10px 0;
  margin-bottom: 30px;
}

.category-thum {
  display: inline-block;
  vertical-align: top;
  margin-left: 45px;
}

.category-thum img {
  width: 200px;
  height: 160px;
  object-fit: cover;
}

.category-align {
  display: inline-block;
  margin-left: 50px;
  overflow: hidden;
  width: 467px;
}

.category-time {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 10px;
}

.category-title {
  font-size: 20px;
}

.category-title a{
  text-decoration: none;
  color: black;
}


/*---404.php---*/
.notfound p{
  text-align: center;
}

@media screen and (max-width: 900px){
  div#category-contents{
    width: 100%;
  }

  .category-article{
    text-align: center;
  }

  .category-thum{
    display: block;
    margin: 0 auto;
  }

  .category-thum img {
    width: 320px;
    /*---height:auto;--*/
    height: 266px;
  }

  .category-align{
    display: block;
    margin:0 auto;
    width: 322px;
  }

  .category-title,.category-time{
    line-height: 1.5;
  }

  .category-time{
    margin-top: 15px;
  }

  .category-sentense{
    text-align: left;
  }


}


@media screen and (max-width: 767px) {
  h1 {
    padding: 2% 0;
  }
  .pc_sp-width {
    width: 98%;
  }


  /*---header---*/
  .funaosa-logo {
    left: 8%;
    z-index: 2;
    width: 20%;
  }
  .header-top p{
    display: none;
  }
  .global-nav-wrap {
    padding: 5px 0 5px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /*---index.php---*/
  .swiper-custom-parent {
    width: 100%;
  }
  .swiper2 {
    width: 91%;
    padding: 5px;
  }
  .swiper-button-prev{
    left: -1% !important;
  }
  .swiper-button-next{
    right: -1% !important;
  }


  .section-box{
    padding: 7% 0;
  }
  .index-section02-text h1 {
    margin: 0 auto 5%;
    padding: 0;
  }
	

  .index-section02-text p {
    font-size: 2.6vw;
  }

  .swiper2 .swiper-wrapper .swiper-slide a img{
    height: auto;
  }


  .index-section03 {
    padding: 7% 0;
  }
  .display-flex {
    display: block;
  }
  .blog-banner,.top-sns{
    max-width: 448px;
    margin: 0px auto 7%;
  }
  .top-sns-box{
    margin:30px 0;
  }



  /*---五調---*/
  .gotyou-sentense {
    margin: 10% auto;
  }
  .gotyou-text01 {
    text-align: left;
    margin: 10% auto;
    width: 95%;
    letter-spacing: 0px;
  }
  .gotyou-pc{
    display: none;
  }
  .gotyou-sp{
    display:block;
  }
  .flex-right {
    margin-left: 0;
  }
  .gotyou-flex-box {
    margin-bottom: 10%;
    text-align: center;
  }
  .gotyou-flex-lastbox{
    margin-bottom: 5%;
  }
  img.gotyou-flex-img {
    max-width: 320px;
    width: 100%;
  }
  p.gotyou-flex-text {
    width: 95%;
    letter-spacing: 2px;
    text-align: left;
    margin: 0 auto;
  }
  .sp-display-none{
    display: none;
  }


  /*---メニュー---*/
  .menu-box,.menu-5box {
    width: 30%;
  }
  .menu-title {
    margin: 5% auto;
  }
  .menu-title-image{
    height: 50px;
    object-fit: cover;
  }
  p.menu-box-text,.menu-5box-text {
    font-size: 13px;
  }
  .menu-5box-img img {
    height: 25vw;
    width: 25vw;
  }
  .menu-5box-img{
    padding: 1vw 2vw;
  }
  .menu-box-middle{
    margin:0 5%;
  }
  .menu-5box {
    margin: 0 1.66%;
  }


  /*---宴会---*/
  .contents-wrapper2, .contents-wrapper3 {
    padding: 10% 0;
  }
  .course-box{
    text-align: center;
  }
  .course-img {
    width: 320px;
  }
  .course-section {
    text-align: center;
  }

  /*---page.php---*/
  .contents-wrapper {
    padding: 10% 0;
  }
  .page-text1 {
    letter-spacing: 0;
  }

  /*--店舗情報--*/
  table {
    width: 98%;
  }

  table th, table td {
    padding: 2% 0 2% 2%;
    font-size: 3.5vw;
  }


  /*---キャンペーン---*/
  .campaign-box {
    float: none;
    padding: 10px;
    max-width: 430px;
    width: 100%;
    margin:0 auto 55px;
    height: 430px;
  }
  .campaign-box a img {
    height: 330px;
  }
  .campaign-title {
    font-size: 23.9px;
    margin: 5px 0;
    font-weight: bold;
  }

}

@media screen and (max-width: 450px) {
  h1 {
    font-size: 6.5vw;
  }
  p {
    font-size: 13px;
  }
  .right-banner img, .left-banner img {
    width: 65%;
  }


  .header-top {
    height: 35px;
  }
  .contact-btn {
    top: -3px;
    width: 100px;
  }
  .global-nav-wrap{
    margin-top: -1%;
    padding: 0.5% 0;
  }
  .global-nav ul {
    padding-left: 15px;
    margin: 15px 0;
  }
  .global-nav ul li {
    font-size: 12px;
  }


  .h1-small {
    font-size: 4vw;
  }
  .new-information ul{
    margin: 0 auto;
    width: 95%;
  }
  .new-information ul li {
    font-size: 3.6vw;
  }


  /*---page.php---*/


  /*---五調---*/
  .gotyou-sentense img {
    max-width: 320px;
  }
  img.gotyou-flex-img {
    width: 70%;
  }

  /*---キャンペーン---*/
  .campaign-box {
    padding: 10px;
    max-width: 300px;
    width: 100%;
    height: 325px;
  }
  .campaign-box a img {
    height: 250px;
  }
  .campaign-title {
    font-size: 16px;
    margin: 5px 0;
    font-weight: bold;
  }

}



/************************************
** レスポンシブページネーション
************************************/
.pagination{
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
}

.pagination,
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration:none;
  border: 1px solid #ddd;
  border-left-width: 0;
  min-width:36px;
  min-height:36px;
  color: #333;
}

.pagination li:not([class*="current"]) a:hover {
  background-color: #eee;
}

.pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}

.pagination li.first a::before { content: "\f100"; }
.pagination li.last a::after { content: "\f101"; }

.pagination li.previous a::before { content: "\f104"; }
.pagination li.next a::after { content: "\f105"; }

.pagination li.current a {
  background-color: #ddd;
  cursor: default;
  pointer-events: none;
}

.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}

@media only screen and ( max-width: 680px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 500px ) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next{
    position: initial;
    top: initial;
    left: initial;
  }

  .pagination li.previous a { border-left-width: 0; }
}

@media only screen and ( max-width: 400px ) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }

  .pagination li.previous a { border-left-width: 1px; }
}

@media only screen and ( max-width: 240px ) { /* For watches? */
  .pagination li { width: 50%;}

  .pagination li.current {
    order: 2;
    width: 100%;
    border-left-width: 1px;
  }
}


.text-right {
  text-align: right;
}

.modal-btn-line {
  display: block;
  margin-top: 16px;
}

/* 0909 FB,instagram 追加 */
div.sns-display-flex {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 60px;
	position: absolute;
	right: 150px;
}



	.p-index-fv-twitter  {
		display: block; 
	transform: scale(0.8);} 
	.p-index-fv-twitter img {
	display: block;
	height: auto;
	 }
	
	.p-index-fv-twitter img {
		top: 7.5vh;
		height: auto;
    width: 100%;} 
		
		/* .p-index-fv-deco {
			bottom: 0;
			display: block;
			height: auto;
			left: 0;
			position: absolute;
			width: 100%; } */
			
			.p-index-fv-deco{
				height: 100%;
				width: 100%;
			}

	
			@media screen and (min-width:440px) and ( max-width:500px) {
	
		    	div.sns-display-flex {
					display: flex;
					justify-content: flex-end;
					align-items: center;
					width: 200px;
					height: 60px;
					position: absolute;
					right: 150px;
					
			
			}
			
			.twitter-log{
				width: 40px;
				height: auto;
			}
			
			.p-index-fv-twitter img {
				top: 7.5vh;
				height: auto;
				width: 50%;} 

	}
	

	
	@media screen and (min-width:210px) and ( max-width:445px) {
	
		div.sns-display-flex {
			display: flex;
			justify-content: flex-end;
			align-items: center;
			width: 199px;
			height: 40px;
			position: absolute;
			right: 85px;

	}

.twitter-log{
	width: 35px;
	height: auto;
}

.p-index-fv-twitter img {
	top: 7.5vh;
	height: auto;
	width: 50%;} 

}
	
	






		