@charset "utf-8";

/*
Theme Name: 日本みんなの美食倶楽部
Description: 
Author: Taniguchi
Version: 1.0
*/

/*===========
reset_css
===========*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
/*    font-size: 100%;*/
/*    font-style: normal;*/
/*    font-weight: normal;*/
    vertical-align: baseline;
    background: transparent;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section,p {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
b,
strong,
.strong {
font-weight: bold!important;
}

/*======================
basic_setting
======================*/
html {
	font-size: 62.5%;
	font-size: .625vw;
	letter-spacing: 0.07em;
	overflow: auto;
	
}
body{
	font-family: 'Noto Sans JP', sans-serif;
	color: #000;
	line-height: 1.6;
	font-weight: 400;
	overflow: hidden;
}
h2,h3{
	font-weight: normal;
}

a {
	color: #050505;
	text-decoration: none;
}
img {
    max-width: 100%;
    height: auto;
    border: none;
    vertical-align: middle;
}
iframe {
    vertical-align: bottom;
}

figure {
    margin-bottom: 0!important;
}

/*======================
link_hover色々
======================*/

/*透過する*/
.deco a{
/*	transition: 0.5s ease;*/
}
.deco a:hover{
	opacity: 0.8;
}

/*下線がついている→消える*/
.deco01 a{
	text-decoration: underline;
}
.deco01 a:hover{
	text-decoration: none;
}



/*ゆっくり透過する*/
.deco02 a{
	transition: all .3s;
}
.deco02 a:hover{
	opacity: 0.5;
}

/*下線が無い→下線がつく*/
.deco03 a:hover{
	text-decoration-line: underline;
}

/*ふわっと浮き上がる（ドロップシャドウ）*/
.deco-shadow a{
	transition: all .3s;
}
.deco-shadow a:hover{
/*	box-shadow: 0px 6px 22px 0px rgba(185,185,185,0.6);*/
	transform: translateY(-6px);
}

/*ゆっくり色がつく*/
.deco-color a{
	transition: all .3s;
}
.deco-color a:hover{
	color: #82906E;
}

/*青文字下線つき→下線が消える*/
.fo-link a{
    color: #2D6DC0!important;
	text-decoration: underline;
}
.fo-link a:hover{
	text-decoration: none;
}


.link a{
	display: block;
	position: relative;
}
.link a:hover::after{
	content: "";
	position: absolute;
	left: 50%;
	bottom: -10px;
	transform: translateX(-50%);
	display: inline-block;
	background-image: url("images/icon/icon_nav.svg");
	width: 20px;
	height: 4px;
	background-repeat: no-repeat;
	background-size: contain;
}


/*======================
header
======================*/
.header_top{
	width: 100%;
		position: relative;
	z-index: 999;
}


@media only screen and (max-width: 767px) {

}


/*======================
g_nav02 左右端
======================*/
.g_nav02{
	width: 100%;
	height: 100px;
	display: flex;
	justify-content:space-between;
	align-items: center;
	padding-left: 80px;
	padding-right: 80px;
	position: relative;
	z-index: 2;
}
.g_nav02 .header_logo{
	position: relative;
	width:325px;
}
.g_nav02 .header_logo img{
	width:100%;
	height: auto;
}

.header_menu{
	display: flex;
	align-items: center;
}

.header_menu_list{
	display: flex;
}
.header_menu_list  li{
	padding: 0 20px;
}
.header_menu_list  li:last-child{
	padding-right: 56px;
}
.header_menu_list li a{
	  color: #000;
	cursor: pointer;
	display: block;
	font-weight: 500;
	text-align: center;
	line-height: 1;
	font-size: 16px;
}

.contact_btn a{
	display: block;
	width: 210px;
	height: 50px;
	line-height: 50px;
	background-color: #2E78A7;
	border: 1px solid #2E78A7;
	border-radius: 50px;
	font-size: 16px;
	text-align: center;
	transition: .3s;
	position: relative;
}

.contact_btn a span{
		position: relative;
	padding-left: 20px;
}
.contact_btn a span::before{
	content: "";
	display: inline-block;
	background-image: url("images/icon/icon_cart.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 20px;
	height: 18px;
	position: absolute;
	top: 53%;
	left: -10px;
	transform: translateY(-50%);
	transition: .3s;
}

.contact_btn a:hover{
	color: #2E78A7;
	background-color: #fff;
}

.contact_btn a:hover span::before{
	background-image: url("images/icon/icon_cart_blue.svg");
}


@media only screen and (max-width: 767px) {
	.contact_btn a{
	width: 100%;
}
}


/*======================
hamberger_menu
======================*/

body.fixed {
　width: 100%;
　height: 100%;
　position: fixed;
}

/*===========
上に設置
===========*/
	.header_sp{
	width: 100%;
	height: 80px;
	padding:  15px;
		display: flex;
		align-items: center;
	}

	.header_logo_sp a{
		display: block;
	}
	.header_logo_sp img{
		width: 300px;
		height: auto;
		position: relative;
		z-index: 1000;
	}

@media only screen and (max-width: 767px) {
		.header_logo_sp img{
		width: 215px;
	}
}

/*===========
下に設置
===========*/
footer{
	position: relative;
}
.btm_menu{
    position: fixed;
    bottom: 8px!important;
	left: 50%;
	transform: translateX(-50%);
    width: 100%;
    z-index: 1000;  
}
.btm_menu ul{
	width: 100%;
	display: flex;
	justify-content: center;
	    align-items: flex-end;
	    height: 100%;
}
.btm_menu ul li{
	width: 46%;
}
.btm_menu ul li .inner a{
	width: 100%;
	display: block;
	text-align: center;
}
.btm_menu ul li img{
	width: 165px;
	margin: 0 auto;
 }

@media only screen and (min-width: 768px) and (max-width: 1024px) {
	.btm_menu ul{
	width: 430px;
		margin: 0 auto;
}
}

.sp-icon{
	width: 25px;
	height: 25px;
	line-height: 25px;
	font-size: 10px;
	text-align: center;
	background-color: #FFAF38;
	border-radius: 50px;
	color: #fff;
}

/*=====================
ハンバーガーメニューここから
=====================*/
.sp-ham{
	cursor: pointer;
	width: 60px;
	height: 60px;
	z-index: 1000;
		position: fixed;
	top:15px;
	right: 15px;
}

.ham span{
	position: absolute;
	left: 15px;
	width:38px;
	height: 1px;
	background-color: #000;
	transition: all 0.3s;
	z-index: 999;
}
.ham .ham-ttl{
	height: 0;
	font-size: 14px;
	color: #000;
	position: absolute;
	top: -11px;
    left: 5px;
	letter-spacing: 2px;
}

.ham span:nth-of-type(1){
	top: 50%;
	left: 50%;
	transform: translate(-50%,-9px);
}
.ham span:nth-of-type(2){
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
/*.ham span:nth-of-type(3){
	top: 50%;
	left:50%;
	transform: translate(-50%,7px);
}*/

.clicked .ham span:nth-of-type(1) {
	transform: translate(-50%,0) rotate(45deg);
	background-color: #000;
}
.clicked .ham span:nth-of-type(2) {
transform: translate(-50%,0) rotate(-45deg);
    background-color: #000;
}
/*.clicked .ham span:nth-of-type(3){
transform: translate(-50%,0) rotate(-45deg);
    background-color: #fff;
}*/

.ham_menu{
	position: fixed;
	width: 100%;
	height: 100vh;
    top: 0;
	right: 0;
		background-color: #fff;
	background-image: url("images/menu_back.png");
	background-repeat: no-repeat;
	background-size: cover;

	z-index: 999;
	display: none;
		    padding: 20px 20px;
	padding-top: 80px;
	padding-bottom: 200px;
/*	padding: 80px 42px 160px 42px;*/
		overflow: scroll;
	overflow-x: hidden;
    overflow-y: auto;
}

.clicked .ham_menu {
	display: block;
}
.ham_menu .ham_menu_list{
	margin-bottom: 40px;
}
.ham_menu .ham_menu_list li{
	border-bottom: 1px solid #2E78A7;
	position: relative;
}

.ham_menu .ham_menu_list li a{
	display: block;
	width: 100%;
	font-size: 16px;
	font-weight: 500;
	color: #000;
		padding: 26px 0;
}

.ham_menu .ham_menu_list li::after {
    content: "";
	display: inline-block;
	background-image: url( "images/icon/arrow_right_blue.svg");
	background-size: contain;
	background-repeat: no-repeat;
	width: 6px;
	height: 10px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
	transition: all .3s;
}



/*======================
more-btn
======================*/
.more-btn a {
		display: inline-block;
	width: 280px;
	height: 60px;
	line-height: 60px;
	color: #fff;
	font-size: 14px;
	text-align: center;
	background-color: #2E78A7;
	border: 1px solid #2E78A7;
	border-radius: 50px;
	position: relative;
	transition: .3s;
}

.more-btn a::after{
	content: "";
	display: inline-block;
	background-image: url( "images/icon/arrow_right_w.svg");
	background-repeat: no-repeat;
	background-size: contain;
	width: 19px;
	height: 15px;
	position: absolute;
	top: 50%;
	right: 20px;
	transform: translate(-50%,-50%);
	transition: .3s;
}

.more-btn a:hover{
	color: #2E78A7;
	background-color: #fff;
}
.more-btn a:hover::after{
	background-image: url( "images/icon/arrow_right_blue2.svg");
}


@media only screen and (min-width: 768px) and (max-width: 1200px) {
.more-btn a {
	    width: 100%;
    padding: 0;
    height: 60px;
    line-height: 60px;
}
}

@media only screen and (max-width: 767px) {
.more-btn a {
	    width: 100%;
    padding: 0;
    height: 60px;
    line-height: 60px;
}
}



/*======================
table
======================*/
.table{
	width: 100%;
	margin-bottom: 30px;
}

.table th{
	width: 30%;
	font-size: 16px;
	color: #204359;
	font-weight: 500;
	text-align: left;
	border-bottom: 1px solid #2B9BE0;
	padding-top: 20px;
	padding-bottom: 20px;
}
.table td{
	width: 70%;
	font-size: 16px;
	font-weight: 500;
	border-bottom: 1px solid #E2E2E2;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 40px;
}

.table tr:first-child th{
	padding-top: 0;
}
.table tr:first-child td{
	padding-top: 0;
}


@media only screen and (min-width: 768px) and (max-width: 1200px) {
.table{
	width: 100%;
}


}
@media only screen and (max-width: 767px) {
.table{
	width: 100%;
}

.table th{
	font-size: 14px;
	padding-top: 15px;
	padding-bottom: 15px;
}
	.table td{
	width: 70%;
	font-size: 14px;
	padding-top: 15px;
	padding-bottom: 15px;
	padding-left: 20px;
}

}



/*======================
nav_under_line ホバーで下線
======================*/
.nav_under_line .nav_under_line_menu a {
  position: relative;
}
.nav_under_line .nav_under_line_menu a::after {
  position: absolute;
  left: 0;
  bottom: -8px;
  display: block;
  content: "";
  width: 0%;
  height: 1px;
  background: #2E78A7;
  transition: all 0.3s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.nav_under_line .nav_under_line_menu a:hover::after {
  width: 100%;
}



/*======================
inview
======================*/

.fadeIn_logo {
  opacity: 0;
  transition: 3s;
}
.fadeIn{
  opacity: 0;
  transition: 3.5s;
}
.fadeIn_35{
  opacity: 0;
  transition: 3.5s;
}
.fadeIn_45{
  opacity: 0;
  transition: 6.5s;
}
.fadeInTop {
  opacity: 0;
  transition: 2.5s;
}
.fadeIn_logo.is-show,.fadeIn.is-show,.fadeInTop.is-show,.fadeIn_35.is-show,.fadeIn_45.is-show {
  opacity: 1;
}


.fadeIn_up_top {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1.2s;
}
.fadeIn_up_top.is-show {
  transform: translate(0, 0);
  opacity: 1;
/*		transition-delay: 1.2s;*/
}

.fadeIn_up {
  opacity: 0;
  transform: translate(0, 10%);
  transition: 1.5s;
}
.fadeIn_up.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_right {
  opacity: 0;
  transform: translate(10%, 0);
  transition: 1.2s;
}
.fadeIn_right.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-10%, 0);
  transition: 1.2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}


.fadeIn_logo {
  opacity: 0;
	  transform: translate(-50%,-40%);
  transition: 1.5s;
}
.fadeIn_logo.is-show {
	
  transform: translate(-50%,-50%);
  opacity: 1;
}


.fadein {
	opacity: 0;
	transition: all 1000ms;
}
.fadein.scrollin {
	opacity: 1;
}


.fadeInTrigger{
	opacity: 0;
}
.delay-time{
	animation-delay: 0.5s;
}

.delay0-5{
	animation-delay:0.5s;
}
.delay1s{
	animation-delay:1s;
}
.delay1-5s{
	animation-delay:1.5s;
}
.delay1-8s{
	animation-delay:1.8s;
}
.delay2s{
	animation-delay:2s;
}
.delay2-5s{
	animation-delay:2.5s;
}
.delay3s{
	animation-delay:3s;
}
.delay3-5s{
	animation-delay:3.5s;
}
.delay4s{
	animation-delay:4s;
}
.delay5s{
	animation-delay:5s;
}


/*------------------------------------------------------------
btm_fixed
--------------------------------------------------------------*/
.btm_fixed_wrap{
	transition: .3s;
}
.btm_fixed {
    position: fixed;
    right: 20px;
    bottom:30px;
    z-index: 998; 
		width: 327px;
/*	transition: 0.3s;*/
}
.btm_fixed a{
	display: block;
		width: 100%;
	background: linear-gradient(180deg, rgba(223,246,245,1) 0%, rgba(126,194,223,1) 100%);
	border-radius: 12px;
	font-size: 26px;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 10px;
}
	.btm_fixed a .head{
		font-size: 16px;
	}
.btm_fixed a .head img{
	margin-right: 10px;
}

 .btm_fixed  .img_area{
	position: absolute;
	right: 10px;
    top: -22px;
}
.btm_fixed  .img_area img{
	width: 72px;
	height: auto;
}



@media only screen and (min-width: 768px) and (max-width: 1200px) {
	.btm_fixed {
	width: 272px;
}
	.btm_fixed a{
	font-size: 20px;
}
	.btm_fixed  .img_area img{
	    width: 65px;
}
}
@media only screen and (max-width: 767px) {
		.btm_fixed {
	width: 182px;
			bottom: 20px;
}
	.btm_fixed a{
		padding-top: 10px;
	font-size: 16px;
}
	.btm_fixed a .head{
		font-size: 12px;
	}
	
	.btm_fixed a .head img{
	width: 22px;
		vertical-align: bottom;
}
	.btm_fixed .img_area{
		top: -12px;
	}
	.btm_fixed  .img_area img{
	    width: 40px;
}
}

/*======================
ドロップした時の背景色
======================*/
*::selection {
	 background: transparent;
	background-color:rgba(46,120,167,0.2);
}





