@charset "UTF-8";
/*========================================
 共通
========================================*/
#contents {
  width: 100%;
}

.inner {
  max-width: 935px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

@media only screen and (min-width: 900px) {
  .multi-column_wrap {
    -moz-column-count: 2;
         column-count: 2;
    gap: 70px;
  }
  #lab .multi-column_wrap {
    margin-top: 30px;
  }
}
/*========================================
 メインビジュアル
========================================*/
.home {
  overflow: hidden;
}

.main_wrap {
  background: #222222;
}

#main {
  background: url(../img/main_bg.jpg) no-repeat center right;
  background-size: cover;
  padding: 130px 0;
  position: relative;
}
#main .japanese_btn {
  position: absolute;
  top: 50px;
  right: 50px;
}
#main .japanese_btn a {
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 16px;
  padding: 13px 30px;
}
#main .main_visual {
  max-width: 648px;
  text-align: center;
  margin-left: 50px;
}
#main .main_visual .logo {
  width: 364px;
  margin-bottom: 40px;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.75));
}
#main .main_visual .read {
  width: 100%;
  filter: drop-shadow(4px 4px 5px rgba(0, 0, 0, 0.75));
}
@media only screen and (max-width: 900px) {
  #main {
    background: url(../img/main_bg_sp.jpg) no-repeat bottom;
    background-size: 100%;
    padding: 50px 0 250px;
  }
  #main .japanese_btn {
    top: 25px;
    right: 17px;
  }
  #main .japanese_btn a {
    font-size: 14px;
    padding: 10px 16px;
  }
  #main .main_visual {
    margin: 0 auto;
    width: 90%;
  }
  #main .main_visual .logo {
    width: 120px;
    margin-bottom: 25px;
  }
  #main .main_visual .read {
    width: 343px;
    margin: 0 auto;
  }
}

/*========================================
 GFとは
========================================*/
#about {
  background: linear-gradient(0deg, rgba(244, 233, 219, 0) 50%, rgb(244, 233, 219) 100%);
  background-position: center;
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 80px 0 100px;
}
#about::after {
  content: "";
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: black;
  opacity: 0;
}
#about .inner {
  position: relative;
  z-index: 3;
  color: #333;
}
#about .about_logo {
  max-width: 705px;
  width: 100%;
  height: auto;
  margin-bottom: 30px;
}
#about .about_ttl {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 25px;
}
#about .about_text {
  font-size: 16px;
  padding: 0 10px;
}
@media only screen and (max-width: 900px) {
  #about {
    padding: 50px 5% 80px;
    background: linear-gradient(0deg, rgba(244, 233, 219, 0) 90%, rgb(244, 233, 219) 100%);
    margin: 0 auto;
  }
  #about .about_logo {
    max-width: 303px;
    margin-bottom: 25px;
  }
  #about .about_ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
  #about .about_text {
    font-size: 14px;
    padding: 0;
  }
}

/*========================================
 大西さん紹介
========================================*/
#profile {
  background: url(../img/profile_bg.jpg) top center;
  background-size: cover;
  padding: 80px 0 100px;
  position: relative;
  z-index: 1;
}
#profile .inner {
  align-items: start;
}
#profile .shadow {
  position: absolute;
  top: 0;
  width: 100%;
  height: 40%;
  background: linear-gradient(0deg, rgba(244, 233, 219, 0) 50%, rgb(54, 54, 55) 100%);
  z-index: 2;
}
#profile .profile_wrap {
  position: relative;
  z-index: 5;
  max-width: 510px;
}
#profile .profile_wrap .text_btn {
  font-family: "Kanit", sans-serif;
  width: 166px;
  padding: 8px 0;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  background-color: #cfaf5c;
  border-radius: 5px;
  text-align: center;
  margin: 50px auto 0;
  letter-spacing: 0.05em;
}
#profile .profile_logo {
  margin-bottom: 10px;
}
#profile .profile_ttl {
  margin-bottom: 40px;
}
#profile .profile_content {
  color: #fff;
  font-size: 16px;
  line-height: 1.6;
}
#profile .profile_content .text_more {
  display: none;
}
#profile .profile_content .panelactive {
  display: block;
  padding-top: 1rem;
  animation-name: down;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 900px) {
  #profile {
    background: url(../img/profile_bg_sp.jpg) no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
    padding: 60px 0 80px;
  }
  #profile .shadow {
    height: 20%;
    background: linear-gradient(0deg, rgba(244, 233, 219, 0) 50%, rgb(54, 54, 55) 100%);
  }
  #profile .profile_wrap {
    padding: 0 5%;
  }
  #profile .profile_wrap .text_btn {
    padding: 5px 0;
    font-size: 14px;
    margin: 35px auto 0;
  }
  #profile .profile_logo {
    width: 300px;
    margin: 0 auto 20px;
  }
  #profile .profile_ttl {
    max-width: 340px;
    margin-bottom: 25px;
  }
  #profile .profile_content {
    font-size: 14px;
  }
}

@keyframes down {
  0% {
    margin-top: -80px;
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    margin-top: 0;
    opacity: 1;
  }
}
/*========================================
  ヌードル紹介
========================================*/
#noodles {
  background: linear-gradient(0deg, rgba(244, 233, 219, 0) 50%, rgb(244, 233, 219) 100%);
  padding: 100px 0;
}
#noodles h2 {
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 40px;
}
#noodles .noodles_detail {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
}
#noodles .noodles_detail_img {
  width: 450px;
  max-width: 450px;
}
#noodles .noodles_detail_txt h3 {
  width: 345px;
  margin: 8px 0 13px;
}
#noodles .noodles_detail_txt span {
  background: #000;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  padding: 5px;
}
#noodles .noodles_detail_txt h4 {
  font-family: "Noto Sans", sans-serif;
  font-size: 23px;
  font-weight: 600;
  color: #000;
  margin: 12px 0 7px;
}
#noodles .noodles_detail_txt p {
  width: 345px;
  font-size: 16px;
  font-weight: 600;
  color: #000;
  line-height: 1.5;
  margin-bottom: 13px;
}
#noodles .noodles_detail_txt div {
  width: 302px;
  max-width: 375px;
}
#noodles .noodles_arrange {
  background: linear-gradient(0deg, rgba(244, 233, 219, 0) 90%, rgb(244, 233, 219) 100%);
  text-align: center;
}
#noodles .noodles_arrange h5 {
  font-family: "Kanit", sans-serif;
  font-size: 26px;
  font-weight: 400;
  color: #000;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  letter-spacing: 0.02em;
}
#noodles .noodles_arrange h5::before, #noodles .noodles_arrange h5::after {
  content: "";
  position: absolute;
  width: 48px;
  height: 1.7px;
  background: #000;
  top: 50%;
  transform: translateY(-50%);
}
#noodles .noodles_arrange h5::before {
  left: -63px;
}
#noodles .noodles_arrange h5::after {
  right: -63px;
}
#noodles .noodles_arrange div {
  width: 819px;
}
@media only screen and (max-width: 900px) {
  #noodles {
    padding: 50px 0 80px;
  }
  #noodles h2 {
    font-size: 20px;
    margin-bottom: 30px;
    text-align: left;
    padding: 0 5%;
  }
  #noodles .noodles_detail {
    display: block;
    padding: 0 5%;
    margin-bottom: 50px;
  }
  #noodles .noodles_detail_img {
    width: 100%;
    margin: 0 auto 25px;
  }
  #noodles .noodles_detail_txt {
    max-width: 450px;
  }
  #noodles .noodles_detail_txt h3 {
    width: 260px;
    margin: 0 0 10px;
  }
  #noodles .noodles_detail_txt span {
    font-size: 18px;
  }
  #noodles .noodles_detail_txt h4 {
    font-size: 22px;
    margin: 10px 0;
  }
  #noodles .noodles_detail_txt p {
    width: 101%;
    font-size: 14px;
    margin-bottom: 18px;
  }
  #noodles .noodles_detail_txt div {
    width: 100%;
  }
  #noodles .noodles_arrange {
    max-width: 450px;
  }
  #noodles .noodles_arrange h5 {
    font-size: 20px;
  }
  #noodles .noodles_arrange h5::before, #noodles .noodles_arrange h5::after {
    width: 24px;
  }
  #noodles .noodles_arrange h5::before {
    left: -34px;
  }
  #noodles .noodles_arrange h5::after {
    right: -34px;
  }
  #noodles .noodles_arrange div {
    padding: 0 5%;
    width: 100%;
  }
}

/*========================================
 ストア
========================================*/
#store {
  background: #000;
  padding: 80px 0 110px;
}
#store .store_logo {
  width: 104px;
}
#store .store_ttl {
  font-family: "Kanit", sans-serif;
  font-size: 37px;
  color: #e23817;
  letter-spacing: 0.05em;
  margin-bottom: 40px;
}
#store .store_list table {
  text-align: left;
  border-bottom: 1px solid #fff;
}
#store .store_list table tr {
  border-top: 1px solid #fff;
}
#store .store_list table th {
  font-family: "Kanit", sans-serif;
  color: #e23817;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.2;
  width: 302px;
  vertical-align: top;
  padding: 23px 0;
}
#store .store_list table th span {
  font-size: 25px;
  display: block;
}
#store .store_list table td {
  font-size: 16px;
  color: #fff;
  padding: 26px 0;
}
#store .store_list table td a {
  color: #fff;
}
#store .store_list table td span {
  display: block;
  width: 100%;
  height: 0.5rem;
}
@media only screen and (max-width: 900px) {
  #store {
    padding: 40px 0 80px;
  }
  #store .store_logo {
    width: 70px;
  }
  #store .store_ttl {
    font-size: 22px;
    margin-bottom: 20px;
  }
  #store .store_list {
    padding: 0 5%;
    width: 100%;
  }
  #store .store_list table {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  #store .store_list table th {
    font-size: 21px;
    display: block;
    vertical-align: middle;
    padding: 20px 0 15px;
  }
  #store .store_list table th span {
    font-size: 19px;
  }
  #store .store_list table td {
    display: block;
    font-size: 14px;
    padding: 0 0 20px;
    line-height: 1.5;
  }
  #store .store_list table td a {
    color: #fff;
  }
  #store .store_list table td span {
    height: 5px;
  }
}

/*========================================
 FAQ
========================================*/
#faq {
  background: #fff;
  position: relative;
  width: 100%;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 80px 0 100px;
}
#faq .inner {
  position: relative;
  z-index: 3;
  color: #333;
  padding: 20px;
}
#faq .inner h2 {
  font-size: 37px;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 30px;
}
#faq .inner h3 {
  font-size: 25px;
  font-weight: bold;
  line-height: 1.8;
  margin-bottom: 15px;
  text-indent: -1.8rem;
  padding-left: 1.8rem;
  line-height: 1.5;
}
#faq .inner p {
  font-size: 16px;
  line-height: 1.75;
  text-indent: -1rem;
  padding-left: 1rem;
}
#faq .inner .multi-column_inner {
  margin-bottom: 50px;
}
@media only screen and (max-width: 900px) {
  #faq {
    padding: 40px 5% 20px;
  }
  #faq .inner {
    max-width: 450px;
    padding: 0;
  }
  #faq .inner h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #faq .inner h3 {
    font-size: 18px;
    line-height: 1.438;
    text-indent: -1.5rem;
    padding-left: 1.5rem;
    margin-bottom: 8px;
  }
  #faq .inner p {
    font-size: 14px;
  }
  #faq .multi-column_inner {
    margin-bottom: 40px;
  }
}/*# sourceMappingURL=home.css.map */