/*
Theme Name: Restaurant-theme-A
Author: ryo saya
*/
body {
  position: relative;
  width: 100%;
  background: #fff;
  color: #333;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

a {
  color: #111;
  text-decoration: none;
  letter-spacing: 2px;
  transition: all ease 0.3s;
}

main {
  width: 100%;
  position: relative;
  overflow: hidden;
}

ul {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
}

p {
  line-height: 1.7;
  font-weight: 500;
  letter-spacing: 2px;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style: none;
}

.l-loading.loaded {
  visibility: hidden;
  opacity: 0;
}

.l-loading {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
  height: 100vh;
  transition: all 0.3s;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: #339063;
}
.l-loading .l-loading__container {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.l-loading .l-loading__container span {
  position: absolute;
  top: 75px;
  font-family: "Lato";
  font-size: 20px;
  letter-spacing: 12px;
  color: #fff;
  left: 15%;
}

.circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #fff;
  left: 15%;
  transform-origin: 50%;
  animation: circle 0.5s alternate infinite ease;
}

@keyframes circle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: shadow 0.5s alternate infinite ease;
}

@keyframes shadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.l-footer {
  width: 100%;
  margin: 0 auto;
  max-width: 750px;
  position: relative;
  padding: 60px 0 160px;
  background-color: #339063;
}
.l-footer-inner {
  width: 90%;
  margin: 0 auto;
}
.l-footer-inner-company {
  font-size: 32px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.l-footer-inner-text {
  margin-bottom: 20px;
}
.l-footer-inner-text p {
  color: #fff;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: 3px;
}
.l-footer-inner-bottom {
  text-align: center;
}
.l-footer-inner-bottom p {
  color: #fff;
  font-size: 14px;
  letter-spacing: 1px;
}

@media (max-width: 540px) {
  .l-footer {
    padding: 40px 0 120px;
  }
  .l-footer-inner-company {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .l-footer-inner-text {
    margin-bottom: 20px;
  }
  .l-footer-inner-text p {
    font-size: 14px;
  }
  .l-footer-inner-bottom p {
    font-size: 12px;
  }
}
@keyframes reflection {
  0% {
    transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    transform: scale(0) rotate(45deg);
    opacity: 0.25;
  }
  81% {
    transform: scale(4) rotate(45deg);
    opacity: 0.4;
  }
  100% {
    transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 768px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
}
@keyframes scroll-hint {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50% {
    transform: translateX(-40px);
    opacity: 0;
  }
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.p-faq__container {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.p-faq__container .p-faq__item {
  background-color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  cursor: pointer;
}

.c-faq__item__q {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  position: relative;
  display: block;
  padding: 32px 50px 30px 75px;
  transition: all 0.3s;
  color: #000;
  border-radius: 10px 10px 0 0;
}
.c-faq__item__q::before {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #31703D;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: all ease 0.3s;
}
.c-faq__item__q::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background-color: #31703D;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  transition: all ease 0.3s;
}
.c-faq__item__q span::before {
  content: url(./image/faq-q.png);
  font-size: 24px;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  color: #31703D;
  font-weight: 600;
  padding-top: 7px;
}

.c-faq__item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  border-radius: 0 0 10px 10px;
}
.c-faq__item__a .c-faq__item__a_container {
  line-height: 1.6;
  position: relative;
  padding: 25px 25px 25px 30px;
}
.c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.6;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}
.c-faq__item__a .c-faq__item__a_container::before {
  content: url(./image/faq-a.png);
  font-size: 24px;
  position: absolute;
  left: 40px;
  top: 24px;
  font-weight: 600;
}
.c-faq__item__a .c-faq__item__a_container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 93%;
  height: 1.5px;
  background-color: #cbcaca;
  z-index: 1;
}

.p-faq__item .c-faq__item__q.j_accordion::before {
  transform: rotate(180deg);
}
.p-faq__item .c-faq__item__q.j_accordion::after {
  display: none;
}
.p-faq__item .c-faq__item__a.j_accordion {
  transition: all 0.3s;
}

.u-request__form {
  width: 100%;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 60px;
}
.u-request__form_dl {
  display: block;
  margin-bottom: 30px;
}
.u-request__form_dl .u-request__form_dt {
  font-size: 18px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 10px;
  letter-spacing: 0px;
  text-align: left;
  font-family: "Noto Sans JP", sans-serif;
}
.u-request__form_dl .u-request__form_dt .required {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 6px;
  background-color: #BF3B34;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-2px);
}
.u-request__form_dl .u-request__form_dt .any {
  display: inline-block;
  margin-left: 10px;
  padding: 0px 6px;
  background-color: #737373;
  color: #fff;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transform: translateY(-2px);
}
.u-request__form_dl .u-request__form_dd {
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .content_liner {
  width: 100%;
  padding: 16px 16px;
  border: none;
  border-radius: 8px;
  background-color: #F3F3F3;
  font-size: 16px;
}
.u-request__form_dl .u-request__form_dd .content_liner::-moz-placeholder {
  color: #999;
}
.u-request__form_dl .u-request__form_dd .content_liner::placeholder {
  color: #999;
}
.u-request__form_dl .u-request__form_dd .content_box {
  width: 100%;
  height: 140px;
  padding: 16px;
  border-radius: 8px;
  background-color: #F3F3F3;
  font-size: 16px;
  border: none;
}
.u-request__form_dl .u-request__form_dd .content_box::-moz-placeholder {
  color: #999;
}
.u-request__form_dl .u-request__form_dd .content_box::placeholder {
  color: #999;
}
.u-request__form_dl .u-request__form_dd .half-liner.content_liner {
  max-width: 360px;
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .u-request__select {
  position: relative;
  max-width: 360px;
  width: 100%;
}
.u-request__form_dl .u-request__form_dd .u-request__select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 7%;
  transform: translateY(-50%);
  display: block;
  border-top: 12px solid #D9D9D9;
  border-right: 10px solid transparent;
  border-bottom: 0 transparent;
  border-left: 10px solid transparent;
  width: 0;
  height: 0;
}
.u-request__form_dl .u-request__form_dd .u-request__select .select_form {
  width: 100%;
  padding: 16px;
  border-radius: 8px;
  background-color: #F3F3F3;
  font-size: 15px;
  color: #999;
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.u-request__form_btn {
  width: 100%;
  text-align: center;
  margin-top: 40px;
}
.u-request__form_btn_box {
  display: inline-block;
  width: 75%;
  margin: 0 auto;
  transition: all ease 0.3s;
  border: none;
  background: transparent;
}
.u-request__form_btn_box:hover {
  opacity: 0.9;
}

.cv-fixed {
  position: fixed;
  bottom: 0;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 750px;
  background-color: #f0f9de;
  padding: 20px 0;
}
.cv-fixed-inner {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
.cv-fixed-inner-item {
  width: 49%;
  text-align: center;
}
.cv-fixed-inner-item p {
  font-size: 18px;
  color: #339063;
  letter-spacing: 2px;
  line-height: 1.5;
  padding-bottom: 5px;
}
.cv-fixed-inner-item a {
  display: block;
  width: 100%;
}
.cv-fixed-inner-item a img {
  width: 100%;
}

.p-fv-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-fv-section img {
  width: 100%;
}
.p-fv-section-lead {
  position: absolute;
  top: 7%;
  left: 5%;
  width: 76.7%;
  z-index: 2;
}
.p-fv-section-head {
  position: absolute;
  top: 18%;
  left: 4%;
  width: 87.7%;
  z-index: 2;
}
.p-fv-section-item {
  position: absolute;
  top: 44%;
  left: 5%;
  width: 63.8%;
  z-index: 3;
}
.p-fv-section-woman {
  position: absolute;
  top: auto;
  left: auto;
  right: 0;
  bottom: 0;
  width: 43.7%;
  z-index: 2;
}
.p-fv-section-bottom {
  position: absolute;
  top: 74%;
  left: 5%;
  width: 54.7%;
  z-index: 2;
}

.p-cv-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-cv-section img {
  width: 100%;
}
.p-cv-section-btn {
  position: absolute;
  top: 45%;
  left: 5%;
  width: 90%;
  z-index: 1;
}
.p-cv-section-btn a {
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  position: relative;
  overflow: hidden;
  border-radius: 50px;
}
.p-cv-section-btn a:hover {
  opacity: 0.9;
}
.p-cv-section-btn a::before {
  content: "";
  display: block;
  height: 100%;
  width: 10%;
  position: absolute;
  top: -50%;
  left: -78px;
  background-color: #fff;
  opacity: 0;
  transform-origin: left bottom;
  transform: rotate(45deg);
  animation: reflection 3s ease-in-out infinite;
}

.p-worries-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-worries-section img {
  width: 100%;
}
.p-worries-section-head {
  position: absolute;
  top: 7%;
  left: 50%;
  transform: translateX(-50%);
  width: 53%;
  z-index: 1;
}

.p-reason-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-reason-section img {
  width: 100%;
}
.p-reason-section-lead {
  position: absolute;
  top: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 47.5%;
  z-index: 1;
}
.p-reason-section-top {
  position: absolute;
  top: 1.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 86%;
  z-index: 1;
}
.p-reason-section-head {
  position: absolute;
  top: 7.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 85%;
  z-index: 1;
}
.p-reason-section-item-01 {
  position: absolute;
  top: 12.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-reason-section-item-02 {
  position: absolute;
  top: 34.2%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-reason-section-item-03 {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-reason-section-item-04 {
  position: absolute;
  top: 78%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}

.p-set-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.p-set-section img {
  width: 100%;
}
.p-set-section-lead {
  position: absolute;
  top: 2.8%;
  left: 5%;
  width: 30%;
  z-index: 1;
}
.p-set-section-item-01 {
  position: absolute;
  top: 23%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.p-set-section-item-02 {
  position: absolute;
  top: 38%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.p-set-section-item-03 {
  position: absolute;
  top: 53%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.p-set-section-item-04 {
  position: absolute;
  top: 68%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}
.p-set-section-item-05 {
  position: absolute;
  top: 83%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
}

.p-set-bottom {
  width: 100%;
  max-width: 750px;
  margin: -3.6% auto 0;
  position: relative;
  z-index: 2;
}
.p-set-bottom img {
  width: 100%;
}
.p-set-bottom-btn {
  position: absolute;
  top: 62%;
  left: 50%;
  transform: translateX(-50%);
  width: 74%;
  z-index: 1;
}
.p-set-bottom-btn a {
  display: inline-block;
  width: 100%;
}

.p-first-section {
  width: 100%;
  max-width: 750px;
  margin: -0.3% auto 0;
  position: relative;
  z-index: 2;
}
.p-first-section img {
  width: 100%;
}
.p-first-section-item {
  position: absolute;
  top: 6%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}

.p-work-section {
  width: 100%;
  max-width: 750px;
  margin: -0.3% auto 0;
  position: relative;
  z-index: 2;
}
.p-work-section img {
  width: 100%;
}
.p-work-section-300 {
  position: absolute;
  top: 7.6%;
  left: 24.1%;
  width: 16%;
  z-index: 1;
}
.p-work-section-item-01 {
  position: absolute;
  top: 13.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  z-index: 1;
}
.p-work-section-item-02 {
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translateX(-50%);
  width: 88%;
  z-index: 1;
}

.p-voice-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.p-voice-section img {
  width: 100%;
}
.p-voice-section-head {
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 56%;
  z-index: 1;
}
.p-voice-section-item-01 {
  position: absolute;
  top: 8.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-voice-section-item-02 {
  position: absolute;
  top: 39%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-voice-section-item-03 {
  position: absolute;
  top: 69.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}

.p-flow-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.p-flow-section img {
  width: 100%;
}
.p-flow-section-item-01 {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-flow-section-item-02 {
  position: absolute;
  top: 35.4%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-flow-section-item-03 {
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}
.p-flow-section-item-04 {
  position: absolute;
  top: 78.6%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  z-index: 1;
}

.p-faq-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  background-color: #f0f9de;
  padding: 60px 0 160px;
}
.p-faq-section-inner {
  width: 90%;
  margin: 0 auto;
}
.p-faq-section-inner-head {
  margin: 0 auto 40px;
  width: 53%;
}
.p-faq-section-inner-head img {
  width: 100%;
}

.p-contact-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  background-color: #dffbe9;
}
.p-contact-section-inner {
  width: 90%;
  margin: 0 auto;
  position: relative;
  padding-top: 180px;
}
.p-contact-section-inner-lead {
  position: absolute;
  top: -5%;
  left: 0;
  width: 100%;
  z-index: 2;
}
.p-contact-section-inner-text {
  text-align: center;
}
.p-contact-section-inner-text p {
  font-size: 24px;
  letter-spacing: 2px;
  line-height: 1.75;
}
.p-contact-section-inner-tag {
  width: 70%;
  max-width: 300px;
  margin: 20px auto 40px;
}
.p-contact-section-inner-tag img {
  width: 100%;
}
.p-contact-section-inner-act {
  text-align: right;
}
.p-contact-section-inner-act p {
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1.75;
}
.p-contact-section-inner-act p span {
  color: #f80d0d;
}

.p-thank-you {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}
.p-thank-you img {
  width: 100%;
}

@media (max-width: 540px) {
  .p-contact-section-inner {
    padding-top: 120px;
  }
  .p-contact-section-inner-lead {
    top: -3%;
  }
  .p-contact-section-inner-text p {
    font-size: 16px;
  }
  .p-contact-section-inner-tag {
    margin: 30px auto 20px;
  }
  .p-contact-section-inner-act {
    text-align: right;
  }
  .p-contact-section-inner-act p {
    font-size: 16px;
  }
  .p-faq-section {
    padding: 60px 0 60px;
  }
  .u-request__form {
    padding-bottom: 30px;
  }
  .cv-fixed {
    padding: 15px 0;
  }
  .cv-fixed-inner {
    width: 95%;
  }
  .cv-fixed-inner-item {
    width: 49%;
    text-align: center;
  }
  .cv-fixed-inner-item p {
    font-size: 12px;
    letter-spacing: 1px;
  }
  .c-faq__item__q {
    font-size: 16px;
  }
  .c-faq__item__a .c-faq__item__a_container p {
    font-size: 16px;
  }
}
@media (max-width: 400px) {
  .p-contact-section-inner {
    padding-top: 90px;
  }
}/*# sourceMappingURL=style.css.map */