@charset "UTF-8";
/*************************************************
common-style
*************************************************/
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-margin: 100px;
}

.is_pc {
  display: block;
}
@media screen and (max-width: 599px) {
  .is_pc {
    display: none;
  }
}

.is_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  .is_sp {
    display: block;
  }
}

body {
  position: relative;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.red {
  color: #CF1D3E;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*************************************************
アニメーション
*************************************************/
.fadeUp {
  transform: translateY(0);
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 599px) {
  .fadeUp {
    animation-duration: 0.3s;
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.delay-time02 {
  animation-delay: 0.2s;
}
@media screen and (max-width: 599px) {
  .delay-time02 {
    animation-delay: 0.1s;
  }
}

.delay-time04 {
  animation-delay: 0.4s;
}
@media screen and (max-width: 599px) {
  .delay-time04 {
    animation-delay: 0.2s;
  }
}

.delay-time06 {
  animation-delay: 0.6s;
}
@media screen and (max-width: 599px) {
  .delay-time06 {
    animation-delay: 0.3s;
  }
}

.delay-time08 {
  animation-delay: 0.8s;
}
@media screen and (max-width: 599px) {
  .delay-time08 {
    animation-delay: 0.4s;
  }
}

.delay-time1 {
  animation-delay: 1s;
}
@media screen and (max-width: 599px) {
  .delay-time1 {
    animation-delay: 0.5s;
  }
}

/*************************************************
header
*************************************************/
/*************************************************
footer
*************************************************/
/*************************************************
navi
*************************************************/
/*************************************************
header
*************************************************/
header .header_pc {
  position: fixed;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0px 15px 0 70px;
  z-index: 9999;
}
@media screen and (max-width: 599px) {
  header .header_pc {
    display: none;
  }
}
header .header_pc .header_link {
  padding-top: 10px;
  display: flex;
  gap: 13px;
}
header .header_pc .header_link a {
  display: block;
  width: 100%;
}
header .header_pc .header_link a:hover {
  opacity: 0.7;
}
header .header_pc .header_link .header_link_02 {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
header .header_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  header .header_sp {
    display: block;
    background-color: #faf9f3;
    position: fixed;
    z-index: 9999;
    width: 100%;
  }
}
header .sp_fix {
  display: none;
}
@media screen and (max-width: 599px) {
  header .sp_fix {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 80px;
    z-index: 9999;
  }
}
header .sp_fix_link {
  display: none;
}
@media screen and (max-width: 599px) {
  header .sp_fix_link {
    position: fixed;
    display: flex;
    left: 0;
    bottom: 0;
    z-index: 9999;
    width: 100%;
  }
  header .sp_fix_link a {
    display: block;
    width: 50%;
    flex-basis: 50%;
  }
  header .sp_fix_link a img {
    display: block;
    width: 100%;
  }
}

/*************************************************
FV
*************************************************/
#fv {
  padding-top: 100px;
  position: relative;
  min-height: 970px;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  #fv {
    min-height: 85vh;
    margin-bottom: 0;
  }
}
#fv .fv_01 {
  width: 54.1666666667vw;
}
@media screen and (max-width: 599px) {
  #fv .fv_01 {
    display: none;
  }
}
#fv .fv_sp_01 {
  display: none;
}
@media screen and (max-width: 599px) {
  #fv .fv_sp_01 {
    display: block;
    position: absolute;
    left: 0;
    top: 86.6666666667vw;
    width: 100%;
  }
}
#fv .fv_inner {
  position: absolute;
  top: 10.7638888889vw;
  right: 13.8888888889vw;
}
@media screen and (max-width: 599px) {
  #fv .fv_inner {
    right: 15px;
    top: 29.3333333333vw;
  }
}
#fv .fv_inner h1 {
  font-weight: 600;
  font-size: 3.4722222222vw;
  margin-bottom: 25px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #fv .fv_inner h1 {
    font-size: 32px;
  }
}
#fv .fv_inner p {
  font-size: 22px;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  #fv .fv_inner p {
    font-size: 14px;
  }
}
#fv .fv_02 {
  position: absolute;
  width: 29.2361111111vw;
  right: 0;
  top: 36.4583333333vw;
}
@media screen and (max-width: 599px) {
  #fv .fv_02 {
    display: none;
  }
}
#fv .rice_01 {
  position: absolute;
  z-index: -1;
  left: 0;
  bottom: -340px;
  width: 440px;
}
@media screen and (max-width: 599px) {
  #fv .rice_01 {
    bottom: auto;
    top: 80px;
    left: -160px;
  }
}

/*************************************************
concept
*************************************************/
#concept {
  margin-bottom: 120px;
}
@media screen and (max-width: 599px) {
  #concept {
    margin-top: 0;
  }
}
#concept .section_inner_01 {
  position: relative;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto 120px;
  display: flex;
  gap: 7.9861111111vw;
  align-items: center;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_01 {
    flex-direction: column-reverse;
    gap: 50px;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 599px) {
  #concept .section_inner_01 .consept_img {
    display: none;
  }
}
#concept .section_inner_01 .fv_03 {
  display: none;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_01 .fv_03 {
    display: block;
    width: 100%;
    margin-bottom: 36px;
  }
}
#concept .section_inner_01 .concept_text h2 {
  font-weight: 600;
  font-size: 2.5vw;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_01 .concept_text h2 {
    font-size: 36px;
    padding: 0 15px;
  }
}
#concept .section_inner_01 .concept_text p {
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.7;
}
#concept .section_inner_01 .concept_text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_01 .concept_text p {
    font-size: 16px;
    text-align: center;
  }
}
#concept .section_inner_01 .rice_02 {
  position: absolute;
  z-index: -1;
  right: 100px;
  bottom: -50px;
}
#concept .section_inner_02 {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_02 .features_box {
    display: none;
  }
}
#concept .section_inner_02 .features_box img {
  display: block;
  width: 100%;
}
#concept .section_inner_02 .features_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #concept .section_inner_02 .features_sp {
    display: block;
    width: 100%;
  }
}

/*************************************************
menu
*************************************************/
#menu {
  padding: 11.1111111111vw 6.25vw;
  background-image: url(../images/menu_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  #menu {
    padding: 0px 0;
    background-image: none;
  }
}
#menu .menu__bg {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 10.4166666667vw 0 8.3333333333vw;
  background: #fff;
  box-shadow: 0 1px 19px 0 rgba(0, 0, 0, 0.09);
}
@media screen and (max-width: 599px) {
  #menu .menu__bg {
    padding: 80px 0;
    box-shadow: none;
  }
}
#menu .menu__bg .menu_lead {
  display: flex;
  gap: 60px;
  justify-content: center;
  margin-bottom: 160px;
}
@media screen and (max-width: 1000px) {
  #menu .menu__bg .menu_lead {
    flex-direction: column;
    gap: 30px;
    margin: 0 auto 50px;
  }
  #menu .menu__bg .menu_lead h3 {
    text-align: center;
  }
  #menu .menu__bg .menu_lead p {
    text-align: center;
  }
  #menu .menu__bg .menu_lead img {
    margin: 0 auto;
  }
}
#menu .menu__bg .menu_lead .menu_lead_text h3 {
  font-weight: 600;
  font-size: 2.5vw;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .menu_lead .menu_lead_text h3 {
    font-size: 30px;
    text-align: center;
  }
}
#menu .menu__bg .menu_lead .menu_lead_text p {
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.7;
}
#menu .menu__bg .menu_lead .menu_lead_text p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .menu_lead .menu_lead_text p {
    font-size: 14px;
    text-align: center;
  }
}
#menu .menu__bg .menu_lead img {
  display: block;
  width: 100%;
  max-width: 600px;
}
#menu .menu__bg .teishoku {
  position: relative;
  margin-bottom: 90px;
}
#menu .menu__bg .teishoku h4 {
  text-align: center;
  margin-bottom: 50px;
}
#menu .menu__bg .teishoku p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.7;
}
#menu .menu__bg .teishoku p:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .teishoku p {
    font-size: 16px;
    text-align: center;
  }
}
#menu .menu__bg .teishoku .teishoku_list {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0 30px;
  z-index: 1;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .teishoku .teishoku_list {
    display: none;
  }
}
#menu .menu__bg .teishoku .teishoku_list li {
  background: #fff;
  box-shadow: 0 0 9px 0 rgba(56, 47, 29, 0.25);
}
#menu .menu__bg .teishoku .teishoku_list li img {
  display: block;
  width: 100%;
}
#menu .menu__bg .teishoku .teishoku_list_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .teishoku .teishoku_list_sp {
    display: block;
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
  }
  #menu .menu__bg .teishoku .teishoku_list_sp li {
    padding: 0 20px;
  }
  #menu .menu__bg .teishoku .teishoku_list_sp li img {
    display: block;
    width: 100%;
    height: auto;
  }
}
#menu .menu__bg .teishoku .rice_03 {
  position: absolute;
  right: 50px;
  bottom: -100px;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .teishoku .rice_03 {
    display: none;
  }
}
#menu .menu__bg .obanzai h4 {
  text-align: center;
  margin-bottom: 50px;
}
#menu .menu__bg .obanzai p {
  text-align: center;
  font-size: 18px;
  margin-bottom: 18px;
  line-height: 1.7;
}
#menu .menu__bg .obanzai p:last-child {
  margin-bottom: 0;
}
#menu .menu__bg .obanzai ul {
  margin-top: 60px;
  display: flex;
}
#menu .menu__bg .obanzai ul li {
  padding: 0 15px;
  height: 450px;
}
@media screen and (max-width: 599px) {
  #menu .menu__bg .obanzai ul li {
    height: 300px;
  }
}
#menu .menu__bg .obanzai ul li img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/*************************************************
概要
*************************************************/
#overview {
  padding-top: 41.6666666667vw;
  background-image: url(../images/overview_bg_img.png);
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 599px) {
  #overview {
    padding-top: 170px;
  }
}
#overview .overview_bg {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 90px 65px;
  background: linear-gradient(0deg, #fff 0%, #fff 100%), #fafaf4;
  transform: translateY(-115px);
}
@media screen and (max-width: 599px) {
  #overview .overview_bg {
    padding: 50px 15px;
    transform: translateY(-35px);
  }
}
#overview .overview_table {
  display: block;
  max-width: 950px;
  width: 100%;
  margin: 0 auto 75px;
}
@media screen and (max-width: 599px) {
  #overview .overview_table {
    display: none;
  }
}
#overview .overview_table_sp {
  display: none;
}
@media screen and (max-width: 599px) {
  #overview .overview_table_sp {
    display: block;
    width: 100%;
    margin-bottom: 30px;
  }
}

/*-----------------------------------------------
stores
------------------------------------------------*/
.stores {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #000;
}
@media screen and (max-width: 599px) {
  .stores {
    display: flex;
    flex-direction: column;
  }
}
.stores a {
  width: 100%;
}
.stores img {
  display: block;
  width: 100%;
}

footer {
  background: #000000;
  padding: 16px 20px;
}
@media screen and (max-width: 599px) {
  footer {
    padding: 16px 20px;
  }
}
footer p {
  text-align: center;
  font-size: max(12px, 0.09vw);
  color: #fff;
}

#fv .fv_inner h1 {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
#fv .fv_inner h1.show {
  opacity: 1;
  transform: translateY(0);
}
#fv .fv_inner p {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
#fv .fv_inner p.show {
  opacity: 1;
  transform: translateY(0);
}
#fv .fv_01,
#fv .fv_02 {
  opacity: 0;
  transition: opacity 1.5s ease-out;
}
#fv .fv_01.show,
#fv .fv_02.show {
  opacity: 1;
}

.scroll-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.scroll-fade.show {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.1s !important;
}

.delay-2 {
  transition-delay: 0.2s !important;
}

.delay-3 {
  transition-delay: 0.3s !important;
}

.delay-4 {
  transition-delay: 0.4s !important;
}

.delay-5 {
  transition-delay: 0.5s !important;
}

.delay-6 {
  transition-delay: 0.6s !important;
}

.delay-8 {
  transition-delay: 0.8s !important;
}