@charset "Utf-8";

@font-face {
  font-family: Bradley;
  src: url("font/bradley.ttf") format("truetype");/*For iOS Android*/
}

/*-----------------------------------------------------------------------------------*/
/*	リセット paddingリセット
/*-----------------------------------------------------------------------------------*/

*{
	font-family: 'Noto Sans Japanese', san-serif,'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	padding:0;
    margin:0;
}

*, *:before, *:after { /** paddingにboderを含める **/
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, tbody, tfoot, thead, th,{
	margin:0px;
	padding:0px;
	border:0;
	outline:0;
	font-size:100%;
	vertical-align:baseline;
}

body {
	font-size: 14px;
	color: #003330;
}

a{outline: none;}
a:link {}
a:visited {}
a:hover {}
a:active {}

/*-----------------------------------------------------------------------------------*/
/*	リンク画像透過共通指定　hr装飾
/*-----------------------------------------------------------------------------------*/

.link_img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}

.content a img {
    -webkit-transition: 0.2s ease-in-out;
       -moz-transition: 0.2s ease-in-out;
         -o-transition: 0.2s ease-in-out;
            transition: 0.2s ease-in-out;
	-moz-box-shadow: 0px 1px 2px #656565;
	-webkit-box-shadow: 0px 1px 2px #656565;
	box-shadow: 0px 1px 2px #656565;
}
.content a img:hover {
    opacity: 0.75;
    filter: alpha(opacity=75);
}


hr{
	border: 0;
	height: 1px;
	background-image: -webkit-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:    -moz-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:     -ms-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	background-image:      -o-linear-gradient(left, rgba(0,0,0,0), rgba(0,0,0,0.75), rgba(0,0,0,0));
	margin-top: 5px;
	margin-bottom: 5px;
}

/*********** youtube 地図 ***********/

.youtube_wrapp{
	max-width: 480px;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 460px !important;
  max-height: 315px !important;
}

.map{
	width: 100%;
}

/*********** 解除・調整・その他 ***********/

.clear{clear: both;}

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

.radius_5{  /*** boder角丸 ****/
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.pd_b40 {padding-bottom: 40px;}
.pd_b60 {padding-bottom: 60px;}

.mg_t20 {margin-top: 20px;}
.mg_t30 {margin-top: 30px;}

.mg_b10 {margin-bottom: 10px;}
.mg_b20 {margin-bottom: 20px;}
.mg_b30 {margin-bottom: 30px;}
.mg_b40 {margin-bottom: 40px;}
.mg_b50 {margin-bottom: 50px;}

.font_80{ font-size: 80%;}
.font_110{ font-size: 110%;}
.font_120{ font-size: 120%;}
.font_130{ font-size: 130%;}
.font_140{ font-size: 140%;}
.font_150{ font-size: 150%;}
.font_160{ font-size: 1.8rem;}
.font_170{ font-size: 170%;}
.font_180{ font-size: 180%;}
.font_190{ font-size: 190%;}
.font_200{ font-size: 200%;}

.align_center{ text-align: center;}
.align_right{ text-align: right;}
.align_left{ text-align: left;}

.posi_rel{position: relative;} /*基準*/
.posi_abs{position: absolute;} /*絶対位置*/
.posi_fix{position: fixed;}
.posi_sta{position: static;}

.img_max {max-width: 100%;}

.only_pc {display: none !important;}
.only_mobile {}

/** Flex 指定 ********************/

.flex{
    display: -webkit-flex; /* Safari */
    display: flex;
}

.flex_r{
	-webkit-flex-direction: row-reverse; /* Safari */
	flex-direction:         row-reverse;
}

.flex_wrap{
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
}

/* 端詰め等間隔 */
.space_between{
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}
/* 等間隔 */
.space_around{
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
}

/* センター寄せ */
.justify_center {
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
}


/* PC時Flex モバイル時Flexしない */
.flex_nonflex{}


/* PC時Flexbetween モバイル時Flexaround */

.flex_switch{
	display: -webkit-flex; /* Safari */
    display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: center; /* Safari */
	justify-content:         center;
}



/*** メニュー ***************************************/
/*-----------スマホのトグルボタンのCSS-------------*/

#nav-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 14px;
    width: 34px;
    height: 36px;
    cursor: pointer;
    z-index: 101;
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: #000;
    left: 0;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 0;
}
#nav-toggle span:nth-child(2) {
    top: 11px;
}
#nav-toggle span:nth-child(3) {
    top: 22px;
}


/*---------gnav sp--------------*/
/*-----------スマホ-------------*/
.head-inner {
  display: none;
}

.slick-next {
  right: 0;
}

#top-head,
.inner {
  width: 100%;
  padding: 0;
}
#top-head {
  top: 0;
  position: fixed;
  margin-top: 0;
  z-index: 5000;
  border-bottom: 1px solid #000000;
}
/* Fixed reset */
#top-head.fixed {
  padding-top: 0;
  background: transparent;
}
#mobile-head {
  background: #fff;
  width: 100%;
  height: 56px;
  z-index: 50000;
  position: relative;
}
#top-head.fixed .logo,
#top-head .logo {
  position: absolute;
  left: 13px;
  height: 50px;
  top: 0px;
}
#global-nav {
  position: absolute;
  /* 開いてないときは画面外に配置 */
  top: -500px;
  background: #000;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  -webkit-transition: 0.5s ease-in-out;
  -moz-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}
#global-nav ul {
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
  font-size: 14px;
}
#global-nav ul li {
  float: none;
  position: static;
  padding: 5px 0;
  color: #fff;
  border-bottom: 2px solid #fff;
}
#top-head #global-nav ul li a,
#top-head.fixed #global-nav ul li a {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 120%;
  padding: 15px 0;
}
#nav-toggle {
  display: block;
}
/* #nav-toggle 切り替えアニメーション */
.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(315deg);
  -moz-transform: rotate(315deg);
  transform: rotate(315deg);
}
.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}
.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-315deg);
  -moz-transform: rotate(-315deg);
  transform: rotate(-315deg);
}
/* #global-nav スライドアニメーション */
.open #global-nav {
  /* #global-nav top + #mobile-head height */
  -moz-transform: translateY(556px);
  -webkit-transform: translateY(556px);
  transform: translateY(556px);
}

.m_menu_phone{
	display: inline !important;
}

.img_header_logo{
	height:56px;
}

/** 基本レイアウト ***************************************/

.container{
	z-index: 1;
}

.contents_wrap{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.contents{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.contents_full{
	width: 100%;
}

.bg_green{
	background-color: #56a764;
	color: white;}
.bg_orange{
	background-color: #de9610;
	color: white;}
.bg_red{
	background-color: #d06d8c;
	color: white;}
.bg_green a, .bg_orange a, .bg_red a{
	color: white;
	text-decoration: underline;
}

.bg_red a{
	color: white;
}

.contents_inner{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-top: 20px;
	padding-bottom: 20px;
}

.half_img_area{
	width: 100%;
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
}

.half_img_area .one_two{
	width: 100%;
}

.half_img_area .one_two .comment_area{
	width: 100%;
	text-align: center;
	padding: 40px 10px;
}

.half_img_area .one_two .img_area{
	position: relative;
	width: 100%;
	height: 350px;
	overflow: hidden;
}

.img_area img{
	position: absolute;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	width: 100%;
	min-height: 100%;
	min-width: 100%;
}

.one_half{
	width: 100%;
}

.one_half h4{
	text-align: center;
	padding-top: 5px;
	padding-bottom: 5px;
	font-size: 1.6rem;
	font-weight: 800;
}


.menu_one_half{
	width: 95%;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 20px;
}


.footer{
	background-color: #004541;
	color: white;
}

.footer_wrap{
	width: 100%;
	margin-left: auto;
	margin-right: auto;
}

.footer_contents{
	text-align: center;
	width: 100%;
	padding-top: 30px;
	padding-bottom: 30px;
	margin-left: auto;
	margin-right: auto;
	line-height: 200%;
	font-size: 110%;
}

.footer_contents a{
	color: white;
}
.img_footer_logo{
  max-width: 70%;
  height: auto;
}

/** HOME全画面部分 *****************************************/

.top_cover{
	margin-top: 60px;
	position: relative;
}

.fullvideo{
	height: 80vh;
	max-height: 500px;
}

.topmovie{
	z-index: -10;
}

.video{
	height: 100%;
	overflow: hidden;
	width: 100%;
	object-fit: cover;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

.top_topics{
  width: 90%;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
}

.radius_img_border{
  overflow: hidden;
	border-radius: 15px/15px;/*丸*/
	-webkit-border-radius: 15px;/*丸*/
	-moz-border-radius: 15px;/*丸*/
}
.img_photo{
  width: 100%;
  vertical-align: bottom;
  transition: 0.3s;
}
a:hover .radius_img_border img {
  transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -moz-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  transition: 0.3s;
}


/** ▼TOP以外のページヘッダ画像エリア▼ ******************************/
.header_area{
	position: relative;
	margin-top: 60px;
}

.header_img{
	height: 400px;
}

.img_header{
	z-index: -10;
	height: 100%;
	overflow: hidden;
	width: 100%;
	object-fit: cover;
    animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
/** ▲TOP以外▲ ******************************/


.top_catch{
	position: absolute;
	top: 50px;
	width: 100%;
	text-align: right;
	padding-right: 10%;
}

.top_catch img{
	max-width: 95%;
}

.page_title{
	position: absolute;
	top: 40%;
	display: block;
	text-align: left;
	padding-left: 20%;
}

.h2_page_title{
	font-size: 5.0rem;
	font-weight: 400;
	color: #004541;
	text-shadow:
		2px 2px 15px #ffffff,
		2px -2px 15px #ffffff,
		-2px 2px 15px #ffffff,
		-2px -2px 15px #ffffff,
		1px 2px 15px #ffffff,
		1px -2px 15px #ffffff,
		-1px 2px 15px #ffffff,
		-1px -2px 15px #ffffff;
}

.downbutton{
  position:absolute;
  bottom:40px;
  width:100%;
  text-align:center;
  color: rgb(250,250,250);
  font-size:300%;
  cursor:pointer;
}

.downbutton a {
  padding-top: 30px;
}
.downbutton a span {
	display: inline-block;
	width: 30px;
	height: 30px;
	margin-left: -12px;
	border-left: 4px solid #fff;
	border-bottom: 4px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-animation: sdb 1.5s infinite;
  animation: sdb 3.0s infinite;
  box-sizing: border-box;
}
@-webkit-keyframes sdb {
  0% {
    -webkit-transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}






.hight_500{
	height: 400px;
	width: auto !important;
	padding-top: 20px;
}


.img_width100{
	width: 100%;
}

.one_half img{
	width: 100%;
	max-width: 500px;
}


.comment_area{
	vertical-align: middle;
}

.comment_area p{
	font-size: 1.4rem;
	line-height: 190%;
}

.comment_area h3{
	font-size: 1.6rem;
	font-weight: 400;
	text-align: center;
	padding: 10px 15px;
}


.notebook{
    background-color: #ffffe7;
	font-family: HuiFontP;
	min-height: 100px;
	padding-top: 25px;
	padding-left: 1%;
	padding-right: 1%;
    background-image: linear-gradient(rgba(241,207,164,0.5) .1em, transparent .1em);
    background-size: 100% 2.2rem;
}

.font_hand{
	font-family: HuiFontP;
}

.img_ito{
	margin-left: auto;
	margin-right: auto;
	width: 80% !important;
	max-width: 100%;
}
.img_donuts_01{
  position: absolute;
  width: 70px !important;
  top: 2px;
  left: 80px;
}
.img_donuts_02{
  position: absolute;
  width: 70px !important;
  top: 140px;
  left: 25px;
}
.img_donuts_03{
  position: absolute;
  width: 70px !important;
  top: 15px;
  right: 25px;
}
.img_donuts_04{
  position: absolute;
  width: 70px !important;
  bottom: 40px;
  left: 34px;
}
.img_roll3{
  animation:3s linear infinite rotation;
}
.img_roll5{
  animation:5s linear infinite rotation;
}
.img_roll5_r{
  animation:5s linear infinite rotation_r;
}
.img_roll7{
  animation:7s linear infinite rotation;
}
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
@keyframes rotation_r{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}


.banner_ginowan{
	margin-top: 20px;
	margin-bottom: 20px;
}


.message h3{
	padding-top: 40px;
	padding-bottom: 30px;
	font-family: HuiFontP;
	font-size: 2.0rem;
}

.message p{
	line-height: 200%;
	font-family: HuiFontP;
	font-size: 1.6rem;
}


.h1_title{
	font-family: Garamond , "Times New Roman" ,"ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: 400;
	font-size: 1.8rem;
	line-height: 190%;
	padding: 40px 10px;
}

.h2_title{
	font-family: Garamond , "Times New Roman" ,"ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: 400;
	font-size: 2.0rem;
	line-height: 190%;
	margin-bottom: 10px;
}

.title_bg{
	background-image: url(img/h2_bg.png);
	background-position: right;
	background-repeat: no-repeat;
	background-size: 101px 30px;
	background-position: right bottom;
	padding-bottom: 25px;
}

.p_disc{
	font-size: 110%;
	line-height: 220%;
}


.img_bg{
	background-color: #F7D5D4;
	padding: 10px;
}

.img_bg a img{
	vertical-align: bottom;
}

.flex_nonflex_between{}

.one_forth_square{
	width: 160px;
	display: block;
	margin-bottom: 30px;
}

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

.one_forth_square .img_bg{
	float: left;
	margin-left: 10px;
	margin-right: 20px;
}

.one_forth_square .img_bg a img{
	width: 120px;
}

.one_forth_square img{
	width: 120px;
	vertical-align: bottom;
}

.one_forth_square p{
	font-size: 1.2rem;
	line-height: 150%;
}

.img_width100{
	width: 100%;
}

.img_new_poster{
	width: 90%;
	max-width: 300px !important;
}

/** ボタンデザイン **************************************/

.button_area{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 30px;
	margin-bottom: 30px;
}

a.link_button{
	background-color: #009991;
	display: inline-block;
  max-width: 90%;
  text-align: center;
	color: #fff;
	font-weight: bold;
	letter-spacing: 0.3em;
	text-decoration: none;
  padding: 15px 20px;
  margin-left: auto;
  margin-right: auto;
	border: 1px solid #ffffff;
}

a.link_button:hover{
	background-color: #00ccc2;
	text-decoration: none;
}

/** 角丸imageボタンデザイン **************************************/

.radius_link {
    width: 300px;
    margin: 0 auto;
}
.radius_img {
    width: 300px;
	height: 150px;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.radius_img img{
	transition: .3s ease-in-put;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	position: relative;
	z-index: 0;
}

a:hover .radius_img img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}

/** 角丸imageボタンデザイン350_90 **************************************/

.radius_link350 {
    width: 350px;
	margin-left: auto;
	margin-right: auto;
}
.radius_img350 {
    width: 350px;
	height: 90px;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/
	overflow: hidden;
	position: relative;
	z-index: 1;
}

.radius_img350 img{
	transition: .3s ease-in-put;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	position: relative;
	z-index: 0;
}

a:hover .radius_img350 img {
    transform: scale(1.1, 1.1);
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    -o-transform: scale(1.1, 1.1);
}


#feed{
	width: 100%;
}

#feed ul{
	list-style-type: none;
}

#feed ul li{
	display: block;
	width: 100%;
	margin-bottom: 20px;
	padding-left: 10px;
	padding-right: 10px;
}

#feed ul li:after{
	content: "";
	clear: both;
	display: block;
}

#feed ul li a{
	display: inline-block;
	float: left;
	background-color: #F3C0AB;
	padding: 10px;
	margin-right: 20px;
	border-radius: 15px/15px;/*丸*/
	-webkit-border-radius: 15px;/*丸*/
	-moz-border-radius: 15px;/*丸*/
}

#feed ul li a img{
	vertical-align: bottom;
	height: 110px;
	width: 110px;
	border-radius: 5px/5px;/*丸*/
	-webkit-border-radius: 5px;/*丸*/
	-moz-border-radius: 5px;/*丸*/
}

.feeddate{
	display: inline-block;
	font-weight: 800;
	color: #666666;
	margin-bottom: 10px;
}

.feednew{
	font-weight: 800;
	color: #C7243A;
	margin-left: 20px;
	margin-bottom: 10px;
}

#feed ul li h4{
	font-family: Garamond , "Times New Roman" ,"ヒラギノ明朝 Pro W3" , "Hiragino Mincho Pro" , "HiraMinProN-W3" , "HGS明朝E" , "ＭＳ Ｐ明朝" , "MS PMincho" , serif;
	font-weight: 400;
	font-size: 130%;
	margin-bottom: 10px;
}

/** トップページコンテンツ *************************************************/

.p_disc{
	font-size: 110%;
	line-height: 220%;
}


.img_bg{
	background-color: #F9DFD5;
	padding: 10px;
}

.img_bg a img{
	vertical-align: bottom;
}

.flex_nonflex_between{
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-between; /* Safari */
	justify-content:         space-between;
}

.one_forth_square a img{
	width: 210px;
}

.one_forth_square h3{
	display: inline-block;
	text-align: center;
	font-size: 1.4rem;
	font-weight: 800;
	padding-top: 5px;
	padding-bottom: 5px;
}

.one_forth_square p{
	font-size: 110%;
	line-height: 180%;
}

.img_width100{
	width: 100%;
}


#map_custom{
	height: 500px;
	width: 100%;
}



/** RSSフィード(feedEk) **************************************/

.feedEkList{
	width: 100%;
	padding-left: 15px;
	padding-right: 15px;
	margin-bottom: 20px;
}

.feedEkList li{
	display: block;
	background-color: #F9DFD5;
	width: 100%;
	padding: 15px;
	margin-bottom: 20px;
	border: 1px solid #999999;
}

.itemDate{
	display: block;
	font-weight: 800;
	font-size: 120%;
	line-height: 200%;
}

.itemTitle{
	font-size: 130%;
	font-weight: 400;
	line-height: 120%;
}

.itemContent{
	line-height: 150%;
}


.top_rireki{
	background-color: #CAE7F2;
	width: 95%;
	max-height: 300px;
	overflow-y: scroll;
	list-style-type: none;
}

.top_rireki ul li{
	font-size: 90%;
	margin-left: 5px;
	padding: 5px;
	line-height: 150%;
}


/** メニューページ *************************************************/

.menu_section{
	padding-bottom: 20px;
}

.menu_item{
	position: relative;
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	border-radius: 20px/20px;/*丸*/
	-webkit-border-radius: 20px;/*丸*/
	-moz-border-radius: 20px;/*丸*/
	border: 4px solid;
}

.border_blue{border-color: #7fbfff;}
.border_red{border-color: #ff7f7f;}
.border_pink{border-color: #ff7fff;}
.border_green{border-color: #7fff7f;}
.border_purple{border-color: #7f7fff;}
.border_yellow{border-color: #ffff7f;}
.border_bluegreen{border-color: #7fffbf;}
.border_brown{border-color: #deb068;}
.border_orange{border-color: #DA5019}

.menu_new{
	position: absolute;
	top: 7px;
	right: -15px;
	transform:rotate(25deg);
	font-size: 2.5rem;
	font-weight: 800;
	color: #ff0000;
	-webkit-animation:blink 1.5s ease-in-out infinite alternate;
	-moz-animation:blink 1.5s ease-in-out infinite alternate;
	animation:blink 1.5s ease-in-out infinite alternate;
}

@-webkit-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@-moz-keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
@keyframes blink{
    0% {opacity:0;}
    100% {opacity:1;}
}
.menu_item_img{
	width: 100% !important;
	float: left;
	border-radius: 15px/15px;/*丸*/
	-webkit-border-radius: 15px;/*丸*/
	-moz-border-radius: 15px;/*丸*/
}

.menu_item p{
	font-family: HuiFontP;
	line-height: 120%;
	margin-bottom: 10px;
	text-align: left;
}

.menu_item h3{
	padding-left: 5px;
	font-size: 1.4rem;
}

.menu_item_half_img{
	float: left;
	width: 50%;
	max-width: 250px;
	margin-right: 20px;
	border-radius: 15px/15px;/*丸*/
	-webkit-border-radius: 15px;/*丸*/
	-moz-border-radius: 15px;/*丸*/
}

.list_menu{
	list-style-type: none;
	text-align: left;
	margin-bottom: 10px;
	overflow: auto;
	display: block;
}

.list_menu:after{
	content: "";
	clear: both;
}

.list_menu li{
	font-size: 1.4rem;
	text-align: center;
	padding: 3px 5px;
	margin-left: 5px;
	margin-right: 5px;
	margin-bottom: 10px;
	float: left;
	border: 2px solid #999999;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/
}
.table_menu{
	font-size: 1.2rem;
}

.table_menu tr th{
	text-align: left;
}

.table_menu tr td{
	font-size: 1.4rem;
	text-align: right;
}

.menu_price{
	display: block;
	font-size: 1.8rem;
	font-weight: 800;
	color: #004541;
	text-align: right;
	padding-right: 20px;
}

.menu_one_third{
	width: 100%;
	max-width: 400px;
	margin-bottom: 20px;
}

.menu_two_third{
	width: 100%;
	max-width: 400px;
	margin-bottom: 20px;
}


/** ギャラリー *******************************************/

.gallery{
	margin-bottom: 50px;
}

.gallery ul{
	list-style-type: none;
}

.gallery ul li{
	margin: 0 -10px -10px 0;
	width: 170px;
	height: 170px;
	position: relative;
	overflow: hidden;
	border: 10px solid #ffdbcc;
}

.gallery ul li a:after {
	content:"";  box-shadow:inset 0 0 0 0 rgba(255,255,255, 0); position:absolute; top:0; left:0; bottom:0; right:0;
	-webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}

.gallery ul li a:hover:after { box-shadow:inset 0 0 0 10px rgba(255,255,255, 0.3); }

.gallery ul li a img{
	width: 150px;
}

/***** ページ ***************************************/

.page_bottom_img{
	display: -webkit-flex; /* Safari */
	display: flex;
	flex-wrap: wrap;
	-webkit-justify-content: space-around; /* Safari */
	justify-content:         space-around;
	padding-top: 30px;
	padding-bottom: 30px;
}

.page_bottom_img li{
	position: relative;
	overflow: hidden;
	border: 10px solid #ffdbcc;
	margin-bottom: 20px;
}

.page_bottom_img li a:after {
	content:"";  box-shadow:inset 0 0 0 0 rgba(255,255,255, 0); position:absolute; top:0; left:0; bottom:0; right:0;
	-webkit-transition: all 0.2s ease-in-out; -moz-transition: all 0.2s ease-in-out; -o-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out; transition: all 0.2s ease-in-out;
}

.page_bottom_img li a:hover:after { box-shadow:inset 0 0 0 10px rgba(255,255,255, 0.3); }

.page_bottom_img li a img{
	width: 210px;
	vertical-align: bottom;
}

/***** 問い合わせフォーム ****************************************/

.table_form{
	width: 100%;
  border-collapse: collapse;
	table-layout: fixed;
}

.table_form tr th{
	display: block;
	width: 100%;
	background-color: #f7f39c;
	text-align: left;
	padding-left: 10px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px dotted #56a764;
}

.table_form tr td{
	display: block;
	width: 100%;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 2px solid #56a764;
}

.table_form tr td ul{
	list-style-type: none;
}

.table_form tr td ul li{
	margin-top: 5px;
	margin-bottom: 5px;
}

.table_form tr td select{
	margin-top: 5px;
	margin-bottom: 5px;
}

.table_form tr td input, .table_form tr td textarea, .table_form tr td select{
	background-color: #f2dae8;
	font-size: 120%;
	max-width: 96%;
	margin-left: 2%;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/}

.totalprice{
	display: none;
}

.width_300px{
	min-width: 300px !important;
	max-width: 90%!important;
}

.att{
	color: #c93a40;
}

.hint{
	display: block;
	width: 96%;
	padding: 10px;
	margin-top: 5px;
	margin-left: 2%;
	margin-right: auto;
	border: 1px dotted #d06d8c;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/}

.button, .mfp_buttons{
	padding-top: 30px;
	padding-bottom: 50px;
}

.button button, .mfp_buttons button{
	background-color: #0074bf;
	display: inline-block;
	height: 50px;
	line-height: 50px;
	padding: 0px 74px;
	color: #fff;
	font-weight: bold;
	text-decoration: none;
	margin-bottom: 20px;
	border-radius: 10px/10px;/*丸*/
	-webkit-border-radius: 10px;/*丸*/
	-moz-border-radius: 10px;/*丸*/
}

.button button:hover, .mfp_buttons button:hover{
	background-color: #65ace4;
	text-decoration: none;
}

/** サイトマップ *******************************************/

.ul_sitemap{
	margin-left: 25px;
}

.ul_sitemap li{
	padding-top: 10px;
	padding-bottom: 10px;
}

/** プライバシーポリシー *******************************************/

.policy h3{
	padding-top: 20px;
	padding-bottom: 10px;
}

.policy p{
	line-height: 200%;
}

.img_banner{
	width: 350px;
	height: auto;
}

/** オーダーページ　注文 ******/
.order_name{
  display: inline-block;
  width: 150px;
  text-align: center;
}
.order_price{
  width: 40px;
}
.order_price span{
  font-size: 1.2rem;
}
.order_count{
  width: 90px;
  margin-bottom: 15px;
}
