@charset "UTF-8";
/************************************************

	animation

*************************************************/
@-webkit-keyframes haeder_in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes haeder_in {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}

@-webkit-keyframes haeder_out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

@keyframes haeder_out {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-100%);
  }
}

/************************************************

	Font Style

************************************************/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  line-height: 1.75;
  font-size: 1.4em;
  color: #333;
}

_:-ms-input-placeholder, :root body {
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

p {
  font-size: 1.6rem;
}

h1, h2, h3, h4, h5, h6,
.heading p {
  line-height: normal;
}

h1 {
  font-size: 110%;
}

h2 {
  font-size: 100%;
}

h3, h4, h5, h6 {
  font-size: 100%;
}

a,
a:hover,
a:visited {
  color: inherit;
  text-decoration: none;
}

.bold {
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
}

_:-ms-input-placeholder, :root .bold {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.big {
  font-size: 120%;
}

.small {
  font-size: 1.2rem;
  line-height: 1.2;
}

.red {
  color: #F00;
}

.gray {
  color: #888;
}

body {
  background: #fff;
}

body > div[id] {
  width: 100%;
}

/************************************************
	
	Header

*************************************************/
#header,
#fixed_header {
  width: 100%;
  padding: 20px 20px 10px 20px;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

@media screen and (max-width: 768px) {
  #header,
  #fixed_header {
    padding: 10px;
  }
}

#header.fixed,
#fixed_header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: -moz-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: -webkit-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: linear-gradient(to bottom, #333333 0%, rgba(51, 51, 51, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#00333333',GradientType=0 );
  transform: translateY(-100%);
  transition: transform .3s;
}

#header.fixed.show,
#fixed_header.fixed.show {
  transform: translateY(0);
}

#header.fixed.show .has_lower.on .main_lower,
#fixed_header.fixed.show .has_lower.on .main_lower {
  display: -webkit-flex;
  display: flex;
}

#header.fixed .has_lower.on .main_lower,
#fixed_header.fixed .has_lower.on .main_lower {
  display: none;
}

@media screen and (max-width: 768px) {
  #header,
  #fixed_header {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    background: -moz-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: -webkit-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
    background: linear-gradient(to bottom, #333333 0%, rgba(51, 51, 51, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#00333333',GradientType=0 );
  }
}

@media screen and (min-width: 769px) {
  #fixed_header .header_inner .nav_main > li > a:hover {
    transform: translateY(10px);
  }
}

#fixed_header .header_inner.open_lower {
  margin-bottom: 130px;
}

#fixed_header .main_lower {
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
  transform: translate(100px, 170%);
}

#fixed_header .main_lower::after {
  bottom: auto;
  left: auto;
  transform: translate(-131px, -100%) rotate(180deg);
  top: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #fixed_header {
    display: none;
  }
}

#fixed_header .has_lower > a::before, #fixed_header .has_lower > a::after {
  width: 10px;
  bottom: 25%;
}

.header_inner {
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  align-content: center;
  position: relative;
}

.header_inner .logo {
  max-width: 150px;
  display: none;
}

.fixed .header_inner .logo {
  display: block;
}

.header_inner .btn_sp_menu {
  max-width: 38px;
  display: none;
}

@media screen and (max-width: 768px) {
  .header_inner .btn_sp_menu {
    display: block;
    margin-left: auto;
    pointer-events: all;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .btn_sp_menu.open + .nav_box {
    opacity: 1;
    pointer-events: all;
  }
}

.header_inner.open_lower {
  margin-bottom: 300px;
}

.header_inner .nav_box {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_box {
    background: #fff url("../images/bg_washi.png") repeat center/114px;
    display: block;
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    padding: 10px 20px;
    box-sizing: border-box;
    width: 90%;
    height: 75vh;
    margin: 0 auto;
    overflow: scroll;
    -webkit-overflow-scrolling: touch;
    opacity: 0;
  }
}

.header_inner .nav_main {
  position: absolute;
  top: 600px;
  left: 0;
  right: 0;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  transform: translateY(-90%);
  opacity: 0;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main {
    opacity: 1;
  }
}

_:-ms-lang(x), .header_inner .nav_main {
  right: 20px;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main {
    position: static;
    display: block;
    transform: none;
  }
}

.fixed .header_inner .nav_main {
  position: relative;
  top: 10px !important;
  transform: translateY(-10px);
}

.header_inner .nav_main.show {
  opacity: 1;
  transition: opacity .3s;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main.show {
    transition: opacity 0s;
  }
}

.header_inner .nav_main > li {
  text-align: center;
  margin: 0 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main > li {
    margin: 0;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main > li + li {
    margin-top: 15px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
}

.fixed .header_inner .nav_main > li {
  margin: 0 10px;
}

.header_inner .nav_main > li > a {
  background: url("../images/bg_nav.png") no-repeat center/cover;
  width: 123px;
  height: 122px;
  border-radius: 50%;
  display: block;
  color: #fff;
  position: relative;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  .header_inner .nav_main > li > a:hover {
    transform: translateY(-10px);
  }
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main > li > a {
    color: #333;
    background: none;
    width: auto;
    height: auto;
    border-radius: 0;
  }
}

.fixed .header_inner .nav_main > li > a {
  width: 90px;
  height: 90px;
}

.header_inner .nav_main > li > a .text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  word-break: keep-all;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
}

_:-ms-input-placeholder, :root .header_inner .nav_main > li > a .text {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_main > li > a .text {
    position: static;
    transform: none;
    font-family: "游ゴシック Medium", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
    font-weight: normal;
  }
}

.fixed .header_inner .nav_main > li > a .text {
  font-size: 1.2rem;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

.header_inner .has_lower {
  position: relative;
}

.header_inner .has_lower.on .main_lower {
  display: -webkit-flex;
  display: flex;
}

_:-ms-input-placeholder, :root .header_inner .has_lower.on .main_lower {
  width: 482px;
}

@media screen and (max-width: 768px) {
  .header_inner .has_lower.on .main_lower {
    display: block;
  }
  _:-ms-input-placeholder, :root .header_inner .has_lower.on .main_lower {
    width: 100%;
  }
}

.header_inner .has_lower.on > a::after {
  transform: translateX(-50%) rotate(0);
}

@media screen and (max-width: 768px) {
  .header_inner .has_lower.on > a::after {
    transform: translateY(50%) rotate(0);
  }
}

.header_inner .has_lower > a::before, .header_inner .has_lower > a::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  position: absolute;
  bottom: 25%;
  left: 50%;
  transform: translateX(-50%) rotate(0);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .header_inner .has_lower > a::before, .header_inner .has_lower > a::after {
    background: #333;
    bottom: 50%;
    left: auto;
    right: 5px;
    transform: translateY(50%) rotate(0);
  }
}

.header_inner .has_lower > a::after {
  transition: .3s;
  transform: translateX(-50%) rotate(90deg);
}

@media screen and (max-width: 768px) {
  .header_inner .has_lower > a::after {
    transform: translateY(50%) rotate(90deg);
  }
}

.header_inner .main_lower {
  display: -webkit-flex;
  display: flex;
  color: #fff;
  border-radius: 5px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -150%);
  display: none;
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower {
    transform: none;
    position: static;
    background: none;
    border-radius: 0;
    color: #333;
  }
}

.header_inner .main_lower::after {
  /*content: '';
			display: block;
			width: 0;
			height: 0;
			border-style: solid;
			border-width: 15px 10px 0 10px;
			border-color: $yamaya_red transparent transparent transparent;
			position: absolute;
			bottom: 0;
			left: 50%;
			transform: translate(-50%, 100%);*/
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower::after {
    display: none;
  }
}

.header_inner .main_lower li {
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower li {
    border-right: none;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower li:first-of-type {
    margin-top: 20px;
  }
}

.header_inner .main_lower li:last-of-type {
  border-right: none;
}

.header_inner .main_lower li a {
  word-break: keep-all;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower li a {
    text-align: center;
    display: block;
    margin: 0 40px;
    position: relative;
  }
}

.header_inner .main_lower li a::after {
  content: '';
  display: none;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower li a::after {
    display: block;
  }
}

.header_inner .main_lower li a span {
  padding: 10px 20px;
  width: 120px;
  transition: .3s;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
}

_:-ms-input-placeholder, :root .header_inner .main_lower li a span {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  .header_inner .main_lower li a span {
    margin: 0 auto;
    display: block;
    padding: 20px 20px;
  }
}

@media screen and (min-width: 769px) {
  .header_inner .main_lower li a span:hover {
    opacity: .6;
  }
}

.header_inner .nav_sub {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .header_inner .nav_sub {
    color: #333;
    display: block;
    text-align: center;
    font-size: 1.5rem;
  }
}

.fixed .header_inner .nav_sub {
  display: none;
}

.header_inner .nav_sub li {
  margin-right: 40px;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  .header_inner .nav_sub li:hover {
    color: #D0D0D0;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .nav_sub li {
    margin-right: 0;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 10px;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .nav_sub li a {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .header_inner .btn_order {
    text-align: center;
    margin-top: 10px;
    border-top: 1px solid #333;
    padding-top: 20px;
  }
}

.fixed .header_inner .btn_order {
  display: none;
}

.header_inner .btn_order a {
  color: #fff;
  padding: 7px 20px;
  line-height: 1;
  position: relative;
  transition: .3s;
  font-size: 1.5rem;
  border: 1px solid #fff;
  display: block;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .header_inner .btn_order a {
    background: #b01d36;
    width: 90%;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 12px 20px;
  }
}

.header_inner .btn_order a span {
  position: relative;
  z-index: 1;
}

.header_inner .btn_order a::before {
  content: '';
  width: 0;
  height: 100%;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  .header_inner .btn_order a::before {
    display: none;
  }
}

@media screen and (min-width: 769px) {
  .header_inner .btn_order a:hover {
    color: #b01d36;
  }
}

@media screen and (min-width: 769px) and (max-width: 768px) {
  .header_inner .btn_order a:hover {
    color: #333;
  }
}

@media screen and (min-width: 769px) {
  .header_inner .btn_order a:hover::before {
    width: 100%;
  }
}

.header_inner .insta {
  margin-top: 20px;
  align-items: center;
  display: none;
}

@media screen and (max-width: 768px) {
  .header_inner .insta {
    display: -webkit-flex;
    display: flex;
  }
}

.header_inner .insta a {
  line-height: 1.5;
  background: url("../images/ico_insta_black.png") no-repeat left center/40px;
  padding-left: 45px;
  margin: 0 auto;
  display: inline-block;
}

#nav_sp_cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  opacity: .7;
  z-index: 8;
  display: none;
}

@media screen and (min-width: 769px) {
  #nav_sp_cover {
    opacity: 0;
    pointer-events: none;
  }
}

#info_box {
  background: #fff;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 10px 20px;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  #info_box {
    padding: 10px;
  }
}

#info_box a {
  color: #d00000;
}

@media screen and (max-width: 768px) {
  #info_box a {
    font-size: 1.4rem;
  }
}

/************************************************
	
	Footer

*************************************************/
#footer {
  position: relative;
  z-index: 1;
  background: #fff;
  padding-top: 10px;
}

@media screen and (max-width: 768px) {
  #footer {
    padding-bottom: 48px;
  }
}

#footer .footer_bnr_list {
  background: #d4d4d4;
  padding: 40px 0;
  margin-top: 10px;
}

#footer .footer_bnr_list ul {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

@media screen and (max-width: 768px) {
  #footer .footer_bnr_list ul {
    display: block;
  }
}

#footer .footer_bnr_list li {
  width: 310px;
  margin-right: 20px;
  font-size: 0;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  #footer .footer_bnr_list li {
    width: 100%;
    max-width: 310px;
    margin: 0 auto 20px;
  }
}

#footer .footer_bnr_list li:last-of-type {
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  #footer .footer_bnr_list li:last-of-type {
    margin: 0 auto;
  }
}

#footer .footer_bnr_list li a {
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #footer .footer_bnr_list li a:hover {
    opacity: .7;
  }
}

#footer .footer_inner {
  display: -webkit-flex;
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: center;
}

#footer .footer_page_list {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  padding: 20px;
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  #footer .footer_page_list {
    display: none;
  }
}

#footer .footer_page_list .col {
  margin-right: 50px;
}

#footer .footer_page_list .col:last-of-type {
  margin-right: 0;
}

#footer .footer_page_list .col li {
  font-size: 1.3rem;
  line-height: 1.3;
  margin-top: 10px;
}

#footer .footer_page_list .col li a {
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #footer .footer_page_list .col li a:hover {
    opacity: .7;
  }
}

#footer .footer_page_list .col li a::before {
  content: '●';
  color: #ccc;
  font-size: 1rem;
  margin-right: 5px;
}

#footer .footer_page_list .col li a span {
  background: url("../images/ico_brank_white.png") no-repeat right;
}

#footer .footer_box_right {
  padding: 20px 20px 20px 0;
}

@media screen and (max-width: 768px) {
  #footer .footer_box_right {
    padding: 0 0 15px 0;
  }
}

#footer .footer_btn_order {
  margin-bottom: 20px;
}

@media screen and (max-width: 768px) {
  #footer .footer_btn_order {
    display: none;
  }
}

#footer .footer_btn_order a {
  display: block;
  color: #b01d36;
  background: #fff;
  text-align: center;
  padding: 10px;
  transition: .3s;
  box-sizing: border-box;
  border: 1px solid #b01d36;
  font-size: 1.4rem;
}

@media screen and (min-width: 769px) {
  #footer .footer_btn_order a:hover {
    color: #fff;
    background: #b01d36;
    border-color: #b01d36;
  }
}

#footer .footer_btn_inata {
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #footer .footer_btn_inata {
    display: -webkit-flex;
    display: flex;
  }
}

#footer .footer_btn_inata a {
  display: inline-block;
  padding: 10px 30px;
  color: #b01d36;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.3;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  position: relative;
  word-break: keep-all;
}

_:-ms-input-placeholder, :root #footer .footer_btn_inata a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #footer .footer_btn_inata a {
    font-size: 2.1rem;
  }
}

#footer .footer_btn_inata a::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #b01d36;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #footer .footer_btn_inata a:hover {
    /*.text {
						filter: brightness(0) invert(1);

						@at-root _:-ms-input-placeholder, :root & {
							background-image: url("../images/ico_insta.png");
							color: #fff;
						}
					}*/
  }
  #footer .footer_btn_inata a:hover::after {
    width: 0;
  }
}

#footer .footer_btn_inata .text {
  background: url("../images/ico_insta_red.png") no-repeat left center/40px;
  padding-left: 50px;
  transition: .3s;
  position: relative;
  z-index: 2;
}

_:-ms-input-placeholder, :root #footer .footer_btn_inata .text {
  transition: 0s;
}

@media screen and (max-width: 768px) {
  #footer .footer_btn_inata .text {
    background-size: 47px;
    padding-left: 57px;
  }
}

#footer .footer_btn_inata .small {
  font-size: 1.3rem;
}

@media screen and (max-width: 768px) {
  #footer .footer_btn_inata .small {
    font-size: 1.6rem;
  }
}

#footer #copy {
  text-align: center;
  padding: 10px 20px;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
}

/************************************************
	
	contents

*************************************************/
/************************************************
	
	under_common

*************************************************/
.under #contents {
  padding: 40px 0 100px;
}

@media screen and (max-width: 768px) {
  .under #contents {
    padding: 20px 0 50px;
  }
}

.under #header {
  background: -moz-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: -webkit-linear-gradient(top, #333333 0%, rgba(51, 51, 51, 0) 100%);
  background: linear-gradient(to bottom, #333333 0%, rgba(51, 51, 51, 0) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#333333', endColorstr='#00333333',GradientType=0 );
}

.under #fixed_header .nav_main {
  top: 0 !important;
}

@media screen and (min-width: 769px) {
  .under #fixed_header .nav_main a:hover {
    transform: translateY(-5px);
  }
}

.under .header_inner .logo {
  display: block;
}

@media screen and (max-width: 768px) {
  .under .header_inner .logo {
    pointer-events: all;
  }
}

.under .header_inner .nav_main {
  opacity: 1;
  left: auto;
  top: 80px;
  transform: none;
}

.under .header_inner .nav_main > li {
  margin: 0 20px 0 0;
}

@media screen and (max-width: 768px) {
  .under .header_inner .nav_main > li {
    margin: 10px 0 0;
  }
}

.under .header_inner .nav_main > li:last-of-type {
  margin-right: 0;
}

.under .header_inner .nav_main > li > a {
  width: 90px;
  height: 90px;
}

@media screen and (max-width: 768px) {
  .under .header_inner .nav_main > li > a {
    width: auto;
    height: auto;
  }
}

@media screen and (min-width: 769px) {
  .under .header_inner .nav_main > li > a:hover {
    transform: translateY(5px);
  }
}

.under .header_inner .nav_main > li > a .text {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .under .header_inner .nav_main > li > a .text {
    font-size: 1.5rem;
  }
}

.under .header_inner .main_lower {
  bottom: 0;
  top: auto;
  left: auto;
  right: 0;
  transform: translate(100px, 170%);
}

@media screen and (max-width: 768px) {
  .under .header_inner .main_lower {
    transform: none;
  }
}

.under .header_inner .main_lower::after {
  bottom: auto;
  left: auto;
  transform: translate(-131px, -100%) rotate(180deg);
  top: 0;
  right: 0;
}

.under .header_inner .has_lower a::before, .under .header_inner .has_lower a::after {
  width: 10px;
}

.under #bread {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 20px 0;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
}

.under #bread a {
  color: #24000b;
  word-break: keep-all;
}

.under .under_head {
  background: url("../images/bg_washi.png") repeat center/114px;
  padding: 150px 20px 60px;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 768px) {
  .under .under_head {
    padding: 120px 20px 40px;
  }
}

.under .under_head h2 {
  font-size: 2.4rem;
}

.under #footer {
  background: #24000b;
}

.under #footer .footer_page_list li a {
  color: #fff;
}

.under #footer .footer_page_list li a::before {
  color: #fff;
}

.under .sttl01 {
  text-align: center;
  font-size: 2rem;
}

/*下層共通*/
.under .under_head {
  background: url(../images/yamaya_ori.png) repeat center bottom/150px #fff;
}

.under .under_head h2 {
  font-size: 3.4rem;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
}

.under .under_head h2 span {
  font-size: 2.4rem;
  display: block;
}

@media screen and (max-width: 768px) {
  .under .under_head h2 {
    font-size: 3.0rem;
  }
}

.under #footer {
  background: #f5f5f5;
}

.under #footer .footer_page_list li a {
  color: #333;
}

.under #footer .footer_page_list li a::before {
  color: #b01d36;
  color: #afafaf;
}

.under #contents {
  padding: 0;
  background: url(../images/bg_contents01.jpg) no-repeat 5% bottom/300px auto;
  padding: 40px 0 180px;
  margin-bottom: 20px;
}

@media screen and (max-width: 970px) {
  .under #contents {
    background-size: 28%;
    padding: 40px 0 150px;
  }
}

@media screen and (max-width: 768px) {
  .under #contents {
    background-size: 40%;
    padding: 20px 0 27vw;
  }
}

@media screen and (max-width: 640px) {
  .under #contents {
    background-size: 43%;
    padding: 20px 0 32vw;
  }
}

.h3_ttl01 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  position: relative;
  padding-left: 1.5rem;
  border-left: 4px double #b01d36;
}

.h3_ttl02 {
  margin: 80px 0 40px;
  /*margin-bottom: 20px;*/
  text-align: center;
  font-size: 2rem;
  /*padding-bottom: 10px;
	border-bottom: 4px solid $yamaya_red;*/
}

.h3_ttl02 b {
  display: block;
}

.h3_ttl02 b span {
  text-align: center;
  position: relative;
  padding: 0 90px;
  display: inline-block;
}

.h3_ttl02 b span::before, .h3_ttl02 b span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  width: 70px;
  height: 2px;
  background: #b01d36;
}

.h3_ttl02 b span::before {
  left: 0;
}

.h3_ttl02 b span::after {
  right: 0;
}

@media screen and (max-width: 768px) {
  .h3_ttl02 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin: 70px 0 30px;
  }
  .h3_ttl02 b span {
    padding: 0 10vw;
  }
  .h3_ttl02 b span::before, .h3_ttl02 b span::after {
    width: 8vw;
  }
  .h3_ttl02 .sp_br {
    display: inline-block;
  }
}

.h3_ttl02 span.img {
  display: inline-block;
  max-width: 300px;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .h3_ttl02 span.img {
    max-width: 70%;
  }
}

.h3_ttl03 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
}

.h4_ttl01 {
  color: #b01d36;
  margin: 50px 0 5px;
  font-size: 2.0rem;
}

.h4_ttl01:first-of-type {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .h4_ttl01 {
    margin-top: 40px;
  }
}

.btn_more3._red a {
  margin: 0 auto;
  border: 1px solid #fff;
  max-width: 550px;
  display: block;
  position: relative;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  text-align: center;
  transition: .3s;
  letter-spacing: 4px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  padding: 20px;
  width: 100%;
  box-sizing: border-box;
  color: #b01d36;
  border-color: #b01d36;
  font-feature-settings: "palt";
  font-size: 1.5rem;
}

_:-ms-input-placeholder, :root .btn_more3._red a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.btn_more3._red a span {
  position: relative;
  z-index: 1;
}

.btn_more3._red a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition: .3s;
  background: #b01d36;
}

@media screen and (min-width: 769px) {
  .btn_more3._red a:hover {
    color: #fff;
  }
  .btn_more3._red a:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 970px) {
  .btn_more3._red a {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 768px) {
  .btn_more3._red a {
    max-width: auto;
    max-width: initial;
  }
}

.btn_anchor1 a {
  background: #fff;
  padding: 15px 15px 25px;
  box-sizing: border-box;
  display: block;
  position: relative;
  box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.1);
}

.btn_anchor1 a::after {
  content: '';
  display: block;
  height: 10px;
  width: 10px;
  position: absolute;
  bottom: 15px;
  right: 0;
  left: 0;
  margin: auto;
  border-left: 2px solid #b01d36;
  border-bottom: 2px solid #b01d36;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .3s;
}

.overseas {
  word-break: keep-all;
  color: #b01d36;
  border: 1px solid #b01d36;
  padding: 3px 10px;
  margin-bottom: 5px;
  display: block;
}

@media screen and (max-width: 768px) {
  .overseas {
    display: inline-block;
    font-size: 1.3rem;
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 10px;
  }
}

.table1,
.table2 {
  width: 100%;
}

.table1 thead tr th,
.table2 thead tr th {
  font-weight: bold;
  border-bottom: 2px solid #FFF;
  background: #afafaf;
  color: #fff;
}

.table1 thead tr th + th,
.table2 thead tr th + th {
  border-left: 2px solid #fff;
}

.table1 tr,
.table2 tr {
  border-bottom: 2px solid #fff;
}

.table1 tr th, .table1 tr td,
.table2 tr th,
.table2 tr td {
  background: #E9E9E9;
}

.table1 tr:nth-child(even) th, .table1 tr:nth-child(even) td,
.table2 tr:nth-child(even) th,
.table2 tr:nth-child(even) td {
  background: #fff;
}

.table1 tr:last-of-type,
.table2 tr:last-of-type {
  border-bottom: none;
}

.table1 tr th,
.table2 tr th {
  padding: 20px 30px;
  vertical-align: middle;
  font-weight: normal;
  width: 200px;
}

.table1 tr td,
.table2 tr td {
  padding: 20px 16px;
  border-left: 2px solid #fff;
}

.table2 tr td:first-of-type {
  border-left: none;
}

@media all and (max-width: 768px) {
  .table1 tr:last-of-type {
    border-bottom: 1px solid #E9E9E9;
  }
  .table1 tr:nth-child(even) th {
    background: #E9E9E9;
  }
  .table1 tr:nth-child(even) td {
    background: #fff;
  }
  .table1 tr th, .table1 tr td {
    padding: 1.5rem;
    width: 100%;
    display: block;
    box-sizing: border-box;
    float: left\9;
  }
  .table1 tr th {
    text-align: left;
  }
  .table1 tr td {
    border-left: none;
    background: #fff;
  }
  .table2 tr th {
    width: auto;
    white-space: nowrap;
    padding: 20px;
  }
}

.table3 {
  width: 100%;
}

.table3 thead tr th {
  font-weight: bold;
  border-bottom: 2px solid #FFF;
  background: #afafaf;
  color: #fff;
  text-align: center;
}

.table3 thead tr th:first-of-type {
  width: 30%;
}

.table3 thead tr th + th {
  border-left: 2px solid #fff;
}

.table3 tr {
  border-bottom: 2px solid #fff;
}

.table3 tr th, .table3 tr td {
  background: #E9E9E9;
}

.table3 tr:nth-child(even) th, .table3 tr:nth-child(even) td {
  background: #fff;
}

.table3 tr:last-of-type {
  border-bottom: none;
}

.table3 tr th {
  padding: 15px 30px;
  vertical-align: middle;
  font-weight: normal;
  text-align: left;
}

@media all and (max-width: 768px) {
  .table3 tr th {
    padding: 10px;
  }
}

.table3 tr td {
  padding: 15px 16px;
  border-left: 2px solid #fff;
}

@media all and (max-width: 768px) {
  .table3 tr td {
    padding: 10px;
  }
}

.table3 tr .location {
  padding: 15px 30px;
  font-weight: bold;
  color: #b01d36;
}

@media all and (max-width: 768px) {
  .table3 tr .location {
    padding: 10px;
  }
}

/************************************************

	contact

*************************************************/
#contact .contact {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#contact .contact ul {
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
}

#contact .contact ul li {
  width: 70%;
}

#contact .contact ul li + li {
  width: 30%;
}

@media screen and (max-width: 970px) {
  #contact .contact ul li:first-child {
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  #contact .contact ul {
    flex-wrap: wrap;
  }
  #contact .contact ul li {
    width: 100%;
  }
  #contact .contact ul li + li {
    width: 100%;
  }
  #contact .contact ul li:first-child {
    padding-right: 0;
  }
  #contact .contact ul li + li {
    margin-top: 20px;
  }
}

#contact .contact + .contact {
  margin-top: 50px;
}

/************************************************

	business

*************************************************/
#business .business {
  background: #FAF4F1;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  box-sizing: border-box;
}

#business .business ul {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#business .business ul li {
  width: 23.5%;
  width: calc((100% - 6%) /4);
  margin-bottom: 2%;
}

#business .business ul li + li {
  margin-left: 2%;
}

#business .business ul li:nth-child(5) {
  margin-left: 0;
}

#business .business ul li:nth-child(n+5) {
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  #business .business {
    padding: 20px;
  }
  #business .business ul {
    justify-content: flex-start;
  }
  #business .business ul li {
    width: 23.5%;
    width: calc((100% - 4%) /2);
  }
  #business .business ul li + li {
    margin-left: 4%;
    margin-bottom: 4%;
  }
  #business .business ul li:nth-child(5) {
    margin-left: 4%;
  }
  #business .business ul li:nth-child(n+5) {
    margin-bottom: 4%;
  }
  #business .business ul li:nth-child(2n+1) {
    margin-left: 0;
  }
}

#business .brand {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  margin-top: 50px;
}

.unit_2col1 {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

.unit_2col1 .box1, .unit_2col1 .box2 {
  width: 48%;
}

.unit_2col1 .box2 {
  margin-left: 4%;
}

@media screen and (max-width: 768px) {
  .unit_2col1 .box1, .unit_2col1 .box2 {
    width: 100%;
  }
  .unit_2col1 .box2 {
    margin-left: 0;
    margin-top: 10px;
  }
}

.menu dl + dl {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #959595;
}

.menu dl:last-of-type {
  padding-bottom: 15px;
  border-bottom: 1px solid #959595;
}

.menu dl dd {
  text-align: right;
}

.brand_info + .brand_info {
  margin-top: 30px;
}

/************************************************

	about

*************************************************/
#about .about {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#about .about + .about {
  margin-top: 70px;
}

@media screen and (max-width: 768px) {
  #about .about + .about {
    margin-top: 50px;
  }
}

#about .about .greeting {
  text-align: center;
}

#about .about .greeting .message {
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 30px;
}

#about .about .greeting p + p {
  margin-top: 15px;
}

@media screen and (max-width: 768px) {
  #about .about .greeting {
    text-align: left;
  }
  #about .about .greeting .message {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  #about .about .table2 tr th {
    padding: 10px;
    line-height: 1.5;
  }
  #about .about .table2 tr td {
    padding: 10px;
  }
}

#about .about .underline {
  text-decoration: underline;
}

/************************************************

	store

*************************************************/
.under #store .under_head {
  background: url("../../images/bg_sec01.jpg") no-repeat center 28%/cover;
  background: none;
}

.under #store .under_head h2 {
  color: #fff;
}

h3.store_ttl {
  /*background: #4d4d4d;*/
  color: #b01d36;
  font-size: 3rem;
  padding: 8px 20px 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  margin: 20px 0;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 768px) {
  h3.store_ttl {
    margin-bottom: 0;
    border-bottom: 1px solid #b01d36;
    padding-top: 5px;
    font-size: 2.6rem;
    margin: 10px 0;
  }
}

h3.store_ttl span {
  display: none;
}

@media screen and (max-width: 768px) {
  h3.store_ttl span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 25px;
    height: 25px;
    z-index: 1;
  }
}

@media screen and (max-width: 768px) {
  h3.store_ttl span::before, h3.store_ttl span::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #b01d36;
    opacity: 1;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
}

h3.store_ttl span::after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

@media screen and (max-width: 768px) {
  h3.store_ttl.on span::after {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
}

h3.store_ttl02 {
  font-size: 2.4rem;
  font-weight: bold;
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  padding: 15px 0;
  border-top: 2px solid #b01d36;
  border-bottom: 2px solid #b01d36;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #store.store .under_head {
    padding: 80px 20px 0;
  }
}

@media screen and (max-width: 768px) {
  #store.store.detail .under_head {
    padding: 100px 20px 0;
  }
}

#store.store.detail .list_tsukitei_muenu {
  padding: 20px 0 0 0;
}

#store.store.detail .list_tsukitei_muenu li {
  width: 100%;
}

#store.store.detail .list_tsukitei_muenu li + li {
  margin-top: 10px;
}

#store.store.detail .list_tsukitei_muenu li a {
  text-decoration: underline;
  color: #b01d36;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  #store.store.detail .list_tsukitei_muenu li a:hover {
    opacity: .7;
  }
}

#store.store.detail.tsukitei .under_head h2 {
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4), -1px -1px 5px rgba(0, 0, 0, 0.4), -1px 1px 5px rgba(0, 0, 0, 0.4), 1px -1px 5px rgba(0, 0, 0, 0.4), 0px 1px 5px rgba(0, 0, 0, 0.4), -1px 5px rgba(0, 0, 0, 0.4), -1px 0 5px rgba(0, 0, 0, 0.4), 1px 0 5px rgba(0, 0, 0, 0.4);
}

#store.store.detail.tsukitei #bg_photo {
  background: url(../../store/images/tsukitei_header.jpg) no-repeat center top/2000px !important;
}

@media screen and (max-width: 768px) {
  #store.store.detail.tsukitei #bg_photo {
    background-size: auto 220px !important;
  }
}

#store.store #section01,
#store.store #section02,
#store.store #section03 {
  padding: 20px 20px 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
}

#store.store .btn_order_fix {
  display: none;
}

#store.store .btn_to_top {
  bottom: 30px;
}

@media screen and (max-width: 768px) {
  #store.store #footer {
    padding-bottom: 0;
  }
}

.search form > dl dt {
  color: #b01d36;
  font-size: 2rem;
  font-weight: bold;
  padding-left: 1.5rem;
  border-left: 4px double;
  margin: 20px 0 10px;
}

.search form > dl + dl {
  margin-top: 30px;
}

.search ul {
  padding: 10px 20px;
  background: #faf4f1;
}

.search ul li {
  display: inline-block;
  margin-right: 10px;
}

.search + .search {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .search + .search {
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  .search form > dl dt {
    color: #b01d36;
    padding-left: 0;
    border: 1px solid;
    border-bottom-color: #fff;
    margin: 0;
    padding: 5px 10px;
    text-align: center;
    box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transition: border-bottom-color 0s .4s;
  }
  .search form > dl dt span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
    width: 25px;
    height: 25px;
    z-index: 1;
  }
  .search form > dl dt span::before, .search form > dl dt span::after {
    content: "";
    width: 100%;
    height: 1px;
    background: #b01d36;
    opacity: 1;
    transition: .3s;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
  }
  .search form > dl dt span::after {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .search form > dl dt.on {
    border-bottom-color: #b01d36;
    transition: border-bottom-color 0s;
  }
  .search form > dl dt.on span::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  .search form > dl + dl {
    margin-top: 0;
  }
  .search form > dl:last-child dt {
    border-bottom-color: #b01d36;
  }
  .search ul {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
  }
  .search ul li {
    width: 50%;
    padding: 5px 15px;
    box-sizing: border-box;
    border-bottom: 2px solid #fff;
    margin-right: 0;
    display: -webkit-flex;
    display: flex;
    align-items: center;
  }
  .search ul li + li {
    margin-left: 0;
  }
  .search ul li:nth-child(odd) {
    border-right: 2px solid #fff;
  }
  .search ul li:last-child:nth-child(odd) {
    border-bottom: none;
  }
}

.search input {
  display: none;
}

.search input[type="checkbox"]:checked + label:after {
  position: absolute;
  content: "";
  top: 5px;
  left: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: url("../images/ico_cheked.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .search input[type="checkbox"]:checked + label:after {
    position: absolute;
    content: "";
    top: 50%;
    transform: translateY(-70%);
    left: -9px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: url("../images/ico_cheked.png") no-repeat center/contain;
  }
}

.search label {
  background: #faf4f1;
  display: inline-block;
  position: relative;
  cursor: pointer;
  padding: 0.5em 1.5em 0.5em 3em;
  border-right: 1px solid #fff;
}

.search label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  border: 1px solid #333;
  box-sizing: border-box;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .search label {
    display: block;
    display: inline-block;
    position: relative;
    cursor: pointer;
    margin-left: 10px;
    padding: 0.5em 1em 0.5em 1.5em;
    border-right: none;
  }
  .search label:before {
    position: absolute;
    content: "";
    top: 50%;
    left: -10px;
    width: 20px;
    height: 20px;
    margin-top: -10px;
    border: 1px solid #333;
    box-sizing: border-box;
    background: #fff;
  }
}

.result {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  font-size: 1.6rem;
  box-sizing: border-box;
}

@media screen and (max-width: 980px) {
  .result {
    padding: 0 20px;
  }
}

.result > div {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  border-bottom: 4px solid #b01d36;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.result > div dl {
  display: flex;
  align-items: baseline;
}

.result > div dl dt {
  font-size: 1.4rem;
}

.result > div dl dd {
  color: #b01d36;
  font-weight: bold;
  font-size: 1.8rem;
}

#store.store.list {
  /*店舗一覧*/
}

#store.store.list .bread_outer {
  max-width: initial;
}

#store.store.list #bread {
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  background: none;
  color: #fff;
}

@media screen and (max-width: 768px) {
  #store.store.list #bread {
    padding: 10px 20px;
  }
}

#store.store.list #bread a {
  color: inherit;
}

#store.store.list #contents {
  padding: 0;
  margin: 0;
}

#store.store.list .contents_inner {
  background: url("../images/bg_washi04.jpg") left top/890px;
  background: #fff;
  padding: 0 0 200px;
}

@media screen and (max-width: 970px) {
  #store.store.list .contents_inner {
    background-size: 28%;
  }
}

@media screen and (max-width: 768px) {
  #store.store.list .contents_inner {
    padding: 20px 0 27vw;
    padding: 20px 0 calc(27vw + 20px);
  }
}

@media screen and (max-width: 640px) {
  #store.store.list .contents_inner {
    padding: 0 0 32vw;
    padding: 0 0 calc(32vw + 20px);
  }
}

#store.store .btn_more5 a {
  width: 100%;
}

#store.store .box_msg {
  padding: 20px;
  color: #b01d36;
  background: #fff;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  font-size: 1.8rem;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.25);
}

_:-ms-input-placeholder, :root #store.store .box_msg {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #store.store .box_msg {
    font-size: 1.6rem;
    padding: 15px;
    line-height: 1.5;
  }
}

#store.store #section03 {
  position: relative;
  padding: 0;
}

#store.store #section03.bg_store {
  max-width: auto;
  max-width: initial;
}

#store.store #section03.bg_store .section_inner {
  padding: 50px 20px;
  width: 100%;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  #store.store #section03.bg_store .section_inner {
    padding: 20px 20px;
  }
}

@media screen and (max-width: 768px) {
  #store.store #section03 {
    padding: 0;
  }
}

#store.store #section03::after {
  display: block;
  width: 100%;
  height: 130px;
  background: url("../images/bg_yamaya_ori02.png") left top/30px;
  position: absolute;
  top: 100px;
  left: 0;
}

#store.store #section03 .store_list .small_note {
  font-size: 1.1rem;
}

@media screen and (max-width: 768px) {
  #store.store #section03 .store_list .small_note {
    font-size: 1.2rem;
  }
}

#store.store #section03 .store_list .small_note + .small_note {
  margin-top: 0 !important;
}

#store.store.detail #bread {
  color: #fff;
}

#store.store.detail #bread a {
  color: #fff;
}

#store.store.detail #contents {
  background: #fff;
  margin-top: 20px;
  margin-bottom: 0;
}

#store.store.searched #section03 #bg_photo {
  background: url("../../images/bg_sec01_blur.jpg");
}

.tel_reservation {
  text-align: center;
}

.tel_reservation p {
  font-size: 1.8rem;
  line-height: 1.3;
  color: #b01d36;
  border: 1px solid #b01d36;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  display: inline-block;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  padding: 10px 40px 2px;
}

_:-ms-input-placeholder, :root .tel_reservation p {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.tel_reservation p .num {
  font-size: 4rem;
}

.store_list {
  display: flex;
  flex-wrap: wrap;
}

.store_list > li {
  background: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.25);
  width: 32%;
  /*&:nth-child(2n){
			margin-left: 2%;
		}*/
}

.store_list > li + li {
  margin-left: 2%;
}

.store_list > li:nth-child(3n+1) {
  margin-left: 0;
}

.store_list > li:nth-child(n+4) {
  margin-top: 2%;
}

.store_list > li > dl dt {
  border-bottom: 1px solid #adadad;
}

.store_list > li > dl dt .box_thumb {
  width: 100%;
  height: 0;
  padding-bottom: 50%;
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.store_list > li > dl dt .box_thumb + .box_info {
  padding-top: 10px;
}

.store_list > li > dl dt .box_info {
  padding: 20px 35px 20px 20px;
  position: relative;
}

.store_list > li > dl dt .box_info::after {
  content: "";
  width: 28px;
  height: 28px;
  background: url("../../store/images/ico_arrow_gray.png") no-repeat;
  background-size: contain;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

.store_list > li > dl dt .box_info h3 {
  color: #b01d36;
  font-weight: bold;
  font-size: 2.4rem;
}

.store_list > li > dl dt .text_copy {
  margin-top: 5px;
}

.store_list > li > dl dd {
  padding: 20px;
}

@media screen and (max-width: 768px) {
  .store_list > li {
    width: 100%;
  }
  .store_list > li:nth-child(2n) {
    margin-left: 0;
  }
  .store_list > li:nth-child(n+3) {
    margin-top: 5%;
  }
  .store_list > li + li {
    margin-top: 5%;
    margin-left: 0;
  }
}

.store_list > li .tel_reservation p {
  font-size: 1.5rem;
  padding: 10px;
  display: block;
}

@media screen and (max-width: 768px) {
  .store_list > li .tel_reservation p {
    margin: 0 auto;
    box-sizing: border-box;
  }
}

.store_list > li .tel_reservation p .num {
  font-size: 2.4rem;
}

.store_list .list_tsukitei_muenu {
  padding: 0 20px 10px;
}

.store_list .list_tsukitei_muenu li + li {
  margin-top: 10px;
}

.store_list .list_tsukitei_muenu li a {
  text-decoration: underline;
  color: #b01d36;
  transition: .3s;
}

@media screen and (min-width: 768px) {
  .store_list .list_tsukitei_muenu li a:hover {
    opacity: .7;
  }
}

ul.point {
  display: flex;
  color: #939393;
  flex-wrap: wrap;
}

ul.point li {
  position: relative;
  padding-left: 10px;
  margin-right: 10px;
}

ul.point li::before {
  content: "";
  font-size: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: #939393;
  border-radius: 50%;
}

.unit_2col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.unit_2col li {
  width: 49%;
}

@media screen and (max-width: 768px) {
  .unit_2col li {
    width: 100%;
  }
}

.slider_box {
  width: 100%;
  /*max-width: 800px;*/
  margin: 0 auto;
}

.store_info {
  margin-top: 30px;
}

.store_info .date {
  color: #666;
}

.store_info .table2 {
  color: #333;
}

.store_info .table2 a[href^="tel:"] {
  text-decoration: underline;
  color: #3a84df;
}

.map {
  height: 0;
  overflow: hidden;
  padding-bottom: 50%;
  position: relative;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  .map {
    padding-bottom: 75%;
  }
}

.map iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

.nearby {
  padding: 0 50px;
}

.nearby li.slick-slide {
  display: block;
  background: #fff;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.25);
  margin: 0 10px;
}

.nearby li.slick-slide .slide_upper a {
  padding: 10px;
  display: block;
}

.nearby li.slick-slide .slide_lower {
  border-top: 1px solid #adadad;
  padding: 10px;
}

.nearby li.slick-slide h4 {
  font-size: 1.8rem;
}

.nearby li.slick-slide .btn_more5 a {
  width: 100%;
  padding: 10px 5px;
  line-height: 1.5;
  margin-top: 10px;
  font-size: 1.4rem;
}

.nearby li.slick-slide .tel_reservation {
  margin-top: 10px;
}

.nearby li.slick-slide .tel_reservation p {
  font-size: 1.5rem;
  padding: 10px;
  display: block;
}

.nearby li.slick-slide .tel_reservation p .num {
  font-size: 2.4rem;
}

@media screen and (max-width: 768px) {
  .nearby {
    padding: 0 10px;
  }
  .nearby li.slick-slide {
    margin: 0 8px;
  }
  .nearby li.slick-slide h4 {
    font-size: 1.5rem;
  }
  .nearby li.slick-slide .btn_more5 a {
    font-size: 1.2rem;
  }
}

.btn_more4 a {
  width: 70%;
  margin: 0 auto;
  border: 2px solid #b01d36;
  max-width: 400px;
  padding: 20px;
  display: block;
  position: relative;
  color: #b01d36;
  font-weight: bold;
  font-family: "游ゴシック Medium", YuGothic, "Yu Gothic Medium", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  text-align: center;
  transition: .3s;
  font-size: 2rem;
  letter-spacing: 4px;
  margin-top: 40px;
  box-sizing: border-box;
  box-shadow: 2px 2px 5px 0 rgba(0, 0, 0, 0.25);
}

.btn_more4 a span {
  position: relative;
  z-index: 1;
}

.btn_more4 a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition: .3s;
  background: #b01d36;
}

@media screen and (min-width: 769px) {
  .btn_more4 a:hover {
    color: #fff;
  }
  .btn_more4 a:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 970px) {
  .btn_more4 a {
    font-size: 1.5rem;
    letter-spacing: 2px;
  }
}

@media screen and (max-width: 768px) {
  .btn_more4 a {
    max-width: auto;
    max-width: initial;
  }
}

.btn_more5 a {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #fff;
  max-width: 320px;
  display: block;
  position: relative;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  text-align: center;
  transition: .3s;
  /*letter-spacing: 4px;*/
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  padding: 20px 10px;
  box-sizing: border-box;
  color: #fff;
  background: #b01d36;
  border-color: #b01d36;
  font-feature-settings: "palt";
  font-size: 1.5rem;
}

_:-ms-input-placeholder, :root .btn_more5 a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.btn_more5 a span {
  position: relative;
  z-index: 1;
}

.btn_more5 a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #b01d36;
  transition: .3s;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .btn_more5 a:hover {
    color: #b01d36;
  }
  .btn_more5 a:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 970px) {
  .btn_more5 a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .btn_more5 a {
    max-width: auto;
    max-width: initial;
    width: 80%;
    font-size: 1.5rem;
  }
}

.btn_more6 a {
  width: 70%;
  margin: 40px auto;
  border: 1px solid #fff;
  max-width: 400px;
  display: block;
  position: relative;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  text-align: center;
  transition: .3s;
  /*letter-spacing: 4px;*/
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  padding: 20px;
  box-sizing: border-box;
  color: #fff;
  background: #b01d36;
  border-color: #b01d36;
  font-feature-settings: "palt";
  font-size: 2rem;
}

_:-ms-input-placeholder, :root .btn_more6 a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.btn_more6 a span {
  position: relative;
  z-index: 1;
}

.btn_more6 a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #b01d36;
  transition: .3s;
  background: #fff;
}

@media screen and (min-width: 769px) {
  .btn_more6 a:hover {
    color: #b01d36;
  }
  .btn_more6 a:hover::before {
    width: 100%;
  }
}

@media screen and (max-width: 970px) {
  .btn_more6 a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 768px) {
  .btn_more6 a {
    max-width: auto;
    max-width: initial;
    width: 80%;
    font-size: 1.5rem;
  }
  .tsukitei .btn_more6 a {
    width: 90%;
  }
}

#store #bg_photo,
#store #bg_photo_bler {
  background: url("../../images/bg_sec01.jpg") no-repeat center top/cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: -1;
}

#store #bg_photo span,
#store #bg_photo_bler span {
  background: inherit;
  z-index: 1;
  position: absolute;
}

#store #bg_photo_bler {
  background-image: url("../../images/bg_sec01_blur.jpg");
  z-index: 1;
}

.btn_schedule {
  text-align: center;
  margin-top: 20px;
}

.btn_schedule a {
  display: block;
  color: #fff;
  background: #b01d36;
  padding: 10px 5px;
  border-radius: 5px;
  font-size: 1.8rem;
  width: 90%;
  margin: 0 auto;
  transition: opacity .3s;
}

@media screen and (min-width: 769px) {
  .btn_schedule a:hover {
    opacity: .7;
  }
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  /*padding: 0;*/
  padding: 10px 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*$slick-dot-color: black !default;*/
/*$slick-dot-size: 6px !default;*/
/* Slider */
.slick-loading .slick-list {
  background: #fff url("https://www.y-shokukobo.com/common/css/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("https://www.y-shokukobo.com/common/css/fonts/slick.eot");
  src: url("https://www.y-shokukobo.com/common/css/fonts/slick.eot#iefix") format("embedded-opentype"), url("https://www.y-shokukobo.com/common/css/fonts/slick.woff") format("woff"), url("https://www.y-shokukobo.com/common/css/fonts/slick.ttf") format("truetype"), url("https://www.y-shokukobo.com/common/css/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
  transition: .3s;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  /*background: transparent;*/
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev:hover,
.slick-next:hover {
  opacity: .7;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  /*left: -25px;*/
  left: 10px;
  z-index: 1;
  width: 30px;
  height: 30px;
  background: url("../../store/images/ico_arrow_back_white.png") no-repeat center/contain;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  /*content: $slick-prev-character;*/
  content: "";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  /*right: -25px;*/
  right: 10px;
  width: 30px;
  height: 30px;
  background: url("../../store/images/ico_arrow_white.png") no-repeat center/contain;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  /*content: $slick-next-character;*/
  content: "";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

@media screen and (max-width: 768px) {
  .slider .slick-prev,
  .slider2 .slick-prev {
    width: 20px;
    height: 20px;
  }
  .slider .slick-next,
  .slider2 .slick-next {
    width: 20px;
    height: 20px;
  }
}

.slider2 .slick-prev {
  background: url("../../store/images/ico_arrow_back_gray.png") no-repeat center/contain;
}

.slider2 .slick-next {
  background: url("../../store/images/ico_arrow_gray.png") no-repeat center/contain;
}

@media screen and (max-width: 768px) {
  .slider2 .slick-prev {
    left: -10px;
  }
  .slider2 .slick-next {
    right: -10px;
  }
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  /*bottom: -25px;*/
  bottom: -20px;
  left: 0;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: -15px;
  }
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  /*margin: 0 5px;*/
  padding: 0;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .slick-dots li {
    height: 15px;
    width: 15px;
  }
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 25px;
  line-height: 20px;
  text-align: center;
  color: #b01d36;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    font-size: 35px;
  }
}

.slick-dots li.slick-active button:before {
  color: #b01d36;
  opacity: 0.75;
}

/************************************************
	
	ul

*************************************************/
/************************************************
	
	block

*************************************************/
.d_ib {
  display: inline-block;
}

/************************************************
	
	btn

*************************************************/
button {
  background: none;
  border: none;
  padding: 0;
}

button:focus {
  outline: none;
}

.btn_more {
  text-align: center;
}

.btn_more a {
  position: relative;
  display: inline-block;
  padding: 10px 0;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  color: #fff;
  font-size: 2rem;
}

_:-ms-input-placeholder, :root .btn_more a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

.btn_more a::after {
  content: '';
  display: block;
  height: 3px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  background: #fff;
}

.btn_more._red a {
  color: #b01d36;
}

.btn_more._red a::after {
  background: #b01d36;
}

.btn_more2 a {
  width: 70%;
  margin: 0 auto;
  border: 4px solid #fff;
  max-width: 550px;
  padding: 60px 20px;
  display: block;
  position: relative;
  color: #fff;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  text-align: center;
  transition: .3s;
  font-size: 2rem;
  letter-spacing: 4px;
}

_:-ms-input-placeholder, :root .btn_more2 a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  .btn_more2 a {
    padding: 30px 10px;
    letter-spacing: 2px;
  }
}

.btn_more2 a span {
  position: relative;
  z-index: 1;
}

.btn_more2 a::before {
  content: '';
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  .btn_more2 a:hover {
    color: #b01d36;
  }
  .btn_more2 a:hover::before {
    width: 100%;
  }
}

.btn_to_top {
  width: 44px;
  height: 44px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #929292;
  text-align: center;
  z-index: 7;
  transition: transform .3s, opacity .3s;
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .btn_to_top {
    width: 34px;
    height: 34px;
    bottom: 70px;
    right: 10px;
  }
}

.btn_to_top.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}

@media screen and (min-width: 769px) {
  .btn_to_top.show:hover {
    opacity: .7;
  }
}

.btn_fiX_sp {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 7;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}

.btn_fiX_sp > * {
  width: 50%;
}

.btn_order_fix {
  text-align: center;
  background: #b01d36;
  width: 50%;
  display: none;
  border-right: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .btn_order_fix {
    display: block;
  }
}

.btn_order_fix a {
  color: #fff;
  padding: 10px 5px;
  display: block;
  line-height: 1.3;
}

.btn_ec_fix {
  text-align: center;
  background: #b01d36;
  width: 50%;
  display: none;
}

@media screen and (max-width: 768px) {
  .btn_ec_fix {
    display: block;
  }
}

.btn_ec_fix a {
  color: #fff;
  padding: 10px 5px;
  line-height: 1.3;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.btn_orange a {
  background: #de6219 !important;
  border-color: #de6219 !important;
}

@media screen and (min-width: 769px) {
  .btn_orange a:hover {
    color: #de6219 !important;
  }
}

/************************************************

	form

*************************************************/
/************************************************

	js

*************************************************/
/* js_acor */
@media screen and (max-width: 768px) {
  .js_acor_cont {
    display: none;
  }
}

/************************************************

	Margin Padding

*************************************************/
.m10 {
  margin: 10px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.p10 {
  padding: 10px !important;
}

.p20 {
  padding: 20px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl40 {
  padding-left: 40px !important;
}

/************************************************

	Float Align

*************************************************/
.f_left {
  float: left;
}

.f_right {
  float: right;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

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

/************************************************

	clearfix

*************************************************/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

/************************************************

	br

*************************************************/
.pc_br {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc_br {
    display: none;
  }
}

.sp_br {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_br {
    display: block;
  }
}

/************************************************

	show & hide

*************************************************/
.sp_di {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_di {
    display: inline;
  }
}

.pc_di {
  display: inline;
}

@media screen and (max-width: 768px) {
  .pc_di {
    display: none;
  }
}

.sp_db {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp_db {
    display: block;
  }
}

.pc_db {
  display: block;
}

@media screen and (max-width: 768px) {
  .pc_db {
    display: none;
  }
}

/************************************************

	top

*************************************************/
#top video {
  height: 100%;
  width: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

#top video.width {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 1550px) {
  #top video {
    height: 100%;
    width: auto;
  }
}

#top #youtube {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  overflow: hidden;
}

#top #bg_photo,
#top #bg_photo_bler {
  background: url("../../images/bg_sec01.jpg") no-repeat center top/cover;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  z-index: 0;
}

#top #bg_photo span,
#top #bg_photo_bler span {
  background: inherit;
  z-index: 1;
  position: absolute;
}

#top #bg_photo_bler {
  background-image: url("../../images/bg_sec01_blur.jpg");
  z-index: 1;
}

#top #mv {
  position: relative;
  line-height: 1;
  width: 100%;
  height: 100vh;
  background: #fff;
}

#top #mv img {
  vertical-align: bottom;
  z-index: 1;
}

#top #mv .logo_top {
  max-width: 78px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #top #mv .logo_top {
    top: 44%;
  }
}

#top #mv.mv_sp {
  background: url("../../images/FV_sp.gif") no-repeat center/cover;
}

#top #contents {
  position: relative;
  z-index: 1;
}

#top .top_bnr_box {
  background: #fff url("../images/bg_washi.png") repeat left top/114px;
  padding: 60px 20px 40px;
}

@media screen and (max-width: 768px) {
  #top .top_bnr_box {
    padding: 30px 10px;
  }
}

#top .top_bnr_box .bnr {
  max-width: 1050px;
  margin: 0 auto;
  line-height: 1;
}

#top .top_bnr_box .bnr + .bnr {
  margin-top: 20px;
}

#top .top_bnr_box .bnr a {
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #top .top_bnr_box .bnr a:hover {
    opacity: .7;
  }
}

#top #section01 {
  margin-top: -1px;
  margin-bottom: 120px;
}

@media screen and (max-width: 970px) {
  #top #section01 {
    margin-bottom: 90px;
  }
}

#top #section01 .lead {
  padding: 240px 0 200px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

@media screen and (max-width: 970px) {
  #top #section01 .lead {
    padding: 120px 0 100px;
  }
}

#top #section01 .item_boxes {
  display: -webkit-flex;
  display: flex;
  max-width: 1400px;
  flex-wrap: wrap;
  margin: 0 auto;
}

#top #section01 .item_box {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box {
    width: 100%;
    display: block;
  }
}

#top #section01 .item_box + .item_box {
  margin-top: 170px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box + .item_box {
    margin-top: 100px;
  }
}

#top #section01 .item_box .img {
  line-height: 1;
  z-index: 2;
  width: 68%;
  flex-basis: 68%;
  flex-shrink: 0;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box .img {
    width: 100%;
    flex-basis: 100%;
  }
}

#top #section01 .item_box .name {
  position: absolute;
  top: -60px;
  left: 50px;
  z-index: 3;
  width: 104px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box .name {
    width: 62px;
    left: 20px;
  }
}

#top #section01 .item_box .text {
  padding: 30px;
  background: #fff;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2.5;
  margin: 0 0 0 -10%;
  transform: translate(0, 30px);
  font-size: 1.8rem;
}

#top #section01 .item_box .text::after {
  content: '';
  display: block;
  width: 2px;
  height: 150px;
  background: #b01d36;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(-45deg) translate(0, -50px);
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box .text::after {
    display: none;
  }
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box .text {
    margin-left: 20px;
    font-size: 1.4rem;
    padding: 25px;
    margin-top: -20px;
    display: block;
    height: auto;
    width: auto;
    transform: none;
    z-index: 3;
    line-height: 2;
  }
}

#top #section01 .item_box .text span {
  width: 50%;
  margin-left: 60px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box .text span {
    margin-left: 0;
  }
}

#top #section01 .item_box:nth-of-type(2) .img {
  order: 2;
}

#top #section01 .item_box:nth-of-type(2) .name {
  left: auto;
  right: 50px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:nth-of-type(2) .name {
    left: auto;
    right: 20px;
  }
}

#top #section01 .item_box:nth-of-type(2) .text {
  order: 1;
  margin: 0 -10% 0 0;
  transform: translate(0, 30px);
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:nth-of-type(2) .text {
    transform: none;
    margin: -20px 20px 0 0;
  }
}

#top #section01 .item_box:nth-of-type(2) .text span {
  margin-left: 0;
  margin-right: 60px;
}

#top #section01 .item_box:nth-of-type(2) .text::after {
  right: auto;
  left: 0;
  transform: rotate(45deg) translate(0, -50px);
}

#top #section01 .item_box:nth-last-of-type(-n+2) {
  width: 40%;
  display: block;
  /*.text {
					margin: 0 0 0 15%;
					padding: 220px 10px 50px;
					transform: translate(0, -200px);
					width: 73%;
					
					@media screen and (max-width: $main_sec01_brake) {
						transform: none;
						margin-top: -20px;
						padding: 25px;
						margin-left: 20px;
						width: auto;
					}
					
					span {
						width: 70%;
					}
				}*/
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:nth-last-of-type(-n+2) {
    width: 100%;
  }
}

#top #section01 .item_box:nth-last-of-type(-n+2) .name {
  width: 80px;
  left: 30px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:nth-last-of-type(-n+2) .name {
    width: 62px;
    left: 20px;
  }
}

#top #section01 .item_box:nth-last-of-type(-n+2) .img {
  width: 100%;
  flex-basis: 100%;
  flex-shrink: 0;
  position: relative;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:nth-last-of-type(-n+2) .img {
    width: 100%;
    flex-basis: 100%;
  }
}

#top #section01 .item_box:last-of-type {
  margin-top: 260px;
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:last-of-type {
    margin-top: 100px;
  }
}

@media screen and (max-width: 970px) {
  #top #section01 .item_box:last-of-type .name {
    left: auto;
    right: 20px;
  }
}

#top #section01 .btn_more2 {
  margin-top: 60px;
}

@media screen and (max-width: 970px) {
  #top #section01 .btn_more2 {
    margin-top: 60px;
  }
}

#top .top_sttl01 {
  margin-top: 80px;
  font-size: 4rem;
  text-align: center;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
}

_:-ms-input-placeholder, :root #top .top_sttl01 {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #top .top_sttl01 {
    margin-top: 40px;
    font-size: 2rem;
  }
}

#top #section02 {
  background: url("../images/bg_washi.png") repeat left top/114px;
  padding-bottom: 100px;
}

@media screen and (max-width: 768px) {
  #top #section02 {
    padding-bottom: 50px;
  }
}

#top #section02 .section_inner {
  max-width: 1400px;
  margin: 0 auto;
}

#top #section02 .box_bnr_3col {
  max-width: 1400px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  padding: 80px 40px 0;
}

@media screen and (max-width: 768px) {
  #top #section02 .box_bnr_3col {
    display: block;
    padding: 40px 20px;
  }
}

#top #section02 .box_bnr_3col > * {
  width: 32%;
  margin-right: 2%;
}

@media screen and (max-width: 768px) {
  #top #section02 .box_bnr_3col > * {
    width: 100%;
    margin: 20px auto 0;
  }
}

#top #section02 .box_bnr_3col > *:nth-of-type(3n) {
  margin-right: 0;
}

#top #section02 .box_bnr_3col li {
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.4);
  font-size: 0;
}

@media screen and (min-width: 769px) {
  #top #section02 .box_bnr_3col li {
    transition: opacity .3s;
  }
  #top #section02 .box_bnr_3col li:hover {
    opacity: .7;
  }
}

#top #section02 .bnr_lunch {
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 20px 0;
  box-sizing: border-box;
  transition: .3s;
}

#top #section02 .bnr_lunch + .bnr_lunch {
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  #top #section02 .bnr_lunch + .bnr_lunch {
    padding-top: 20px;
  }
}

@media screen and (min-width: 769px) {
  #top #section02 .bnr_lunch:hover {
    opacity: .7;
  }
}

#top #section02 .bnr_lunch img {
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.4);
}

#top #section02 .news {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  box-sizing: border-box;
  padding: 0 20px;
}

#top #section02 .news .news_line {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  #top #section02 .news .news_line {
    flex-wrap: wrap;
  }
}

#top #section02 .news .news_line:first-of-type {
  border-top: 1px solid #333;
}

#top #section02 .news .date {
  color: #666;
  word-break: keep-all;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #top #section02 .news .date {
    font-size: 1.3rem;
  }
}

#top #section02 .news .cate {
  word-break: keep-all;
  color: #b01d36;
  border: 1px solid #b01d36;
  padding: 3px 10px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #top #section02 .news .cate {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  #top #section02 .news .ttl {
    font-size: 1.3rem;
    width: 100%;
    margin-top: 10px;
  }
}

#top #section02 .btn_more {
  margin-top: 30px;
}

#top #section02 .btn_more a {
  position: relative;
}

#top #section02 .btn_more a::after {
  z-index: 0;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #top #section02 .btn_more a:hover::after {
    width: 0;
  }
}

@media screen and (max-width: 768px) {
  #top #section02 .btn_more {
    margin-top: 15px;
  }
  #top #section02 .btn_more a {
    font-size: 1.6rem;
  }
}

#top #section03 {
  background: #24000b;
  padding: 0 20px 40px;
}

@media screen and (max-width: 768px) {
  #top #section03 {
    padding: 0 20px 30px;
  }
}

#top #section03 .top_sttl01 {
  margin-top: 0;
  padding-top: 60px;
  color: #fff;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #top #section03 .top_sttl01 {
    padding-top: 30px;
  }
}

#top #section03 .top_sttl01 span {
  font-size: 3rem;
}

@media screen and (max-width: 768px) {
  #top #section03 .top_sttl01 span {
    font-size: 1.4rem;
  }
}

#top #section03 .section_inner {
  max-width: 1400px;
  margin: 0 auto;
}

#top #section03 .group_list {
  margin-top: 40px;
  padding: 40px;
}

@media screen and (max-width: 768px) {
  #top #section03 .group_list {
    margin-top: 20px;
    padding: 20px;
    background: #fff;
  }
}

#top #section03 .group_list_row {
  display: -webkit-flex;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #top #section03 .group_list_row {
    display: block;
  }
}

#top #section03 .group_list_row._row02 {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #top #section03 .group_list_row._row02 {
    border-top: 1px solid #959595;
  }
}

#top #section03 .group_box {
  width: 24%;
  margin-right: 2%;
  background: #fff;
  padding: 3%;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 768px) {
  #top #section03 .group_box {
    width: 100%;
    margin-right: 0;
    background: none;
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #top #section03 .group_box + .group_box {
    margin-top: 20px;
    border-top: 1px solid #959595;
    padding-top: 20px;
  }
}

#top #section03 .group_box:last-of-type {
  margin-right: 0;
}

#top #section03 .group_box a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: .3s;
  background: #fff;
  opacity: 0;
  z-index: 1;
}

@media screen and (min-width: 769px) {
  #top #section03 .group_box a:hover {
    opacity: .3;
  }
}

#top #section03 .group_logo {
  max-width: 553px;
  margin: 0 auto;
}

#top #section03 .group_name {
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.3;
  margin-top: 10px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  position: relative;
  padding-bottom: 20px;
}

_:-ms-input-placeholder, :root #top #section03 .group_name {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

#top #section03 .group_name::after {
  content: '';
  display: block;
  height: 2px;
  width: 50px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #b01d36;
}

#top #section03 .gtoup_text {
  font-size: 1.3rem;
  line-height: 1.75;
  margin-top: 20px;
}

/************************************************

	news

*************************************************/
#news {
  /* detail */
}

#news .news {
  width: 100%;
  max-width: 1000px;
  margin: 20px auto 0;
  box-sizing: border-box;
  padding: 0 20px;
}

#news .news .news_line {
  display: -webkit-flex;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

@media screen and (max-width: 768px) {
  #news .news .news_line {
    flex-wrap: wrap;
  }
}

#news .news .news_line:first-of-type {
  border-top: 1px solid #333;
}

#news .news .date {
  color: #666;
  word-break: keep-all;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #news .news .date {
    font-size: 1.3rem;
  }
}

#news .news .cate {
  word-break: keep-all;
  color: #b01d36;
  border: 1px solid #b01d36;
  padding: 3px 10px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #news .news .cate {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 768px) {
  #news .news .ttl {
    font-size: 1.3rem;
    width: 100%;
    margin-top: 10px;
  }
}

#news .news a {
  transition: .3s;
}

#news .news a:hover {
  opacity: .7;
}

#news .news_pagenation {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  text-align: center;
  font-size: 0;
  line-height: 1;
  margin: 0 auto;
}

#news .news_pagenation li {
  display: inline-block;
  font-size: 1.3rem;
  vertical-align: middle;
  margin: 20px 0 0 10px;
}

@media screen and (max-width: 768px) {
  #news .news_pagenation li {
    font-size: 1.2rem;
  }
}

#news .news_pagenation li:first-of-type a, #news .news_pagenation li:last-of-type a {
  width: auto;
  height: auto;
  border: none;
}

#news .news_pagenation li:first-of-type a:hover, #news .news_pagenation li:last-of-type a:hover {
  color: #b01d36;
  background: #fff;
  opacity: .7;
}

#news .news_pagenation li:first-of-type {
  margin-left: 0;
}

#news .news_pagenation li a {
  display: block;
  width: 42px;
  height: 42px;
  border: 1px solid #b01d36;
  display: -webkit-flex;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #b01d36;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  #news .news_pagenation li a {
    width: 32px;
    height: 32px;
  }
}

#news .news_pagenation li a.current, #news .news_pagenation li a:hover {
  color: #fff;
  background: #b01d36;
}

#news.news_detail #section01 {
  padding: 20px 20px 0;
  width: 100%;
  box-sizing: border-box;
  max-width: 1000px;
  margin: 0 auto;
}

#news.news_detail .news_detail_ttl {
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  padding-bottom: 20px;
  border-bottom: 1px solid #b01d36;
}

_:-ms-input-placeholder, :root #news.news_detail .news_detail_ttl {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

#news.news_detail .news_detail_info {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

#news.news_detail .news_detail_info .date {
  color: #666;
  word-break: keep-all;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #news.news_detail .news_detail_info .date {
    font-size: 1.3rem;
  }
}

#news.news_detail .news_detail_info .cate {
  word-break: keep-all;
  color: #b01d36;
  border: 1px solid #b01d36;
  padding: 3px 10px;
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #news.news_detail .news_detail_info .cate {
    font-size: 1.3rem;
  }
}

#news.news_detail .news_detail_textbox p {
  margin-top: 1.5em;
}

@media screen and (max-width: 768px) {
  #news.news_detail .news_detail_textbox p {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  #news.news_detail .news_detail_textbox img {
    width: 100%;
    height: auto;
  }
}

/************************************************

	menu

*************************************************/
#menu {
  /* food */
  /* course */
  /* lunch */
}

#menu .under_head {
  background: url("../../menu/food/images/head_menu_food_pc.jpg") no-repeat center top/cover;
  padding: 81px 20px 0;
}

@media screen and (max-width: 768px) {
  #menu .under_head {
    background-image: url("../../menu/food/images/head_menu_food_sp.jpg");
  }
}

#menu .under_head h2 {
  margin: 0 auto;
  width: 264px;
}

@media screen and (max-width: 768px) {
  #menu .under_head h2 {
    width: 100%;
    max-width: 203px;
  }
}

#menu #bread {
  padding-bottom: 20px;
}

#menu #contents {
  background: url("../../menu/images/bg_menu_cont.jpg") repeat left top/500px;
  margin-bottom: 0;
  padding-bottom: 100px;
}

#menu .tub {
  max-width: 680px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  padding-bottom: 40px;
}

@media screen and (max-width: 768px) {
  #menu .tub {
    max-width: 100%;
    margin: 0 10px;
  }
}

#menu .tub.tub_bottom {
  padding-bottom: 0;
  padding-top: 40px;
  margin-top: 40px;
}

#menu .tub.tub_bottom li a.current::after {
  border-width: 0 12px 12px 12px;
  border-color: transparent transparent #b01d36 transparent;
  bottom: auto;
  top: 0;
  transform: translate(-50%, -100%);
}

#menu .tub li {
  width: 49%;
}

#menu .tub li:last-of-type {
  margin-right: 0;
}

#menu .tub li a {
  display: block;
  text-align: center;
  line-height: 1;
  padding: 15px 5px;
  border: 2px solid #b01d36;
  color: #b01d36;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  position: relative;
  transition: .3s;
}

_:-ms-input-placeholder, :root #menu .tub li a {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu .tub li a {
    font-size: 1.4rem;
  }
}

#menu .tub li a span {
  position: relative;
  z-index: 1;
}

#menu .tub li a::before {
  content: '';
  display: block;
  width: 0;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #b01d36;
  transition: .3s;
}

@media screen and (min-width: 769px) {
  #menu .tub li a:hover {
    color: #fff;
  }
  #menu .tub li a:hover::before {
    width: 100%;
  }
}

#menu .tub li a.current {
  border-color: transparent;
  pointer-events: none;
}

#menu .tub li a.current::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 12px 0 12px;
  border-color: #b01d36 transparent transparent transparent;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 100%);
}

@media screen and (min-width: 769px) {
  #menu .tub li a.current:hover {
    color: #b01d36;
  }
}

#menu section + section {
  margin-top: 60px;
}

#menu section[id]:nth-of-type(even) .box_sec_head .photo {
  order: 2;
}

#menu section[id]:nth-of-type(even) .box_sec_head .ttl {
  order: 1;
}

#menu .box_sec_head {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-flex;
  display: flex;
}

@media screen and (max-width: 768px) {
  #menu .box_sec_head {
    display: block;
    padding: 0 20px;
    box-sizing: border-box;
  }
}

#menu .box_sec_head .photo {
  width: 70%;
}

@media screen and (max-width: 768px) {
  #menu .box_sec_head .photo {
    width: 100%;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  #menu .box_sec_head .photo .small {
    text-align: right;
  }
}

#menu .box_sec_head .ttl {
  width: 30%;
  position: relative;
}

@media screen and (max-width: 768px) {
  #menu .box_sec_head .ttl {
    width: 100%;
  }
}

#menu .box_sec_head .ttl .ttl_cont {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 117px;
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  #menu .box_sec_head .ttl .ttl_cont {
    width: auto;
    position: static;
    transform: none;
  }
}

#menu .box_menu_products {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 20px auto 0;
}

#menu .box_menu_products .list_menu_products {
  display: -webkit-flex;
  display: flex;
  width: 100%;
  margin-top: 10px;
  justify-content: space-between;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products .list_menu_products {
    display: block;
  }
}

#menu .box_menu_products ul {
  width: 43%;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products ul {
    width: 100%;
    max-width: 500px;
  }
}

#menu .box_menu_products li {
  font-size: 1.8rem;
  line-height: 1.3;
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #000;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
}

_:-ms-input-placeholder, :root #menu .box_menu_products li {
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products li {
    font-size: 1.6rem;
    margin-top: 10px;
  }
}

#menu .box_menu_products li + li {
  margin-top: 10px;
}

#menu .box_menu_products li span .small {
  display: inline-block;
}

#menu .box_menu_products li .price {
  display: block;
  margin: 0 0 0 auto;
  padding-left: 10px;
  min-width: 100px;
  text-align: right;
}

#menu .box_menu_products li .small {
  font-size: 1.4rem;
  line-height: 1.5;
}

#menu .box_menu_products .sttl {
  color: #8f7539;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.3;
  padding-left: 15px;
  margin-top: 40px;
  border-left: 4px double #8f7539;
}

_:-ms-input-placeholder, :root #menu .box_menu_products .sttl {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products .sttl {
    font-size: 1.6rem;
    margin-top: 30px;
  }
}

#menu .box_menu_products .sttl .small {
  font-size: 1.4rem;
}

#menu .box_menu_products .note {
  font-size: 1.4rem;
  line-height: 1.5;
}

#menu .box_menu_products .section_sub {
  border: 1px solid #8f7539;
  margin-top: 10px;
  padding-bottom: 20px;
}

#menu .box_menu_products .section_sub .sub_ttl {
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  text-align: center;
  background: #8f7539;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 5px 10px;
}

_:-ms-input-placeholder, :root #menu .box_menu_products .section_sub .sub_ttl {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products .section_sub .sub_ttl {
    font-size: 1.6rem;
  }
}

#menu .box_menu_products .section_sub .sub_sttl {
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-size: 1.8rem;
  line-height: 1.5;
  margin: 30px 20px 0;
  color: #8f7539;
}

_:-ms-input-placeholder, :root #menu .box_menu_products .section_sub .sub_sttl {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu .box_menu_products .section_sub .sub_sttl {
    font-size: 1.6rem;
  }
}

#menu .box_menu_products .section_sub .sub_sttl:first-of-type {
  margin-top: 20px;
}

#menu .box_menu_products .section_sub .list_menu_products {
  margin: 10px 20px;
  width: 80%;
  width: calc(100% - 40px);
}

#menu .box_menu_products .section_sub .note {
  margin-left: 20px;
}

#menu.food .btn_more5 {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #menu.food .btn_more5 {
    margin-top: 30px;
  }
}

#menu.food .box_food_2col {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: 40px auto;
}

@media screen and (max-width: 768px) {
  #menu.food .box_food_2col {
    display: block;
  }
}

#menu.food .box_food_2col section[id] .box_sec_head .photo {
  order: 2;
}

@media screen and (max-width: 768px) {
  #menu.food .box_food_2col section[id] .box_sec_head .photo {
    order: 1;
  }
}

#menu.food .box_food_2col section[id] .box_sec_head .ttl {
  order: 1;
}

@media screen and (max-width: 768px) {
  #menu.food .box_food_2col section[id] .box_sec_head .ttl {
    order: 2;
  }
}

#menu.food .box_food_2col section[id]:nth-of-type(odd) .box_sec_head .photo {
  order: 2;
}

#menu.food .box_food_2col section[id]:nth-of-type(odd) .box_sec_head .ttl {
  order: 1;
}

#menu.food section {
  margin-top: 60px;
}

#menu.food #section02,
#menu.food #section03,
#menu.food #section04,
#menu.food #section05,
#menu.food #section06,
#menu.food #section07,
#menu.food #section08 {
  width: 48%;
}

@media screen and (max-width: 768px) {
  #menu.food #section02,
  #menu.food #section03,
  #menu.food #section04,
  #menu.food #section05,
  #menu.food #section06,
  #menu.food #section07,
  #menu.food #section08 {
    width: 100%;
  }
}

#menu.food #section02 .box_sec_head .ttl_cont,
#menu.food #section03 .box_sec_head .ttl_cont,
#menu.food #section04 .box_sec_head .ttl_cont,
#menu.food #section05 .box_sec_head .ttl_cont,
#menu.food #section06 .box_sec_head .ttl_cont,
#menu.food #section07 .box_sec_head .ttl_cont,
#menu.food #section08 .box_sec_head .ttl_cont {
  transform: translate(-50%, -50%) scale(0.6);
}

@media screen and (max-width: 768px) {
  #menu.food #section02 .box_sec_head .ttl_cont,
  #menu.food #section03 .box_sec_head .ttl_cont,
  #menu.food #section04 .box_sec_head .ttl_cont,
  #menu.food #section05 .box_sec_head .ttl_cont,
  #menu.food #section06 .box_sec_head .ttl_cont,
  #menu.food #section07 .box_sec_head .ttl_cont,
  #menu.food #section08 .box_sec_head .ttl_cont {
    transform: translate(-50%, -50%);
  }
}

#menu.food #section02 .box_menu_products,
#menu.food #section03 .box_menu_products,
#menu.food #section04 .box_menu_products,
#menu.food #section05 .box_menu_products,
#menu.food #section06 .box_menu_products,
#menu.food #section07 .box_menu_products,
#menu.food #section08 .box_menu_products {
  margin-top: 10px;
}

#menu.food #section02 .box_menu_products:nth-of-type(-n+2),
#menu.food #section03 .box_menu_products:nth-of-type(-n+2),
#menu.food #section04 .box_menu_products:nth-of-type(-n+2),
#menu.food #section05 .box_menu_products:nth-of-type(-n+2),
#menu.food #section06 .box_menu_products:nth-of-type(-n+2),
#menu.food #section07 .box_menu_products:nth-of-type(-n+2),
#menu.food #section08 .box_menu_products:nth-of-type(-n+2) {
  margin-top: 20px;
}

#menu.food #section02 .box_menu_products ul,
#menu.food #section03 .box_menu_products ul,
#menu.food #section04 .box_menu_products ul,
#menu.food #section05 .box_menu_products ul,
#menu.food #section06 .box_menu_products ul,
#menu.food #section07 .box_menu_products ul,
#menu.food #section08 .box_menu_products ul {
  width: 100%;
}

#menu.food #section02 .ttl_cont {
  width: 55px;
}

@media screen and (max-width: 768px) {
  #menu.food #section02 .ttl_cont {
    width: 27px;
  }
}

#menu.food #section03 .ttl_cont {
  width: 93px;
}

@media screen and (max-width: 768px) {
  #menu.food #section03 .ttl_cont {
    width: 46px;
  }
}

#menu.food #section04 .ttl_cont {
  width: 75px;
}

@media screen and (max-width: 768px) {
  #menu.food #section04 .ttl_cont {
    width: 37px;
  }
}

#menu.food #section05 .ttl_cont {
  width: 74px;
}

@media screen and (max-width: 768px) {
  #menu.food #section05 .ttl_cont {
    width: 37px;
  }
}

#menu.food #section06 .ttl_cont {
  width: 90px;
}

@media screen and (max-width: 768px) {
  #menu.food #section06 .ttl_cont {
    width: 45px;
  }
}

#menu.food #section07 .ttl_cont {
  width: 80px;
}

@media screen and (max-width: 768px) {
  #menu.food #section07 .ttl_cont {
    width: 40px;
  }
}

#menu.food #section08 .ttl_cont {
  width: 102px;
}

@media screen and (max-width: 768px) {
  #menu.food #section08 .ttl_cont {
    width: 51px;
  }
}

@media screen and (max-width: 768px) {
  #menu.food #section09 .box_sec_head .photo {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #menu.food #section09 .box_sec_head .ttl {
    order: 2;
  }
}

#menu.food #section09 .box_sec_head .ttl_cont {
  width: 83px;
}

@media screen and (max-width: 768px) {
  #menu.food #section09 .box_sec_head .ttl_cont {
    width: 41px;
  }
}

#menu.food #section09.section_2col {
  display: -webkit-flex;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
  margin: 60px auto 0;
}

@media screen and (max-width: 768px) {
  #menu.food #section09.section_2col {
    display: block;
  }
}

#menu.food #section09.section_2col .box_a {
  width: 48%;
}

@media screen and (max-width: 768px) {
  #menu.food #section09.section_2col .box_a {
    width: 100%;
  }
}

#menu.food #section09.section_2col .box_b {
  width: 48%;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #menu.food #section09.section_2col .box_b {
    width: 100%;
    margin-top: 40px;
  }
}

#menu.food #section09.section_2col .box_b .sttl:first-of-type {
  margin-top: 0;
}

#menu.food #section09.section_2col .list_menu_products ul {
  width: 100%;
}

#menu.food .menu_notes {
  width: 100%;
  margin: 60px auto 0;
  padding: 0 20px;
  box-sizing: border-box;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: right;
  max-width: 1000px;
}

@media screen and (max-width: 768px) {
  #menu.food .menu_notes {
    margin-top: 40px;
  }
}

#menu.food .menu_notes02 {
  width: 100%;
  margin: 0 auto 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 1000px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
}

_:-ms-input-placeholder, :root #menu.food .menu_notes02 {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

#menu.food .box_menu_products .sttl {
  font-size: 2.2rem;
}

#menu.food .sec00 {
  max-width: 1000px;
  margin: 0 auto;
}

#menu.food .sec00 .sec00_head {
  margin-top: 20px;
}

#menu.food .sec00 .sec00_head .sec00_head__inner {
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
}

#menu.food .sec00 .sec00_head .sec00_head__ttl {
  display: -webkit-inline-flex;
  display: inline-flex;
  align-items: center;
  position: relative;
  /*&::before {
                        right: 100%;
                        right: calc(100% + 20px);
                    }*/
}

@media screen and (max-width: 768px) {
  #menu.food .sec00 .sec00_head .sec00_head__ttl {
    margin-left: 10px;
  }
}

#menu.food .sec00 .sec00_head .sec00_head__ttl::after {
  content: '';
  display: block;
  width: 100vw;
  height: 2px;
  background: #8f7539;
  position: absolute;
  top: 55%;
}

#menu.food .sec00 .sec00_head .sec00_head__ttl::after {
  left: 100%;
  left: calc(100% + 20px);
}

@media screen and (max-width: 768px) {
  #menu.food .sec00 .sec00_head .sec00_head__ttl img {
    max-width: 49px;
  }
}

#menu.food .sec00 .sec00_head .sec00_head__sub {
  margin-left: 20px;
  font-size: 3rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  margin-top: 10px;
  color: #b87f39;
}

_:-ms-input-placeholder, :root #menu.food .sec00 .sec00_head .sec00_head__sub {
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.food .sec00 .sec00_head .sec00_head__sub {
    font-size: 2rem;
    margin-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  #menu.food #course_section01 {
    margin-top: 30px;
  }
}

#menu.food #course_section01 .box_menu_course {
  margin-top: 20px;
}

#menu.food #course_section01 .box_sec_head .photo {
  order: 1;
}

#menu.food #course_section01 .box_sec_head .ttl {
  order: 2;
}

#menu.food #course_section02 .box_sec_head .photo {
  order: 2;
}

#menu.food #course_section02 .box_sec_head .ttl {
  order: 1;
}

@media screen and (max-width: 768px) {
  #menu.food #course_section03 .box_menu_course {
    margin-top: 20px;
  }
}

#menu.food #course_section03 .box_sec_head .photo {
  order: 1;
}

#menu.food #course_section03 .box_sec_head .ttl {
  order: 2;
}

#menu.food #course_section02,
#menu.food #course_section03 {
  margin-top: 80px;
}

#menu.food #course_section04 .section04_inner {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto 0;
  border: 1px solid #b01d36;
  padding: 20px;
}

@media screen and (max-width: 1020px) {
  #menu.food #course_section04 .section04_inner {
    margin-right: 20px;
    margin-left: 20px;
  }
}

#menu.food #course_section04 .sec_ttl_goto {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 40px auto 0;
  background: #b01d36;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  padding: 10px;
  text-align: center;
  color: #fff;
}

_:-ms-input-placeholder, :root #menu.food #course_section04 .sec_ttl_goto {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 1020px) {
  #menu.food #course_section04 .sec_ttl_goto {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 1.6rem;
  }
}

#menu.food #course_section04 .box_sec_head {
  border-bottom: 2px solid #b01d36;
  font-feature-settings: "palt";
  padding-bottom: 10px;
}

#menu.food #course_section04 .box_sec_head .box_sec_head_goto_inner {
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  font-size: 4rem;
}

_:-ms-input-placeholder, :root #menu.food #course_section04 .box_sec_head .box_sec_head_goto_inner {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 1020px) {
  #menu.food #course_section04 .box_sec_head .box_sec_head_goto_inner {
    font-size: 2.8rem;
  }
}

#menu.food #course_section04 .box_sec_head .box_sec_head_goto_inner .small {
  font-size: .8em;
}

#menu.food #course_section04 .box_menu_course {
  margin-top: 20px;
}

#menu.food .box_menu_course {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 40px auto 0;
}

#menu.food .box_menu_course._2col {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  #menu.food .box_menu_course._2col {
    display: block;
  }
}

#menu.food .box_menu_course._2col .box_a {
  width: 70%;
  flex-basis: 70%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  #menu.food .box_menu_course._2col .box_a {
    width: 100%;
  }
}

#menu.food .box_menu_course._2col .box_b {
  width: 28%;
  flex-basis: 28%;
}

@media screen and (max-width: 768px) {
  #menu.food .box_menu_course._2col .box_b {
    width: 100%;
  }
}

#menu.food .lead {
  font-size: 2rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-weight: bold;
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

_:-ms-input-placeholder, :root #menu.food .lead {
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.food .lead {
    font-size: 1.8rem;
  }
}

#menu.food .head {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #menu.food .head {
    display: block;
  }
}

#menu.food .head .label {
  color: #8f7539;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-left: 15px;
  border-left: 4px double #8f7539;
}

_:-ms-input-placeholder, :root #menu.food .head .label {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.food .head .label {
    font-size: 1.6rem;
  }
}

#menu.food .head .label .small {
  font-size: 1.6rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  #menu.food .head .label .small {
    font-size: 1.4rem;
    margin-left: 20px;
  }
}

#menu.food .head .label .sub {
  font-size: 1.2rem;
  vertical-align: super;
}

#menu.food .head .small {
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  #menu.food .head .small {
    font-size: 1.4rem;
  }
}

#menu.food .head .price {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-left: 100px;
}

@media screen and (max-width: 768px) {
  #menu.food .head .price {
    font-size: 1.6rem;
    margin-top: 10px;
    margin-left: 0;
  }
}

#menu.food .list_course_cout {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

#menu.food .list_course_cout li {
  margin: 10px 20px 0 0;
  position: relative;
  padding-left: 11px;
  font-size: 1.6rem;
  line-height: 1.5;
}

#menu.food .list_course_cout li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #333;
  position: absolute;
  top: .75em;
  left: 0;
  transform: translate(0, -50%);
}

#menu.food .list_course_cout li .small {
  font-size: 1.4rem;
}

#menu.food .box_souvenir {
  border: 1px solid #b01d36;
  margin-top: 10px;
  /*li {
				margin: 10px 20px 0;
				width: 80%;
				width: calc(100% - 40px);
				box-sizing: border-box;
			}*/
  /*.sub_sttl {
				@include bold_mincho();
				font-size: 1.8rem;
				line-height: 1.5;
				margin: 30px 20px 0;
				color: $gold;
				
				@media screen and (max-width: 768px) {
					font-size: 1.6rem;
					//margin: 20px 10px 0;
				}
				
				&:first-of-type {
					margin-top: 20px;
				}
				
			}
			
			.list_menu_products {
				margin: 10px 20px;
				width: 80%;
				width: calc(100% - 40px);
				
				@media screen and (max-width: 768px) {
					//margin: 10px 10px;
					//width: 90%;
					//width: calc(100% - 20px);
				}
			}
			
			.note {
				margin-left: 20px;
			}*/
}

@media screen and (max-width: 768px) {
  #menu.food .box_souvenir {
    margin-top: 30px;
  }
}

#menu.food .box_souvenir .cont {
  display: -webkit-flex;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #menu.food .box_souvenir .cont {
    padding: 10px 10px 5px;
  }
}

#menu.food .box_souvenir .label {
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  text-align: center;
  background: #b01d36;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 5px 10px;
}

_:-ms-input-placeholder, :root #menu.food .box_souvenir .label {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.food .box_souvenir .label {
    font-size: 1.6rem;
  }
}

#menu.food .box_souvenir .small {
  font-size: 1.4rem;
}

#menu.food .box_souvenir .text {
  width: 180px;
  flex-basis: 180px;
}

@media screen and (max-width: 768px) {
  #menu.food .box_souvenir .text {
    width: 220px;
    flex-basis: 220px;
  }
}

#menu.food .box_souvenir .img {
  width: 70px;
  flex-basis: 70px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  #menu.food .box_souvenir .img {
    width: 55px;
    flex-basis: 55px;
  }
}

#menu.food .sec00 {
  border-bottom: 2px solid #8f7539;
  padding-bottom: 60px;
}

@media screen and (max-width: 768px) {
  #menu.food .sec00 {
    padding-bottom: 30px;
  }
}

#menu.food .sec00 .sec00__btn_ebooks {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #menu.food .sec00 .sec00__btn_ebooks {
    margin-top: 30px;
  }
}

#menu.food #course_section01 .ttl_cont {
  width: 107px;
}

@media screen and (max-width: 768px) {
  #menu.food #course_section01 .ttl_cont {
    width: 56.9%;
  }
}

#menu.food #course_section02 .ttl_cont {
  width: 107px;
}

@media screen and (max-width: 768px) {
  #menu.food #course_section02 .ttl_cont {
    width: 60.1%;
  }
}

#menu.food #course_section03 .ttl_cont {
  width: 107px;
}

@media screen and (max-width: 768px) {
  #menu.food #course_section03 .ttl_cont {
    width: 61.7%;
  }
}

#menu.food .btn_menu_ebooks {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  #menu.food .btn_menu_ebooks {
    margin-top: 20px;
  }
}

#menu.food .btn_menu_ebooks a {
  transition: opacity .3s;
}

#menu.food .btn_menu_ebooks a:hover {
  opacity: .7;
}

#menu.course .under_head {
  background: url("https://www.y-shokukobo.com/menu/course/images/head_menu_course_pc.jpg") no-repeat center top/cover;
}

@media screen and (max-width: 768px) {
  #menu.course .under_head {
    background-image: url("https://www.y-shokukobo.com/menu/course/images/head_menu_course_sp.jpg");
  }
}

#menu.course .under_head h2 {
  width: 220px;
}

@media screen and (max-width: 768px) {
  #menu.course .under_head h2 {
    max-width: 152px;
  }
}

#menu.course .menu_notes02 {
  width: 100%;
  margin: 0 auto 10px;
  box-sizing: border-box;
  font-size: 1.5rem;
  line-height: 1.5;
  max-width: 1000px;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
}

_:-ms-input-placeholder, :root #menu.course .menu_notes02 {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

#menu.course #section01 .box_menu_course {
  margin-top: 20px;
}

#menu.course #section01 .box_sec_head .photo {
  order: 1;
}

#menu.course #section01 .box_sec_head .ttl {
  order: 2;
}

#menu.course #section02 .box_sec_head .photo {
  order: 2;
}

#menu.course #section02 .box_sec_head .ttl {
  order: 1;
}

@media screen and (max-width: 768px) {
  #menu.course #section03 .box_menu_course {
    margin-top: 20px;
  }
}

#menu.course #section02,
#menu.course #section03 {
  margin-top: 80px;
}

#menu.course #section04 .section04_inner {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 0 auto 0;
  border: 1px solid #b01d36;
  padding: 20px;
}

@media screen and (max-width: 1020px) {
  #menu.course #section04 .section04_inner {
    margin-right: 20px;
    margin-left: 20px;
  }
}

#menu.course #section04 .sec_ttl_goto {
  max-width: 1000px;
  box-sizing: border-box;
  margin: 40px auto 0;
  background: #b01d36;
  font-size: 1.8rem;
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  padding: 10px;
  text-align: center;
  color: #fff;
}

_:-ms-input-placeholder, :root #menu.course #section04 .sec_ttl_goto {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 1020px) {
  #menu.course #section04 .sec_ttl_goto {
    margin-right: 20px;
    margin-left: 20px;
    font-size: 1.6rem;
  }
}

#menu.course #section04 .box_sec_head {
  border-bottom: 2px solid #b01d36;
  font-feature-settings: "palt";
  padding-bottom: 10px;
}

#menu.course #section04 .box_sec_head .box_sec_head_goto_inner {
  font-weight: bold;
  font-family: "游ゴシック", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "Helvetica Neue", sans-serif;
  font-size: 4rem;
}

_:-ms-input-placeholder, :root #menu.course #section04 .box_sec_head .box_sec_head_goto_inner {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 1020px) {
  #menu.course #section04 .box_sec_head .box_sec_head_goto_inner {
    font-size: 2.8rem;
  }
}

#menu.course #section04 .box_sec_head .box_sec_head_goto_inner .small {
  font-size: .8em;
}

#menu.course #section04 .box_menu_course {
  margin-top: 20px;
}

#menu.course .box_menu_course {
  width: 100%;
  max-width: 1000px;
  box-sizing: border-box;
  padding: 0 20px;
  margin: 40px auto 0;
}

#menu.course .box_menu_course._2col {
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
}

@media screen and (max-width: 768px) {
  #menu.course .box_menu_course._2col {
    display: block;
  }
}

#menu.course .box_menu_course._2col .box_a {
  width: 70%;
  flex-basis: 70%;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  #menu.course .box_menu_course._2col .box_a {
    width: 100%;
  }
}

#menu.course .box_menu_course._2col .box_b {
  width: 28%;
  flex-basis: 28%;
}

@media screen and (max-width: 768px) {
  #menu.course .box_menu_course._2col .box_b {
    width: 100%;
  }
}

#menu.course .head {
  display: -webkit-flex;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 768px) {
  #menu.course .head {
    display: block;
  }
}

#menu.course .head .label {
  color: #8f7539;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.3;
  padding-left: 15px;
  border-left: 4px double #8f7539;
}

_:-ms-input-placeholder, :root #menu.course .head .label {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.course .head .label {
    font-size: 1.6rem;
  }
}

#menu.course .head .label .small {
  font-size: 1.6rem;
  color: #333;
}

@media screen and (max-width: 768px) {
  #menu.course .head .label .small {
    font-size: 1.4rem;
    margin-left: 20px;
  }
}

#menu.course .head .label .sub {
  font-size: 1.2rem;
  vertical-align: super;
}

#menu.course .head .small {
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  #menu.course .head .small {
    font-size: 1.4rem;
  }
}

#menu.course .head .price {
  font-size: 2.4rem;
  line-height: 1.3;
  margin-left: 100px;
}

@media screen and (max-width: 768px) {
  #menu.course .head .price {
    font-size: 1.6rem;
    margin-top: 10px;
    margin-left: 0;
  }
}

#menu.course .list_course_cout {
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

#menu.course .list_course_cout li {
  margin: 10px 20px 0 0;
  position: relative;
  padding-left: 11px;
  font-size: 1.6rem;
  line-height: 1.5;
}

#menu.course .list_course_cout li::before {
  content: '';
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 3px;
  background: #333;
  position: absolute;
  top: .75em;
  left: 0;
  transform: translate(0, -50%);
}

#menu.course .list_course_cout li .small {
  font-size: 1.4rem;
}

#menu.course .box_souvenir {
  border: 1px solid #b01d36;
  margin-top: 10px;
  /*li {
				margin: 10px 20px 0;
				width: 80%;
				width: calc(100% - 40px);
				box-sizing: border-box;
			}*/
  /*.sub_sttl {
				@include bold_mincho();
				font-size: 1.8rem;
				line-height: 1.5;
				margin: 30px 20px 0;
				color: $gold;
				
				@media screen and (max-width: 768px) {
					font-size: 1.6rem;
					//margin: 20px 10px 0;
				}
				
				&:first-of-type {
					margin-top: 20px;
				}
				
			}
			
			.list_menu_products {
				margin: 10px 20px;
				width: 80%;
				width: calc(100% - 40px);
				
				@media screen and (max-width: 768px) {
					//margin: 10px 10px;
					//width: 90%;
					//width: calc(100% - 20px);
				}
			}
			
			.note {
				margin-left: 20px;
			}*/
}

@media screen and (max-width: 768px) {
  #menu.course .box_souvenir {
    margin-top: 30px;
  }
}

#menu.course .box_souvenir .cont {
  display: -webkit-flex;
  display: flex;
  padding: 10px 20px;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #menu.course .box_souvenir .cont {
    padding: 10px 10px 5px;
  }
}

#menu.course .box_souvenir .label {
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  text-align: center;
  background: #b01d36;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.5;
  padding: 5px 10px;
}

_:-ms-input-placeholder, :root #menu.course .box_souvenir .label {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.course .box_souvenir .label {
    font-size: 1.6rem;
  }
}

#menu.course .box_souvenir .small {
  font-size: 1.4rem;
}

#menu.course .box_souvenir .text {
  width: 180px;
  flex-basis: 180px;
}

@media screen and (max-width: 768px) {
  #menu.course .box_souvenir .text {
    width: 220px;
    flex-basis: 220px;
  }
}

#menu.course .box_souvenir .img {
  width: 70px;
  flex-basis: 70px;
  flex-shrink: 0;
}

@media screen and (max-width: 768px) {
  #menu.course .box_souvenir .img {
    width: 55px;
    flex-basis: 55px;
  }
}

#menu.course #section01 .ttl_cont {
  width: 107px;
}

@media screen and (max-width: 768px) {
  #menu.course #section01 .ttl_cont {
    width: 53px;
  }
}

#menu.course #section02 .ttl_cont {
  width: 103px;
}

@media screen and (max-width: 768px) {
  #menu.course #section02 .ttl_cont {
    width: 51px;
  }
}

#menu.course #section03 .ttl_cont {
  width: 116px;
}

@media screen and (max-width: 768px) {
  #menu.course #section03 .ttl_cont {
    width: 58px;
  }
}

#menu.lunch .under_head {
  background: url("../../menu/lunch/images/head_menu_lunch_pc.jpg") no-repeat center top/cover;
}

@media screen and (max-width: 768px) {
  #menu.lunch .under_head {
    background-image: url("../../menu/lunch/images/head_menu_lunch_sp.jpg");
  }
}

#menu.lunch .under_head h2 {
  width: 220px;
}

@media screen and (max-width: 768px) {
  #menu.lunch .under_head h2 {
    max-width: 152px;
  }
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_sec_head {
    display: -webkit-flex;
    display: flex;
  }
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_sec_head .ttl {
    width: 30%;
  }
}

#menu.lunch .box_lunch_text {
  margin-top: 60px;
  padding: 0 20px;
  text-align: center;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  line-height: 1.4;
}

_:-ms-input-placeholder, :root #menu.lunch .box_lunch_text {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text {
    line-height: 1.5;
    margin-top: 40px;
  }
}

#menu.lunch .box_lunch_text .sub {
  font-size: 2.4rem;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .sub {
    font-size: 1.6rem;
  }
}

#menu.lunch .box_lunch_text .main {
  font-size: 4.2rem;
  color: #b01d36;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .main {
    font-size: 2.6rem;
  }
}

#menu.lunch .box_lunch_text .time {
  font-size: 2.2rem;
  position: relative;
  color: #b01d36;
  display: inline-block;
  -moz-font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 1px;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .time {
    font-size: 1.6rem;
  }
}

#menu.lunch .box_lunch_text .time::before, #menu.lunch .box_lunch_text .time::after {
  content: '';
  display: block;
  height: 1px;
  width: 30px;
  position: absolute;
  top: 48%;
  background: #b01d36;
}

#menu.lunch .box_lunch_text .time::before {
  left: -10px;
  transform: translate(-100%, -50%);
}

#menu.lunch .box_lunch_text .time::after {
  right: -10px;
  transform: translate(100%, -50%);
}

#menu.lunch .box_lunch_text .price {
  font-size: 2.2rem;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .price {
    font-size: 1.4rem;
  }
}

#menu.lunch .box_lunch_text .price .big {
  font-size: 3.2rem;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .price .big {
    font-size: 2.4rem;
  }
}

#menu.lunch .box_lunch_text .price .red {
  color: #b01d36;
}

#menu.lunch .box_lunch_text .note {
  font-size: 1.6rem;
}

@media screen and (max-width: 768px) {
  #menu.lunch .box_lunch_text .note {
    font-size: 1.4rem;
  }
}

#menu.lunch .list_lunch {
  max-width: 1000px;
  margin: 40px auto 0;
  display: -webkit-flex;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  #menu.lunch .list_lunch {
    display: block;
  }
}

#menu.lunch .list_lunch li {
  width: 48%;
  flex-basis: 48%;
  margin: 20px 4% 0 0;
}

@media screen and (max-width: 768px) {
  #menu.lunch .list_lunch li {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    margin: 20px 0 0 0;
  }
}

#menu.lunch .list_lunch li:nth-of-type(2n) {
  margin-right: 0;
}

#menu.lunch .list_lunch li .name {
  line-height: 1.3;
  font-size: 1.8rem;
}

@media screen and (max-width: 768px) {
  #menu.lunch .list_lunch li .name {
    font-size: 1.6rem;
  }
}

/************************************************

	philosophy

*************************************************/
#philosophy .under_head {
  background: url("../../philosophy/images/head_philosophy_pc.jpg") no-repeat center top/cover;
  padding: 81px 20px 0;
}

@media screen and (max-width: 768px) {
  #philosophy .under_head {
    background-image: url("../../philosophy/images/head_philosophy_sp.jpg");
  }
}

#philosophy .under_head h2 {
  margin: 0 auto;
  width: 215px;
}

@media screen and (max-width: 768px) {
  #philosophy .under_head h2 {
    width: 100%;
    max-width: 148px;
  }
}

#philosophy #bread {
  padding-bottom: 20px;
}

#philosophy #contents {
  background: url("../images/bg_washi02.jpg") repeat left top/890px;
  margin-bottom: 0;
  padding-bottom: 100px;
}

#philosophy section + section {
  margin-top: 160px;
}

@media screen and (max-width: 768px) {
  #philosophy section + section {
    margin-top: 100px;
  }
}

#philosophy .philosophy_text01 {
  width: 100%;
  background: url(../images/bg_yamaya_ori02.png) repeat-x left 30px/30px;
}

@media screen and (max-width: 768px) {
  #philosophy .philosophy_text01 {
    background-size: 15px;
  }
}

#philosophy .philosophy_text01 p {
  width: 114px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #philosophy .philosophy_text01 p {
    width: 63px;
  }
}

#philosophy .main {
  background: url("../images/bg_washi04.jpg") repeat left top/890px;
  width: 100%;
  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  #philosophy .main {
    background: none;
  }
}

#philosophy .main::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
}

#philosophy .main .box_sttl {
  width: 50%;
  float: right;
}

@media screen and (max-width: 768px) {
  #philosophy .main .box_sttl {
    float: none;
    width: 100%;
    position: relative;
  }
}

#philosophy .main .sttl {
  width: 90px;
  margin: -70px auto 0;
}

@media screen and (max-width: 768px) {
  #philosophy .main .sttl {
    position: absolute;
    top: -50px;
    right: 30px;
    width: 58px;
    z-index: 1;
    margin-top: 0;
  }
}

#philosophy .main .img {
  width: 50%;
  line-height: 1;
  float: left;
  transform: translateY(-30px);
}

@media screen and (max-width: 768px) {
  #philosophy .main .img {
    float: none;
    width: 100%;
    transform: none;
  }
}

#philosophy .main .box_text {
  width: 50%;
  float: right;
  padding: 0 20px 40px;
  margin-top: 40px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #philosophy .main .box_text {
    float: none;
    width: 100%;
    padding-bottom: 20px;
    margin-top: 10px;
  }
}

#philosophy .main .box_text p {
  margin: 0 auto;
  width: 80%;
  max-width: 450px;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  #philosophy .main .box_text p {
    text-align: center;
    width: 100%;
    font-size: 1.6rem;
  }
}

#philosophy .main .box_text p + p {
  margin-top: 20px;
}

#philosophy .sub {
  display: -webkit-flex;
  display: flex;
  max-width: 1000px;
  margin: 80px auto 0;
  background: url("../images/bg_washi04.jpg") repeat left top/890px;
}

@media screen and (max-width: 768px) {
  #philosophy .sub {
    margin-top: 40px;
    flex-wrap: wrap;
    align-items: center;
  }
}

#philosophy .sub .sp_cont {
  display: none;
}

@media screen and (max-width: 768px) {
  #philosophy .sub .sp_cont {
    display: block;
    width: 100%;
    flex-basis: 100%;
  }
}

#philosophy .sub .photo {
  width: 47.2%;
  flex-basis: 47.2%;
  flex-shrink: 0;
  margin: 0 30px 0 0;
  line-height: 1;
  max-width: 354px;
  transform: translateY(-30px);
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy .sub .photo {
    margin-right: 0;
    transform: translateY(-20px);
  }
}

@media screen and (max-width: 768px) {
  #philosophy .sub .photo + .box_text {
    padding: 0;
  }
}

#philosophy .sub .box_text {
  padding: 0 20px 20px;
  max-width: 450px;
  margin: 40px auto 0;
}

@media screen and (max-width: 768px) {
  #philosophy .sub .box_text {
    margin-top: 20px;
  }
}

#philosophy .sub .box_text .sttl {
  text-align: center;
  font-size: 3rem;
  line-height: 1.5;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  margin-bottom: 30px;
  padding-bottom: 30px;
  position: relative;
}

_:-ms-input-placeholder, :root #philosophy .sub .box_text .sttl {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #philosophy .sub .box_text .sttl {
    font-size: 1.8rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
    line-height: 2;
  }
}

#philosophy .sub .box_text .sttl::after {
  content: '';
  width: 30px;
  height: 2px;
  background: #333;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

@media screen and (max-width: 768px) {
  #philosophy .sub .box_text .sttl::after {
    height: 1px;
  }
}

#philosophy .sub .list_philosophy {
  text-align: center;
}

#philosophy .sub .list_philosophy li {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
  font-weight: bold;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", HGS明朝E, メイリオ, Meiryo, Georgia, serif;
  background: #8f7539;
  padding: 10px 20px;
}

_:-ms-input-placeholder, :root #philosophy .sub .list_philosophy li {
  font-weight: bold;
  font-family: メイリオ,Meiryo,'Noto Sans JP',"游ゴシック Medium",YuGothic,"Yu Gothic Medium","Hiragino Kaku Gothic ProN","Helvetica Neue",sans-serif;
}

@media screen and (max-width: 768px) {
  #philosophy .sub .list_philosophy li {
    font-size: 1.4rem;
  }
}

#philosophy .sub .list_philosophy li + li {
  margin-top: 20px;
}

#philosophy .sub.sub_2col {
  line-height: 1;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col {
    padding: 0 10px;
  }
}

#philosophy .sub.sub_2col .box_a {
  transform: translateY(-30px);
  margin-right: 40px;
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_a {
    transform: translateY(-20px);
    margin-right: 0;
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_a img {
    padding-bottom: 10px;
  }
}

#philosophy .sub.sub_2col .box_b {
  transform: translateY(30px);
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_b {
    width: 50%;
    transform: translateY(20px);
  }
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_b img {
    padding-top: 10px;
  }
}

#philosophy .sub.sub_2col .box_text {
  padding: 20px;
  margin-top: 0;
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_text {
    padding: 0 10px;
  }
}

#philosophy .sub.sub_2col .box_text .sttl {
  margin-bottom: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 768px) {
  #philosophy .sub.sub_2col .box_text .sttl {
    line-height: 1.5;
    font-size: 1.6rem;
  }
}

#philosophy .sub.sub_2col .box_text .sttl::after {
  content: none;
}

@media screen and (max-width: 768px) {
  #philosophy #section01 .sub .photo {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section01 .sub .photo + .box_text {
    padding: 0;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section01 .sub .box_text {
    order: 2;
  }
}

#philosophy #section01 .sub:nth-of-type(odd) .photo {
  margin: 0 0 0 30px;
  order: 1;
}

@media screen and (max-width: 768px) {
  #philosophy #section01 .sub:nth-of-type(odd) .photo {
    margin-left: 0;
    order: 2;
  }
}

#philosophy #section01 .sub:nth-of-type(odd) .box_text {
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy #section01 .sub:nth-of-type(odd) .box_text {
    order: 1;
  }
}

#philosophy #section02 .main .sttl {
  right: auto;
  left: 30px;
}

#philosophy #section02 .main .box_sttl {
  float: left;
}

#philosophy #section02 .main .img {
  float: right;
}

#philosophy #section02 .main .box_text {
  float: left;
}

#philosophy #section02 .sub .photo {
  order: 1;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  #philosophy #section02 .sub .photo {
    order: 2;
    margin-left: 0;
  }
}

#philosophy #section02 .sub .box_text {
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy #section02 .sub .box_text {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section02 .sub .box_text:last-of-type {
    order: 3;
  }
}

#philosophy #section03 .main .sttl,
#philosophy #section04 .main .sttl {
  right: auto;
  left: 30px;
}

#philosophy #section03 .main .box_sttl,
#philosophy #section04 .main .box_sttl {
  float: left;
}

#philosophy #section03 .main .img,
#philosophy #section04 .main .img {
  float: right;
}

#philosophy #section03 .main .box_text,
#philosophy #section04 .main .box_text {
  float: left;
}

#philosophy #section03 .sub .photo,
#philosophy #section04 .sub .photo {
  order: 1;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .photo,
  #philosophy #section04 .sub .photo {
    order: 2;
    margin-left: 0;
    transform: none;
  }
}

#philosophy #section03 .sub .box_text,
#philosophy #section04 .sub .box_text {
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .box_text,
  #philosophy #section04 .sub .box_text {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub {
    margin-top: 20px;
  }
}

#philosophy #section03 .sub .photo {
  transform: translateY(0);
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .photo {
    display: -webkit-flex;
    display: flex;
    align-items: center;
    transform: translateY(-5px);
  }
}

#philosophy #section03 .sub .photo {
  order: 1;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .photo {
    order: 2;
    margin-left: 0;
  }
}

#philosophy #section03 .sub .box_text {
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .box_text {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section03 .sub .box_text:last-of-type {
    order: 3;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section04 .sub .photo {
    transform: translateY(-20px);
  }
}

#philosophy #section04 .sub .photo {
  order: 1;
  margin: 0 0 0 30px;
}

@media screen and (max-width: 768px) {
  #philosophy #section04 .sub .photo {
    order: 2;
    margin-left: 0;
  }
}

#philosophy #section04 .sub .box_text {
  order: 2;
}

@media screen and (max-width: 768px) {
  #philosophy #section04 .sub .box_text {
    order: 1;
  }
}

@media screen and (max-width: 768px) {
  #philosophy #section04 .sub .box_text:last-of-type {
    order: 3;
  }
}

#philosophy #section05 {
  max-width: 1000px;
  width: 100%;
  margin: 100px auto 0;
  background: url("../../menu/images/bg_menu_cont.jpg") repeat left top/500px;
  padding: 40px 60px;
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  #philosophy #section05 {
    padding: 40px 15px;
    width: 95%;
    margin-top: 80px;
  }
}

#philosophy #section05 .sttl {
  text-align: center;
}

#philosophy #section05 .sttl span {
  font-size: 2rem;
  line-height: 1;
  position: relative;
  display: inline-block;
  margin: 0 auto;
}

#philosophy #section05 .sttl span::before, #philosophy #section05 .sttl span::after {
  content: '';
  display: block;
  width: 25px;
  height: 1px;
  background: #333;
  position: absolute;
  top: 50%;
}

#philosophy #section05 .sttl span::before {
  left: -10px;
  transform: translate(-100%, -50%);
}

#philosophy #section05 .sttl span::after {
  right: -10px;
  transform: translate(100%, -50%);
}

#philosophy #section05 p {
  margin-top: 20px;
}

#philosophy .box_bnr_lunch {
  margin: 60px auto 0;
  max-width: 710px;
  box-shadow: 3px 3px 10px 0 rgba(0, 0, 0, 0.4);
  line-height: 1;
  transition: .3s;
}

@media screen and (max-width: 768px) {
  #philosophy .box_bnr_lunch {
    margin: 30px 30px 0;
  }
}

#philosophy .box_bnr_lunch:hover {
  box-shadow: 3px 3px 10px 5px rgba(0, 0, 0, 0.3);
}

#philosophy .box_bnr_lunch img {
  vertical-align: bottom;
}

/************************************************

	philosophy

*************************************************/
#holiday .cont {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

#holiday .imp {
  color: #b01d36;
}

#holiday .table3 {
  margin-top: 30px;
}

/*# sourceMappingURL=style.css.map */