@charset "UTF-8";
/*
Theme Name : とんかつ専門店 ぶんぷく
Theme URI : https://tonkatsu-bunpuku.com
Author: SCARAMANGA INC.
Author URI: https://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: '';
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

@media all and (-ms-high-contrast: none) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

@media all and (-ms-high-contrast: active) {
  html {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

body {
  color: #111111;
  background: #EFEDE7;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.025em;
  line-height: 2;
  position: relative;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

a {
  color: #111111;
  text-decoration: none;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a img {
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

/* first
---------------------------------------------------------------------------------------*/
#first {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  background: #EFEDE7;
}

#first p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  width: 160px;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  #first p {
    width: 25%;
  }
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fadein,
.fadein_up,
.fadein_up_slow,
.faden_filter {
  opacity: 0;
}

.fadein_filter {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_first {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

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

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/*!------------------------------------*
fadeInUp
\*!------------------------------------*/
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 10%, 0);
    transform: translate3d(0, 10%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*!------------------------------------*
fadeInUp_slow
\*!------------------------------------*/
@-webkit-keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInUp_slow {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 15px, 0);
    transform: translate3d(0, 15px, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.fadeInUp_slow {
  -webkit-animation-name: fadeInUp_slow;
  animation-name: fadeInUp_slow;
}

/*!------------------------------------*
fadeIn_filter
\*!------------------------------------*/
@-webkit-keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

@keyframes fadeIn_filter {
  from {
    -webkit-filter: grayscale(100%);
    -moz-filter: grayscale(100%);
    -ms-filter: grayscale(100%);
    -o-filter: grayscale(100%);
    filter: grayscale(100%);
  }
  to {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -ms-filter: grayscale(0);
    -o-filter: grayscale(0);
    filter: grayscale(0);
  }
}

.fadeIn_filter {
  -webkit-animation-name: fadeIn_filter;
  animation-name: fadeIn_filter;
}

/*!------------------------------------*
effect
\*!------------------------------------*/
.effect_bg {
  opacity: 0;
}

.show2 .effect_bg {
  opacity: 1;
}

.effect {
  position: relative;
  overflow: hidden;
  display: inline-block;
  width: 100%;
}

.effect::before {
  content: '';
  position: absolute;
  display: block;
  width: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(to right, #111111 0%, #111111 100%);
  z-index: 2;
  -webkit-transform: translate3d(-101%, 0, 0);
  transform: translate3d(-101%, 0, 0);
  -webkit-transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
  transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
}

.show.effect::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.show2.effect::before {
  -webkit-transform: translate3d(105%, 0, 0);
  transform: translate3d(105%, 0, 0);
}

/* _header
---------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  header {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
  }
  header:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 90px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
  }
  header .header_logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    z-index: 2;
    width: 160px;
    margin-top: -40px;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  header .header_logo {
    width: 25%;
  }
}

@media screen and (min-width: 768px) {
  header .sns_nav {
    position: absolute;
    right: 50px;
    bottom: 50px;
    z-index: 2;
  }
  header .sns_nav a {
    display: block;
    width: 26px;
    margin: 20px 0;
  }
  header .sns_nav a svg {
    fill: #FFFFFF;
  }
  header .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  header .overlay {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    min-width: 100%;
    min-height: 100vh;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  header video {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header .copyright {
    position: absolute;
    bottom: 50%;
    left: -20px;
    z-index: 2;
    color: #EFEDE7;
  }
}

@media screen and (min-width: 768px) and (max-width: 767px) {
  header .copyright {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  header .copyright p {
    font-family: "Libre Baskerville", serif;
    font-size: 1.2rem;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
  }
}

@media screen and (max-width: 767px) {
  header {
    display: none;
    background: #EFEDE7;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3;
    width: 100%;
    height: 68px;
  }
  header .header_logo {
    padding: 12px 10px;
    width: 180px;
  }
  header .sns_nav {
    display: none;
  }
  header .copyright {
    display: none;
  }
}

.g_nav.active {
  right: 0 !important;
}

@media screen and (max-width: 767px) {
  .g_nav.active {
    right: 0 !important;
  }
}

.g_nav {
  position: fixed;
  top: 0;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  z-index: 997;
  overflow: scroll;
  background: rgba(239, 237, 231, 0.95);
  box-shadow: 2px 0 29px -7px rgba(0, 0, 0, 0.3);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  display: -webkit-flex;
  display: flex;
}

@media screen and (min-width: 768px) {
  .g_nav {
    right: -220px;
    width: 220px;
  }
}

@media screen and (max-width: 767px) {
  .g_nav {
    right: -70%;
    width: 70%;
    margin-top: 0;
  }
}

.g_nav .g_nav_inr {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  padding: 140px 20px 60px;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr {
    padding: 105px 20px;
  }
}

.g_nav .g_nav_inr .g_nav_logo {
  width: 100%;
  margin: 0 0 30px;
  text-align: center;
}

.g_nav .g_nav_inr .g_nav_logo a {
  display: inline-block;
  width: 120px;
}

.g_nav .g_nav_inr ul {
  margin: 0;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr ul {
    display: block;
    margin: 0;
  }
}

.g_nav .g_nav_inr ul li {
  margin-bottom: 22px;
  text-align: right;
}

.g_nav .g_nav_inr ul li a {
  display: block;
  color: #111111;
  font-size: 1.6rem;
  font-family: "Libre Baskerville", serif;
  letter-spacing: 0.05em;
  position: relative;
}

@media screen and (max-width: 767px) {
  .g_nav .g_nav_inr ul li a {
    color: #111111;
    margin: 10px 0;
    font-size: 1.4rem;
    font-weight: bold;
  }
}

.g_nav .g_nav_inr ul li a:hover {
  opacity: 0.7;
}

.g_nav .sns_nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  margin-top: 40px;
}

.g_nav .sns_nav a {
  display: block;
  width: 26px;
  margin: 0 0 0 20px;
}

.g_nav .sns_nav a:hover {
  opacity: 0.7;
}

/*----------ハンバーガーアイコン----------*/
.hamburger_area {
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 99999;
  display: block;
  width: 100px;
  height: 100px;
  background: rgba(0, 0, 0, 0.85);
}

@media screen and (max-width: 767px) {
  .hamburger_area {
    right: 0;
    width: 68px;
    height: 68px;
  }
}

.hamburger {
  display: block;
  position: absolute;
  top: 40px;
  right: 20px;
  width: 60px;
  height: 17px;
}

@media screen and (max-width: 767px) {
  .hamburger {
    top: 27px;
    right: 12px;
    width: 40px;
    height: 17px;
  }
}

.hamburger:hover {
  cursor: pointer;
}

.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}

.hamburger span:nth-of-type(1) {
  top: 0;
}

.hamburger span:nth-of-type(2) {
  top: 7px;
}

.hamburger span:nth-of-type(3) {
  bottom: 0;
}

.active span {
  background-color: #FFFFFF !important;
}

.active span:nth-of-type(1) {
  top: -3px;
}

.active span:nth-of-type(3) {
  bottom: 0 !important;
}

.hamburger span:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}

.hamburger span:nth-of-type(3) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.active span:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
}

.active span:nth-of-type(2) {
  opacity: 0;
}

.active span:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}

@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(30deg);
  }
}

@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(30deg);
  }
}

@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
}

@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}

/* _page
---------------------------------------------------------------------------------------*/
.container {
  max-width: 1280px;
  margin: auto;
  padding: 0 35px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 5%;
  }
}

.min_container {
  max-width: 1020px;
  margin: auto;
}

.main_v {
  background: url("images/bg_main_sp.jpg") center;
  background-size: cover;
  height: 100vh;
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  overflow: hidden;
  position: relative;
}

.main_v:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), black);
}

.main_v .main_v_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  z-index: 2;
  width: 160px;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  .main_v .main_v_logo {
    width: 25%;
  }
}

.main_v .scroll_down {
  position: absolute;
  bottom: 0;
  right: 50%;
  z-index: 2;
  color: #FFFFFF;
  height: 100px;
}

.main_v .scroll_down .scroll_down_inr .arrow {
  width: 1px;
  height: 100px;
  margin: 0 auto;
  background-color: none;
  position: relative;
  overflow: hidden;
}

.main_v .scroll_down .scroll_down_inr .arrow:before {
  content: '';
  width: 2px;
  height: 100px;
  margin: 50px auto 0;
  background-color: #FFFFFF;
  position: absolute;
  top: -150px;
  left: 0;
  -webkit-animation: arrow 2.5s ease 0s infinite normal;
  animation: arrow 2.5s ease 0s infinite normal;
}

@keyframes arrow {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
  60% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 100px, 0);
    transform: translate3d(-50%, 100px, 0);
  }
}

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

.main_v video {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  min-width: 100%;
  min-height: 100vh;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .main_v video {
    display: none;
  }
}

.section_title {
  text-align: right;
  font-size: 3.7rem;
  margin: 20px auto 70px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .section_title {
    font-size: 3rem;
    margin: 10px auto 45px;
  }
}

.section_title h2 {
  margin-left: 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.section_title p {
  font-size: 1.4rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 5px;
  transform: rotate(180deg);
  text-align: left;
  margin-right: 5px;
  margin-left: -25px;
}

@media screen and (max-width: 767px) {
  .section_title p {
    font-size: 1.2rem;
  }
}

.btn_more {
  text-align: center;
  margin: 30px auto;
}

.btn_more a {
  display: inline-block;
  position: relative;
  min-width: 260px;
  padding: 1em 4em;
  background: #111111;
  color: #FFFFFF;
}

@media screen and (max-width: 767px) {
  .btn_more a {
    min-width: auto;
    width: 80%;
    padding: 1em 4em;
    font-size: 1.3rem;
  }
}

.btn_more a:before {
  content: '';
  width: 6px;
  height: 6px;
  border: 0;
  border-top: solid 1px #FFFFFF;
  border-right: solid 1px #FFFFFF;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -4px;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.btn_more a:hover:before {
  right: 25px;
}

/* about_section
---------------------------------------------------------------------------------------*/
.about_section {
  padding: 90px 0 0;
}

@media screen and (max-width: 767px) {
  .about_section {
    padding: 70px 0 0;
  }
}

.about_section .about_section_title {
  text-align: right;
  font-size: 3.7rem;
  margin: 20px auto 70px;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .about_section .about_section_title {
    margin: 10px auto 45px;
  }
}

.about_section .about_section_title h2 {
  margin-left: 0;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

.about_section .about_section_title p {
  font-size: 1.4rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 5px;
  transform: rotate(180deg);
  text-align: left;
  margin-right: 5px;
  margin-left: -25px;
}

.about_section .reed {
  max-width: 980px;
  margin: 0 auto 30px;
}

.about_section .reed .row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.about_section .reed .row .col_02 {
  width: 50%;
  padding: 0 1.5%;
}

@media screen and (max-width: 767px) {
  .about_section .reed .row .col_02 {
    width: 100%;
    padding: 0;
  }
}

.about_section .reed .row .col_02 p {
  margin-bottom: 2em;
  text-align: justify;
  text-justify: inter-ideograph;
}

.about_section .kodawari {
  margin: 0 -5%;
  width: 110%;
  overflow: hidden;
}

.about_section .swiper-container .swiper-wrapper .swiper-slide {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.about_section .swiper-container .swiper-wrapper .swiper-slide .img img {
  width: 100%;
}

.about_section .swiper-container .swiper-wrapper .swiper-slide .inr {
  background: #FFFFFF;
  width: 50%;
  margin-left: 5%;
  margin-top: -10%;
  background: #FFFFFF;
  padding: 35px 30px;
  position: relative;
  z-index: 9;
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-wrapper .swiper-slide .inr {
    width: 90%;
    margin: 10px auto 0;
    padding: 20px;
  }
}

.about_section .swiper-container .swiper-wrapper .swiper-slide .inr h3 {
  font-size: 3rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  line-height: 1.6;
  margin-bottom: 0.3em;
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-wrapper .swiper-slide .inr h3 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-wrapper .swiper-slide .inr p {
    font-size: 1.2rem;
  }
}

.about_section .swiper-container .swiper-wrapper .swiper-slide .inr .btn_more {
  text-align: right;
  margin: 35px 0 0;
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-wrapper .swiper-slide .inr .btn_more {
    text-align: center;
    margin-top: 20px;
  }
}

.about_section .swiper-container .swiper-wrapper .swiper-slide-active .inr {
  -webkit-animation-name: fade-in-slider;
  animation-name: fade-in-slider;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.about_section .swiper-container .swiper-button-next,
.about_section .swiper-container .swiper-button-prev {
  position: absolute;
  top: 30%;
  width: 60px;
  height: 60px;
  z-index: 10;
  cursor: pointer;
  background-color: #FFFFFF;
  padding: 20px;
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-button-next,
  .about_section .swiper-container .swiper-button-prev {
    bottom: auto;
    top: 18%;
    width: 40px;
    height: 40px;
    background-size: 10px;
  }
}

.about_section .swiper-container .swiper-button-next.swiper-button-disabled,
.about_section .swiper-container .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.about_section .swiper-container .swiper-button-prev,
.about_section .swiper-container .swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  left: 0;
}

@media screen and (max-width: 767px) {
  .about_section .swiper-container .swiper-button-prev,
  .about_section .swiper-container .swiper-container-rtl .swiper-button-next {
    right: auto;
    left: 0;
  }
}

.about_section .swiper-container .swiper-button-next,
.about_section .swiper-container .swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
  right: 0;
}

.about_section .swiper-container .swiper-button-prev.swiper-button-white,
.about_section .swiper-container .swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.about_section .swiper-container .swiper-button-next.swiper-button-white,
.about_section .swiper-container .swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.about_section .swiper-container .swiper-button-prev.swiper-button-black,
.about_section .swiper-container .swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

.about_section .swiper-container .swiper-button-next.swiper-button-black,
.about_section .swiper-container .swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}

@keyframes fade-in-slider {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.cm_area {
  max-width: 980px;
  margin: 90px auto 0;
}

@media screen and (max-width: 767px) {
  .cm_area {
    margin: 45px auto 0;
  }
}

.cm_area .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.cm_area .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.menu_section {
  padding: 120px 0 0;
}

@media screen and (max-width: 767px) {
  .menu_section {
    padding: 70px 0 0;
  }
}

.menu_section .menu_list {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -20px;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list {
    display: block;
    margin: 0;
  }
}

.menu_section .menu_list .menu_block {
  width: 50%;
  padding: 0 20px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list .menu_block {
    width: 100%;
    margin-bottom: 20px;
  }
}

.menu_section .menu_list .menu_block a {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  background: #FFFFFF;
  position: relative;
}

.menu_section .menu_list .menu_block a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #000 transparent;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.menu_section .menu_list .menu_block a:hover:after {
  bottom: 0;
  right: 0;
}

.menu_section .menu_list .menu_block a:hover .img img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.menu_section .menu_list .menu_block a .img {
  width: 48%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list .menu_block a .img {
    width: 100%;
  }
}

.menu_section .menu_list .menu_block a .txt {
  width: 52%;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list .menu_block a .txt {
    width: 100%;
  }
}

.menu_section .menu_list .menu_block a .txt h3 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 0.3em;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list .menu_block a .txt h3 {
    font-size: 1.8rem;
  }
}

.menu_section .menu_list .menu_block a .txt p {
  line-height: 1.78;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_list .menu_block a .txt p {
    font-size: 1.2rem;
  }
}

.menu_section .menu_book {
  text-align: center;
  margin: 60px auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .menu_section .menu_book {
    margin: 0 auto 35px;
    display: block;
    padding: 0 20px;
  }
}

.menu_section .menu_book a {
  width: -webkit-calc(50% - 40px);
  width: calc(50% - 40px);
  margin: 0 20px 40px;
  background: #2C0000;
  display: block;
  position: relative;
  color: #FFFFFF;
  padding: 22px 18px;
}

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

.menu_section .menu_book a span {
  background: url("images/ico_pdf.png") left center no-repeat;
  background-size: 22px 22px;
  padding: 5px 0 5px 32px;
}

.menu_section .menu_book a:after {
  content: "";
  position: absolute;
  bottom: 5px;
  right: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 12px 12px;
  border-color: transparent transparent #FFFFFF transparent;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}

.menu_section .menu_book a:hover:after {
  bottom: 0;
  right: 0;
}

.menu_section .free_food {
  text-align: center;
  max-width: 780px;
  margin: auto;
}

.menu_section .free_food .main {
  background: #FFFFFF;
  padding: 30px 20px;
  font-size: 2.2rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
}

@media screen and (max-width: 767px) {
  .menu_section .free_food .main {
    padding: 20px;
    font-size: 1.6rem;
  }
}

.menu_section .free_food .hosoku {
  margin: 20px 0;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .menu_section .free_food .hosoku {
    font-size: 1.2rem;
  }
}

.info_section {
  padding: 120px 0;
}

@media screen and (max-width: 767px) {
  .info_section {
    padding: 70px 0 0;
  }
}

.info_section .img_shop {
  margin: 0 auto 60px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .info_section .img_shop {
    display: block;
    margin-bottom: 35px;
  }
}

.info_section .img_shop .block_01 {
  width: 68%;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_01 {
    width: 100%;
    padding: 0;
    margin-bottom: 6px;
  }
}

.info_section .img_shop .block_02 {
  width: 32%;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_02 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
  }
}

.info_section .img_shop .block_02 .small_img_01 {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_02 .small_img_01 {
    margin-bottom: 0;
    width: 50%;
    padding-right: 3px;
  }
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_02 .small_img_02 {
    width: 50%;
    padding-left: 3px;
  }
}

.info_section .img_shop .block_03 {
  margin-top: 20px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_03 {
    margin-top: 6px;
  }
}

.info_section .img_shop .block_03 .small_img_01 {
  width: 50%;
  padding-right: 10px;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_03 .small_img_01 {
    padding-right: 3px;
  }
}

.info_section .img_shop .block_03 .small_img_02 {
  width: 50%;
  padding-left: 10px;
}

@media screen and (max-width: 767px) {
  .info_section .img_shop .block_03 .small_img_02 {
    padding-left: 3px;
  }
}

.info_section .address {
  max-width: 680px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .info_section .address {
    margin: 45px 20px;
  }
}

.info_section .address h3 {
  font-size: 2.8rem;
  font-family: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo, serif;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1.56;
}

@media screen and (max-width: 767px) {
  .info_section .address h3 {
    font-size: 2.2rem;
    margin-bottom: 0.1em;
  }
}

.info_section .address table {
  width: 100%;
  margin-bottom: 30px;
}

.info_section .address table th {
  padding: 12px 0;
  font-weight: bold;
  border-bottom: 1px solid #111111;
  width: 130px;
}

@media screen and (max-width: 767px) {
  .info_section .address table th {
    display: block;
    width: 100%;
    padding: 12px 0 0;
    border-bottom: 0;
  }
}

.info_section .address table td {
  padding: 12px 0;
  border-bottom: 1px solid #ccc;
}

@media screen and (max-width: 767px) {
  .info_section .address table td {
    display: block;
    width: 100%;
    padding: 0 0 12px;
    border-bottom: 1px solid #111111;
  }
}

.info_section .address p {
  text-align: center;
}

.info_section .info_sns {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  margin: 50px auto;
}

.info_section .info_sns a {
  display: block;
  width: 26px;
  margin: 0 10px;
}

@media screen and (max-width: 767px) {
  .info_section .info_sns a {
    width: 26px;
  }
}

.info_section .info_sns a:hover {
  opacity: 0.7;
}

/* _footer
---------------------------------------------------------------------------------------*/
footer {
  margin-top: 0;
}

footer .googlemaps {
  width: 100%;
  height: 580px;
}

@media screen and (max-width: 767px) {
  footer .googlemaps {
    height: 280px;
  }
}

footer .googlemaps iframe {
  width: 100%;
  height: 580px;
}

@media screen and (max-width: 767px) {
  footer .googlemaps iframe {
    height: 280px;
  }
}

footer .googlemaps iframe,
footer .googlemaps object,
footer .googlemaps embed {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}

footer .footer_copyright {
  background: #111111;
  padding: 12px;
  color: #FFFFFF;
  text-align: center;
}

footer .footer_copyright p {
  font-family: "Libre Baskerville", serif;
  font-size: 1.2rem;
}
