@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans JP", sans-serif;
  color: #000000;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul,
ol,
dl,
dd {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

h2 {
  margin: 0px auto 0px auto;
}
h2 img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  html #wpadminbar {
    position: fixed;
  }
}

.pagetop,
.banner-area {
  z-index: 20;
}

.pagetop {
  bottom: 120px;
}
@media screen and (max-width: 768px) {
  .pagetop {
    bottom: 60px;
  }
}

.banner-area {
  bottom: 210px;
}
@media screen and (max-width: 768px) {
  .banner-area {
    bottom: 60px;
  }
}

.fixed-order-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 9999;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
@media screen and (max-width: 768px) {
  .fixed-order-bar {
    height: 55px;
    gap: 0;
  }
}
.fixed-order-bar__item {
  width: 258px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
  background: #CC4230;
  border-radius: 40px;
  box-sizing: border-box;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .fixed-order-bar__item {
    width: 50%;
    height: 100%;
    font-size: 13px;
    border-radius: 0;
  }
}
.fixed-order-bar__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .fixed-order-bar__item:hover {
    opacity: 1;
  }
}
@media screen and (max-width: 768px) {
  .fixed-order-bar__item + .fixed-order-bar__item {
    border-left: 2px solid rgba(255, 255, 255, 0.75);
  }
}
.fixed-order-bar__icon {
  object-fit: contain;
  flex-shrink: 0;
}
.fixed-order-bar__icon--takeout {
  width: 28px;
  height: 22px;
}
@media screen and (max-width: 768px) {
  .fixed-order-bar__icon--takeout {
    width: 26px;
    height: auto;
  }
}
.fixed-order-bar__icon--delivery {
  width: 34px;
  height: 20px;
}
@media screen and (max-width: 768px) {
  .fixed-order-bar__icon--delivery {
    width: 34px;
    height: auto;
  }
}
.fixed-order-bar__text {
  white-space: nowrap;
}

.mainWrap:has(.delivery-takeout) {
  padding: 0;
  margin-top: 58px;
}

.l-wrapper {
  max-width: 750px;
  margin: 0 auto;
  background-color: white;
  position: relative;
  overflow: hidden;
}

.l-main {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .l-main {
    margin-top: 20px;
  }
}

.p-breadcrumb {
  padding: 20px 26px 0px 0px;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb {
    padding: 15px 15px 0px 10px;
    margin-top: 0px;
  }
}
.p-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
}
.p-breadcrumb__item {
  font-size: 13px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-breadcrumb__item {
    font-size: 13px;
  }
}
.p-breadcrumb__item:not(:last-child)::after {
  content: ">";
  margin-left: 10px;
  color: #999;
}
.p-breadcrumb__item span {
  text-decoration: underline;
  text-decoration-color: #999;
  text-underline-offset: 3px;
}
.p-breadcrumb__link {
  color: #192666;
  text-decoration: underline;
  text-decoration-color: #999;
  text-underline-offset: 3px;
}
.p-breadcrumb__link:hover {
  opacity: 0.7;
}

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  padding: 12px 40px 12px 20px;
  margin: 10px auto;
  border-radius: 40px;
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  transition: opacity 0.3s ease, background-color 0.3s ease;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 13px;
    padding: 8px 30px 8px 12px;
    margin: 8px auto;
  }
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%) rotate(-45deg);
  width: 16px;
  height: 16px;
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn::after {
    width: 8px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    right: 16px;
  }
}
.c-btn:hover {
  opacity: 0.8;
}
.c-btn:hover::after {
  transform: translate(5px, -50%) rotate(-45deg);
}
.c-btn--blue {
  background-color: #192666;
  color: #fff;
}
.c-btn--red {
  background-color: #CC4230;
  color: #fff;
}
.c-btn--white {
  background-color: #fff;
  color: #192666;
  border: 2px solid #192666;
}
@media screen and (max-width: 768px) {
  .c-btn--white {
    width: 70%;
  }
}
.c-btn--white::after {
  border-right-color: #192666;
  border-bottom-color: #192666;
}

.c-sec-title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .c-sec-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.mt-20 {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .mt-20 {
    margin-top: 10px;
  }
}

/* --- 01. MV --- */
.p-mv {
  position: relative;
  width: 100%;
  background: #f7f3ee;
}
.p-mv__content {
  position: relative;
  text-align: center;
}
.p-mv__badge {
  display: inline-block;
  background: linear-gradient(90deg, #dfb445, #ecc562);
  color: #000;
  font-weight: bold;
  padding: 8px 30px;
  clip-path: polygon(10% 0, 90% 0, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  margin-bottom: 20px;
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .p-mv__badge {
    font-size: 18px;
    padding: 6px 20px;
    margin-bottom: 15px;
  }
}
.p-mv__title {
  font-family: "Shippori Mincho", serif;
  font-size: 40px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-mv__title {
    font-size: 22px;
    margin-bottom: 15px;
  }
}
.p-mv__title-sugidama {
  font-size: 60px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-mv__title-sugidama {
    font-size: 28px;
  }
}
.p-mv__title-no {
  font-size: 30px;
  color: #CC4230;
}
@media screen and (max-width: 768px) {
  .p-mv__title-no {
    font-size: 18px;
  }
}
.p-mv__title-aji {
  font-size: 50px;
  color: #CC4230;
}
@media screen and (max-width: 768px) {
  .p-mv__title-aji {
    font-size: 24px;
  }
}
.p-mv__title-wo {
  font-size: 30px;
  color: #CC4230;
}
@media screen and (max-width: 768px) {
  .p-mv__title-wo {
    font-size: 18px;
  }
}
.p-mv__title-sono {
  font-size: 40px;
  color: #000;
}
@media screen and (max-width: 768px) {
  .p-mv__title-sono {
    font-size: 20px;
  }
}
.p-mv__title-ouchi {
  font-size: 55px;
  color: #CC4230;
}
@media screen and (max-width: 768px) {
  .p-mv__title-ouchi {
    font-size: 26px;
  }
}
.p-mv__image {
  position: relative;
  margin: 0px;
  width: 100%;
}
.p-mv__dekita {
  position: absolute;
  left: -10px;
  bottom: 20px;
  width: 100px;
}
@media screen and (max-width: 768px) {
  .p-mv__dekita {
    left: -5px;
    bottom: 10px;
    width: 80px;
  }
}
.p-mv__subcatch {
  background: linear-gradient(90deg, rgba(223, 180, 69, 0) 0%, rgba(223, 180, 69, 0.8) 50%, rgba(223, 180, 69, 0) 100%);
  color: #000;
  font-family: "Shippori Mincho", serif;
  font-size: 30px;
  padding: 10px 0;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-mv__subcatch {
    font-size: 18px;
    padding: 8px 0;
    margin-bottom: 20px;
  }
}
.p-mv__cta {
  display: flex;
  justify-content: space-around;
  padding: 70px 25px 48px 25px;
  gap: 15px;
  background: #dfb697;
}
@media screen and (max-width: 768px) {
  .p-mv__cta {
    padding: 40px 15px 30px 15px;
    gap: 10px;
  }
}
.p-mv__cta {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_pattern_02.png"), url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_pattern_02.png"), url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_feature.png");
  background-position: top left, bottom right, top center;
  background-size: 195px auto, 195px auto, 100% auto;
  background-repeat: no-repeat, no-repeat, repeat;
}

.p-cta-box {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/p-cta-box.png");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  background-position: center;
  padding: 25px 15px 15px 15px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-cta-box {
    padding: 12px 8px;
    flex: 0 0 calc(50% - 5px);
  }
}
.p-cta-box__title {
  font-size: 37px;
  font-weight: 900;
  letter-spacing: -4px;
  text-align: center;
  display: block;
  line-height: 1.4;
  font-family: "Shippori Mincho", serif;
  gap: 5px;
}
@media screen and (max-width: 768px) {
  .p-cta-box__title {
    font-size: 20px;
    letter-spacing: -2px;
    gap: 3px;
    padding: 0px 10px;
  }
}
.p-cta-box__small {
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  margin-bottom: 13px;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-cta-box__small {
    font-size: 10px;
    margin-bottom: 8px;
  }
}
.p-cta-box__icon {
  color: #F0E2D3;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .p-cta-box__icon {
    font-size: 12px;
  }
}
.p-cta-box__img {
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-cta-box__img {
    margin-bottom: 12px;
  }
}
.p-cta-box .c-btn {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .p-cta-box .c-btn {
    width: 135px;
    max-width: 250px;
    font-size: 12px;
    padding: 6px 20px 6px 12px;
    margin: 8px auto;
  }
}
.p-cta-box__text {
  font-size: 22px;
  font-weight: normal;
  text-align: center;
  width: 100%;
  margin: 21px auto 21px auto;
}
@media screen and (max-width: 768px) {
  .p-cta-box__text {
    width: 100%;
    font-size: 12px;
    margin: 0 auto;
    text-align: center;
    letter-spacing: -1px;
  }
}
.p-cta-box__text.w-215 {
  width: 215px;
  margin: 21px auto 21px auto;
}
@media screen and (max-width: 768px) {
  .p-cta-box__text.w-215 {
    width: 70%;
    margin: 15px auto;
  }
}
.p-cta-box__text--red {
  color: #CC4230;
}

.p-icon-area {
  width: 183px;
  height: 42px;
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/icon_bg.png");
  background-repeat: no-repeat;
  background-position: calc(50% + 6px) calc(50% - 6px);
  background-size: 100% auto;
  margin: 0 auto 17px auto;
}
@media screen and (max-width: 768px) {
  .p-icon-area {
    width: 100px;
    height: 23px;
    margin-bottom: 10px;
  }
}
.p-icon-area img {
  width: auto;
  height: 40px;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-icon-area img {
    height: 21px;
  }
}

/* --- Message (Blue Wave Background) --- */
.p-message {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_blue.png");
  background-size: cover;
  padding: 74px 20px 87px 20px;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-message {
    padding: 40px 15px 50px 15px;
  }
}
.p-message__title {
  width: 586px;
  margin-bottom: 19px;
}
@media screen and (max-width: 768px) {
  .p-message__title {
    width: 85%;
    margin-bottom: 10px;
  }
}
.p-message__desc {
  color: #F4E6D7;
  font-size: 20px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-message__desc {
    font-size: 14px;
    margin-bottom: 25px;
  }
}
.p-message__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .p-message__list {
    gap: 20px;
  }
}
.p-message__list li {
  display: flex;
  align-items: center;
  gap: 31px;
  font-family: "Shippori Mincho", serif;
  font-weight: 900;
  font-size: 38px;
  width: 100%;
  max-width: 650px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-message__list li {
    max-width: 100%;
    font-size: 19px;
    gap: 19px;
  }
}
.p-message__list li img {
  width: 102px;
}
@media screen and (max-width: 768px) {
  .p-message__list li img {
    width: 50px;
  }
}
.p-message__list li span {
  padding-bottom: 5px;
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/border01.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: 100% auto;
}
.p-message__list li:nth-of-type(2) {
  position: relative;
  left: 30px;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .p-message__list li:nth-of-type(2) {
    left: 15px;
    gap: 15px;
  }
}
.p-message__list li:nth-of-type(2) span {
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .p-message__list li:nth-of-type(2) span {
    padding-right: 15px;
  }
}
.p-message__list li:nth-of-type(3) {
  gap: 19px;
}
@media screen and (max-width: 768px) {
  .p-message__list li:nth-of-type(3) {
    gap: 12px;
  }
}
.p-message__list li:nth-of-type(3) span {
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .p-message__list li:nth-of-type(3) span {
    padding-left: 18px;
  }
}
.p-message__list li:nth-of-type(3) img {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .p-message__list li:nth-of-type(3) img {
    width: 60px;
  }
}

/* --- 02. Feature --- */
.p-feature {
  padding: 84px 27px 97px 27px;
  background-color: #dfb697;
}
@media screen and (max-width: 768px) {
  .p-feature {
    padding: 50px 15px 60px 15px;
  }
}
.p-feature {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_feature_02.png"), url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_feature.png");
  background-position: top center, top center;
  background-size: 100% auto, 100% auto;
  background-repeat: no-repeat, repeat-y;
}
.p-feature__note {
  font-size: 15px;
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .p-feature__note {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.p-feature .c-sec-title {
  width: 503px;
  margin: 0 auto 40px auto;
}
@media screen and (max-width: 768px) {
  .p-feature .c-sec-title {
    width: 75%;
    margin: 0 auto 20px auto;
  }
}

.p-feature-item {
  display: flex;
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_feature_item.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  /* 背景画像を少し小さめに */
  margin-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .p-feature-item {
    margin-bottom: 20px;
  }
}
.p-feature-item:nth-of-type(2) {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .p-feature-item:nth-of-type(2) {
    margin-bottom: 15px;
  }
}
.p-feature-item:nth-of-type(3) {
  margin-bottom: 0;
}
.p-feature-item--reverse {
  flex-direction: row-reverse;
}
.p-feature-item--reverse .p-feature-item__body {
  flex: 5.5;
  padding: 20px 23px 20px 23px;
}
@media screen and (max-width: 768px) {
  .p-feature-item--reverse .p-feature-item__body {
    padding: 15px 10px 15px 15px;
    margin-top: 0;
  }
}
.p-feature-item__img {
  flex: 4.5;
}
.p-feature-item__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}
.p-feature-item__body {
  flex: 5.5;
  padding: 20px 20px 20px 20px;
}
@media screen and (max-width: 768px) {
  .p-feature-item__body {
    padding: 15px 10px 15px 10px;
    margin-top: 0;
  }
}
.p-feature-item__label {
  display: inline-block;
  background-color: #AD884C;
  color: #fff;
  font-size: 20px;
  padding: 3px 16px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-feature-item__label {
    font-size: 12px;
    padding: 2px 12px;
    margin-bottom: 8px;
  }
}
.p-feature-item__label--dual {
  background-color: #AD884C;
}
.p-feature-item__title {
  color: #992213;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 11px;
  font-family: "Shippori Mincho", serif;
}
@media screen and (max-width: 768px) {
  .p-feature-item__title {
    font-size: 17px;
    margin-bottom: 4px;
  }
}
.p-feature-item__text {
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-feature-item__text {
    font-size: 14px;
  }
}

/* --- 03. Scene --- */
.p-scene {
  padding: 70px 0px 90px 0px;
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_flow.png");
  background-size: cover;
  background-color: #ffefb1;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-scene {
    padding: 40px 0px 75px 0px;
  }
}
.p-scene__supplement {
  font-size: 11px;
  display: inline-block;
  position: absolute;
  bottom: 17px;
  right: 26px;
}
@media screen and (max-width: 768px) {
  .p-scene__supplement {
    font-size: 10px;
    bottom: 17px;
    right: 26px;
  }
}
.p-scene__header {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-scene__header {
    margin-bottom: 15px;
  }
}
.p-scene__title {
  width: 589px;
}
@media screen and (max-width: 768px) {
  .p-scene__title {
    width: 80%;
  }
}
.p-scene__title-logo {
  color: #CC4230;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .p-scene__title-logo {
    font-size: 16px;
  }
}
.p-scene__subtitle {
  font-size: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-scene__subtitle {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-scene__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.p-scene__center {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -40px;
  margin-bottom: -50px;
  position: relative;
  z-index: 10;
  width: 100%;
  padding-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-scene__center {
    margin-top: -20px;
    margin-bottom: 0px;
    padding-top: 5px;
    top: 5px;
  }
}
.p-scene__center img {
  position: relative;
  z-index: 2;
  /* 左右の画像が上になるように */
  width: 28%;
  height: auto;
}
.p-scene__center img:nth-child(1) {
  margin-right: -10%;
  top: 20px;
  width: 26%;
  z-index: 4;
  /* 中央画像にかぶせる幅 */
}
@media screen and (max-width: 768px) {
  .p-scene__center img:nth-child(1) {
    top: 31%;
    left: 0;
    width: 24%;
    position: absolute;
  }
}
.p-scene__center img:nth-child(2) {
  z-index: 3;
  /* 中央の画像は下 */
  width: 75%;
  /* 真ん中を大きめに */
  max-width: none;
  top: 15px;
  left: -10px;
}
@media screen and (max-width: 768px) {
  .p-scene__center img:nth-child(2) {
    width: 74%;
    top: 20px;
    left: 49%;
    transform: translateX(-50%);
  }
}
.p-scene__center img:nth-child(3) {
  margin-left: -16%;
  width: 24%;
  top: -50px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .p-scene__center img:nth-child(3) {
    width: 29%;
    top: 13%;
    position: absolute;
    right: 6px;
  }
}

.p-scene-card {
  width: 390px;
  height: 370px;
  background-color: #fff;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .p-scene-card {
    width: 102%;
    height: auto;
    aspect-ratio: 390/370;
    padding: 8px;
  }
}
.p-scene-card {
  /* 1つめ（左上） - z-index: 4 */
}
.p-scene-card:nth-child(1) {
  z-index: 4;
  transform: translate(-15px, 30px) rotate(-3deg);
}
@media screen and (max-width: 768px) {
  .p-scene-card:nth-child(1) {
    transform: translate(-12px, 25px) rotate(-3deg);
  }
}
.p-scene-card {
  /* 2つめ（右上） - z-index: 3 */
}
.p-scene-card:nth-child(2) {
  z-index: 3;
  transform: translate(-5px, 0px) rotate(3deg);
}
@media screen and (max-width: 768px) {
  .p-scene-card:nth-child(2) {
    transform: translate(-2px, 0px) rotate(3deg);
  }
}
.p-scene-card {
  /* 4つめ（左下） - z-index: 1 */
}
.p-scene-card:nth-child(4) {
  z-index: 1;
  transform: translate(-30px, 5px) rotate(-5deg);
}
@media screen and (max-width: 768px) {
  .p-scene-card:nth-child(4) {
    transform: translate(-22px, -10px) rotate(-8deg);
  }
}
.p-scene-card {
  /* 5つめ（右下） - z-index: 2 */
}
.p-scene-card:nth-child(5) {
  z-index: 2;
  transform: translate(-25px, 10px) rotate(1deg);
}
@media screen and (max-width: 768px) {
  .p-scene-card:nth-child(5) {
    transform: translate(-11px, -5px) rotate(1deg);
  }
}
.p-scene-card:nth-child(5) .p-scene-card__text {
  top: 9px;
}
@media screen and (max-width: 768px) {
  .p-scene-card:nth-child(5) .p-scene-card__text {
    top: 4%;
  }
}
.p-scene-card__img {
  height: 277px;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-scene-card__img {
    height: 138px;
  }
}
.p-scene-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-scene-card__text {
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  letter-spacing: -1px;
  font-family: "Shippori Mincho", serif;
  line-height: 1.25;
  position: relative;
  top: 20px;
}
@media screen and (max-width: 768px) {
  .p-scene-card__text {
    font-size: 12px;
    letter-spacing: -1px;
    position: relative;
    top: 6%;
    margin-top: 0;
  }
}
.p-scene-card__text--hand {
  font-family: "Shippori Mincho", serif;
}

/* --- 04. Menu --- */
.p-menu {
  background-color: #192666;
  padding: 102px 0px 80px 0px;
  color: #fff;
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_pattern.png");
  background-repeat: no-repeat;
  /* 横100%・高さ任意 */
  background-size: 100% 120px;
  /* 上から110pxの中央に配置 */
  background-position: center 140px;
}
@media screen and (max-width: 768px) {
  .p-menu {
    padding: 50px 15px 30px 15px;
    background-position: center 61px;
    background-size: 100%;
  }
}
.p-menu__header {
  text-align: center;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .p-menu__header {
    margin-bottom: 20px;
  }
}
.p-menu__title {
  width: 377px;
}
@media screen and (max-width: 768px) {
  .p-menu__title {
    width: 52%;
  }
}
.p-menu__subtitle {
  font-size: 20px;
  margin: 18px 0px 40px 0px;
}
@media screen and (max-width: 768px) {
  .p-menu__subtitle {
    font-size: 14px;
    margin: 10px 0px 0px 0px;
  }
}
.p-menu__category {
  margin-bottom: 38px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-menu__category {
    margin-bottom: 25px;
  }
}
.p-menu__category::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 92%;
  left: 50%;
  transform: translateX(-50%);
  height: 2px;
  background-image: radial-gradient(circle, #c5c5c5 2px, transparent 2px);
  background-size: 10px 2px;
  /* ← ドット間隔 */
  background-repeat: repeat-x;
}
@media screen and (max-width: 768px) {
  .p-menu__category::after {
    background-image: radial-gradient(circle, rgba(197, 197, 197, 0.6784313725) 2px, transparent 2px);
    background-size: 7px 1px;
  }
}
.p-menu__category:nth-of-type(5)::after {
  content: none;
}
.p-menu__cat-title {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-menu__cat-title {
    font-size: 20px;
  }
}
.p-menu__list {
  width: 100%;
  padding-bottom: 36px;
}
@media screen and (max-width: 768px) {
  .p-menu__list {
    padding-bottom: 20px;
  }
}
.p-menu__list.swiper {
  width: 100%;
  overflow: hidden;
}
.p-menu__list.swiper .swiper-wrapper {
  display: flex;
}
.p-menu__list.swiper .swiper-slide {
  width: auto;
  flex-shrink: 0;
}

.p-menu__category {
  position: relative;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .p-menu__category {
    padding: 0 15px;
  }
}
.p-menu__category .swiper-button-prev,
.p-menu__category .swiper-button-next {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  width: 12px;
  height: 34px;
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.p-menu__category .swiper-button-prev::after,
.p-menu__category .swiper-button-next::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-menu__category .swiper-button-prev,
  .p-menu__category .swiper-button-next {
    top: 48%;
    width: 8px;
    height: 22px;
  }
}
.p-menu__category .swiper-button-prev {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/arrow_left.png");
  left: 8px;
}
@media screen and (max-width: 768px) {
  .p-menu__category .swiper-button-prev {
    left: -2px;
  }
}
.p-menu__category .swiper-button-next {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/arrow_right.png");
  right: 8px;
}
@media screen and (max-width: 768px) {
  .p-menu__category .swiper-button-next {
    right: -2px;
  }
}

.p-menu-item {
  width: 48%;
}
.swiper-slide .p-menu-item {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .swiper-slide .p-menu-item {
    width: 100%;
  }
}
.p-menu-item__img {
  margin-bottom: 19px;
  height: 230px;
}
@media screen and (max-width: 768px) {
  .p-menu-item__img {
    margin-bottom: 12px;
    aspect-ratio: 4/3;
    height: auto;
  }
}
.p-menu-item__img img {
  object-fit: cover;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-menu-item__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.p-menu-item__img--noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #999;
  color: #fff;
}
.p-menu-item__name {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 45px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-menu-item__name {
    font-size: 18px;
    margin-bottom: 8px;
    line-height: 25px;
  }
}
.p-menu-item__price {
  font-size: 36px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .p-menu-item__price {
    font-size: 18px;
  }
}
.p-menu-item__tax {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .p-menu-item__tax {
    font-size: 13px;
  }
}

/* --- 05. Coupon --- */
.p-coupon {
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-coupon {
    padding: 0;
  }
}
.p-coupon__title {
  width: 457px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .p-coupon__title {
    width: 65%;
    margin-bottom: 20px;
  }
}
.p-coupon__img {
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .p-coupon__img {
    margin-bottom: 20px;
  }
}
.p-coupon__text {
  font-size: 17px;
  text-align: left;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-coupon__text {
    font-size: 14px;
  }
}

/* --- 06. Flow --- */
.p-flow {
  padding: 0px;
  margin-top: 100px;
}
.p-flow__header {
  text-align: center;
  margin-bottom: 30px;
  padding: 0px;
}
@media screen and (max-width: 768px) {
  .p-flow__header {
    margin-top: 60px;
    margin-bottom: 20px;
  }
}
.p-flow__title {
  width: 598px;
}
@media screen and (max-width: 768px) {
  .p-flow__title {
    width: 78%;
  }
}
.p-flow__tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0px;
  border-bottom: 2px solid #192666;
}
@media screen and (max-width: 768px) {
  .p-flow__tabs {
    gap: 8px;
  }
}
.p-flow__tab {
  flex: 1;
  max-width: 46%;
  text-align: center;
  padding: 14px 20px;
  font-size: 26px;
  font-weight: bold;
  background-color: #fff;
  border: 1px solid #ACACAC;
  border-bottom: none;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .p-flow__tab {
    font-size: 14px;
    padding: 10px 12px 7px 12px;
  }
}
.p-flow__tab.is-active {
  background-color: #192666;
  color: #fff;
}
.p-flow__content {
  background-color: #F6F2E9;
  /* ベージュ */
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_flow.png");
  background-repeat: repeat;
  background-size: 100% auto;
  padding: 44px 25px 110px 25px;
}
@media screen and (max-width: 768px) {
  .p-flow__content {
    padding: 22px 15px 55px 15px;
  }
}
.p-flow__coming-soon {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  padding: 100px 0;
}
@media screen and (max-width: 768px) {
  .p-flow__coming-soon {
    font-size: 14px;
    padding: 60px 0;
  }
}
.p-flow__steps {
  list-style: none;
  padding: 0;
}

.p-flow-step {
  padding-bottom: 54px;
  margin-bottom: 30px;
  border-bottom: 1px solid #ACACAC;
}
.p-flow-step:last-child {
  padding-bottom: 0px;
  margin-bottom: 0px;
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .p-flow-step {
    padding-bottom: 35px;
    margin-bottom: 25px;
  }
}
.p-flow-step__head {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__head {
    gap: 5px;
    margin-bottom: 15px;
  }
}
.p-flow-step__num {
  background-image: url("/wp-content/themes/sugidama_v6/img/page/delivery-takeout/bg_number.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center calc(50% + 5px);
  color: #000;
  font-weight: bold;
  font-size: 19px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-flow-step__num {
    font-size: 14px;
    width: 30px;
    height: 30px;
    background-position: center calc(50% + 1px);
  }
}
.p-flow-step__title {
  font-size: 19px;
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-flow-step__title {
    font-size: 16px;
  }
}
.p-flow-step__text {
  font-size: 17px;
  margin-bottom: 35px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-flow-step__text {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.p-flow-step__imgs {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-flow-step__imgs {
    gap: 10px;
  }
}
.p-flow-step__imgs.h488 img {
  height: 488px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__imgs.h488 img {
    height: auto;
  }
}
.p-flow-step__imgs.h484 img {
  height: 484px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__imgs.h484 img {
    height: auto;
  }
}
.p-flow-step__imgs.h478 img {
  height: 478px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__imgs.h478 img {
    height: auto;
  }
}
.p-flow-step__imgs img {
  width: calc(50% - 10px);
  border: 1px solid #ACACAC;
  max-width: 339px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__imgs img {
    width: calc(50% - 5px);
  }
}
.p-flow-step__imgs .img-zoom-box {
  width: calc(50% - 10px);
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  border: 1px solid #ACACAC;
  max-width: 339px;
}
.p-flow-step__imgs .img-zoom-box img {
  width: 100% !important;
  transform: scale(1.008);
  object-fit: cover;
}
.p-flow-step__row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .p-flow-step__row {
    gap: 10px;
  }
}
.p-flow-step__row .p-flow-step__text {
  flex: 1;
}
.p-flow-step__row .p-flow-step__img-rt {
  width: calc(50% - 10px);
  max-width: 339px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-flow-step__row .p-flow-step__img-rt {
    width: calc(50% - 5px);
  }
}
.p-flow-step__row .p-flow-step__img-rt.h479 img {
  height: 479px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__row .p-flow-step__img-rt.h479 img {
    height: auto;
  }
}
.p-flow-step__row .p-flow-step__img-rt.h488 img {
  height: 488px;
}
@media screen and (max-width: 768px) {
  .p-flow-step__row .p-flow-step__img-rt.h488 img {
    height: auto;
  }
}
.p-flow-step__row .p-flow-step__img-rt img {
  width: 100%;
  border: 1px solid #ACACAC;
}
#content-takeout .p-flow-guide,
#content-delivery .p-flow-guide {
  position: relative;
}
#content-takeout .p-flow-guide__lead,
#content-delivery .p-flow-guide__lead {
  margin: 0 0 36px;
  text-align: center;
  font-size: 22px;
  font-weight: normal;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__lead,
  #content-delivery .p-flow-guide__lead {
    margin-bottom: 12px;
    font-size: 15px;
  }
}
#content-takeout .p-flow-guide__nav,
#content-delivery .p-flow-guide__nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 0 0 50px;
  padding: 0;
  list-style: none;
  position: relative;
}
#content-takeout .p-flow-guide__nav::before,
#content-delivery .p-flow-guide__nav::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 1px;
  background: #d6d6d6;
  transform: translateY(-50%);
  z-index: 0;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__nav,
  #content-delivery .p-flow-guide__nav {
    gap: 5px;
    margin-bottom: 24px;
  }
}
#content-takeout .p-flow-guide__nav-item,
#content-delivery .p-flow-guide__nav-item {
  position: relative;
  width: 164px;
  height: 120px;
  padding: 22px 6px 10px;
  background: #fff;
  border: 1px solid #b8b8b8;
  border-radius: 10px;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__nav-item,
  #content-delivery .p-flow-guide__nav-item {
    width: 82px;
    height: 60px;
    padding: 15px 3px 6px;
  }
}
#content-takeout .p-flow-guide__nav-label,
#content-delivery .p-flow-guide__nav-label {
  position: absolute;
  top: -1px;
  left: -1px;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  width: 92px;
  height: auto;
  padding: 5px 10px;
  background: #192666;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 18px;
  font-weight: normal;
  line-height: 1.05;
  border-radius: 10px 0 10px 0;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__nav-label,
  #content-delivery .p-flow-guide__nav-label {
    width: 46px;
    height: auto;
    padding: 3px 5px;
    font-size: 7px;
    border-radius: 10px 0 10px 0;
  }
}
#content-takeout .p-flow-guide__nav-label .num,
#content-delivery .p-flow-guide__nav-label .num {
  font-weight: bold;
  font-size: 22px;
  margin-left: 5px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__nav-label .num,
  #content-delivery .p-flow-guide__nav-label .num {
    font-size: 11px;
    margin-left: 3px;
  }
}
#content-takeout .p-flow-guide__nav-text,
#content-delivery .p-flow-guide__nav-text {
  display: block;
  color: #192666;
  font-size: 22px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
  line-height: 1.5;
  position: relative;
  top: 50px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__nav-text,
  #content-delivery .p-flow-guide__nav-text {
    font-size: 12px;
    line-height: 1.35;
    top: 20px;
  }
}
#content-takeout .p-flow-guide__box,
#content-delivery .p-flow-guide__box {
  background: #fff;
  border: 1px solid #a7a7a7;
  border-radius: 12px;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__box,
  #content-delivery .p-flow-guide__box {
    margin-bottom: 45px;
    padding-bottom: 26px;
  }
}
#content-takeout .p-flow-guide__box > .p-flow-guide__body:nth-last-child(2),
#content-delivery .p-flow-guide__box > .p-flow-guide__body:nth-last-child(2) {
  padding-bottom: 0;
}
#content-takeout .p-flow-guide .p-flow-guide__box:nth-last-of-type(2) .p-flow-guide__body,
#content-delivery .p-flow-guide .p-flow-guide__box:nth-last-of-type(2) .p-flow-guide__body {
  padding-bottom: 0px !important;
}
#content-takeout .p-flow-guide__dots,
#content-delivery .p-flow-guide__dots {
  position: absolute;
  bottom: -90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__dots,
  #content-delivery .p-flow-guide__dots {
    bottom: -50px;
    gap: 10px;
  }
}
#content-takeout .p-flow-guide__dots span,
#content-delivery .p-flow-guide__dots span {
  width: 12px;
  height: 12px;
  background: #192666;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__dots span,
  #content-delivery .p-flow-guide__dots span {
    width: 8px;
    height: 8px;
  }
}
#content-takeout .p-flow-guide__head,
#content-delivery .p-flow-guide__head {
  padding: 17px 0px 30px;
  background: #192666;
  color: #fff;
  text-align: center;
  border-radius: 12px 12px 0px 0px;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__head,
  #content-delivery .p-flow-guide__head {
    padding: 10px 12px 11px;
    margin-bottom: 21px;
  }
}
#content-takeout .p-flow-guide__step,
#content-delivery .p-flow-guide__step {
  display: block;
  font-size: 28px;
  font-weight: normal;
  line-height: 1.6;
  font-family: "Oswald", sans-serif;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__step,
  #content-delivery .p-flow-guide__step {
    margin-bottom: 3px;
    font-size: 10px;
  }
}
#content-takeout .p-flow-guide__step .num,
#content-delivery .p-flow-guide__step .num {
  font-weight: bold;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__step .num,
  #content-delivery .p-flow-guide__step .num {
    font-size: 16px;
  }
}
#content-takeout .p-flow-guide__title,
#content-delivery .p-flow-guide__title {
  margin: 0px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__title,
  #content-delivery .p-flow-guide__title {
    font-size: 14px;
    line-height: 1.4;
  }
}
#content-takeout .p-flow-guide__body,
#content-delivery .p-flow-guide__body {
  padding: 0px 34px 34px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body,
  #content-delivery .p-flow-guide__body {
    padding: 0px 15px 16px;
  }
}
#content-takeout .p-flow-guide__body--row,
#content-delivery .p-flow-guide__body--row {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body--row,
  #content-delivery .p-flow-guide__body--row {
    gap: 12px;
  }
}
#content-takeout .p-flow-guide__body--row .p-flow-guide__text,
#content-delivery .p-flow-guide__body--row .p-flow-guide__text {
  flex: 1;
  margin-bottom: 0;
  max-width: 296px;
  width: calc((100% - 28px) / 2);
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body--row .p-flow-guide__text,
  #content-delivery .p-flow-guide__body--row .p-flow-guide__text {
    width: calc((100% - 12px) / 2);
    max-width: 100%;
  }
}
#content-takeout .p-flow-guide__body--row .p-flow-guide__imgs,
#content-delivery .p-flow-guide__body--row .p-flow-guide__imgs {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  max-width: 296px;
  width: calc((100% - 28px) / 2);
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body--row .p-flow-guide__imgs,
  #content-delivery .p-flow-guide__body--row .p-flow-guide__imgs {
    max-width: 100%;
  }
}
#content-takeout .p-flow-guide__body--row .p-flow-guide__imgs img,
#content-delivery .p-flow-guide__body--row .p-flow-guide__imgs img {
  width: 100%;
  max-width: 296px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body--row .p-flow-guide__imgs img,
  #content-delivery .p-flow-guide__body--row .p-flow-guide__imgs img {
    max-width: 100%;
  }
}
#content-takeout .p-flow-guide__body--row + #content-takeout .p-flow-guide__body,
#content-takeout .p-flow-guide__body--row + #content-delivery .p-flow-guide__body,
#content-delivery .p-flow-guide__body--row + #content-takeout .p-flow-guide__body,
#content-delivery .p-flow-guide__body--row + #content-delivery .p-flow-guide__body {
  padding-top: 0;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__body--row + #content-takeout .p-flow-guide__body,
  #content-takeout .p-flow-guide__body--row + #content-delivery .p-flow-guide__body,
  #content-delivery .p-flow-guide__body--row + #content-takeout .p-flow-guide__body,
  #content-delivery .p-flow-guide__body--row + #content-delivery .p-flow-guide__body {
    padding-top: 0;
  }
}
#content-takeout .p-flow-guide__text,
#content-delivery .p-flow-guide__text {
  margin: 0 0 54px;
  font-size: 17px;
  font-weight: normal;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__text,
  #content-delivery .p-flow-guide__text {
    margin-bottom: 18px;
    font-size: 14px;
    line-height: 1.7;
    font-weight: normal;
  }
}
#content-takeout .p-flow-guide__text:last-child,
#content-delivery .p-flow-guide__text:last-child {
  margin-bottom: 0;
}
#content-takeout .p-flow-guide__imgs,
#content-delivery .p-flow-guide__imgs {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__imgs,
  #content-delivery .p-flow-guide__imgs {
    gap: 12px;
    justify-content: space-between;
  }
}
#content-takeout .p-flow-guide__imgs img,
#content-delivery .p-flow-guide__imgs img {
  width: calc((100% - 28px) / 2);
  max-width: 296px;
  height: auto;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__imgs img,
  #content-delivery .p-flow-guide__imgs img {
    width: calc((100% - 12px) / 2);
    max-width: 100%;
  }
}
#content-takeout .p-flow-guide__note .note-title,
#content-delivery .p-flow-guide__note .note-title {
  margin: 0 0 31px;
  padding-bottom: 29px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  border-bottom: 2px dashed #bfbfbf;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__note .note-title,
  #content-delivery .p-flow-guide__note .note-title {
    margin: 0 0 15px;
    padding-bottom: 15px;
    font-size: 15px;
  }
}
#content-takeout .p-flow-guide__note .note-list,
#content-delivery .p-flow-guide__note .note-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#content-takeout .p-flow-guide__note .note-list li,
#content-delivery .p-flow-guide__note .note-list li {
  position: relative;
  padding-left: 33px;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__note .note-list li,
  #content-delivery .p-flow-guide__note .note-list li {
    padding-left: 14px;
    font-size: 14px;
  }
}
#content-takeout .p-flow-guide__note .note-list li::before,
#content-delivery .p-flow-guide__note .note-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.78em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #000;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__note .note-list li::before,
  #content-delivery .p-flow-guide__note .note-list li::before {
    width: 4px;
    height: 4px;
  }
}
#content-takeout .p-flow-guide__note .note-list li + li,
#content-delivery .p-flow-guide__note .note-list li + li {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #content-takeout .p-flow-guide__note .note-list li + li,
  #content-delivery .p-flow-guide__note .note-list li + li {
    margin-top: 12px;
  }
}

/* --- 07. Notes --- */
.p-notes {
  padding: 0;
  margin: 55px 0px 0px 0px;
}
@media screen and (max-width: 768px) {
  .p-notes {
    padding: 0;
    margin: 30px 0px 0px 0px;
  }
}
.p-notes__header {
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-notes__header {
    margin-bottom: 10px;
  }
}
.p-notes__title {
  width: 160px;
  font-size: 19px;
}
@media screen and (max-width: 768px) {
  .p-notes__title {
    width: 27%;
    font-size: 16px;
  }
}
.p-notes__box {
  border: 2px solid #d7c1a0;
  padding: 30px 20px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-notes__box {
    padding: 20px 10px;
  }
}
.p-notes__list li {
  margin-bottom: 30px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 17px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-notes__list li {
    font-size: 14px;
    margin-bottom: 15px;
  }
}
.p-notes__list li::before {
  content: "・";
}
.p-notes__list li:last-child {
  margin-bottom: 0;
}

/* --- 08. FAQ --- */
.p-faq {
  padding: 90px 26px 0px 26px;
  margin-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .p-faq {
    padding: 50px 15px 0px 15px;
    margin-bottom: 100px;
  }
}
.p-faq__header {
  text-align: center;
  margin-bottom: 92px;
}
@media screen and (max-width: 768px) {
  .p-faq__header {
    margin-bottom: 50px;
  }
}
.p-faq__title {
  width: 374px;
}
@media screen and (max-width: 768px) {
  .p-faq__title {
    width: 55%;
  }
}
.p-faq__group {
  margin-bottom: 30px;
}
.p-faq__group:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-faq__group {
    margin-bottom: 20px;
  }
}
.p-faq__group-title {
  font-size: 22px;
  border-bottom: 2px solid #ddd;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .p-faq__group-title {
    font-size: 16px;
  }
}
.p-faq__more {
  text-align: center;
  font-size: 24px;
  color: #666;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .p-faq__more {
    font-size: 14px;
    margin-top: 15px;
  }
}

.p-faq-item {
  border-bottom: 2px solid #ddd;
}
.p-faq-item__q {
  font-size: 19px;
  font-weight: bold;
  padding: 35px 45px 35px 1.2em;
  text-indent: -1.2em;
  cursor: pointer;
  position: relative;
  list-style: none;
  /* デフォルトの三角を消す */
}
@media screen and (max-width: 768px) {
  .p-faq-item__q {
    font-size: 14px;
    padding: 20px 35px 20px 1.2em;
  }
}
.p-faq-item__q::-webkit-details-marker {
  display: none;
  /* Safariでの三角を消す */
}
.p-faq-item__q::after {
  content: "＋";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 1em;
  text-align: center;
  transform: translateY(-50%);
  color: #999;
}
.p-faq-item {
  /* summary(親であるdetails)が開いている時の処理 */
}
.p-faq-item[open] > .p-faq-item__q::after {
  content: "−";
  right: 10px;
  display: inline-block;
  transform: translateY(-50%) scaleX(1.5);
}
.p-faq-item__a {
  display: grid;
  grid-template-rows: 0fr;
}
.p-faq-item__a > * {
  overflow: hidden;
}
.p-faq-item__a {
  padding-bottom: 35px;
  font-size: 19px;
  padding-left: 36px;
  padding-right: 45px;
}
@media screen and (max-width: 768px) {
  .p-faq-item__a {
    font-size: 14px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 35px;
  }
}

/* --- 09. Bottom CTA & Footer --- */
.p-bottom-cv {
  padding: 97px 26px 120px 26px;
  text-align: center;
  background-color: rgba(246, 242, 233, 0.6);
}
@media screen and (max-width: 768px) {
  .p-bottom-cv {
    padding: 60px 15px 70px 15px;
  }
}
.p-bottom-cv__header {
  margin-bottom: 30px;
}
.p-bottom-cv__title {
  width: 548px;
}
@media screen and (max-width: 768px) {
  .p-bottom-cv__title {
    width: 80%;
  }
}
.p-bottom-cv__subtitle {
  width: 279px;
  margin: 36px auto 47px auto;
}
@media screen and (max-width: 768px) {
  .p-bottom-cv__subtitle {
    width: 45%;
    margin: 25px auto 30px auto;
  }
}
.p-bottom-cv__buttons {
  display: flex;
  gap: 22px;
}
@media screen and (max-width: 768px) {
  .p-bottom-cv__buttons {
    gap: 10px;
  }
}
.p-bottom-cv .p-mv__cta {
  display: flex;
  justify-content: space-around;
  gap: 15px;
  background: unset;
  background-image: none;
  padding: 0;
}
.p-bottom-cv .c-btn {
  width: 232px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .p-bottom-cv .c-btn {
    max-width: 232px;
    font-size: 13px;
    width: 95%;
    padding: 5px 30px 5px 12px;
  }
}

body:has(.l-main) footer {
  padding-top: 5.875rem;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  body:has(.l-main) footer {
    padding-bottom: 140px;
  }
}/*# sourceMappingURL=delivery-takeout.css.map */