@charset "UTF-8";
@import url("https://use.typekit.net/dbh3kyv.css");
@font-face {
  font-family: humming;
  src:url(assets/font/FOT-HummingStd-B.otf);
  font-weight: bold;
}
@font-face {
  font-family: "humming";
  src:url("assets/font/FOT-HummingStd-B.eot");
  src: url("assets/font/FOT-HummingStd-B.eot?") format('embedded-opentype'),
  url("assets/font/FOT-HummingStd-B.woff") format('woff'),
  url("assets/font/FOT-HummingStd-B.otf") format('opentype');
  font-weight: bold;
}
@font-face {
  font-family: yugothic;
  src:url(assets/font/Yu Gothic Medium.otf);
  font-weight: bold;
}
@font-face {
  font-family: yugothic;
  src:url(assets/font/Yu Gothic Medium.eot);
  src: url("assets/font/Yu Gothic Medium.eot?") format('embedded-opentype'),
  url("./../fonts/sample-font.woff") format('woff'),
  url("./../fonts/sample-font.otf") format('opentype');
  font-weight: bold;
}
.humming{font-family: humming, sans-serif;}
.yugothic{font-family: yugothic, sans-serif;}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, pre, address,
em, img, small, strong, b, i,dl, dt, dd, ol, ul, li, form, label, table, caption,
tbody, tfoot, thead, tr, th, td, article, canvas, footer, header, menu, nav, section,
time, audio, video, figure , button
{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
input[type="button"],input[type="text"],input[type="submit"],input[type="image"],textarea{-webkit-appearance: none;border-radius: 0;}
body {
  font-size: 16px;
  line-height: 1.4;
  font-family: yugothic, sans-serif;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #262626;
}
article, footer, header, menu, nav, section {display: block;}
ul {list-style: none; }
a {margin: 0;color: inherit;padding: 0;font-size: 100%;text-decoration: none;vertical-align: baseline;background: transparent;}
a:link{transition: .3s;}
a:link:hover{opacity: 0.7;cursor: pointer;}
table {border-collapse: collapse;border-spacing: 0; }
em, b {font-style: normal; }
img {max-width: 100%;vertical-align: bottom;}
hr {display: block;height: 1px;margin: 0;padding: 0;border: 0;outline: 0; }
input, select {vertical-align: middle;}
.century{
  font-family: century-gothic, sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width:768px){
  body {
    font-size: 14px;
  }
}
/*//////////////////////////////
		header
//////////////////////////////*/
header{
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 102;
  transition: 0.5s;
}

  @media screen and (max-width:767px){
  header{
  background-color: #fff;}}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display:none;
}

/*アイコンのスペース*/
#nav-open {
    display: inline-block;
    width: 150px;
    vertical-align: middle;
    padding: 18px 20px;
    line-height: 55px;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10000;
}

  @media screen and (max-width:767px){
  #nav-open {
  width: 120px;
  padding: 8px 10px;
  top: 0;}}

  @media screen and (max-width:375px){
  #nav-open {
  width: 110px;
  top: -1vw;}}

  @media screen and (max-width:320px){
  #nav-open {
  width: 80px;
  top: -5vw;}}


/*ハンバーガーアイコンをCSSだけで表現*/
#nav-open span, #nav-open span:before, #nav-open span:after {
    position: absolute;
    height: 3px;/*線の太さ*/
    width: 33px;/*長さ*/
    border-radius: 3px;
    background: #555;
    display: block;
    content: '';
    cursor: pointer;
    position: relative;
    z-index: 10000;
}
#nav-open span:before {
    bottom: -8px;
}
#nav-open span:after {
    bottom: -13px;
}

/*閉じる用の薄黒カバー*/
#nav-close {
    display: none;/*はじめは隠しておく*/
    position: fixed;
    z-index: 99;
    top: 0;/*全体に広がるように*/
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: .3s ease-in-out;
}


/*中身*/
#nav-content {
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;/*最前面に*/
    width: 100%;/*右側に隙間を作る*/
    height: 100%;
    background: #fff;/*背景色*/
    transition: .3s ease-in-out;/*滑らかに表示*/
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);/*左に隠しておく*/
}

#nav-content .menu_content{
  width: 95%;
  margin: 100px auto 0;
  box-sizing: border-box;
  position: relative;
  border-top: 3px solid #5A181C;
}

  @media screen and (max-width:767px){
  #nav-content .menu_content{
  margin: 75px auto 0;}}

  @media screen and (max-width:320px){
  #nav-content .menu_content{
  margin: 60px auto 0;}}

#nav-content h1{
  width: 95%;
  margin: 0 auto;
  position: relative;
}

#nav-content .menu_content ul li{
  margin: 20px 0;
  font-size: 27px;
  font-weight: bold;
  color: #5A181C;
  text-align: center;
}

  @media screen and (max-width:767px){
  #nav-content .menu_content ul li{
  margin: 20px 0;
  font-size: 20px;}}

  @media screen and (max-width:375px){
  #nav-content .menu_content ul li{
  font-size: 16px;}}

#nav-content .menu_content ul li img{
  width: 20%;
  display: block;
  margin: 30px auto;
}

  @media screen and (max-width:1000px){
  #nav-content .menu_content ul li img{
  width: 40%;}}

  @media screen and (max-width:767px){
  #nav-content .menu_content ul li img{
  width: 60%;}}

/*チェックが入ったらもろもろ表示*/
#nav-input:checked ~ #nav-close {
    display: block;/*カバーを表示*/
    opacity: .5;
}

#nav-input:checked  ~ #nav-open{
  position: fixed;
}

#nav-input:checked  ~ #nav-open span{
  background: rgba(51, 51, 51, 0);
}

#nav-input:checked  ~ #nav-open span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

#nav-input:checked  ~ #nav-open span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
          bottom: -6px;
}

#nav-input:checked ~ #nav-content {
    -webkit-transform: translateY(0%);
    transform: translateY(0%);/*中身を表示*/
    box-shadow: 6px 0 25px rgba(0,0,0,.15);
    overflow: hidden;
}

#nav-input:checked ~ body{
  overflow: hidden;
}

.bgnone{
  background: none!important;
}

.open_fix{
  position: absolute!important;
}

.open_menu{
  -webkit-transform: translateY(0%)!important;
    transform: translateY(0%)!important;
}

.close{
    -webkit-transform: translateY(-105%)!important;
    transform: translateY(-105%)!important;
}

#globalheader_sp{
  position: relative;
}

.logo{
  display: block;
  position: absolute;
  top: 20px;
  left: 20px;
  max-width: 300px;
}

  @media screen and (max-width:1000px){
  .logo{
  max-width: 300px;
}}

  @media screen and (max-width:767px){
  .logo{
  top: 4vw;
  max-width: 200px;
}}

  @media screen and (max-width:320px){
  .logo{
  top: 4vw;
  max-width: 100px;
}}

header.layer{
  background-color: #fff;
  border-bottom: 14px solid #e70012;
}

.globalheader .globalnavi{
  position: relative;
}

.globalheader .middle{
  align-items: flex-start;
  padding-top: 5px;
}

.globalheader .globalnavi .middle{
  margin-right: 200px;
  align-items: flex-start;
}

.ct_btn{
  position: absolute;
  top: -5px;
  right: 10px;
  margin: auto;
}

.globalheader .globalnavi li{
  padding: 0 10px;
}

.globalheader .globalnavi .ct_btn{
  padding: 10px 35px;
  box-sizing: border-box;
  color: #fff;
  background-color: #e70012;
  border-radius: 0 0 10px 10px;
}

.layer{
	height: 110px;
}

  @media screen and (max-width:767px){
  .layer{
  height: 80px;}}

.mv{
  width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;

}

.mv .mv_logo{
  position: relative;
  max-width: 960px;
  margin: 0 auto;
}

.mv .mv_logo p{
  width: 70%;
  max-width: 676px;
  height: 100%;
  position: absolute;
  top: 40px;
  left: -150px;
  z-index: 2;
}



/* main */
.wrapper{
  max-width: 980px;
  margin: 0 auto;
  position: relative;
}

  @media screen and (max-width:767px){
  .wrapper{
  width: 95%;
  margin: 0 auto;}}

.mv_list{
  position: relative;
  top: -50px;
  align-items: center;
}

  @media screen and (max-width:1000px){
  .mv_list{
  top: -20px;}}

.mv_bottomimg{
  width: 42%;
}

.mv_bottom{
  width: 58%;
}

  @media screen and (max-width:767px){
  .mv_bottom{
  width: 100%;
  margin: 30px 0 0;}}


  @media screen and (max-width:767px){
  .mv_bottom_sp{
      width: 100%;
      margin: 0 auto;
  }}

.mv_bottom p{
  font-size: 14px;
  line-height: 1.6;
}

  @media screen and (max-width:767px){
  .mv_bottom p{
  font-size: 13px;
  line-height: 1.8;}}

.mv_bottom_txt{
  width: 90%;
  margin: 0 auto;
  text-align: justify;
}

  @media screen and (max-width:767px){
  .mv_bottom_txt{
  width: 90%;}}

.mv_bottom p.md{
  margin: 0 0 20px;
  font-size: 22px;
  color: #5A181C;
  text-align: center;
}

  @media screen and (max-width:1000px){
  .mv_bottom p.md{
  font-size: 16px;}}

  @media screen and (max-width:767px){
  .mv_bottom p.md{
  font-size: 14px;}}

.mv_bottom p.md span{
  font-size: 27px;
}

  @media screen and (max-width:1000px){
  .mv_bottom p.md span{
  font-size: 20px;}}

  @media screen and (max-width:767px){
  .mv_bottom p.md span{
  font-size: 17px;}}

.brand_box{
  position: relative;
  background: url(assets/img/top/bg.jpg) no-repeat top;
  background-size: 100%;
}

  @media screen and (max-width:767px){
  .brand_box{
  background: url(assets/img/top/bg_sp.jpg) no-repeat top;
  background-size: 100%;}}

  @media screen and (max-width:414px){
  .brand_box{
  background-size: cover;}}

.brand_content{
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

  @media screen and (max-width:1000px){
  .brand_content{
  max-width: 80%;}}

  @media screen and (max-width:767px){
  .brand_content{
  max-width: 90%;}}

.brand_content .ttl{
  font-size: 32px;
  color:#5A181C;
}

  @media screen and (max-width:1000px){
  .brand_content .ttl{
  font-size: 28px;}}

  @media screen and (max-width:767px){
  .brand_content .ttl{
  font-size: 20px;}}

  @media screen and (max-width:320px){
  .brand_content .ttl{
  font-size: 16px;}}

.brand_content .ttl span{
  font-size: 20px;
}

  @media screen and (max-width:767px){
  .brand_content .ttl span{
  font-size: 12px;}}

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

.tp{
	position: relative;
	top: -5px;
}

.tp02{
	position: relative;
	top: -30px;
}

	@media screen and (max-width:767px){
	.tp{
	top: 0;
	}

	.tp02{
	top: 0;
	}

	.tp03{
	position: relative;
	top: -2vw;
	}}

.txtsel{
  position: relative;
  top: -70px;
}

  @media screen and (max-width:1000px){
  .txtsel{
  top: -50px;}}

  @media screen and (max-width:767px){
  .txtsel{
  top: -7vw;}}

  @media screen and (max-width:767px){
  .txtsel02{
  top: -4vw;}}

  @media screen and (max-width:767px){
  .txtsel03{
  top: -10vw;}}

  @media screen and (max-width:1000px){
  .bnr_info{
  width: 98%;
  margin: 0 auto;}}

  @media screen and (max-width:767px){
  .bnr_info{
  width: 100%;
  margin: 0 auto;}}

.bnr_info .flex_list div{
  width: 50%;
}

.bnr_info .flex_list div p{
  font-size: 18px;
  line-height: 1.6;
}

  @media screen and (max-width:1000px){
  .bnr_info .flex_list div p{
  font-size: 16px;}}

.bnr_info .flex_list div p.bnr_ttl{
  font-size: 28px;
}

  @media screen and (max-width:1000px){
  .bnr_info .flex_list div p.bnr_ttl{
  font-size: 24px;}}

  @media screen and (max-width:767px){
  .bnr_info .bnr_ttl{
  font-size: 19px;}}

.bnr_info .flex_list div p.tel{
  font-size: 27px;
}

  @media screen and (max-width:1000px){
  .bnr_info .flex_list div p.tel{
  font-size: 23px;}}

  @media screen and (max-width:767px){
  .bnr_info .tel{
  font-size: 22px;}}


/* about */

.mv_bottom .about_md{
	font-size: 28px;
	margin: 0 0 20px;
    color: #5A181C;
    text-align: center;
}

  @media screen and (min-width:768px) and (max-width:1000px){
  .mv_bottom .about_md{
  font-size: 22px;}}

  @media screen and (max-width:767px){
  .mv_bottom .about_md{
  font-size: 19px;}}

.leg{
	position: absolute;
    background: url(assets/img/about/img_01_2.png) no-repeat top;
    background-size: 35%;
    top: 30px;
    width: 50%;
    height: 100%;
    right: 0;
    margin: auto;
    z-index: -1;
}

  @media screen and (min-width:768px) and (max-width:1000px){
  .leg{
  top: 0px;}}

.al-c{
	align-items: center;
}

.detailtxt{
	font-size: 14px;
	line-height: 1.8;
}

  @media screen and (max-width:767px){
  .detailtxt{
  font-size: 13px;}}

.comment{
	padding: 15px;
	box-sizing: border-box;
	background-color: #F6F3EE;
	border-radius: 5px;
	line-height: 1.8;
	text-align: justify;
	font-size: 14px;
}

  @media screen and (max-width:767px){
  .comment{
  padding: 15px 25px;
  font-size: 12px;}}

.circleimg{
	display: block;
	height: 300px;
	margin: 0 auto;
}

  @media screen and (min-width:768px) and (max-width:1000px){
  .circleimg{
  height: 200px;}}

.ci_txt{
	width: 80%;
	margin: 20px auto 0;
	line-height: 1.8;
	font-size: 14px;
}

  @media screen and (max-width:767px){
  .ci_txt{
  width: 90%;
  margin: 20px auto 50px;
  font-size: 13px;}}

.mv_bottom .about_bg{
	background: url(assets/img/about/bg.png) no-repeat top;
  background-size: cover;
	font-size: 30px;
  margin: 30px 0 20px;
  color: #5A181C;
  text-align: center;
  font-family: humming,sans-serif;
  font-weight: bold;
}

.about_bg{
	background: url(assets/img/about/bg02.png) no-repeat top;
    background-size: cover;
	font-size: 30px;
    margin: 30px 0 20px;
    color: #5A181C;
    text-align: center;
    font-family: humming,sans-serif;
  font-weight: bold;
}

  @media screen and (max-width:767px){
  .mv_bottom .about_bg{
      margin: 20px 0 10px;
    background: none;
  font-size:22px;}

  .about_bg{
  padding: 10px 0;
   font-size: 19px;}}

.mv_bottom .milk_bg{
  background: url(assets/img/pet/milk_bg.png) no-repeat top;
    background-size: cover;
  font-size: 25px;
    margin: 30px 0 20px;
    color: #5A181C;
    text-align: center;
    font-family: humming,sans-serif;
  font-weight: bold;
}

  @media screen and (max-width:767px){
  .mv_bottom .milk_bg{
  padding: 10px 0;
   font-size: 19px;}}

  @media screen and (max-width:320px){
  .mv_bottom .milk_bg{
   font-size: 16px;}}

.mv_bottom .milk_bg2{
  background: url(assets/img/pet/milk_bg2.png) no-repeat top;
    background-size: cover;
  font-size: 25px;
    margin: 30px 0 20px;
    color: #5A181C;
    text-align: center;
    font-family: humming,sans-serif;
  font-weight: bold;
}

  @media screen and (max-width:767px){
  .mv_bottom .milk_bg{
  padding: 10px 0;
   font-size: 19px;}}

  @media screen and (max-width:320px){
  .mv_bottom .milk_bg{
   font-size: 16px;}}


.about_info p{
	font-size: 18px;
}

  @media screen and (max-width:767px){
  .about_info p{
  font-size: 14px;}}

.about_info .bnr_ttl{
	font-size: 28px;
}

  @media screen and (max-width:767px){
  .about_info .bnr_ttl{
  font-size: 19px;}}

.about_info .tel{
	font-size: 27px;
}

  @media screen and (max-width:767px){
  .about_info .tel{
  font-size: 22px;}}

.about_tel{
	color: #5A181C;
	font-size: 30px;
}

  @media screen and (max-width:767px){
  .about_tel{
  line-height: 1.6;
  font-size: 20px;}}

  @media screen and (max-width:767px){
  .bg_none{
    background: none;
  }}

.pulin_txt{
    width: 60%;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.8;
    position: relative;
    text-align: center;
}

  @media screen and (max-width:767px){
  .pulin_txt{
  width: 90%;
  font-size: 13px;}}

.product_name{
  margin: 40px 0 0;
  text-align: center;
  font-size: 21px;
  font-family: humming,sans-serif;
}

  @media screen and (max-width:767px){
  .product_name{
  font-size: 20px;}}

.pulinimg{
  position: absolute;
  width: 40%;
  top: -50px;
  left: 0;
  right: 0;
  margin: auto;
}

  @media screen and (max-width:767px){
  .pulinimg{
  width: 65%;
  top: -15vw;}}

.pulin_bg{
  margin: 100px auto 0;
  padding: 60px 20px 20px;
  box-sizing: border-box;
  background-color: #FFF5E0;
}

  @media screen and (max-width:767px){
  .pulin_bg{
  width: 100%;
  padding: 60px 7.5% 20px;}}


.yellow{
  background: #FFEFBB;
  margin: 0;
}

.blue{
  background: #82CBFF;
  margin: 0;
}

.blwn{
  background: #E1AE6C;
  margin: 0;
}

.bage{
  background: #F6F3EE;
}

.product_info{
  margin-bottom: 170px;
}

  @media screen and (max-width:767px){
  .product_info{
  margin-bottom: 50px;}}

.product_info p.pulin_ph{
  text-align: center;
  width: 50%;
  margin: 0 auto;
}

  @media screen and (max-width:767px){
  .product_info p.pulin_ph{
  width: 30%;
  margin: 50px auto;}}

.product_info p.pulin_name{
  margin: 30px 0 0;
  font-size: 24px;
  text-align: center;
  line-height: 1.2;
}

  @media screen and (max-width:767px){
  .product_info p.pulin_name{
  font-size: 18px;}}

.product_info p.price{
  font-size: 21px;
  text-align: center;
  line-height: 1.6;
}

  @media screen and (max-width:767px){
  .product_info p.price{
  font-size: 18px;}}

.product_info p{
  font-size: 14px;
  line-height: 1.8;
}

  @media screen and (max-width:767px){
  .product_info p{
  font-size: 13px;}}

.p_comment{
  padding: 15px;
  box-sizing: border-box;
  background-color: #E1AE6C;
  color: #fff;
  border-radius: 30px;
  color: #5A181C;
}

  @media screen and (max-width:767px){
  .p_comment{
  width: 95%;
  margin: 80px auto 0;
  font-size: 18px;}}

.review{
  background-color: #FFF5E0;
  border-radius: 30px;
  padding: 40px 20px 20px;
  box-sizing: border-box;
  position: relative;
}

  @media screen and (max-width:767px){
  .review{
  width: 90%;
  margin: 30px auto;}}

.review_s{
    background-color: #FFF5E0;
    border-radius: 30px;
    padding: 15px 20px 20px;
    box-sizing: border-box;
    position: relative;
  }
  
@media screen and (max-width:767px){
    .review_s{
    width: 90%;
    margin: 30px auto;}}



.r01:before{
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: -20px;
  left: 0;
  background: url(assets/img/pulin/img_12.png) no-repeat top;
  background-size: cover;
}

.r02:before{
  content: "";
  width: 100px;
  height: 100px;
  position: absolute;
  top: -20px;
  left: 0;
  background: url(assets/img/pulin/img_13.png) no-repeat top;
  background-size: cover;
}

  @media screen and (max-width:767px){
  .r01:before,.r02:before{
  width: 95px;
  height: 95px;}}

.product_info .area{
  border-bottom: 1px solid #E1AE6C;
  text-align: right;
  font-size: 18px;
  font-weight: bold;
  color: #5A181C;
}

  @media screen and (max-width:767px){
  .product_info .area{
  font-size: 16px;}}

.product_info .r_txt{
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
}

  @media screen and (max-width:767px){
  .product_info .r_txt{
  font-size: 11px;}}


.product_info p.check{
  position: relative;
  padding: 10px 0 10px 60px;
  font-size: 18px;
  font-weight: bold;
}

  @media screen and (max-width:767px){
  .product_info p.check{
  padding: 5px 0 5px 40px;
  font-size: 12px;}}


.product_info p.check:before{
  content: "";
  width: 33px;
  height: 35px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background: url(assets/img/pet/check.png) no-repeat top;
  background-size: cover;
}

  @media screen and (max-width:767px){
  .product_info p.check:before{
  width: 23px;
  height: 24px;
  bottom: auto;
  top: 1vw;}}

.product_info p.ch02:before{
  top: 7px;
  bottom: auto;
}

  @media screen and (max-width:767px){
  .product_info p.ch02:before{
  top: 1vw;}}

.yel{
  background-color: #F7F1D3;
  border-radius: 30px;
  padding: 20px 25px;
  box-sizing: border-box;
}

  @media screen and (max-width:767px){
  .yel{
  padding: 20px 15px;}}

.product_info p.caution_ttl{
  padding: 0 0 10px;
  color: #FA6400;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid #FA6400;
  font-family: humming,sans-serif;
}

  @media screen and (max-width:767px){
  .product_info p.caution_ttl{
  font-size: 18px;}}

  @media screen and (max-width:320px){
  .product_info p.caution_ttl{
  font-size: 15px;}}

.yel2{
  background-color: #F1FBFF;
  border-radius: 30px;
  padding: 20px 25px;
  box-sizing: border-box;
}

.product_info p.caution_ttl2{
  padding: 0 0 10px;
  color: #007BE5;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  border-bottom: 2px solid #007BE5;
  font-family: humming,sans-serif;
}

  @media screen and (max-width:767px){
  .product_info p.caution_ttl2{
  font-size: 18px;}}

  @media screen and (max-width:320px){
  .product_info p.caution_ttl2{
  font-size: 15px;}}

.product_info p.milk_name{
  text-align: center;
  font-size: 24px;
}

  @media screen and (max-width:767px){
  .product_info p.milk_name{
  font-size: 18px;
  color: #5A181C;}}

.product_info p.milk_price{
  text-align: center;
  font-size: 21px;
}

  @media screen and (max-width:767px){
  .product_info p.milk_price{
  font-size: 14px;}}

.c_message figure{
  max-width: 555px;
  margin: 70px auto 35px;
}

  @media screen and (max-width:767px){
  .c_message figure{
  margin: 30px auto 20px;}}

.c_message p{
  max-width: 540px;
  margin: auto;
  line-height: 1.8;
  font-size: 14px;
  text-align: justify;
    text-justify: inter-ideograph;
}

  @media screen and (max-width:767px){
  .c_message p{
  max-width: 95%;
  font-size: 13px;}}

.flesh_box{
  max-width: 705px;
  margin: 75px auto 35px;
}

  @media screen and (max-width:767px){
  .flesh_box{
  max-width: 80%;
  margin: 35px auto 25px;
  flex-wrap: wrap;}

  .flesh_box .mr10{
  margin-right: 0;}

  .flesh_box_sp{
  max-width: 95%;
  margin: 25px auto 15px;}}


  @media screen and (max-width:767px){
  .flesh_box .w-42{
  width: 100%;}}

.flesh_box figure{
  margin: auto;
}

.product_box{
  max-width: 300px;
  margin: auto auto auto 0;
  letter-spacing: -1px;
}

.product_box p.p_name{
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: bold;
}

  @media screen and (max-width:767px){
  .product_box p.p_name{
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 20px;}}

.product_box p.product_price{
  margin-bottom: 5px;
  font-size: 19px;
  font-weight: bold;
}

.product_box p{
  font-size: 14px;
}

  @media screen and (max-width:767px){
  .product_box p.product_price{
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 16px;}

  .product_box p{
  margin-top: 5px;
  font-size: 13px;}}

.ttl_img{
  max-width: 633px;
  margin: 50px auto 25px;
}

  @media screen and (max-width:767px){
  .ttl_img{
  max-width: 95%;
  margin: 40px auto 20px;}}

.cheesetxt{
  max-width: 470px;
  margin: auto;
  letter-spacing: -1px;
}

  @media screen and (max-width:767px){
  .cheesetxt{
  max-width: 95%;}}

.cheesetxt p{
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
  text-justify: inter-ideograph;
}

  @media screen and (max-width:767px){
  .cheesetxt p{
  font-size: 13px;}}

.kantentxt{
  max-width: 455px;
  margin: auto;
}

  @media screen and (max-width:767px){
  .kantentxt {
  max-width: 95%;}}

.kantentxt p{
  text-align: justify;
  text-justify: inter-ideograph;
}

.kantenbox{
  max-width: 355px;
  margin-top: 35px;
  margin-left: 0;
  margin-right: auto;
}

.kantenbox p{
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0;
  line-height: 1.8;
}

.needs_ttl{
  text-align: center;
  font-size: 28px;
  color: #5A181C;
}

  @media screen and (max-width:767px){
  .needs_ttl{
  max-width: 95%;
  margin: auto;
  font-size: 5.5vw;}}

.needstxt{
  max-width: 510px;
  margin: 45px auto 0;
  font-size: 14px;
  line-height: 1.8;
  text-align: justify;
  text-justify: inter-ideograph;
}

  @media screen and (max-width:767px){
  .needstxt{
  max-width: 95%;
  margin: 10px auto 0;
  font-size: 13px;}}

.recommend_box{
  margin: 60px auto 50px;
  background-color: #D3EBF3;
  border-radius: 50px;
  padding: 50px;
  box-sizing: border-box;
}

.r_title{
  padding: 10px 0;
  background-color: #FFF5E0;
  border-radius: 30px;
  text-align: center;
  font-size: 30px;
  color: #5A181C;
}

.recommend_md{
  margin: 20px auto;
  font-size: 25px;
  color: #5A181C;
  text-align: center;
  text-decoration: underline;
}

.recommend_img{
  max-width: 655px;
    margin: 35px auto 35px;
}

  @media screen and (max-width:767px){
  .recommend_img{
  max-width: 95%;
  margin: 10px auto 30px;}}

.cauiton_img{
  max-width: 655px;
    margin: 35px auto 230px;
}

  @media screen and (max-width:767px){
  .cauiton_img{
  max-width: 90%;
  margin: 100px auto 170px;}}

.r_img{
	max-width: 600px;
    margin: 45px auto 0;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

	@media screen and (max-width:767px){
  .r_img{
  max-width: 85%;}}

.r_txt{
	max-width: 600px;
    margin: 20px auto 0;
    font-size: 16px;
    line-height: 1.8;
    position: relative;
}

  @media screen and (max-width:767px){
  .r_txt{
  max-width: 95%;
  font-size: 14px;}}

.contact_img{
	max-width: 535px;
	margin: 25px auto 110px;
}

  @media screen and (max-width:767px){
  .contact_img{
  max-width: 100%;
  margin: 15px auto 35px;}}

.md{
	max-width: 633px;
	margin: 65px auto 55px;
}

  @media screen and (max-width:767px){
  .md{
 	max-width: 90%;
	margin: 55px auto 25px;}}

.md02{
	max-width: 633px;
	margin: 65px auto 0;
}

  @media screen and (max-width:767px){
  .md02{
  max-width: 90%;}}

.jobbox{
	max-width: 580px;
	margin :auto;
}

.jobimg{
	max-width: 210px;
	margin-right: 20px;
}

  @media screen and (max-width:767px){
  .jobimg{
  max-width: 90%;
  margin: auto;}}

.jobimg02{
	max-width: 600px;
	margin: 25px auto 55px;
}

  @media screen and (max-width:767px){
  .jobimg02{
  max-width: 90%;}}

.jobtxt{
	max-width: 350px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8;
	text-align :justify;
	letter-spacing: -0.5px;
}

  @media screen and (max-width:767px){
  .jobtxt{
  max-width: 90%;
  margin: 20px auto 0;
  font-size: 14px;}}

.jobbox02{
	max-width: 645px;
	margin :0 auto;
}

.jobimg03{
	max-width: 300px;
	margin: 0 auto;
}

.jobtxt02{
	max-width: 380px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.8;
	text-align :justify;
	letter-spacing: -1px;
}

  @media screen and (max-width:767px){
  .jobtxt02{
  max-width: 90%;
  font-size: 14px;}}

.jobtxt03{
	max-width: 542px;
	margin-top: 20px;
	font-size: 16px;
	line-height: 1.8;
	text-align :justify;
	letter-spacing: -1px;
}

  @media screen and (max-width:767px){
  .jobtxt03{
  max-width: 90%;
  margin: 20px auto 0;
  font-size: 14px;}}

.p_food{
	max-width: 545px;
	margin: auto;
}

  @media screen and (max-width:767px){
  .p_food{
  max-width: 80%;}}

.foodicon{
	width: 84px;
	height: 84px;
}

  @media screen and (max-width:767px){
  .foodicon{
  width: 60%;
  height: auto;}}

  @media screen and (max-width:767px){
  .foodicon02{
  width: 75%;
  height: auto;}}

.foodbx{
	max-width: 445px;
	margin-top: 20px;
}

.foodtxt{
	font-size: 16px;
	line-height: 1.8;
	text-align :justify;
	letter-spacing: -1px;
}

  @media screen and (max-width:767px){
  .foodtxt{
  	margin-top: 10px;
  font-size: 14px;}}

.foodttl{
	margin-bottom: 10px;
	color: #5A181C;
	font-size: 24px;
	font-weight: bold;
}

.workbnr{
	max-width: 600px;
	margin: 25px auto 0;
}

  @media screen and (max-width:767px){
  .workbnr{
  max-width: 85%;
  margin: 50px auto 0;}}

.workbnr02{
	max-width: 600px;
	margin: 75px auto 0;
}

  @media screen and (max-width:767px){
  .workbnr02{
  max-width: 95%;
  margin: 20px auto 0;}}

.contacttxt{
	max-width: 526px;
	margin: 30px auto 0;
	font-size: 16px;
	line-height: 1.8;
	letter-spacing: -0.5px;
}

  @media screen and (max-width:767px){
  .contacttxt{
  max-width: 75%;
  margin: 15px auto 0;
  font-size: 14px;}}

.contact_img02{
	max-width: 535px;
	margin: 25px auto 250px;
}

  @media screen and (max-width:767px){
  .contact_img02{
  max-width: 100%;
  margin: 15px auto 120px; }}

/* footer */

.footer_menu{
  background-color: #F6F3EE;
  text-align: center;
}

.footer_menu ul{
  margin: -30px auto 30px;
  position: relative;
}

.footer_menu ul li{
  margin: 10px 0;
  font-size: 18px;
  color: #5A181C;
}

  @media screen and (max-width:767px){
  .footer_menu ul li{
  font-size: 14px;}}

.ft_logo{
  position: relative;
  top: -60px;
  width: 12%;
  margin: 0 auto 20px;
}

  @media screen and (max-width:1000px){
  .ft_logo{
  width: 20%;}}

  @media screen and (max-width:767px){
  .ft_logo{
  top:-12vw;
  width: 25%;}}

#page_top{
  width: 82px;
  height: 86px;
  position: fixed;
  right: 0;
  bottom: 30px;
}

  @media screen and (max-width:767px){
  #page_top{
  bottom: 10px;}}

#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  content: "";
  background :url(assets/img/top/top.png) no-repeat top;
  position: absolute;
  background-size: cover;
  top: -5px;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

.copyright{
  background-color: #8DCDD3;
}

.copyright p{
  font-size: 14px;
}

  @media screen and (max-width:767px){
  .copyright p{
  font-size: 12px;}}

.copyright p.name{
  font-size: 19px;
}

  @media screen and (max-width:767px){
  .copyright p.name{
  font-size: 15px;}}

.copyright p.number{
  font-size: 27px;
}

  @media screen and (max-width:767px){
  .copyright p.number{
  font-size: 21px;}}
