@charset "UTF-8";
@-webkit-keyframes nav_a {
  0% {
    left: 10%;
    -webkit-transform: skew(15deg);
            transform: skew(15deg);
  }
  100% {
    left: 0;
    -webkit-transform: skew(0);
            transform: skew(0);
  }
}
@keyframes nav_a {
  0% {
    left: 10%;
    -webkit-transform: skew(15deg);
            transform: skew(15deg);
  }
  100% {
    left: 0;
    -webkit-transform: skew(0);
            transform: skew(0);
  }
}

@-webkit-keyframes nav_b {
  0% {
    left: 0;
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  100% {
    left: 10%;
    -webkit-transform: skew(15deg);
            transform: skew(15deg);
  }
}

@keyframes nav_b {
  0% {
    left: 0;
    -webkit-transform: skew(0);
            transform: skew(0);
  }
  100% {
    left: 10%;
    -webkit-transform: skew(15deg);
            transform: skew(15deg);
  }
}

@-webkit-keyframes nav_c {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@keyframes nav_c {
  0% {
    right: -100%;
    opacity: 0;
  }
  100% {
    right: 0;
    opacity: 1;
  }
}

@-webkit-keyframes nav_d {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}

@keyframes nav_d {
  0% {
    right: 0;
    opacity: 1;
  }
  100% {
    right: -100%;
    opacity: 0;
  }
}

@-webkit-keyframes nav_e {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes nav_e {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes nav_button {
  0% {
    left: -100%;
    opacity: 0;
  }
  15% {
    left: 0;
    opacity: 1;
  }
  85% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@keyframes nav_button {
  0% {
    left: -100%;
    opacity: 0;
  }
  15% {
    left: 0;
    opacity: 1;
  }
  85% {
    left: 0;
    opacity: 1;
  }
  100% {
    left: 100%;
    opacity: 0;
  }
}

@-webkit-keyframes loader_bar {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@keyframes loader_bar {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

@-webkit-keyframes top_bar {
  0% {
    top: 100%;
  }
  100% {
    top: -100%;
  }
}

@keyframes top_bar {
  0% {
    top: 100%;
  }
  100% {
    top: -100%;
  }
}

html {
  overflow-x: hidden;
}

@media screen and (max-width: 560px) {
  html {
    min-width: 300px;
  }
}

body {
  font-family: "Noto Serif JP", sans-serif;
  margin: 0;
}

@media screen and (max-width: 560px) {
  body {
    min-width: 300px;
    overflow-x: hidden;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  body {
    overflow-x: hidden;
  }
}

p,
h1 {
  margin: 0;
}

a {
  text-decoration: none;
  color: black;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.text h1 {
  font-size: 27px;
  letter-spacing: 6px;
  margin: 27px 0;
}

.text p {
  font-size: 14px;
  letter-spacing: 1.3px;
  line-height: 2;
  margin: 10px 0;
  text-align: justify;
  text-justify: inter-ideograph;
}

.none {
  display: none;
}

.scroll_fadein {
  opacity: 0;
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.scroll_fadein.active {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.scroll_slidein {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.scroll_slidein.active {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

.loading_bg {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background: white;
  z-index: 10;
}

.loading_bg .loader_bar {
  position: fixed;
  z-index: 11;
  width: 200px;
  height: 5px;
  top: 50%;
  right: 50%;
  margin-right: -100px;
  overflow: hidden;
  display: none;
}

.loading_bg .loader_bar div {
  background-color: #b12e3c;
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-animation: loader_bar .7s ease 0s infinite;
          animation: loader_bar .7s ease 0s infinite;
}

.loading_bg .loader_logo {
  position: fixed;
  background-image: url("img/logo_c.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 300px;
  height: 400px;
  top: 50%;
  right: 50%;
  margin-top: -220px;
  margin-right: -150px;
  opacity: 0;
  -webkit-transition: .8s;
  transition: .8s;
}

.loading_bg .loader_logo.active1 {
  opacity: 1;
}

.loading_bg .loader_logo.active2 {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  opacity: 0;
}

@media screen and (max-width: 560px) {
  .loading_bg .loader_bar {
    height: 2.5px;
  }
  .loading_bg .loader_logo {
    width: 150px;
    height: 200px;
    margin-top: -110px;
    margin-right: -75px;
  }
}

header {
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
  z-index: 1;
}

header .header_nav {
  position: absolute;
  width: 50vw;
  height: 100vh;
  right: 0;
}

header .header_nav .header_nav_inner {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  -webkit-animation: 1s ease forwards nav_d;
          animation: 1s ease forwards nav_d;
}

header .header_nav .header_nav_inner .header_nav_content {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  background-color: #f1eff0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: 1s ease-in-out forwards nav_b;
          animation: 1s ease-in-out forwards nav_b;
}

header .header_nav .header_nav_inner .header_nav_content .nav_logo_a {
  width: 120px;
  height: 66px;
  position: absolute;
  top: 90px;
  left: 50%;
  margin-left: -60px;
  background-image: url("img/logo_a.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

header .header_nav .header_nav_inner .header_nav_content .nav_logo_b {
  width: 200px;
  height: 250px;
  position: absolute;
  top: 260px;
  left: 50%;
  margin-left: -100px;
  background-image: url("img/logo_b.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
  display: none;
}

header .header_nav .header_nav_inner .header_nav_content ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  padding-top: 35px;
}

header .header_nav .header_nav_inner .header_nav_content ul li {
  margin: 0 20px;
}

header .header_nav .header_nav_inner .header_nav_content ul li a {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 17px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

header .header_nav .header_nav_inner .header_nav_content ul li a:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
}

header .header_nav.active .header_nav_inner {
  -webkit-animation: 1s ease forwards nav_c;
          animation: 1s ease forwards nav_c;
}

header .header_nav.active .header_nav_inner .header_nav_content {
  -webkit-animation: 1s ease-in-out forwards nav_a;
          animation: 1s ease-in-out forwards nav_a;
}

header .header_nav.active .header_nav_inner .header_nav_content ul li {
  -webkit-animation: 1s ease-in-out 0.2s forwards nav_e;
          animation: 1s ease-in-out 0.2s forwards nav_e;
}

header .header_inner .header_logo {
  display: none;
}

header .header_inner .header_nav_button {
  z-index: 2;
  width: 35px;
  height: 23px;
  position: absolute;
  right: 33px;
  top: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .header_inner .header_nav_button > span {
  width: 100%;
  height: 2px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  overflow: hidden;
}

header .header_inner .header_nav_button > span:nth-of-type(1) {
  top: 0;
}

header .header_inner .header_nav_button > span:nth-of-type(1) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0s infinite;
          animation: nav_button 2.2s ease-in-out 0s infinite;
}

header .header_inner .header_nav_button > span:nth-of-type(2) {
  top: 10.5px;
}

header .header_inner .header_nav_button > span:nth-of-type(2) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0.2s infinite;
          animation: nav_button 2.2s ease-in-out 0.2s infinite;
}

header .header_inner .header_nav_button > span:nth-of-type(3) {
  bottom: 0;
}

header .header_inner .header_nav_button > span:nth-of-type(3) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0.4s infinite;
          animation: nav_button 2.2s ease-in-out 0.4s infinite;
}

header .header_inner .header_nav_button > span span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
}

header .header_inner .header_nav_button::after {
  content: "MENU";
  position: absolute;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 2px;
  bottom: -20px;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}

header .header_inner .header_nav_button::before {
  content: "CLOSE";
  position: absolute;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 1px;
  bottom: -20px;
  display: none;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}

header .header_inner .header_nav_button.active > span:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}

header .header_inner .header_nav_button.active > span:nth-of-type(1) span {
  -webkit-animation: none;
          animation: none;
}

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

header .header_inner .header_nav_button.active > span:nth-of-type(2) span {
  -webkit-animation: none;
          animation: none;
}

header .header_inner .header_nav_button.active > span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
}

header .header_inner .header_nav_button.active > span:nth-of-type(3) span {
  -webkit-animation: none;
          animation: none;
}

header .header_inner .header_nav_button.active::after {
  display: none;
}

header .header_inner .header_nav_button.active::before {
  display: block;
}

header .header_netshop {
  width: 70px;
  height: 240px;
  position: absolute;
  right: 0;
  top: 50vh;
  -webkit-transform: translate3d(0, 0, -1px);
          transform: translate3d(0, 0, -1px);
}

header .header_netshop a {
  color: white;
  -webkit-writing-mode: vertical-lr;
      -ms-writing-mode: tb-lr;
          writing-mode: vertical-lr;
  text-align: center;
  font-size: 17px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-color: #504444;
  display: block;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}

header .header_netshop a::before {
  font-family: "Font Awesome 5 Free";
  content: "\f290";
  font-weight: 900;
  font-size: 25px;
  margin-bottom: 10px;
}

header .header_netshop.active a {
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}

header .header_netshop.active a:hover {
  -webkit-transform: translate(0, -5px);
          transform: translate(0, -5px);
  background-color: #b12e3c;
}

@media screen and (max-width: 560px) {
  header {
    width: 100%;
  }
  header .header_inner {
    background-color: white;
    height: 60px;
    width: 100%;
    position: relative;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
  }
  header .header_inner .header_nav_button {
    top: 12px;
    right: 20px;
    -webkit-transform: translateZ(100px);
            transform: translateZ(100px);
  }
  header .header_inner .header_logo {
    display: block;
    height: 70%;
    width: 80px;
    position: absolute;
    left: 20px;
    top: 50%;
    margin-top: -21px;
    background-image: url("img/logo_a.png");
    background-size: contain;
  background-repeat: no-repeat;
    background-position: center;
  }
  header .header_inner.active {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  header .header_nav {
    width: 100%;
    -webkit-transform: translate3d(0, 0, 1px);
            transform: translate3d(0, 0, 1px);
  }
  header .header_nav .header_nav_inner .header_nav_content {
    height: 110vh;
  }
  header .header_nav .header_nav_inner .header_nav_content ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 100px;
  }
  header .header_nav .header_nav_inner .header_nav_content ul li {
    margin: 12px 0;
  }
  header .header_nav .header_nav_inner .header_nav_content ul li a {
    display: block;
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    text-align: center;
    width: 100%;
  }
  header .header_nav .header_nav_inner .header_nav_content .nav_logo_b {
    display: block;
  }
  header .header_netshop {
    display: none;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  header .header_nav {
    width: 65vw;
  }
}

.top {
  width: 100%;
  position: relative;
  margin: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(76%, white), color-stop(76%, #f7f7f7), to(#f7f7f7));
  background: linear-gradient(180deg, white 0%, white 76%, #f7f7f7 76%, #f7f7f7 100%);
  background-color: white;
}

.top .header_nav_button {
  z-index: 1;
  width: 35px;
  height: 23px;
  position: absolute;
  right: 33px;
  top: 20px;
  cursor: pointer;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.top .header_nav_button > span {
  width: 100%;
  height: 2px;
  display: block;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: absolute;
  overflow: hidden;
}

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

.top .header_nav_button > span:nth-of-type(1) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0s infinite;
          animation: nav_button 2.2s ease-in-out 0s infinite;
}

.top .header_nav_button > span:nth-of-type(2) {
  top: 10.5px;
}

.top .header_nav_button > span:nth-of-type(2) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0.2s infinite;
          animation: nav_button 2.2s ease-in-out 0.2s infinite;
}

.top .header_nav_button > span:nth-of-type(3) {
  bottom: 0;
}

.top .header_nav_button > span:nth-of-type(3) span {
  -webkit-animation: nav_button 2.2s ease-in-out 0.4s infinite;
          animation: nav_button 2.2s ease-in-out 0.4s infinite;
}

.top .header_nav_button > span span {
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
}

.top .header_nav_button::after {
  content: "MENU";
  position: absolute;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 2px;
  bottom: -20px;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}

.top .header_nav_button::before {
  content: "CLOSE";
  position: absolute;
  font-family: "Noto Sans JP";
  font-size: 11px;
  letter-spacing: 1px;
  bottom: -20px;
  display: none;
  -webkit-transform: 0.5s;
          transform: 0.5s;
}

.top .header_nav_button.active > span:nth-of-type(1) {
  -webkit-transform: rotate(45deg) translate(8px, 8px);
          transform: rotate(45deg) translate(8px, 8px);
}

.top .header_nav_button.active > span:nth-of-type(1) span {
  -webkit-animation: none;
          animation: none;
}

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

.top .header_nav_button.active > span:nth-of-type(2) span {
  -webkit-animation: none;
          animation: none;
}

.top .header_nav_button.active > span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg) translate(7px, -7px);
          transform: rotate(-45deg) translate(7px, -7px);
}

.top .header_nav_button.active > span:nth-of-type(3) span {
  -webkit-animation: none;
          animation: none;
}

.top .header_nav_button.active::after {
  display: none;
}

.top .header_nav_button.active::before {
  display: block;
}

.top .top_logo {
  width: 100px;
  height: 55px;
  position: absolute;
  top: 14px;
  left: 25px;
  background-image: url("img/logo_a.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.top .top_scroll {
  height: 90px;
  position: absolute;
  bottom: 0;
  left: 8.4%;
  display: block;
  font-family: "Noto sans JP";
  letter-spacing: 1.5px;
  font-size: 13px;
  padding: 0 9px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
  text-align: right;
}

.top .top_scroll .top_scroll_bar {
  position: absolute;
  width: 1px;
  height: 100%;
  background-color: #b8b8b8;
  left: 0;
  overflow: hidden;
}

.top .top_scroll .top_scroll_bar span {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  -webkit-animation: top_bar 1s ease-in-out 0s infinite;
          animation: top_bar 1s ease-in-out 0s infinite;
}

.top .mv_area {
  position: absolute;
  right: 0;
  top: 80px;
  width: 81.6%;
}

.top .mv_area video {
  width: 100%;
  z-index: -1;
  background-image: url("img/mv_movie.png");
  background-size: cover;
  background-position: center;
}

.top .mv_area .mv_overlay {
  width: 100%;
  position: absolute;
  top: 0;
  background-color: #00000048;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-size: 40px 40px;
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(1%, rgba(150, 150, 150, 0.2)), color-stop(1%, transparent), color-stop(99%, transparent), to(rgba(150, 150, 150, 0.2))), -webkit-gradient(linear, left top, right top, color-stop(1%, rgba(150, 150, 150, 0.2)), color-stop(1%, transparent), color-stop(99%, transparent), to(rgba(150, 150, 150, 0.2))), -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(25%, transparent), color-stop(25%, rgba(150, 150, 150, 0.2)), color-stop(26%, rgba(150, 150, 150, 0.2)), color-stop(26%, transparent), color-stop(50%, transparent), color-stop(50%, rgba(150, 150, 150, 0.2)), color-stop(51%, rgba(150, 150, 150, 0.2)), color-stop(51%, transparent), color-stop(75%, transparent), color-stop(75%, rgba(150, 150, 150, 0.2)), color-stop(76%, rgba(150, 150, 150, 0.2)), color-stop(76%, transparent), to(transparent)), -webkit-gradient(linear, left top, right top, from(transparent), color-stop(25%, transparent), color-stop(25%, rgba(150, 150, 150, 0.2)), color-stop(26%, rgba(150, 150, 150, 0.2)), color-stop(26%, transparent), color-stop(50%, transparent), color-stop(50%, rgba(150, 150, 150, 0.2)), color-stop(51%, rgba(150, 150, 150, 0.2)), color-stop(51%, transparent), color-stop(75%, transparent), color-stop(75%, rgba(150, 150, 150, 0.2)), color-stop(76%, rgba(150, 150, 150, 0.2)), color-stop(76%, transparent), to(transparent));
  background-image: linear-gradient(rgba(150, 150, 150, 0.2) 1%, transparent 1%, transparent 99%, rgba(150, 150, 150, 0.2) 100%), linear-gradient(90deg, rgba(150, 150, 150, 0.2) 1%, transparent 1%, transparent 99%, rgba(150, 150, 150, 0.2) 100%), linear-gradient(transparent, transparent 25%, rgba(150, 150, 150, 0.2) 25%, rgba(150, 150, 150, 0.2) 26%, transparent 26%, transparent 50%, rgba(150, 150, 150, 0.2) 50%, rgba(150, 150, 150, 0.2) 51%, transparent 51%, transparent 75%, rgba(150, 150, 150, 0.2) 75%, rgba(150, 150, 150, 0.2) 76%, transparent 76%, transparent 100%), linear-gradient(90deg, transparent, transparent 25%, rgba(150, 150, 150, 0.2) 25%, rgba(150, 150, 150, 0.2) 26%, transparent 26%, transparent 50%, rgba(150, 150, 150, 0.2) 50%, rgba(150, 150, 150, 0.2) 51%, transparent 51%, transparent 75%, rgba(150, 150, 150, 0.2) 75%, rgba(150, 150, 150, 0.2) 76%, transparent 76%, transparent 100%);
}

.top .mv_area .mv_overlay p {
  font-size: 38px;
  color: white;
  line-height: 1.9;
  letter-spacing: 8px;
  padding-left: 90px;
  padding-bottom: 45px;
  font-weight: 500;
}

.top .mv_area .mv_overlay p.typ {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.top .mv_area .mv_overlay p.typ span {
  opacity: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 560px) {
  .top {
    overflow: hidden;
  }
  .top .header_nav_button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top .top_logo {
    left: 50%;
    margin-left: -50px;
  }
  .top .mv_area {
    width: 200%;
    top: 80px;
    right: -50%;
  }
  .top .mv_area .mv_overlay p {
    position: absolute;
    width: 100vw;
    right: 50%;
    transform: translateX(50%);
    font-size: 20px;
    padding: 0px 3%;
    box-sizing: border-box;
  }
  .top .top_scroll {
    display: none;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .top .mv_area .mv_overlay p {
    font-size: 25px;
    padding-bottom: 0;
    padding-left: 10%;
  }
}

.main {
  /* モーダル開閉チェックボックス */
  /* モーダル閉じる */
  /* モーダル開く */
  /* モーダル展開用 */
}

.main .news {
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .news .news_inner {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 1100px;
  padding: 50px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .news .news_inner .news_title {
  width: 180px;
  margin-right: 75px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .news .news_inner .news_title p {
  text-align: center;
}

.main .news .news_inner .news_title p:nth-child(1) {
  font-size: 25px;
  letter-spacing: 5px;
}

.main .news .news_inner .news_title p:nth-child(2) {
  font-size: 20px;
  color: #b12e3c;
}

.main .news .news_inner .news_content article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  line-height: 2;
  letter-spacing: 1px;
  margin: 5px 0;
}

.main .news .news_inner .news_content article .content {
  margin-left: 30px;
}

@media screen and (max-width: 560px) {
  .main .news .news_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 45px 23px 77px;
  }
  .main .news .news_inner .news_title {
    margin: 0;
    width: 100%;
  }
  .main .news .news_inner .news_content {
    margin-top: 20px;
  }
  .main .news .news_inner .news_content article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
  }
  .main .news .news_inner .news_content article .day {
    text-align: center;
  }
  .main .news .news_inner .news_content article .content {
    margin: 0;
    line-height: 2;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .main .news .news_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 45px 23px 77px;
  }
  .main .news .news_inner .news_title {
    margin: 0;
    width: 100%;
  }
  .main .news .news_inner .news_content {
    margin-top: 20px;
    width: 100%;
  }
  .main .news .news_inner .news_content article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .news .news_inner .news_content article .day {
    text-align: center;
  }
  .main .news .news_inner .news_content article .content {
    margin: 0;
    line-height: 2;
    width: 70%;
  }
}

.main .banner {
  background-color: #fff;
  text-align: center;
  padding: 100px 0;
}
.main .banner img {
  width: 30%;
}

@media screen and (max-width: 560px) {
  .main .banner {
    padding: 60px 0;
  }
  .main .banner img {
    width: 75%;
  }
}

.main .main01 {
  width: 100%;
  height: 695px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-image: url("img/bg01.png");
  background-size: cover;
  background-position: 50% -120px;
  padding-right: 11.7%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-attachment: fixed;
}

.main .main01 .main01_text {
  width: 400px;
}

.main .main01 .main01_text .main01_text_inner {
  width: 100%;
}

@media screen and (max-width: 560px) {
  .main .main01 {
    height: 1020px;
    background-image: url("img/bg03.png");
    background-size: 240%;
    background-position: 55% -150px;
    padding: 260px 30px 0;
    background-attachment: scroll;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.main .main02 {
  background-color: #f7f7f7;
  height: 487px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .main02 .main02_inner {
  background-color: white;
  width: 1100px;
  height: 567px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  margin-bottom: -400px;
}

.main .main02 .main02_inner .main02_text {
  width: 300px;
  padding-bottom: 35px;
}

.main .main02 .main02_inner .main02_text h1 {
  margin: 38px 0;
}

.main .main02 .main02_inner .main02_img {
  width: 600px;
  height: 420px;
  -ms-grid-column-align: right;
      justify-self: right;
  margin-left: auto;
  background-image: url("img/bg02.png");
  background-size: 160%;
  background-position: 45% 25%;
}

@media screen and (max-width: 560px) {
  .main .main02 {
    height: 625px;
  }
  .main .main02 .main02_inner {
    height: 735px;
    width: 320px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .main .main02 .main02_inner .main02_img {
    -ms-grid-column-align: start;
        justify-self: start;
    width: 100%;
    height: 230px;
  }
  .main .main02 .main02_inner .main02_text {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-top: 18px;
  }
  .main .main02 .main02_inner .main02_text h1 {
    text-align: center;
    margin: 30px 0 30px;
    letter-spacing: 4px;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .main .main02 .main02_inner {
    padding-left: 10%;
    width: 91.6%;
  }
  .main .main02 .main02_inner .main02_text {
    min-width: 300px;
    padding-right: 20px;
  }
  .main .main02 .main02_inner .main02_img {
    width: 60%;
    height: 420px;
    background-size: cover;
  }
}

@media screen and (min-width: 560px) and (max-width: 800px) {
  .main .main02 {
    height: 625px;
  }
  .main .main02 .main02_inner {
    height: 735px;
    width: 80%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0;
  }
  .main .main02 .main02_inner .main02_img {
    -ms-grid-column-align: start;
        justify-self: start;
    width: 100%;
    height: 230px;
  }
  .main .main02 .main02_inner .main02_text {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0 30px;
    margin-top: 18px;
  }
  .main .main02 .main02_inner .main02_text h1 {
    text-align: center;
    margin: 30px 0 30px;
    letter-spacing: 4px;
  }
}

.main .main03 {
  width: 100%;
  height: 589px;
  background-color: #f7f7f7;
}

.main .main03 .main03_inner {
  width: 100%;
  height: 100%;
  background-image: url("img/D21A1109.jpg");
  background-size: cover;
  background-position: 50% 80%;
  background-attachment: fixed;
}

@media screen and (max-width: 560px) {
  .main .main03 {
    height: 330px;
    background-position: 60% 80%;
  }
  .main .main03 .main03_inner {
    background-attachment: scroll;
  }
}

.main .main04 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
}

.main .main04 .main04_inner {
  width: 1100px;
}

.main .main04 .main04_inner h1 {
  font-size: 27px;
  letter-spacing: 6px;
  margin: 78px 0;
  text-align: center;
}

.main .main04 .main04_inner .main04_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.main .main04 .main04_inner .main04_text .main04_text_inner {
  width: 343px;
}

.main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(1) {
  padding-right: 115px;
  border-right: 1px solid #d4d4d4;
}

.main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) {
  padding-left: 115px;
  border-left: 1px solid #d4d4d4;
}

.main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(3) {
  display: none;
}

.main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(4) {
  display: none;
}

.main .main04 .main04_inner .main04_text .main04_text_inner p {
  letter-spacing: 1.3;
}

.main .main04 .main04_inner .main04_text .main04_text_inner h2,
.main .main04 .main04_inner .main04_text .main04_text_inner h3 {
  text-align: center;
  font-weight: 400;
}

.main .main04 .main04_inner .main04_text .main04_text_inner h2 {
  margin: 0;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0px;
  margin-top: -5px;
}

.main .main04 .main04_inner .main04_text .main04_text_inner h3 {
  font-size: 16px;
  color: #b12e3c;
  margin: 30px 0 10px;
}

@media screen and (max-width: 560px) {
  .main .main04 .main04_inner {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .main04 .main04_inner h1 {
    width: 240px;
    text-align: center;
    margin: 40px 0;
    line-height: 1.9;
  }
  .main .main04 .main04_inner .main04_text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 50px;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner h2 {
    margin-bottom: 30px;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner h3 {
    display: none;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(1) {
    padding: 0 27px;
    border: none;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) {
    padding: 0 27px;
    border: none;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(1) {
    
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(2) {
    display: none;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(3) {
    display: block;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) p:nth-of-type(4) {
    display: block;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .main .main04 .main04_inner {
    width: 100%;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(1) {
    padding: 0 20px;
  }
  .main .main04 .main04_inner .main04_text .main04_text_inner:nth-child(2) {
    padding: 0 20px;
  }
}

.main .main05 {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #f7f7f7;
}

.main .main05 .main05_inner {
  width: 1100px;
}

.main .main05 .main05_inner h1 {
  font-size: 31px;
  letter-spacing: 8.2px;
  margin: 132px 0 85px;
  text-align: center;
}

.main .main05 .main05_inner .main05_menus {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main .main05 .main05_inner .main05_menus .main05_menu {
  width: 530px;
  height: 730px;
  background-color: white;
}

.main .main05 .main05_inner .main05_menus .main05_menu:nth-child(1) .menu_img {
  background-image: url("img/D21A1081.jpg");
}

.main .main05 .main05_inner .main05_menus .main05_menu:nth-child(2) .menu_img {
  background-image: url("img/D21A1093.jpg");
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_img {
  background-size: 155%;
  background-position: 52% 95%;
  width: 100%;
  height: 340px;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_img img {
  width: 100%;
  height: 100%;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  height: 390px;
  padding: 0 57px 48px 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a {
  width: 265px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a h1 {
  margin: 0;
  margin-top: 30px;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a h2 {
  font-size: 18px;
  text-align: center;
  margin: 10px 0;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a h2:nth-of-type(2) {
  display: none;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a h3 {
  text-align: center;
  line-height: 2.3;
  font-weight: 400;
  font-size: 15px;
  color: #b4914f;
  display: block;
  width: 60px;
  border-bottom: 0.5px solid #b4914f;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a h3:nth-of-type(2) {
  display: none;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a p {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.9;
  padding-left: 15px;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_b {
  margin-top: auto;
  justify-self: left;
  background-color: #e9e9e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 64px;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_b p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 11px;
  margin: 0;
  letter-spacing: 1px;
  margin-right: -10px;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_b {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-top: 30px;
  -ms-grid-column-align: right;
      justify-self: right;
  margin-left: auto;
}

.main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_b p {
  font-size: 18px;
}

.main .main05 .main05_inner .main05_attentions {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 47px 0 93px 130px;
}

.main .main05 .main05_inner .main05_attentions .main05_attention {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 20px 0;
}

.main .main05 .main05_inner .main05_attentions .main05_attention h1 {
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 130px;
  letter-spacing: 0;
  margin: 0;
  font-size: 12px;
  display: block;
  border: 0.5px solid black;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  line-height: 2.4;
}

.main .main05 .main05_inner .main05_attentions .main05_attention p,
.main .main05 .main05_inner .main05_attentions .main05_attention li {
  font-size: 12px;
  line-height: 1.9;
  position: relative;
}

.main .main05 .main05_inner .main05_attentions .main05_attention p br,
.main .main05 .main05_inner .main05_attentions .main05_attention li br {
  display: none;
}

.main .main05 .main05_inner .main05_attentions .main05_attention li::before {
  content: "＊";
  position: absolute;
  left: -12px;
}

.main .main05 .main05_inner .main05_attentions .main05_attention ul {
  padding-left: 40px;
}

.main .main05 .main05_inner .main05_attentions .main05_attention p {
  padding-left: 29px;
}

@media screen and (max-width: 560px) {
  .main .main05 .main05_inner {
    width: 100%;
  }
  .main .main05 .main05_inner h1 {
    margin: 165px 0 52px;
  }
  .main .main05 .main05_inner .main05_menus {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu {
    width: 320px;
    height: 705px;
    margin: 25px 0;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_img {
    height: 200px;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text {
    padding: 0 20px 30px;
    height: 500px;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a {
    width: 100%;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a h2:nth-of-type(2) {
    display: block;
    line-height: 2;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a h3:nth-of-type(2) {
    display: block;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_a .menu_text_block_a:nth-of-type(1) h3:nth-of-type(1) {
    display: none;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu .menu_text .menu_text_b {
    display: none;
  }
  .main .main05 .main05_inner .main05_attentions {
    width: 100%;
    padding: 30px 36px 130px;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention h1 {
    margin-bottom: 20px;
    border-color: lightgray;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention p br {
    display: block;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention p {
    padding: 0;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention ul {
    padding-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention ul li {
    line-height: 1.6;
    margin-bottom: 6px;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .main .main05 .main05_inner .main05_menus {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .main .main05 .main05_inner .main05_menus .main05_menu {
    margin: 30px 30px;
  }
  .main .main05 .main05_inner .main05_attentions {
    width: 100%;
    padding: 30px 36px 130px;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention h1 {
    margin-bottom: 20px;
    border-color: lightgray;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention p br {
    display: block;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention p {
    padding: 0;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention ul {
    padding-left: 10px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 50%;
  }
  .main .main05 .main05_inner .main05_attentions .main05_attention ul li {
    line-height: 1.6;
    margin-bottom: 6px;
  }
}

.main .main06 {
  width: 100%;
  height: 590px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  background-color: #f7f7f7;
}

.main .main06 .main06_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("img/D21A1153.jpg");
  background-size: cover;
  background-position: 50% 80%;
  background-attachment: fixed;
}

.main .main06 .main06_inner {
  width: 1100px;
  background-color: white;
  position: absolute;
  top: 181px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-bottom: 54.5px;
}

.main .main06 .main06_inner h1 {
  text-align: center;
  font-size: 27px;
  letter-spacing: 5.5px;
  margin: 60px 0;
}

.main .main06 .main06_inner .main06_recipes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0 150px 50px;
}

.main .main06 .main06_inner .main06_recipes .recipe {
  width: 200px;
}

.main .main06 .main06_inner .main06_recipes .recipe label {
  width: 100%;
  height: 100%;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main .main06 .main06_inner .main06_recipes .recipe .recipe_img {
  width: 80%;
  height: auto;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
}

.main .main06 .main06_inner .main06_recipes .recipe .recipe_img img {
  width: 100%;
  height: 100%;
}

.main .main06 .main06_inner .main06_recipes .recipe p {
  text-align: center;
  font-size: 13px;
}

.main .main06 .main06_inner .main06_recipes .recipe p br {
  display: none;
}

.main .main06 .main06_inner .main06_recipes .recipe:nth-child(1) {
  display: none;
}

.main .main06 .main06_inner .main06_button {
  border: 0.7px solid #e6e6e6;
  margin-top: 54.5px;
  line-height: 3.6;
  letter-spacing: 1px;
  width: 240px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.main .main06 .main06_inner .main06_button:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #b12e3c;
}

.main .main06 .main06_inner .main06_button::after {
  content: "";
  width: 8px;
  height: 8px;
  border: 0px;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -5px;
}

@media screen and (max-width: 560px) {
  .main .main06 {
    height: 260px;
  }
  .main .main06 .main06_bg {
    background-size: 150%;
    background-attachment: scroll;
  }
  .main .main06 .main06_inner {
    width: 320px;
    top: 123px;
    margin-bottom: 80px;
  }
  .main .main06 .main06_inner .main06_recipes {
    padding: 0 10px;
  }
  .main .main06 .main06_inner .main06_recipes .recipe {
    width: 150px;
  }
  .main .main06 .main06_inner .main06_recipes .recipe:nth-of-type(2) .recipe_img {
    height: auto;
    margin: 10px 0 20px;
  }
  .main .main06 .main06_inner .main06_recipes .recipe p {
    font-size: 16px;
  }
  .main .main06 .main06_inner .main06_recipes .recipe p br {
    display: block;
  }
  .main .main06 .main06_inner .main06_button {
    margin: 60px 0 0;
    border-color: #b12e3c;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .main .main06 .main06_inner {
    width: 91.6%;
  }
}

.main .modalWrap,
.main .modalBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  z-index: 10;
}

.main .modalWrap {
  opacity: 0;
  visibility: hidden;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  will-change: opacity;
}

.main .modalBg {
  cursor: pointer;
  opacity: 0.7;
  background-color: #000;
  z-index: 2;
}

.main .modalBg label {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
}

.main .modalCon {
  position: absolute;
  top: 5%;
  left: 0;
  right: 0;
  width: 92%;
  max-width: 640px;
  height: 86%;
  margin: auto;
  z-index: 3;
}

.main .modalInner {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  position: relative;
  height: 100%;
  padding: 0 1.5em 1.5em;
  cursor: default;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
}

.main .modalInner .modalLogo {
  width: 200px;
  height: 250px;
  position: absolute;
  top: 45%;
  left: 50%;
  margin-left: -100px;
  background-image: url("img/logo_b.png");
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.main .modalInner .modalImg {
  width: 250px;
  height: 250px;
  margin: 20px;
  font-size: 300px;
  color: transparent;
}

.main .modalInner h1 {
  font-size: 20px;
  text-align: center;
}

.main .modalInner h2 {
  font-size: 15px;
  text-align: center;
}

.main .modalInner h3 {
  font-size: 13px;
  font-weight: normal;
}

.main .modalInner .modaltext {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.main .modalInner .modaltext div {
  width: 40%;
  margin: 0 5%;
}

.main .modalInner .modaltext div h1 {
  font-size: 15px;
  color: #b12e3c;
  text-align: left;
  border-bottom: 1px dotted #b12e3c;
  line-height: 2;
  padding-left: 5px;
}

@media screen and (max-width: 560px) {
  .main .modalInner .modaltext div {
    width: 100%;
    margin: 0;
  }
}

.main .modalInner .modaltext .material {
  font-size: 13px;
}

.main .modalInner .modaltext .material li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 2.5;
  text-align: justify;
  text-justify: inter-ideograph;
}

.main .modalInner .modaltext .material li span {
  background-color: #e9d3bc;
  text-align: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: block;
  margin: 0;
  line-height: 1.3;
  font-size: 12px;
  color: white;
}

.main .modalInner .modaltext .how {
  font-size: 13px;
}

.main .modalInner .modaltext .how li {
  margin: 7px 0;
}

.main .modalInner .modaltext .how li span {
  color: #b12e3c;
  font-weight: bold;
}

.main .modalInner .modaltext .how li:nth-last-child(1) {
  display: block;
  color: transparent;
}

.main .modalInner .modaltext .how li:nth-last-child(1) span {
  color: transparent;
}

.main .modalInner .modaltext .how li:nth-last-child(2) {
  display: block;
  color: transparent;
}

.main .modalInner .modaltext .how li:nth-last-child(2) span {
  color: transparent;
}

.main .modalInner .btn {
  margin-top: 20px;
  width: 50%;
  text-align: center;
  background-color: #504444;
  margin-top: 8px;
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 3;
  position: absolute;
}

.main .modalInner .btn label {
  width: 100%;
  height: 100%;
  display: block;
}

.main #modal01Con .modalInner .modaltext .how {
  width: 100%;
}

.main #modal01Con .modalInner .modalImg:nth-child(6) {
  background-image: url("img/D21A1109.jpg");
  background-size: cover;
  background-position: center;
}

.main #modal01Con .modalInner .modalImg:nth-child(3) {
  background-image: url("img/bg01.png");
  background-size: 200%;
  background-position: 3% 50%;
}

.main #modal01Con .modalInner .modalLogo {
  top: 100%;
}

@media screen and (max-width: 560px) {
  .main #modal01Con .modalInner .modalLogo {
    top: 150%;
  }
}

.main #modal01Con .modalInner .modaltitle {
  width: 80%;
  margin: 20px 0;
}

.main #modal01Con .modalInner .modaltitle h1 {
  font-size: 15px;
  color: #b4914f;
}

.main #modal01Con .modalInner .modaltitle h2 {
  font-size: 14px;
  border-bottom: 1px dotted #b4914f;
  line-height: 2;
  color: #b4914f;
}

.main #modal01Con .modalInner .modaltitle p {
  font-size: 13px;
}

@media screen and (max-width: 560px) {
  .main #modal01Con .modalInner .modaltitle {
    width: 100%;
  }
}

.main #modal01Con .modalInner h3 {
  width: 80%;
}

@media screen and (max-width: 560px) {
  .main #modal01Con .modalInner h3 {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .main #modal01Con .modalInner .btn {
    top: 1090px;
  }
}

.main #modal02Con .modalImg {
  background-image: url("img/modal02img.jpg");
  background-size: cover;
  background-position: center;
}

.main #modal02Con .btn {
  top: 730px;
}

@media screen and (max-width: 560px) {
  .main #modal02Con .btn {
    top: 960px;
  }
}

.main .modalCloseBtn {
  position: absolute;
  top: 0;
  right: 0;
}

.main .modalCloseBtn label {
  display: inline-block;
  color: #333;
  text-decoration: none;
  font-size: 2em;
  line-height: 1.1;
  background-color: #504444;
  color: white;
  padding: 0 0 2px 2px;
}

.main .modalCheck {
  display: none;
}

.main .modalCheck:not(:checked) ~ .wrapper > *:not(.modalWrap) {
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.main .modalCheck:not(:checked) ~ .wrapper .modalWrap {
  opacity: 0;
  visibility: hidden;
}

.main .modalCheck:checked ~ body > *:not(.modalWrap) {
  -webkit-filter: blur(3px);
          filter: blur(3px);
}

.main #modal00:checked ~ .wrapper #modal00Con {
  opacity: 1;
  visibility: visible;
}

.main #modal01:checked ~ .wrapper #modal01Con {
  opacity: 1;
  visibility: visible;
}

.main #modal02:checked ~ .wrapper #modal02Con {
  opacity: 1;
  visibility: visible;
}

.footer {
  background-color: #f7f7f7;
  padding-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer > h1 {
  text-align: center;
  font-size: 30px;
  letter-spacing: 5px;
  margin: 30px 0;
}

.footer .shops {
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.footer .shops .shop {
  margin: 13px 0;
  width: 1000px;
  height: 230px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: white;
  position: relative;
  overflow: hidden;
}

.footer .shops .shop .shop_layer {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f7f7f7;
}

.footer .shops .shop .shop_info {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 35px;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .shops .shop .shop_info .shop_img {
  width: 152px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.footer .shops .shop .shop_info .shop_img img {
  width: 100%;
  height: auto;
}

.footer .shops .shop .shop_info .shop_text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
  width: 290px;
}

.footer .shops .shop .shop_info .shop_text h1 {
  font-size: 18px;
  letter-spacing: 1.5px;
  margin: 5px 0 10px;
}

.footer .shops .shop .shop_info .shop_text p {
  font-size: 13px;
  margin: 5px 0;
}

.footer .shops .shop .shop_info .shop_text .booking {
  margin-top: auto;
  display: block;
  width: 100%;
  text-align: center;
  background-color: #504444;
  margin-top: 8px;
  color: white;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 3;
  position: relative;
}

.footer .shops .shop .shop_info .shop_text .booking::after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  position: absolute;
  font-size: 12px;
  top: 50%;
  right: 20px;
  margin-top: -18px;
}

.footer .shops .shop .shop_map {
  width: 50%;
  height: 100%;
  margin-left: auto;
}

.footer .shops .shop .shop_map iframe {
  width: 100%;
  height: 100%;
}

.footer .footer_links {
  width: 950px;
  margin: 58px 0 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.footer .footer_links .footer_title {
  padding: 0 25px;
}

.footer .footer_links .footer_title h1 {
  margin: 0;
  font-size: 20px;
  text-align: center;
}

.footer .footer_links .footer_title h2 {
  margin: 0;
  font-size: 17px;
  text-align: center;
  letter-spacing: 2px;
  color: #b12e3c;
}

.footer .footer_links .links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 75%;
  margin-left: auto;
}

.footer .footer_links .links .link {
  border: 0.7px solid #e6e6e6;
  background-color: white;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-size: 17px;
  line-height: 3.4;
  width: 210px;
  text-align: center;
  position: relative;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.footer .footer_links .links .link:hover {
  -webkit-transform: translateY(-5px);
          transform: translateY(-5px);
  border-color: #b12e3c;
}

.footer .footer_links .links .link::after {
  font-family: "Font Awesome 5 Free";
  content: "\f35d";
  font-weight: 900;
  position: absolute;
  font-size: 14px;
  top: 50%;
  right: 20px;
  margin-top: -23px;
  color: #504444;
}

.footer footer {
  background-color: white;
  padding: 60px 40px 30px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

.footer footer ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 550px;
}

.footer footer ul li {
  width: 33.3%;
  line-height: 1.9;
  letter-spacing: 1px;
}

.footer footer small {
  font-size: 12.5px;
  line-height: 4;
}

.footer footer small span {
  text-decoration: underline;
}

.footer footer .footer_logo {
  width: 120px;
  height: 66px;
  position: absolute;
  top: 50%;
  right: 70px;
  margin-top: -33px;
  background-image: url(img/logo_a.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 560px) {
  .footer {
    padding-top: 100px;
  }
  .footer .shops {
    width: 100%;
  }
  .footer .shops .shop {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .shops .shop .shop_map {
    width: 100%;
    height: 220px;
    margin: 0;
  }
  .footer .shops .shop .shop_info {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 35px;
  }
  .footer .shops .shop .shop_info .shop_text {
    margin-top: 20px;
    padding: 0 15px;
  }
  .footer .shops .shop .shop_info .shop_text .tel {
    text-decoration: underline;
    color: blue;
  }
  .footer .footer_links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0 110px;
  }
  .footer .footer_links .links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 38px;
  }
  .footer .footer_links .links .link {
    margin-top: 30px;
  }
  .footer footer {
    padding: 0;
    padding-top: 350px;
  }
  .footer footer .footer_logo {
    top: 225px;
    right: 50%;
    margin-right: -60px;
  }
  .footer footer ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer footer ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 9px 0;
  }
  .footer footer small {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 10px;
    margin-top: 30px;
  }
}

@media screen and (min-width: 560px) and (max-width: 1200px) {
  .footer {
    padding-top: 100px;
  }
  .footer .shops {
    width: 100%;
  }
  .footer .shops .shop {
    width: 100%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .footer .shops .shop .shop_map {
    width: 100%;
    height: 220px;
    margin: 0;
  }
  .footer .shops .shop .shop_info {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 30px 35px;
  }
  .footer .shops .shop .shop_info .shop_text {
    margin-top: 20px;
    padding: 0 15px;
  }
  .footer .footer_links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 40px 0 110px;
  }
  .footer .footer_links .links {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 38px;
  }
  .footer .footer_links .links .link {
    margin-top: 30px;
  }
  .footer footer {
    padding: 0;
    padding-top: 350px;
  }
  .footer footer .footer_logo {
    top: 225px;
    right: 50%;
    margin-right: -60px;
  }
  .footer footer ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer footer ul li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 9px 0;
  }
  .footer footer small {
    width: 100%;
    display: block;
    text-align: center;
    font-size: 10px;
    margin-top: 30px;
  }
}
/*# sourceMappingURL=style.css.map */