@charset "UTF-8";

/* ====================================================
   Google Fonts Import
   ==================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&family=Noto+Serif+JP:wght@900&family=Syne:wght@400;500;600;700&display=swap');

/* ====================================================
   Variables
   ==================================================== */
:root {
  /* Fonts */
  --font-gothic: 'Noto Sans JP', sans-serif;
  --font-mincho: 'Noto Serif JP', serif;
  --font-en: 'Syne', sans-serif;

  /* Layout Settings */
  --content-padding: 30px;
  --pc-main-width: 500px;
  --pc-content-padding: 50px;
  --pc-content-padding2: 40px;

}

/* ====================================================
   Base
   ==================================================== */
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-gothic);
  color: #333;
  background-color: #f5f5f5;
  -webkit-font-smoothing: antialiased;
}

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

button {
  background-color: transparent;
  border: none;
  padding: 0;
  margin: 0;

  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
  
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

a:hover{
  opacity: 0.8;
}

/* ====================================================
   Layout (Mobile First - 390px base)
   ==================================================== */
.l-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.l-main {
  width: 100%;
  background-color: #ffffff;
  position: relative;
  z-index: 10;
}

.l-section {
  padding: 48px var(--content-padding);
}

.l-section--full {
  padding-left: 0;
  padding-right: 0;
}

.l-bg {
  display: none;
}

/* ====================================================
   Project (Components)
   ==================================================== */
/*.p-fixed-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 172px;
  height: 64px;
  z-index: 100;
}*/


/* ====================================================
   Media Queries (PC - 1024px and up)
   ==================================================== */
@media screen and (min-width: 1024px) {

  .l-main {
    width: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05); 
    margin-right: 0;
    margin-left: auto;
  }
  .l-section {
    padding: 48px var(--pc-content-padding);
  }
  .l-bg {
    display: block;
    position: fixed;
    top: 0;
    height: 100vh;
    width: 50%;
    z-index: 1;
  }
  .l-bg .l-bg__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .l-bg--left {
    width: 50%; 
  }
  .l-bg--right {
    display: none;
  }
  .l-bg--left .js-bg-kv-img {
    position: absolute;
    top: 0;
    left: 0;
  }
}


@media screen and (min-width: 1440px) {
  .l-main {
    max-width: 400px;
    margin: 0 auto;
  }
  .l-bg {
    width: calc(50% - 200px);
  }
  .l-bg--left {
    left: 0;
  }
  .l-bg--right {
    right: 0;
    display: block;
  }
}

@media screen and (min-width: 1600px) {
  .l-main {
    max-width: var(--pc-main-width);
    margin: 0 auto;
  }
  .l-bg {
    width: calc(50% - 250px);
  }
  .l-bg--left {
    left: 0;
  }
  .l-bg--right {
    right: 0;
    display: block;
  }
}


/* ====================================================
   Project - MV
   ==================================================== */
.p-mv {
  position: relative;
  overflow: hidden;
  background-color: #000;
  padding: 0;
}
@media screen and (min-width:580px) and (max-width:1023px){
  .p-mv{
    max-width:580px;
    margin: 0 auto;
  }
}

.p-mv__sp {
  position: relative;
  width: 100%;
}

.p-mv__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-mv__img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.p-mv__pc {
  display: none;
}


/* ====================================================
   Media Queries (PC - 1024px and up)
   ==================================================== */
@media screen and (min-width: 1024px) {
  
  .p-mv__sp {
    display: none;
  }

  .p-mv__pc {
    display: block;
    background-color: #fff;
    padding: 32px 0 0;
  }

  .p-mv__pc-header {
    text-align: center;
    margin-bottom: 40px;
  }

  .p-mv__pc-logo {
    width: 90px;
    height: auto;
    margin: 0 auto 32px;
    display: block;
  }

  .p-mv__pc-title {
    width: 100%;
    max-width: 422px;
    height: auto;
    margin: 0 auto 12px;
    display: block;
  }


  .p-mv__pc-images {
    display: flex;
    justify-content: space-between;
    gap: 0px;
    /*max-width: 500px;*/
    margin: 0 auto;
  }

  .p-mv__pc-img {
    width: 33.3333%;
    aspect-ratio: 5 / 3;
    object-fit: cover;
    display: block;
  }
}

/* ====================================================
   Media Queries (PC - 1440px - 1600px and up)
   ==================================================== */
@media screen and (min-width: 1440px) and (max-width: 1600px){
  .p-mv__pc-title{
    max-width: 330px;
  }
}


/* ====================================================
   Project - Concept (メインコピー)
   ==================================================== */

.l-section.p-concept {
  padding-left: 20px;
  padding-right: 20px;
}

.p-concept {
  padding-top: 32px;
  padding-bottom: 48px;
  text-align: center;
}

.p-concept__text {
  font-family: var(--font-mincho);
  font-size: 16px;
  line-height: 36px;
  font-weight: 900;
  margin: 0;
}

/* ====================================================
   Project - Contents
   ==================================================== */
.p-contents {
  padding: 0 var(--content-padding) 40px;
  max-width: 400px;
  margin: 0 auto;
}

.p-contents__title {
  text-align: center;
  font-family: var(--font-en);
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 16px;
}

.p-contents__list {
  font-family: var(--font-en);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  max-width: 500px;
  margin: 0 auto;
}

.p-contents__item {
  width: calc(50% - 5px);
}

.p-contents__link {
  display: block;
  position: relative;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 16px;
  line-height: 30px;
  padding: 12px 10px;
  font-weight: 600;
}

/* 右側の矢印（シェブロン） */
.p-contents__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 12px;
  transform: translateY(-50%) rotate(45deg);
  width: 5px;
  height: 5px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* ====================================================
   Project - Loop Banner (無限ループエリア静的配置)
   ==================================================== */
.l-section.p-loop-banner{
  padding: 0 0 30px;
}
.p-loop-banner {
  overflow: hidden;
  padding-bottom: 60px;
}

.p-loop-banner__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.p-loop-banner__track.is-animated {
  animation: slideLeft 30s linear infinite;
}

.p-loop-banner__group {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-right: 1rem;
}

@keyframes slideLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.p-loop-banner__text {
  font-family: var(--font-en);
  font-size: 14vw;
  font-weight: 700;
  line-height: 1;
  margin: 0 12px;
}

.p-loop-banner__img {
  display: inline-block;
  width: 88px;
  height: 44px;
  border-radius: 22px;
  object-fit: cover;
}

@media screen and (min-width:1024px){
  .p-loop-banner__text {
    font-size: 64px;
  }
  .p-loop-banner__img {
    width: 120px;
    height: 60px;
  } 
}
@media screen and (min-width: 1440px) and (max-width: 1600px){
  .p-loop-banner__text {
    font-size: 58px;
  }
}
@media screen and (min-width: 1601px){
  .p-loop-banner__text {
    font-size: 64px;
  }
}



/* ====================================================
   Project - MODEL (一覧)
   ==================================================== */
.p-model {
  background-color: #EEEEEE;
  border-top: 3px solid #000000;
  border-bottom: 3px solid #000000;
  padding: 32px 0 40px;
}

.p-model__inner {
  padding: 0 var(--content-padding); 
  box-sizing: border-box;
}



.p-model__title {
  text-align: center;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  margin: 0 0 16px;
}

.p-model__list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 400px;
}

.p-model__item {
  width: 28.5%;
  text-align: center;
}

.p-model__thumb {
  position: relative;
  margin-bottom: 10px;
  cursor: pointer;
}
.p-model__thumb:hover {
  opacity: 0.8;
}

.p-model__thumb img:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* 最初は非表示 */
}

.p-model__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid #333;
  display: block;
}

.p-model__plus {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 24px;
  height: 24px;
  background-color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-model__plus::before,
.p-model__plus::after {
  content: "";
  position: absolute;
  background-color: #fff;
}

.p-model__plus::before {
  width: 10px;
  height: 1px;
}

.p-model__plus::after {
  width: 1px;
  height: 10px;
}

.p-model__name {
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 500;
  margin: 0;
}

/* ====================================================
   Project - Modal (詳細ポップアップ)
   ==================================================== */
.p-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  padding: 20px 16px; 
  box-sizing: border-box;
}

.p-modal__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.75);
}

.p-modal__content {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #fff;
  padding: 30px;
  box-sizing: border-box;
  overflow-y: auto;
  max-width: 600px;
  margin: 0 auto;    
  height: auto;
  max-height: 100%;
}
@media screen and (max-width:360px){
  .p-modal__content {
    padding: 30px 20px;
  }
}

.p-modal__close {
  position: fixed;
  top: 20px;
  right: 16px;
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}

.p-modal__close-icon {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  margin: auto;
}

.p-modal__close-icon::before,
.p-modal__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #000;
}

.p-modal__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-modal__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-modal__label {
  position: absolute;
  top: 20px;
  left: 14px;
  font-family: var(--font-en);
  font-size: 26px;
  font-weight: 600;
  margin: 0;
  z-index: 1;
  transform-origin: top left;
  transform: rotate(90deg) translateY(-100%);
}

.p-modal__photo-area {
  position: relative;
  height: 504px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (min-width:1024px) {
  .p-modal__photo-area {
    height:560px;
  }
}

.p-modal__photo {
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.p-modal__arrow {
  display: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2;
}

.p-modal__arrow::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border-top: 1.5px solid #000;
  border-right: 1.5px solid #000;
  margin: auto;
}

.p-modal__arrow--prev {
  left: -10px;
}

.p-modal__arrow--prev::before {
  transform: rotate(-135deg);
}

.p-modal__arrow--next {
  right: -10px;
}

.p-modal__arrow--next::before {
  transform: rotate(45deg);
}

.p-modal__name {
  text-align: center;
  font-family: var(--font-en);
  font-size: 38px;
  font-weight: 700;
  margin: 0 0 16px;
  line-height: 1;
}

.p-modal__sns {
  display: flex;
  justify-content: center;
  gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.p-modal__sns img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: block;
}

.p-modal__desc {
  font-family: var(--font-gothic);
  font-size: 15px;
  font-weight: 500;
  line-height: 25px;
  margin: 0 auto;
  max-width: 480px;
}

/* ====================================================
   Project - CORDINATE (スライダーセクション)
   ==================================================== */
.p-cordinate {
  padding-top: 48px;
  padding-bottom: 48px;
}

.p-cordinate__title {
  text-align: center;
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 24px;
}

.p-cordinate__slider {
  width: 100%;
  cursor: pointer;
}
.swiper-button-prev,
.swiper-button-next {
  color: #000;
  transform: scale(0.6);
  top: 50%;
  margin-top: -30px;
  padding: 10px;
}
.p-cordinate__slider .swiper-button-prev,
.p-cordinate__slider .swiper-button-next {
  margin-top: -70px;
}
.swiper-button-prev {
  left: 5px; 
}
.swiper-button-next {
  right: 5px;
}
.swiper-button-disabled {
  opacity: 0 !important;
  pointer-events: none;
}
.p-cordinate__img-wrap {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.p-cordinate__slide:hover{
  opacity: 0.8;
}

@media screen and (min-width: 1024px) {
  .l-section.p-cordinate{
    padding-left: 0;
    padding-right: 0;
  }
  .p-cordinate__slider .swiper-button-prev {
    left: 0px; 
  }
  .p-cordinate__slider .swiper-button-next {
    right: 0px;
  }
}


.p-cordinate__img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.p-cordinate__info {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 24px 20px 0;
  position: relative;
}
@media screen and (min-width:1024px){
  .p-cordinate__info {
    margin: 24px auto 16px;
    max-width: 400px;
  }
}
@media screen and (min-width: 1440px) and (max-width: 1600px) {
  .p-cordinate__info {
    max-width: 360px;
  }
}

.p-cordinate__info .p-model__plus{
  width: 32px;
  height: 32px;
}
.p-model__plus::before{
  width: 14px;
  height: 2px;
}
.p-model__plus::after{
  width: 2px;
  height: 14px;
}

.p-model .p-model__plus::before{
  width: 10px;
  height: 2px;
}
.p-model .p-model__plus::after{
  width: 2px;
  height: 10px;
}



.p-cordinate__copy {
  text-align: center;
  font-family: var(--font-gothic);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 389px) {
  .p-cordinate__copy {
    padding: 0 40px;
  }
}

.p-cordinate__check {
  margin: 40px auto 0;
  padding: 0 var(--content-padding);
  max-width: 400px;
}
@media screen and (max-width: 440px) {
  .p-cordinate__check {
      margin-top: 40px;
      margin-bottom: 0;
  }
}

@media screen and (min-width: 1024px) {
  .p-cordinate__check {
    max-width: 400px;
    margin: 40px auto 0;
  }
}



.p-cordinate__check-title {
  background-color: #A48F3A;
  color: #fff;
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  padding: 8px 0;
  margin: 0;
}

.p-cordinate__check-content {
  border: 2px solid #A48F3A;
  border-top: none;
  background-color: #fff;
  padding: 17px 20px;
  text-align: center;
}

.p-cordinate__check-text {
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 600;
  color: #000;
  margin: 0;
}

/* ====================================================
   Project - Modal (CORDINATE ポップアップ特有)
   ==================================================== */
.p-modal-cord__title {
  text-align: center;
  font-family: var(--font-en);
  font-size: 30px;
  line-height: 45px;
  margin: 0 0 24px;
}
.p-modal-cord__main-img {
  width: 100%;
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto 24px;
}
@media screen and (min-width:1024px){
  .p-modal-cord__main-img {
    max-width: 440px;
  }
}
.p-modal-cord__copy {
  text-align: center;
  font-family: var(--font-gothic);
  font-size: 15px;
  line-height: 24px;
  font-weight: 700;
  margin: 0 0 40px;
}
.p-modal-cord__logo {
  width: 200px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto 20px;
}
.p-modal-cord__items {
  display: flex;
  flex-direction: column;
  gap: 48px;
  list-style: none;
  padding: 0 5px;
  margin: 0 0 48px;
}
.p-modal-cord__item {
  min-width: 0;
}
.p-modal-cord__item-img {
  width: 290px;
  height: 290px;
  object-fit: cover;
  display: block;
  margin: 0 auto;
}
@media screen and (min-width:1024px){
  .p-modal-cord__item-img {
    width: 360px;
    height: 360px;
  }
}

.p-modal-cord__item-slider {
  padding: 0 24px;
  margin: 0 -24px;
  width: calc(100% + 48px);
  box-sizing: border-box;
}
.p-modal-cord__arrow {
  position: absolute;
  top: 50%;
  right: -24px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
}
.p-modal-cord__arrow::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  transform: rotate(45deg);
}
.p-modal-cord__spec {
  max-width: 290px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4px 10px;
  margin: 18px auto 0;
}
@media screen and (min-width:1024px){
  .p-modal-cord__spec {
    max-width: 360px;
  }
}

.p-modal-cord__spec dt {
  font-family: var(--font-en);
  background-color: #A48F3A;
  color: #fff;
  font-size: 12px;
  line-height: 20px;
  padding: 0 6px;
  border-radius: 2px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  margin-top: 2px;
}

.p-modal-cord__spec dd {
  font-size: 15px;
  line-height: 24px;
  font-weight: 500;
  margin: 0;
  color: #333;
}

.p-modal-cord__note {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
  margin: 0 0 40px;
}

.p-modal-cord__close-btn {
  display: block;
  margin: 0 auto;
  background: none;
  border: none;
  border-bottom: 2px solid #000;
  font-family: var(--font-en);
  font-size: 24px;
  line-height: 36px;
  font-weight: 600;
  padding: 0;
  cursor: pointer;
}
.p-modal-cord__close-btn:hover {
  opacity: 0.8;
}

.p-modal-cord__close-x {
  --font-gothic: 'Noto Sans JP', sans-serif;
  font-size: 45px;
  font-weight: 500;
  vertical-align: text-bottom;
  margin: 0px 3px 0 0;
}


/* ====================================================
   Project - Divider
   ==================================================== */
.p-divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 0;
}

/* ====================================================
   Project - ITEM
   ==================================================== */
.p-item.l-section{
  padding-left: 0;
  padding-right: 0;
}

.p-item {
  border-top: 2px solid #000;
  padding-top: 48px;
  padding-bottom: 48px;
}

.p-item__header {
  text-align: center;
}

.p-item__icon {
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-bottom: 0px;
}

.p-item__title {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 20px;
}

.p-item__hashtag {
  font-family: var(--font-en);
  font-size: 18px;
  font-weight: 500;
  margin: 0;
}

.p-item__embed-placeholder {
  width: 100%;
  min-height: 300px;
  margin-top: 24px;
  m
}



/* ====================================================
   Project - CAMPAIGN
   ==================================================== */
@media screen and (max-width: 1023px) {  
  .l-section.p-campaign{
    padding-left: 0;
    padding-right: 0;
  }
}

.p-campaign {
  padding: 48px 0 0;
  border-top: 2px solid #000;
  margin: 0 auto;
}

.p-campaign__header {
  text-align: center;
  margin-bottom: 16px;
}

.p-campaign__title {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  margin: 0 0 40px;
}

.p-campaign__slash {
  font-weight: 500;
  margin: 0 4px;
}

.p-campaign__subtitle {
  font-family: var(--font-en);
  font-size: 30px;
  font-weight: 600;
  margin: 0;
}

.p-campaign__box {
  max-width: 340px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 12px;
  padding: 32px 30px;
}

.p-campaign__lead {
  font-size: 17px;
  line-height: 1.8;
  font-weight: 500;
  margin: 0 0 24px;
}

.p-campaign__bar {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 8px 0;
  margin: 0 0 16px;
}

.p-campaign__period-area {
  text-align: center;
  margin-bottom: 32px;
}

.p-campaign__period {
  font-size: 16px;
  font-weight: 500;
  margin: 0 0 8px;
}
.u-text-lg {
  font-size: 20px;
}


.p-campaign__period-note {
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
}

.p-campaign__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
}

.p-campaign__step {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.p-campaign__step:last-child {
  margin-bottom: 0;
}

.p-campaign__step-icon {
  width: 64px;
  height: 64px;
  background-color: #cc2b36;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  margin-right: 16px;
}

.p-campaign__step-sm {
  font-family: var(--font-en);
  font-size: 13px;
  line-height: 1;
}

.p-campaign__step-lg {
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.p-campaign__step-text {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

.p-campaign__shops {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.p-campaign__shop {
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 8px 10px 8px 2px;
  margin-bottom: 10px;
}

.p-campaign__shop:last-child {
  margin-bottom: 0;
}

.p-campaign__shop-logo {
  width: 126px;
  height: 84px;
  flex-shrink: 0;
  margin-right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-campaign__shop-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.p-campaign__shop-info {
  flex: 1;
}

.p-campaign__shop-name {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin: 0 0 1px;
}

.p-campaign__shop-discount {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 2px;
}

.p-campaign__shop-note {
  font-size: 12px;
  color: #444;
  margin: 0;
}

.p-campaign__tilde {
  text-align: center;
  font-size: 24px;
  font-family: var(--font-mincho);
  display: block;
  transform: rotate(90deg);
  margin: 16px auto 24px;
  width: 24px;
}

.p-campaign__notes-title {
  border: 1px solid #333;
  background-color: #fff;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 6px 0;
  margin: 0 0 12px;
}

.p-campaign__notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-campaign__notes-list li {
  position: relative;
  padding-left: 14px;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 2px;
  color: #333;
}

.p-campaign__notes-list li:last-child {
  margin-bottom: 0;
}

.p-campaign__notes-list li::before {
  content: '●';
  position: absolute;
  left: 0;
  top: 0;
  font-size: 10px;
}

.p-campaign__notes-link {
  color: #A48F3A;
  text-decoration: underline;
}

/* ====================================================
   Project - FOOTER
   ==================================================== */
.p-footer {
  background-color: #fff;
  padding-top: 40px;
}

.p-footer__inner {
  text-align: center;
  padding-bottom: 24px;
}

.p-footer__logo {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.p-footer__links {
  font-size: 14px;
  font-weight: 500;
}

.p-footer__links a {
  color: #333;
  text-decoration: none;
}

.p-footer__copy {
  background-color: #00407d;
  color: #fff;
  text-align: center;
  padding: 16px 0 88px;
}

@media screen and (min-width: 1024px) {
  .p-footer__copy {
    padding: 16px 0;
  }
}

.p-footer__copy p {
  /*font-family: var(--font-en);*/
  font-size: 12px;
  margin: 0;
}


/* ====================================================
   Project - Fixed Banner (右下固定バナー)
   ==================================================== */
.p-fixed-banner {
  position: fixed;
  right: 10px;
  bottom: 10px;
  width: 172px;
  height: 64px;
  z-index: 100;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
}

@media screen and (min-width: 1440px){
  .p-fixed-banner {
    right: 4px;
    bottom: 4px;
  }
}

.p-fixed-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}

.p-fixed-banner__icon {
  position: absolute;
  bottom: 1px;
  right: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  z-index: 2;
}

@media screen and (min-width: 1025px) {
  /*.p-fixed-banner {
    display: none;
  }*/
}

/* ====================================================
   Project - Modal (Coupon Popup)
   ==================================================== */
.p-modal__dialog {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 32px);
  max-width: 600px;
  z-index: 10;
}

.p-modal__content--coupon {
  background-color: #fff;
  padding: 30px 20px;
  max-height: 85vh;
  overflow-y: auto;
  box-sizing: border-box;
}
@media screen and (min-width: 400px) {
  .p-modal__content--coupon {
    padding: 30px auto;
    max-width: 400px;
  }
}
@media screen and (min-width: 600px) {
  .p-modal__content--coupon {
    max-width: 600px;
    padding: 30px 100px;
  }
}

.p-modal__close-outside {
  position: absolute;
  top: -40px;
  right: 0;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.p-modal__close-icon--white {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: auto;
}

.p-modal__close-icon--white::before,
.p-modal__close-icon--white::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
}

.p-modal__close-icon--white::before {
  transform: translateY(-50%) rotate(45deg);
}

.p-modal__close-icon--white::after {
  transform: translateY(-50%) rotate(-45deg);
}

.p-coupon__ribbon {
  background-color: #d12a27;
  color: #fff;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 0;
  margin-bottom: 16px;
  clip-path: polygon(0 0, 100% 0, calc(100% - 12px) 50%, 100% 100%, 0 100%, 12px 50%);
}

.p-coupon__img {
  width: 100%;
  height: auto;
  display: block;
  margin-bottom: 16px;
}

.p-coupon__notes {
  font-size: 13px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 24px;
}

.p-coupon__notes p {
  margin: 0 0 4px;
}

.p-coupon__notes ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-coupon__notes li {
  margin-bottom: 2px;
}

.p-coupon__notes a {
  color: #A48F3A;
  text-decoration: underline;
}

.p-coupon__btn {
  display: block;
  width: 100%;
  background-color: #A48F3A;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  padding: 18px 0;
  border: none;
  border-radius: 40px;
  cursor: pointer;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.p-coupon__btn.is-used {
  background-color: #cccccc;
  color: #ffffff;
  pointer-events: none;
  box-shadow: none;
}

.p-coupon__used-msg {
  font-size: 14px;
  line-height: 21px;
  color: #D82424;
  margin: 16px 0 0;
  text-align: center;
  font-weight: 700;
}

