@charset "UTF-8";
/*————————————————————————————————————————————

reset

———————————*/
th,
td {
  vertical-align: middle;
}

dt {
  font-weight: normal;
}

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

/*————————————————————————————————————————————

base

———————————*/
html {
  font-size: 16px;
  scroll-behavior: smooth;
  scroll-padding-top: 0px;
}
@media (max-width: 744px) {
  html {
    font-size: 14px;
    scroll-padding-top: 0px;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #101010;
  background: #FFF;
}

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

a {
  display: inline-block;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  opacity: 0.7;
}

/*————————————————————————————————————————————

component

———————————*/
.c-title {
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .c-title {
    margin-bottom: 20px;
  }
}
.c-title__label {
  display: inline-block;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  background: #140B8C;
  border-radius: 99px;
  padding: 2px 20px;
  margin-bottom: 4px;
}
@media (max-width: 744px) {
  .c-title__label {
    font-size: 14px;
  }
}
.c-title__sub {
  display: block;
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  font-weight: 700;
  color: #140B8C;
  margin-bottom: 4px;
}
@media (max-width: 744px) {
  .c-title__sub {
    font-size: 14px;
  }
}
.c-title__main--ja {
  font-family: "Noto Sans JP", serif;
  font-size: 52px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #140B8C;
}
@media (max-width: 744px) {
  .c-title__main--ja {
    font-size: 24px;
  }
}
.c-title__main--en {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  -webkit-text-stroke: 1px #140B8C;
  text-stroke: 1px #140B8C;
  text-shadow: 3px 3px #140B8C;
}
@media (max-width: 744px) {
  .c-title__main--en {
    font-size: 36px;
    text-shadow: 1px 1px #140B8C;
  }
}
.c-title__main--deco {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-title__main--deco::before, .c-title__main--deco::after {
  content: "";
  display: block;
  width: 63px;
  height: 60px;
  background-image: url(../../../img/LP/gourmet-guide/title-deco.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
@media (max-width: 744px) {
  .c-title__main--deco::before, .c-title__main--deco::after {
    width: 28px;
    height: 25px;
  }
}
.c-title__main--deco::after {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.c-title__date {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #140B8C;
  margin-top: 4px;
}
@media (max-width: 744px) {
  .c-title__date {
    font-size: 16px;
  }
}

.c-card__list--column3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 744px) {
  .c-card__list--column3 {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.c-card__list--column4 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 744px) {
  .c-card__list--column4 {
    -ms-grid-columns: 1fr 12px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.c-card__list--column4 .c-card__title {
  font-size: 16px;
}
.c-card__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: #fff;
}
.c-card__imagearea {
  position: relative;
}
.c-card__imagearea img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.c-card__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: #140B8C;
  padding: 4px;
}
.c-card__textarea {
  padding: 20px;
  height: 100%;
}
@media (max-width: 744px) {
  .c-card__textarea {
    gap: 4px;
    padding: 12px;
  }
}
.c-card__tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #140B8C;
  background-color: #FAD818;
  padding: 4px;
  margin-bottom: 4px;
}
.c-card__title {
  font-size: 18px;
  font-weight: 700;
  color: #140B8C;
  margin-bottom: 8px;
}
@media (max-width: 744px) {
  .c-card__title {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.c-card__text {
  font-size: 12px;
  margin-bottom: 8px;
}
@media (max-width: 744px) {
  .c-card__text {
    margin-bottom: 4px;
  }
}
.c-card__price {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
}
@media (max-width: 744px) {
  .c-card__price {
    font-size: 12px;
  }
}

.c-btn--left .c-btn__link {
  margin-right: auto;
}
.c-btn--center .c-btn__link {
  margin-right: auto;
  margin-left: auto;
}
.c-btn--right .c-btn__link {
  margin-left: auto;
}
.c-btn__link {
  position: relative;
  width: 320px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 700;
  color: #140B8C;
  background: #fff;
  border: 2px solid #140B8C;
  -webkit-box-shadow: 3px 3px #140B8C;
          box-shadow: 3px 3px #140B8C;
  padding: 16px 40px;
}
@media (max-width: 744px) {
  .c-btn__link {
    width: 100%;
    font-size: 16px;
    padding: 12px 40px;
  }
}
.c-btn__link .i-right2 {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 10px;
}

/*————————————————————————————————————————————

icomoon

———————————*/
@font-face {
  font-family: "icomoon";
  src: url("../../../fonts/LP/gourmet-guide/icomoon.eot?4yetj4");
  src: url("../../../fonts/LP/gourmet-guide/icomoon.eot?4yetj4#iefix") format("embedded-opentype"), url("../../../fonts/LP/gourmet-guide/icomoon.ttf?4yetj4") format("truetype"), url("../../../fonts/LP/gourmet-guide/icomoon.woff?4yetj4") format("woff"), url("../../../fonts/LP/gourmet-guide/icomoon.svg?4yetj4#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=i-], [class*=" i-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.i-up:before {
  content: "\e902";
}

.i-right:before {
  content: "\e901";
}

.i-down:before {
  content: "\e903";
}

.i-left:before {
  content: "\e900";
}

.i-up2:before {
  content: "\e909";
}

.i-right2:before {
  content: "\e90a";
}

.i-down2:before {
  content: "\e90b";
}

.i-left2:before {
  content: "\e90c";
}

.i-zoom:before {
  content: "\e906";
}

.i-link:before {
  content: "\e907";
}

.i-link2:before {
  content: "\e932";
}

.i-pin:before {
  content: "\e91c";
}

.i-fav:before {
  content: "\e905";
}

.i-x:before {
  content: "\e904";
}

.i-fb:before {
  content: "\ea90";
}

.i-insta:before {
  content: "\ea92";
}

.i-youtube:before {
  content: "\ea9d";
}

.i-line:before {
  content: "\e908";
}

/*————————————————————————————————————————————

common

———————————*/
.l-inner {
  position: relative;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: clamp(1rem, -1.583rem + 12.92vw, 8.75rem);
  padding-left: clamp(1rem, -1.583rem + 12.92vw, 8.75rem);
}
.l-inner--secondary {
  position: relative;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.l-section:not(:last-of-type) {
  margin-bottom: 160px;
}
@media (max-width: 744px) {
  .l-section:not(:last-of-type) {
    margin-bottom: 60px;
  }
}
.l-section--bgcolor01 {
  background: #FAD818;
  padding-bottom: 160px;
}
@media (max-width: 744px) {
  .l-section--bgcolor01 {
    padding-bottom: 80px;
  }
}

/*————————————————————————————————————————————

header

———————————*/
.l-header {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
@media (max-width: 744px) {
  .l-header {
    width: 100%;
    top: auto;
    bottom: 0;
  }
}
.l-header__nav {
  border-radius: 0 0 0 15px;
  background: #140B8C;
  padding: 12px 20px;
}
@media (max-width: 744px) {
  .l-header__nav {
    border-radius: 0;
  }
}
.l-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.l-header__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 744px) {
  .l-header__nav-item {
    width: 100%;
  }
}
.l-header__nav-item:not(:last-of-type) {
  border-right: 2px solid #FFF;
  padding-right: 20px;
}
.l-header__nav-link {
  font-size: 20px;
  color: #FFF;
}
.l-header__nav-link--ja {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.l-header__nav-link--en {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 900;
}

/*————————————————————————————————————————————

fotter

———————————*/
.l-footer {
  background: #140B8C;
  padding-top: 120px;
  margin-top: 160px;
}
@media (max-width: 744px) {
  .l-footer {
    padding-top: 80px;
    margin-top: 60px;
  }
}
.l-footer__logo {
  text-align: center;
  margin-bottom: 28px;
}
.l-footer__logo img {
  width: 128px;
}
.l-footer__sns {
  width: 400px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 80px;
}
@media (max-width: 744px) {
  .l-footer__sns {
    margin-bottom: 40px;
  }
}
.l-footer__sns-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
@media (max-width: 744px) {
  .l-footer__sns-list {
    gap: 12px;
  }
}
.l-footer__sns-link img {
  width: 50px;
}
.l-footer__copyright {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  border-top: 1px solid #fff;
  padding: 12px 0;
}

/*————————————————————————————————————————————

グルメガイド

———————————*/
/*————————————————————————————————————————————

グルメガイド

———————————*/
.p-gourmet .about__inner {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-gourmet .about__text {
  line-height: 2;
  margin-bottom: 28px;
}
@media (max-width: 744px) {
  .p-gourmet .about__text {
    margin-bottom: 14px;
  }
}
.p-gourmet .about__image {
  text-align: center;
}
.p-gourmet .tris .c-card {
  margin-bottom: 36px;
}
@media (max-width: 744px) {
  .p-gourmet .tris .c-card {
    margin-bottom: 18px;
  }
}
.p-gourmet .concourse__text {
  line-height: 2;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 744px) {
  .p-gourmet .concourse__text {
    margin-bottom: 20px;
  }
}
.p-gourmet .park__head {
  position: relative;
}
.p-gourmet .park__head-deco {
  position: absolute;
  width: 168px;
}
@media (min-width: 745px) and (max-width: 1024px) {
  .p-gourmet .park__head-deco {
    width: 80px;
  }
}
@media (max-width: 744px) {
  .p-gourmet .park__head-deco {
    width: 48px;
  }
}
.p-gourmet .park__head-deco--01 {
  left: 0;
  top: 50%;
  -webkit-transform: translate(10%, -50%) rotate(-10deg);
          transform: translate(10%, -50%) rotate(-10deg);
}
@media (max-width: 1024px) {
  .p-gourmet .park__head-deco--01 {
    left: 0;
    top: 0;
    -webkit-transform: translate(0, 30%) rotate(-10deg);
            transform: translate(0, 30%) rotate(-10deg);
  }
}
.p-gourmet .park__head-deco--02 {
  top: 50%;
  right: 0;
  -webkit-transform: translate(-10%, -50%) rotate(10deg);
          transform: translate(-10%, -50%) rotate(10deg);
}
@media (max-width: 1024px) {
  .p-gourmet .park__head-deco--02 {
    top: 0;
    right: 0;
    -webkit-transform: translate(0, 30%) rotate(10deg);
            transform: translate(0, 30%) rotate(10deg);
  }
}
.p-gourmet .park__text {
  line-height: 2;
  text-align: center;
  margin-bottom: 48px;
}
@media (max-width: 744px) {
  .p-gourmet .park__text {
    margin-bottom: 20px;
  }
}
.p-gourmet .park__tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 12px;
}
.p-gourmet .park__tab > label {
  -webkit-box-flex: 1;
      -ms-flex: 1 1;
          flex: 1 1;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  position: relative;
  min-width: 100px;
  padding: 12px;
  color: #140B8C;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  border: 2px solid #140B8C;
  -webkit-box-shadow: 3px 3px #140B8C;
          box-shadow: 3px 3px #140B8C;
  cursor: pointer;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1024px) {
  .p-gourmet .park__tab > label {
    min-width: calc((100% - 12px) / 2);
    max-width: calc((100% - 12px) / 2);
  }
}
@media (max-width: 744px) {
  .p-gourmet .park__tab > label {
    padding: 8px;
    font-size: 16px;
  }
}
.p-gourmet .park__tab > label:hover {
  background-color: #fff;
}
.p-gourmet .park__tab label:has(:checked) {
  background-color: #fff;
}
@media (min-width: 1025px) {
  .p-gourmet .park__tab label:has(:checked)::before {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    width: 0;
    height: 0;
    -webkit-transform: translate(50%, -20%) rotate(180deg);
            transform: translate(50%, -20%) rotate(180deg);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 12px solid #fff;
    z-index: 1;
  }
}
@media (min-width: 1025px) {
  .p-gourmet .park__tab label:has(:checked)::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 50%;
    width: 0;
    height: 0;
    -webkit-transform: translate(50%, 0%) rotate(180deg);
            transform: translate(50%, 0%) rotate(180deg);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 14px solid #140b8c;
    z-index: 0;
  }
}
.p-gourmet .park__tab input {
  display: none;
}
.p-gourmet .park__tab-content {
  display: none;
  width: 100%;
  margin-top: 20px;
}
@media (max-width: 744px) {
  .p-gourmet .park__tab-content {
    margin-top: 12px;
  }
}
.p-gourmet .park__tab label:has(:checked) + .park__tab-content {
  display: block;
}

/*————————————————————————————————————————————

トリズキッチン

———————————*/
.p-tris .about__inner {
  background: #fff;
  padding: 60px 60px 0;
}
@media (max-width: 744px) {
  .p-tris .about__inner {
    padding: 20px 20px 0;
  }
}
.p-tris .about .c-title__main {
  color: #FAD818;
}
.p-tris .about__text {
  line-height: 2;
  text-align: center;
  margin-bottom: 28px;
}
@media (max-width: 744px) {
  .p-tris .about__text {
    text-align: left;
    margin-bottom: 14px;
  }
}
.p-tris .about__image {
  text-align: center;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}
.p-tris .about__image img {
  width: 700px;
}
.p-tris .campaign__inner {
  background: #fff;
  padding: 80px;
}
@media (max-width: 744px) {
  .p-tris .campaign__inner {
    padding: 20px;
  }
}
.p-tris .campaign__title {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #140B8C;
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .p-tris .campaign__title {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
.p-tris .campaign__image {
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .p-tris .campaign__image {
    margin-bottom: 20px;
  }
}
.p-tris .campaign__image img {
  width: 100%;
}
.p-tris .campaign__text {
  line-height: 2;
}

/*————————————————————————————————————————————

共通

———————————*/
.p-gourmet .order,
.p-tris .order {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-gourmet .order .c-title__main,
.p-tris .order .c-title__main {
  color: #FAD818;
}
.p-gourmet .order__textbox,
.p-tris .order__textbox {
  margin-bottom: 48px;
}
@media (max-width: 744px) {
  .p-gourmet .order__textbox,
  .p-tris .order__textbox {
    margin-bottom: 20px;
  }
}
.p-gourmet .order__textbox .lead,
.p-tris .order__textbox .lead {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #140b8c;
  margin-bottom: 20px;
}
@media (max-width: 744px) {
  .p-gourmet .order__textbox .lead,
  .p-tris .order__textbox .lead {
    font-size: 16px;
    margin-bottom: 8px;
  }
}
.p-gourmet .order__textbox .text,
.p-tris .order__textbox .text {
  line-height: 2;
}
.p-gourmet .order__flow-list,
.p-tris .order__flow-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-list,
  .p-tris .order__flow-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.p-gourmet .order__flow-item,
.p-tris .order__flow-item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border: 2px solid #140B8C;
  -webkit-box-shadow: 3px 3px #140B8C;
          box-shadow: 3px 3px #140B8C;
  padding: 12px 20px;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-item,
  .p-tris .order__flow-item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-gourmet .order__flow-item:not(:last-of-type)::before,
.p-tris .order__flow-item:not(:last-of-type)::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  -webkit-transform: translate(80%, -50%) rotate(90deg);
          transform: translate(80%, -50%) rotate(90deg);
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 12px solid #fff;
  z-index: 1;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-item:not(:last-of-type)::before,
  .p-tris .order__flow-item:not(:last-of-type)::before {
    top: 100%;
    right: 50%;
    -webkit-transform: translate(50%, -20%) rotate(180deg);
            transform: translate(50%, -20%) rotate(180deg);
  }
}
.p-gourmet .order__flow-item:not(:last-of-type)::after,
.p-tris .order__flow-item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  -webkit-transform: translate(100%, -50%) rotate(90deg);
          transform: translate(100%, -50%) rotate(90deg);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 14px solid #140b8c;
  z-index: 0;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-item:not(:last-of-type)::after,
  .p-tris .order__flow-item:not(:last-of-type)::after {
    top: 100%;
    right: 50%;
    -webkit-transform: translate(50%, 0%) rotate(180deg);
            transform: translate(50%, 0%) rotate(180deg);
  }
}
.p-gourmet .order__flow-image,
.p-tris .order__flow-image {
  text-align: center;
}
.p-gourmet .order__flow-image img,
.p-tris .order__flow-image img {
  width: 105px;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-image img,
  .p-tris .order__flow-image img {
    width: 83px;
  }
}
.p-gourmet .order__flow-text,
.p-tris .order__flow-text {
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #140B8C;
  margin: auto;
}
@media (max-width: 744px) {
  .p-gourmet .order__flow-text,
  .p-tris .order__flow-text {
    text-align: left;
    margin: 0;
  }
}
.p-gourmet .howto,
.p-tris .howto {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-gourmet .howto .c-title__main,
.p-tris .howto .c-title__main {
  color: #FAD818;
}
.p-gourmet .howto__textbox,
.p-tris .howto__textbox {
  margin-bottom: 48px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__textbox,
  .p-tris .howto__textbox {
    margin-bottom: 20px;
  }
}
.p-gourmet .howto__textbox .text,
.p-tris .howto__textbox .text {
  line-height: 2;
}
.p-gourmet .howto__textbox .text-accent,
.p-tris .howto__textbox .text-accent {
  color: #FF0000;
}
.p-gourmet .howto__pay,
.p-tris .howto__pay {
  border: 2px solid #140B8C;
  padding: 56px 40px 24px;
  margin-bottom: 80px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__pay,
  .p-tris .howto__pay {
    padding: 36px 20px 4px;
    margin-bottom: 20px;
  }
}
.p-gourmet .howto__pay-catch,
.p-tris .howto__pay-catch {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__pay-catch,
  .p-tris .howto__pay-catch {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.p-gourmet .howto__pay-catch-accent,
.p-tris .howto__pay-catch-accent {
  position: relative;
  color: #FF0000;
}
.p-gourmet .howto__pay-catch-accent::after,
.p-tris .howto__pay-catch-accent::after {
  content: "";
  width: 95%;
  height: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
  background: #FAD819;
  z-index: -1;
}
.p-gourmet .howto__pay-title,
.p-tris .howto__pay-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #140B8C;
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__pay-title,
  .p-tris .howto__pay-title {
    font-size: 22px;
    margin-bottom: 32px;
  }
}
.p-gourmet .howto__pay-item,
.p-tris .howto__pay-item {
  position: relative;
  border-top: 1px solid #140B8C;
  padding: 32px 0;
}
@media (max-width: 744px) {
  .p-gourmet .howto__pay-item,
  .p-tris .howto__pay-item {
    padding: 24px 0 36px;
  }
}
.p-gourmet .howto__pay-itemtitle,
.p-tris .howto__pay-itemtitle {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  min-width: 200px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  color: #fff;
  background: #140B8C;
  border-radius: 40px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__pay-itemtitle,
  .p-tris .howto__pay-itemtitle {
    min-width: 180px;
  }
}
.p-gourmet .howto__purica-about,
.p-tris .howto__purica-about {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 32px auto;
  grid-template-columns: repeat(2, auto);
  gap: 12px 32px;
  margin-bottom: 48px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__purica-about,
  .p-tris .howto__purica-about {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    margin-bottom: 20px;
  }
}
.p-gourmet .howto__purica-about-title,
.p-tris .howto__purica-about-title {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #140B8C;
  margin-bottom: 24px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__purica-about-title,
  .p-tris .howto__purica-about-title {
    font-size: 18px;
    margin-bottom: 8px;
  }
}
.p-gourmet .howto__purica-about-text,
.p-tris .howto__purica-about-text {
  line-height: 2;
}
.p-gourmet .howto__purica-about-image img,
.p-tris .howto__purica-about-image img {
  width: 305px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__purica-about-image img,
  .p-tris .howto__purica-about-image img {
    width: 100%;
  }
}
.p-gourmet .howto__purica-note,
.p-tris .howto__purica-note {
  border: 1px solid #b9b9b9;
  padding: 28px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__purica-note,
  .p-tris .howto__purica-note {
    padding: 20px;
  }
}
.p-gourmet .howto__purica-note-title,
.p-tris .howto__purica-note-title {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media (max-width: 744px) {
  .p-gourmet .howto__purica-note-title,
  .p-tris .howto__purica-note-title {
    margin-bottom: 12px;
  }
}
.p-gourmet .howto__purica-note-item,
.p-tris .howto__purica-note-item {
  font-size: 13px;
  font-weight: 500;
  text-indent: -1em;
  padding-left: 1em;
}
.p-gourmet .faq,
.p-tris .faq {
  width: 700px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.p-gourmet .faq .c-title__main,
.p-tris .faq .c-title__main {
  color: #FAD818;
}
.p-gourmet .faq__item:not(:last-of-type),
.p-tris .faq__item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media (max-width: 744px) {
  .p-gourmet .faq__item:not(:last-of-type),
  .p-tris .faq__item:not(:last-of-type) {
    margin-bottom: 16px;
  }
}
.p-gourmet .faq__accordion-title,
.p-tris .faq__accordion-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding: 12px 36px 12px 60px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #FAD818;
  background: #140B8C;
  cursor: pointer;
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-title,
  .p-tris .faq__accordion-title {
    padding: 8px 24px 8px 40px;
    font-size: 14px;
  }
}
.p-gourmet .faq__accordion-title::-webkit-details-marker,
.p-tris .faq__accordion-title::-webkit-details-marker {
  display: none;
}
.p-gourmet .faq__accordion-title::before, .p-gourmet .faq__accordion-title::after,
.p-tris .faq__accordion-title::before,
.p-tris .faq__accordion-title::after {
  width: 3px;
  height: 18px;
  background-color: #FAD818;
  content: "";
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-title::before, .p-gourmet .faq__accordion-title::after,
  .p-tris .faq__accordion-title::before,
  .p-tris .faq__accordion-title::after {
    height: 12px;
  }
}
.p-gourmet .faq__accordion-title::before,
.p-tris .faq__accordion-title::before {
  position: absolute;
  right: 18px;
  rotate: 90deg;
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-title::before,
  .p-tris .faq__accordion-title::before {
    right: 12px;
  }
}
.p-gourmet .faq__accordion-title::after,
.p-tris .faq__accordion-title::after {
  position: absolute;
  right: 18px;
  -webkit-transition: rotate 0.3s;
  transition: rotate 0.3s;
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-title::after,
  .p-tris .faq__accordion-title::after {
    right: 12px;
  }
}
.p-gourmet .faq__accordion-title span,
.p-tris .faq__accordion-title span {
  position: absolute;
  left: 10px;
  bottom: 10%;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 72px;
  font-weight: 600;
  text-shadow: 4px 4px 0 #140b8c, -4px 4px 0 #140b8c, -4px -4px 0 #140b8c, 4px -4px 0 #140b8c, 0px 4px 0 #140b8c, 4px 0px 0 #140b8c, 0px -4px 0 #140b8c, -4px 0px 0 #140b8c;
  line-height: 1;
  color: #FAD818;
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-title span,
  .p-tris .faq__accordion-title span {
    bottom: 20%;
    font-size: 42px;
  }
}
.p-gourmet .faq__accordion[open] summary::after,
.p-tris .faq__accordion[open] summary::after {
  rotate: 90deg;
}
.p-gourmet .faq__accordion-text,
.p-tris .faq__accordion-text {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding-top: 24px;
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
@media (max-width: 744px) {
  .p-gourmet .faq__accordion-text,
  .p-tris .faq__accordion-text {
    padding-top: 12px;
  }
}
.p-gourmet .faq__accordion[open] .faq__accordion-text,
.p-tris .faq__accordion[open] .faq__accordion-text {
  -webkit-transform: none;
          transform: none;
  opacity: 1;
}

/*————————————————————————————————————————————

animation

———————————*/
@-webkit-keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeup {
  0% {
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes circle {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
@keyframes marquee {
  0% {
    translate: 0;
  }
  100% {
    translate: calc(-100% - 1rem);
  }
}
@-webkit-keyframes marquee2 {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
@keyframes marquee2 {
  0% {
    translate: 0;
  }
  100% {
    translate: -100%;
  }
}
@-webkit-keyframes loop-line {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -30px 0;
  }
}
@keyframes loop-line {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -30px 0;
  }
}
@-webkit-keyframes loop-line2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -40px 0;
  }
}
@keyframes loop-line2 {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -40px 0;
  }
}
@-webkit-keyframes kakukaku-right {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@keyframes kakukaku-right {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
  80% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
@-webkit-keyframes kakukaku-left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  80% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
@keyframes kakukaku-left {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  20% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  40% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  60% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  80% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
}
/*————————————————————————————————————————————

display

———————————*/
.pc,
.tb,
.sp {
  display: none;
}

.pc {
  display: block;
}
@media (min-width: 745px) and (max-width: 1024px) {
  .pc {
    display: none;
  }
}
@media (max-width: 744px) {
  .pc {
    display: none;
  }
}

@media (min-width: 745px) and (max-width: 1024px) {
  .tb {
    display: block;
  }
}

@media (max-width: 744px) {
  .sp {
    display: block;
  }
}

/*————————————————————————————————————————————

utility

———————————*/
/*————————————————————————————————————————————

temporary

———————————*/