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

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

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

ul {
  padding: 0;
  margin: 0;
}

table {
  border-spacing: 0;
}

p {
  line-height: 1.7;
  font-weight: 600;
  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-header {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: transparent;
}
.l-header-logo {
  width: 50%;
  max-width: 300px;
  margin-left: 2.5%;
}
.l-header-logo img {
  width: 100%;
}

.l-footer {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 0 5px;
  background-color: #1f44ae;
}
.l-footer-inner {
  width: 90%;
  margin: 0 auto;
  padding-bottom: 40px;
}
.l-footer-inner-logo {
  width: 40%;
  max-width: 300px;
  margin: 0 auto;
}
.l-footer-inner-logo img {
  width: 100%;
}
.l-footer-inner .name {
  font-size: 20px;
  padding-bottom: 10px;
  padding-top: 0;
  font-weight: 600;
}
.l-footer-inner p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  letter-spacing: 1px;
  padding-top: 10px;
}
.l-footer-bottom {
  text-align: center;
}
.l-footer-bottom p {
  color: #fff;
  font-size: 12px;
  letter-spacing: 1px;
}

@media (max-width: 750px) {
  .l-footer {
    padding: 30px 0 5px;
  }
  .l-footer-inner {
    padding-bottom: 30px;
  }
  .l-footer-inner-logo {
    width: 80%;
  }
  .l-footer-inner p {
    font-size: 13px;
    text-align: center;
    padding-top: 0px;
  }
  .l-footer-bottom p {
    font-size: 10px;
  }
}
.btn {
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  border-radius: 60px;
  border-bottom: 4px solid #f14943;
  background-image: linear-gradient(90deg, #ff5738, #fcbd4f);
  transition: all ease 0.3s;
}
.btn-text {
  text-align: center;
}
.btn-text p {
  color: #fff;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}
.btn-text p .large {
  font-size: 32pt;
}
.btn-arrow {
  position: absolute;
  top: 50%;
  left: 90%;
  transform: translateY(-50%);
  width: 30px;
  z-index: 1;
}
.btn::after {
  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;
}

@media (max-width: 540px) {
  .btn {
    padding: 10px;
    border-radius: 50px;
    border-bottom: 3px solid #f14943;
  }
  .btn-text p {
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
  }
  .btn-text p .large {
    font-size: 18pt;
  }
  .btn-arrow {
    width: 15px;
  }
}
@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;
  }
}
.u-top_comparison {
  width: 90%;
  margin: 0 auto;
  position: relative;
  overflow: auto;
  padding-bottom: 30px;
}
.u-top_comparison .u-top__table {
  width: 100%;
  width: 1200px;
  border: 2px solid #004B75;
  border-collapse: separate;
}
.u-top_comparison .u-top__table .u-top__thead .u-top__tr .u-top__th {
  width: 229px;
  height: 46px;
  padding: 13px 12px;
  border-left: 1px solid #004B75;
  background-color: #E5E5E5;
  color: #5C5C5C;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  letter-spacing: 1px;
  text-align: center;
}
.u-top_comparison .u-top__table .u-top__thead .u-top__tr .u-top__th:nth-of-type(1) {
  width: 80px;
  border-left: none;
  background-color: #004B75;
}
.u-top_comparison .u-top__table .u-top__thead .u-top__tr .u-top__th:nth-of-type(2) {
  background-color: #2DA5CA;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
}
.u-top_comparison .u-top__table .u-top__body .u-top__body_tr .u-top__body_th {
  width: 80px;
  height: 85px;
  vertical-align: middle;
  padding: 20px 9px;
  border-top: 1px solid #fff;
  background-color: #004B75;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.4;
  text-align: left;
}
.u-top_comparison .u-top__table .u-top__body .u-top__body_tr .u-top__body_td {
  width: 229px;
  height: 85px;
  vertical-align: middle;
  padding: 20px 10px;
  border-top: 1px solid #004B75;
  border-left: 1px solid #004B75;
  color: #444;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
}
.u-top_comparison .u-top__table .u-top__body .u-top__body_tr .u-top__body_td:nth-of-type(1) {
  background-color: #FFFEEC;
  color: #D05879;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.u-top_comparison .scroll-mark {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}
.u-top_comparison .scroll-mark .scroll-mark_container {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: all ease 0.3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.5);
  text-align: center;
  padding: 20px 10px 10px 10px;
}
.u-top_comparison .scroll-mark .scroll-mark_container::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #fff;
  vertical-align: middle;
  background-image: url(./image/icon-hand.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.u-top_comparison .scroll-mark .scroll-mark_container p {
  color: #fff;
  margin-top: 3px;
  font-size: 10px;
}
.u-top_comparison .scroll-mark .scroll-mark_container::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 14px;
  position: absolute;
  top: 5px;
  left: 50%;
  opacity: 0;
  transform: translateX(-50%);
  background-image: url(./image/left-right-arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  transition: 0.3s;
  transition-delay: 2.4s;
}
.u-top_comparison .scroll-mark .scroll-mark_container.is-active::before {
  animation: scroll-hint 1.2s linear;
  animation-iteration-count: 2;
}
.u-top_comparison .scroll-mark .scroll-mark_container.is-active::after {
  opacity: 0.8;
}
.u-top_comparison .scroll-mark.is-active {
  display: block;
}

.scroll-hint-shadow-wrap::before {
  background: none;
}

.scroll-hint-shadow-wrap::after {
  background: none;
}

.c-faq__item__q {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.7;
  position: relative;
  display: block;
  padding: 30px 50px 35px 80px;
  transition: all 0.3s;
  color: #1b6b95;
}
.c-faq__item__q::before, .c-faq__item__q::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background-color: #1b6b95;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.c-faq__item__q::before {
  transform: translate(0, -50%) rotate(-180deg);
}
.c-faq__item__q::after {
  transform: translate(0, -50%) rotate(-90deg);
}
.c-faq__item__q span::before {
  content: "Q";
  font-size: 36px;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 45%;
  transform: translateY(-50%);
  color: #1b6b95;
  font-weight: bold;
}

.c-faq__item__a {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
  background-image: linear-gradient(to right, #1b6b95 4px, transparent 4px);
  background-size: 11px 3px;
  background-repeat: repeat-x;
  background-position: left top;
}
.c-faq__item__a .c-faq__item__a_container {
  font-size: 20px;
  line-height: 1.8;
  position: relative;
  padding: 30px 40px 35px 80px;
}
.c-faq__item__a .c-faq__item__a_container p {
  line-height: 1.7;
  font-weight: 500;
}
.c-faq__item__a .c-faq__item__a_container::before {
  content: "A";
  font-size: 36px;
  text-align: center;
  position: absolute;
  left: 20px;
  top: 25px;
  color: #333;
  font-weight: bold;
}

@media (max-width: 750px) {
  .c-faq__item__q {
    font-size: 16px;
    line-height: 1.4;
    padding: 20px 40px 20px 60px;
  }
  .c-faq__item__q::before, .c-faq__item__q::after {
    width: 20px;
    height: 2px;
    right: 13px;
  }
  .c-faq__item__q span::before {
    font-size: 28px;
    left: 10px;
    top: 50%;
  }
  .c-faq__item__a .c-faq__item__a_container {
    font-size: 16px;
    line-height: 1.6;
    padding: 20px 40px 20px 60px;
  }
  .c-faq__item__a .c-faq__item__a_container::before {
    font-size: 28px;
    left: 10px;
    top: 25px;
  }
}
.p-heading {
  text-align: center;
  font-size: 36px;
  color: #1b6b95;
  line-height: 1.4;
  letter-spacing: 2px;
  margin: 0 auto 40px;
  font-weight: 800;
}
.p-heading .txt-s {
  font-size: 28px;
}

.p-fv-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  padding-bottom: 160px;
}
.p-fv-section .p-fv-image {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p-fv-section .p-fv-image-inner {
  width: 100%;
}
.p-fv-section .p-fv-image-sp {
  display: none;
  width: 100%;
  position: relative;
  overflow: hidden;
}
.p-fv-section .p-fv-image-sp-inner {
  width: 100%;
}
.p-fv-section-bg {
  position: absolute;
  z-index: 1;
  width: 100%;
  bottom: 0;
  left: 0;
}
.p-fv-section-bg img {
  width: 100%;
}
.p-fv-section-bg .sp {
  display: none;
}
.p-fv-section-bg .pc {
  display: block;
}
.p-fv-section-ambassador {
  position: absolute;
  z-index: 2;
  width: 43%;
  max-width: 370px;
  top: 11%;
  left: auto;
  right: 0;
}
.p-fv-section-ambassador img {
  width: 100%;
}
.p-fv-section-message {
  position: absolute;
  z-index: 5;
  width: 70%;
  max-width: 540px;
  top: 64%;
  left: 2.5%;
}
.p-fv-section-message img {
  width: 100%;
}
.p-fv-section-ambassador-text {
  position: absolute;
  left: auto;
  right: 0;
  top: 63%;
  background-color: #1f44ae;
  color: #fff;
  z-index: 5;
}
.p-fv-section-ambassador-text-inner {
  margin: 2px 0;
  padding: 10px 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.p-fv-section-ambassador-text-inner p {
  padding: 0 10px;
  font-size: 12px;
  letter-spacing: 1px;
  line-height: 1.4;
}
.p-fv-section-flex {
  position: absolute;
  z-index: 5;
  width: 95%;
  top: 85%;
  left: 2.5%;
  max-width: 750px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-fv-section-flex-item {
  width: 31%;
  max-width: 205px;
}

.p-cta-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #09a2ef;
  padding: 40px 0 100px;
}
.p-cta-section p {
  font-size: 24px;
  letter-spacing: 1px;
  text-align: center;
  color: #fff;
  font-weight: 600;
}
.p-cta-section-button {
  width: 95%;
  margin: 30px auto 0;
}

.p-cta-section.second {
  padding: 40px 0 40px;
}

.p-worries-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
}
.p-worries-section-top {
  background-color: #1449c0;
  padding: 20px 10px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  width: 90%;
  margin: -60px auto 0;
}
.p-worries-section-top p {
  color: #fff;
  font-size: 32px;
  line-height: 1.4;
}
.p-worries-section-top::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 10;
  border-top: 30px solid #1449c0;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.p-worries-section-box {
  width: 90%;
  margin: 40px auto 0;
  padding-bottom: 40px;
}
.p-worries-section-box-item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 30px 10px 20px;
  border-bottom: 2px dashed #333;
  width: 100%;
}
.p-worries-section-box-item-tag {
  width: 26px;
}
.p-worries-section-box-item-tag img {
  width: 100%;
}
.p-worries-section-box-item p {
  padding-left: 15px;
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}
.p-worries-section-bottom {
  position: relative;
  width: 100%;
  padding: 100px 0 40px;
  background-color: #0786e4;
}
.p-worries-section-bottom-bg {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}
.p-worries-section-bottom-bg img {
  width: 100%;
}
.p-worries-section-bottom-man {
  position: absolute;
  bottom: 0;
  left: 68%;
  width: 28%;
  z-index: 1;
}
.p-worries-section-bottom-text {
  width: 75%;
  margin-right: auto;
  text-align: center;
}
.p-worries-section-bottom-text p {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.8;
}
.p-worries-section-bottom-text p .txt-s {
  font-size: 24px;
}
.p-worries-section-bottom-text p .txt-l {
  font-size: 32px;
}
.p-worries-section-bottom-text p .bg-yellow {
  display: inline-block;
  padding: 0 10px;
  font-weight: 700;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 32px;
  background-color: #d7ee41;
  color: #f62318;
  line-height: 1.4;
}

.p-about-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 90px 0 30px;
  position: relative;
}
.p-about-section-text {
  width: 90%;
  margin: 0 auto 30px;
}
.p-about-section-text p {
  font-size: 20px;
  letter-spacing: 1px;
  line-height: 1.8;
  font-weight: 500;
}
.p-about-section-text p .under-yellow {
  font-weight: 800;
  display: inline;
  background: linear-gradient(transparent 60%, #f9fb27 0%);
}
.p-about-section-image {
  width: 90%;
  margin: 0 auto;
}
.p-about-section-image img {
  width: 100%;
}
.p-about-section-top-bg {
  position: absolute;
  top: -1px;
  left: 0;
  width: 35%;
  z-index: 0;
}
.p-about-section-bottom-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 35%;
  z-index: -1;
}

.p-reason-section {
  width: 100%;
  max-width: 750px;
  margin: -1px auto 0;
  background-color: #0786e4;
  padding: 120px 0 20px;
  position: relative;
}
.p-reason-section-gourmet {
  position: absolute;
  width: 26%;
  top: 60px;
  left: 20%;
}
.p-reason-section .reason-heading {
  font-size: 36px;
  color: #fff;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto 40px;
  line-height: 1.2;
}
.p-reason-section .reason-heading .large-yellow {
  color: #e1ff32;
  font-size: 80px;
}
.p-reason-section .reason-heading .txt-s {
  font-size: 30px;
}
.p-reason-section-box {
  width: 90%;
  margin: 0 auto;
}
.p-reason-section-box-item {
  padding: 40px 30px 20px;
  border-radius: 20px;
  margin-bottom: 30px;
  background-color: #fff;
}
.p-reason-section-box-item-head {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 30px;
}
.p-reason-section-box-item-head-number {
  width: 80px;
}
.p-reason-section-box-item-head-number img {
  width: 100%;
}
.p-reason-section-box-item-head-text {
  padding-left: 20px;
  font-size: 40px;
  font-weight: 700;
  color: #222;
}
.p-reason-section-box-item-head-text .txt-pink {
  color: #ff006b;
}
.p-reason-section-box-item-image {
  width: 80%;
  margin: 0 auto 20px;
}
.p-reason-section-box-item-image img {
  width: 100%;
}
.p-reason-section-box-item p {
  text-align: center;
  font-size: 24px;
  color: #222;
  line-height: 1.4;
  letter-spacing: 1px;
}

.p-comparison-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 0;
}

.p-faq-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 60px 0;
}
.p-faq-section .p-faq__container {
  position: relative;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
.p-faq-section .p-faq__container .p-faq__item {
  border-bottom: 1px solid #000;
  cursor: pointer;
}

.p-faq__item .c-faq__item__q.j_accordion::before {
  transform: translate(0, -50%) rotate(-45deg);
  transition: all 0.3s;
}
.p-faq__item .c-faq__item__q.j_accordion::after {
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.3s;
}
.p-faq__item .c-faq__item__a.j_accordion {
  transition: all 0.3s;
}

.p-answer-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #0786e4;
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}
.p-answer-section-man {
  position: absolute;
  bottom: -1px;
  left: 60%;
  width: 28%;
  z-index: 1;
}
.p-answer-section-text {
  width: 75%;
  margin-right: auto;
  text-align: center;
}
.p-answer-section-text p {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #fff;
  line-height: 1.8;
}
.p-answer-section-text p .txt-s {
  font-size: 24px;
}
.p-answer-section-text p .txt-l {
  font-size: 32px;
}
.p-answer-section-text p .bg-yellow {
  display: inline-block;
  padding: 0 10px;
  font-weight: 700;
  margin-right: 5px;
  border-radius: 5px;
  font-size: 32px;
  background-color: #d7ee41;
  color: #f62318;
  line-height: 1.4;
}
.p-answer-section-text-first {
  line-height: 1.6 !important;
  padding-bottom: 5px;
}

.p-contact-top-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background-color: #f4f4e8;
  padding: 60px 0 40px;
  position: relative;
}
.p-contact-top-section::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 10;
  border-top: 30px solid #0786e4;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
}
.p-contact-top-section-inner {
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  border: 2px solid #222;
  padding: 0 20px 30px;
  background-color: #fff;
}
.p-contact-top-section-inner-list {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 30px 30px 10px 20px;
  border-bottom: 2px dashed #333;
  width: 100%;
}
.p-contact-top-section-inner-list-tag {
  width: 30px;
  padding-bottom: 5px;
}
.p-contact-top-section-inner-list-tag img {
  width: 100%;
}
.p-contact-top-section-inner-list p {
  padding-left: 15px;
  font-size: 24px;
  letter-spacing: 1px;
  font-weight: 600;
}

.p-contact {
  max-width: 750px;
  margin: 0 auto;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
}
.p-contact .p-contact_container {
  width: 100%;
  margin: 0 auto;
}

.p-contact__form {
  max-width: 750px;
  width: 100%;
  margin: 0 auto 20px;
  padding: 80px 0 20px;
}
.p-contact__form .p-contact__form_top {
  width: -moz-fit-content;
  width: fit-content;
  padding: 7px 15px;
  background-color: #005ba9;
  border-radius: 10px;
  position: relative;
  margin: 0 auto 30px;
}
.p-contact__form .p-contact__form_top p {
  font-size: 32px;
  color: #fff;
}
.p-contact__form .p-contact__form_top p .text-yellow {
  color: #e1ff32;
}
.p-contact__form .p-contact__form_top::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  z-index: 10;
  border-top: 20px solid #005ba9;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
}
.p-contact__form .p-contact__form_head {
  font-size: 48px;
  text-align: center;
  letter-spacing: 2px;
  margin-bottom: 30px;
}
.p-contact__form .p-contact__form_request {
  text-align: right;
  width: 90%;
  margin: 15px auto 0;
}
.p-contact__form .p-contact__form_request p {
  color: #333;
  font-size: 18px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.p-contact__form .p-contact__form_request p span {
  color: #D05879;
}
.p-contact__form .u-request__form {
  padding: 40px 30px 0;
  width: 90%;
  margin: 0 auto;
}
.p-contact__form .u-request__form .u-request__form_dl {
  display: block;
  margin-bottom: 18px;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dt {
  width: 150px;
  color: #1E4060;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 7px;
  letter-spacing: 0.2px;
  text-align: left;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dt span {
  color: #D05879;
}
.p-contact__form .u-request__form .u-request__form_dl .mail.u-request__form_dt {
  width: 130px;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd {
  width: 588px;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_liner {
  width: 100%;
  height: 52px;
  padding: 9px 18px;
  border: none;
  border-radius: 5px;
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.2) inset;
  background-color: #fff;
  font-size: 16px;
  border: 1px solid #DDDDDD;
  background-color: #f2f3f4;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_liner::-moz-placeholder {
  color: #a7a7a7;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_liner::placeholder {
  color: #a7a7a7;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_box {
  width: 100%;
  height: 140px;
  padding: 9px 18px;
  border: none;
  border-radius: 5px;
  box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.2) inset;
  background-color: #fff;
  font-size: 16px;
  border: 1px solid #DDDDDD;
  background-color: #f2f3f4;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_box::-moz-placeholder {
  color: #a7a7a7;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_box::placeholder {
  color: #a7a7a7;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select {
  position: relative;
  width: 240px;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  display: block;
  border-top: 6px solid #005ba9;
  border-right: 6px solid transparent;
  border-bottom: 0 transparent;
  border-left: 6px solid transparent;
  width: 0;
  height: 0;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select .select_form {
  width: 100%;
  height: 52px;
  padding: 12px 35px 12px 12px;
  border: 2px solid #005ba9;
  border-radius: 5px;
  background-color: #f2f3f4;
  color: #393939;
  font-size: 16px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .attention-text {
  font-size: 13px;
  padding-top: 5px;
  color: #767676;
}
.p-contact__form .u-request__form .free-area.u-request__form_dl {
  align-items: flex-start;
}
.p-contact__form .u-request__form .u-request__name {
  display: block;
}
.p-contact__form .u-request__form .u-request__name .customer_name {
  width: 585px;
}
.p-contact__form .u-request__form .u-request__name .customer_name .u-request__form_dd {
  width: 100%;
}
.p-contact__form .u-request__form .u-request__name .customer_name.kana {
  width: 585px;
}
.p-contact__form .u-request__form .u-request__name .customer_name.kana .u-request__form_dd {
  width: 100%;
}
.p-contact__form .u-request__form .request__form_bottom {
  margin-top: 20px;
  color: #5E544E;
  font-size: 18px;
  line-height: 1.4;
  text-align: center;
}
.p-contact__form .u-request__form .request__form_bottom span a {
  color: #005ba9;
  text-decoration: underline;
  padding-bottom: 5px;
}
.p-contact__form .u-request__form .request__form_bottom span a:hover {
  opacity: 0.8;
}
.p-contact__form .u-request__form .request__form_button {
  margin-top: 20px;
  text-align: center;
}
.p-contact__form .u-request__form .request__form_button .request__form_button {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 300px;
  padding: 20px 20px;
  border-radius: 50px;
  background-color: #005ba9;
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.8px;
  transition: all ease 0.3s;
	border: none;
  /*&::after{
      content: "";
      position: absolute;
      top: 50%;
      right: 10%;
      width: 0px;
      height: 0px;
      transform: translateY(-50%) ;
      border-top: 8px solid transparent;
      border-left: 10px solid #fff;
      border-bottom: 8px solid transparent;
      border-right: 0px;
      background-color: transparent;
      z-index: 1;
      transition: all ease .3s;
  }
  &:hover{
      &::after{
          right: 7%;
      }
  }*/
}
.p-contact__form .u-request__form .request__form_button .request__form_button:hover {
  opacity: 0.8;
}

.p-privacy-section {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  padding: 40px 20px;
}
.p-privacy-section p {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}
.p-privacy-section-box {
  margin-top: 30px;
}
.p-privacy-section-box .p-leading {
  font-size: 20px;
  padding-bottom: 10px;
}
.p-privacy-section-box p {
  font-size: 14px;
  line-height: 1.4;
}
.p-privacy-section-box a {
  display: inline-block;
  color: #0786e4;
  text-decoration: underline;
}
.p-privacy-section .btn-back {
  text-align: center;
  margin: 30px auto 0;
}
.p-privacy-section .btn-back a {
  display: block;
  margin: 0 auto;
  padding: 15px 30px;
  background-color: #005ba9;
  color: #fff;
  font-size: 16px;
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  transition: all ease 0.3s;
}
.p-privacy-section .btn-back a:hover {
  opacity: 0.8;
}

@media (max-width: 540px) {
  .p-heading {
    font-size: 30px;
    margin: 0 auto 30px;
  }
  .p-heading .txt-s {
    font-size: 24px;
  }
}
@media (max-width: 570px) {
  .p-fv-section {
    padding-bottom: 20px;
  }
  .p-fv-section .p-fv-image {
    display: none;
  }
  .p-fv-section .p-fv-image-sp {
    display: block;
  }
  .p-fv-section-bg .sp {
    display: block;
  }
  .p-fv-section-bg .pc {
    display: none;
  }
  .p-fv-section-ambassador {
    width: 43%;
    top: 16%;
  }
  .p-fv-section-message {
    width: 70%;
    max-width: 540px;
    top: 67%;
    left: 2.5%;
  }
  .p-fv-section-ambassador-text {
    top: 64%;
  }
  .p-fv-section-ambassador-text-inner {
    margin: 2px 0;
    padding: 5px 0;
  }
  .p-fv-section-ambassador-text-inner p {
    padding: 0 5px;
    font-size: 9px;
  }
}
@media (max-width: 540px) {
  .p-cta-section {
    padding: 30px 0 70px;
  }
  .p-cta-section p {
    font-size: 20px;
  }
  .p-cta-section-button {
    margin: 15px auto 0;
  }
  .p-cta-section.second {
    padding: 30px 0;
  }
}
@media (max-width: 540px) {
  .p-worries-section-top {
    padding: 15px 10px;
    margin: -40px auto 0;
  }
  .p-worries-section-top p {
    font-size: 18px;
  }
  .p-worries-section-top::after {
    border-top: 20px solid #1449c0;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .p-worries-section-box {
    margin: 30px auto 0;
    padding-bottom: 30px;
  }
  .p-worries-section-box-item {
    padding: 20px 0px 5px 30px;
    border-bottom: 1px dashed #333;
  }
  .p-worries-section-box-item-tag {
    width: 20px;
  }
  .p-worries-section-box-item p {
    padding-left: 12px;
    font-size: 16px;
    line-height: 1.4;
  }
  .p-worries-section-bottom {
    padding: 60px 0 20px;
  }
  .p-worries-section-bottom-man {
    left: 71%;
    width: 28%;
  }
  .p-worries-section-bottom-text {
    width: 78%;
  }
  .p-worries-section-bottom-text p {
    font-size: 18px;
    letter-spacing: 1px;
    line-height: 1.8;
  }
  .p-worries-section-bottom-text p .txt-s {
    font-size: 15px;
  }
  .p-worries-section-bottom-text p .txt-l {
    font-size: 20px;
  }
  .p-worries-section-bottom-text p .bg-yellow {
    padding: 0 5px;
    margin-right: 5px;
    font-size: 20px;
  }
}
@media (max-width: 540px) {
  .p-about-section {
    padding: 50px 0 20px;
  }
  .p-about-section-text {
    margin: 0 auto 20px;
  }
  .p-about-section-text p {
    font-size: 16px;
    line-height: 1.6;
  }
  .p-about-section-top-bg {
    width: 35%;
    z-index: 0;
  }
  .p-about-section-bottom-bg {
    width: 35%;
    z-index: -1;
  }
}
@media (max-width: 540px) {
  .p-reason-section {
    padding: 80px 0 20px;
  }
  .p-reason-section-gourmet {
    width: 35%;
    top: 32px;
    left: 16%;
  }
  .p-reason-section .reason-heading {
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0 auto 30px;
  }
  .p-reason-section .reason-heading .large-yellow {
    font-size: 42px;
  }
  .p-reason-section .reason-heading .txt-s {
    font-size: 20px;
  }
  .p-reason-section-box-item {
    padding: 25px 15px 15px;
    margin-bottom: 20px;
  }
  .p-reason-section-box-item-head {
    margin-bottom: 20px;
  }
  .p-reason-section-box-item-head-number {
    width: 35px;
  }
  .p-reason-section-box-item-head-text {
    padding-left: 8px;
    font-size: 20px;
  }
  .p-reason-section-box-item-image {
    width: 80%;
    margin: 0 auto 20px;
  }
  .p-reason-section-box-item p {
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .p-faq-section {
    padding: 40px 0;
  }
}
@media (max-width: 540px) {
  .p-answer-section {
    padding: 20px 0;
  }
  .p-answer-section-man {
    left: 65%;
    width: 32%;
  }
  .p-answer-section-text {
    width: 78%;
  }
  .p-answer-section-text p {
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1.8;
  }
  .p-answer-section-text p .txt-s {
    font-size: 18px;
  }
  .p-answer-section-text p .txt-l {
    font-size: 26px;
  }
  .p-answer-section-text p .bg-yellow {
    padding: 0 5px;
    margin-right: 5px;
    font-size: 26px;
    margin-top: 5px;
  }
  .p-answer-section-text-first {
    line-height: 1.4 !important;
    padding-bottom: 5px;
  }
}
@media (max-width: 540px) {
  .p-contact-top-section {
    padding: 40px 0 30px;
  }
  .p-contact-top-section::before {
    border-top: 20px solid #0786e4;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }
  .p-contact-top-section-inner {
    border: 2px solid #222;
    padding: 0 10px 20px;
  }
  .p-contact-top-section-inner-list {
    padding: 20px 0px 5px 10px;
    border-bottom: 1px dashed #333;
  }
  .p-contact-top-section-inner-list-tag {
    width: 28px;
    padding-bottom: 5px;
  }
  .p-contact-top-section-inner-list p {
    padding-left: 8px;
    font-size: 16px;
  }
}
@media (max-width: 540px) {
  .p-contact__form {
    margin: 0 auto 20px;
    padding: 30px 0 20px;
  }
  .p-contact__form .p-contact__form_top {
    padding: 7px 10px;
    margin: 0 auto 20px;
  }
  .p-contact__form .p-contact__form_top p {
    font-size: 24px;
  }
  .p-contact__form .p-contact__form_top::after {
    border-top: 16px solid #005ba9;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
  }
  .p-contact__form .p-contact__form_head {
    font-size: 26px;
    margin-bottom: 10px;
    padding: 0 10px;
  }
  .p-contact__form .p-contact__form_request p {
    font-size: 14px;
  }
  .p-contact__form .u-request__form {
    padding: 0 0 0;
  }
  .p-contact__form .u-request__form .u-request__form_dl {
    margin-bottom: 10px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dt {
    width: 150px;
    font-size: 16px;
    margin-bottom: 5px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .mail.u-request__form_dt {
    width: 130px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd {
    width: 100%;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_liner {
    height: 46px;
    padding: 6px 12px;
    box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.2) inset;
    font-size: 16px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .content_box {
    height: 140px;
    padding: 6px 12px;
    box-shadow: 3px 3px 2px 0px rgba(0, 0, 0, 0.2) inset;
    font-size: 16px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select {
    position: relative;
    width: 100%;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select::before {
    right: 8%;
    border-top: 6px solid #005ba9;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .u-request__select .select_form {
    width: 100%;
    height: 46px;
    padding: 10px 30px 10px 10px;
    font-size: 16px;
  }
  .p-contact__form .u-request__form .u-request__form_dl .u-request__form_dd .attention-text {
    font-size: 10px;
    padding-top: 5px;
  }
  .p-contact__form .u-request__form .u-request__name {
    display: block;
  }
  .p-contact__form .u-request__form .u-request__name .customer_name {
    width: 100%;
  }
  .p-contact__form .u-request__form .u-request__name .customer_name.kana {
    width: 100%;
  }
  .p-contact__form .u-request__form .request__form_bottom {
    margin-top: 10px;
    font-size: 14px;
  }
  .p-contact__form .u-request__form .request__form_button {
    margin-top: 20px;
  }
  .p-contact__form .u-request__form .request__form_button .request__form_button {
    width: 200px;
    padding: 15px 15px;
    border-radius: 50px;
    font-size: 16px;
  }
}
.wpcf7-spinner{
	display: none!important;
}
/*# sourceMappingURL=style.css.map */