@charset "utf-8";

/* Base
--------------------------- */
:root {
  --color-primary: #009261;
  --color-text: #333333;
  --color-white: #FFFFFF;
  --color-gray: #F8F8F8;
  --color-note: #282828;
  --color-dot: #FFF100;
  --color-accent: #C51B13;
  --color-note-bg: #F5F5F5;
}

  html{
  scroll-behavior: smooth;
}

body {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

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

/* Layout
--------------------------- */
.l-main {
  padding: 0;
}

/* Component
--------------------------- */
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 24px;
  background: var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 1.6rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (min-width: 960px) {
.c-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 24px;
  background: var(--color-primary);
  border-radius: 4px;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  transition: opacity 0.3s;
}}

.c-button:hover {
  opacity: 0.8;
}

.c-button img {
  margin-left: 8px;
}

/* Project
--------------------------- */
.pc-block {
  display: none;
}
.tb-block {
  display: none;
}
.sp-block {
  display: block;
}

@media screen and (min-width: 768px) {
  .pc-block { 
    display: none;
  }
  .tb-block {
    display: block;
  }
  .sp-block {
    display: none;
  }
}
@media screen and (min-width: 960px) {
  .pc-block { 
    display: block;
  }
  .tb-block {
    display: none;
  }
  .sp-block {
    display: none;
  }
}

/* Main Visual */
.p-mv {
  margin: 0;
  position: relative;
}

.p-mv__line {
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #FFF 0%, #E8E8E8 50%, #FFF 100%);
}

.p-mv img {
  width: 100%;
}

.p-mv__content {
  display: flex;
  position: absolute;
  top: 73%;
  left: 50%;
  transform: translate(-50%, -65%); 
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 20px 0;
  text-align: center;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
.p-mv__content {
  display: flex;
  position: static;
  transform: none;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);  */
  width: 100%;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}}

@media screen and (min-width: 960px) {
.p-mv__content {
  position: static;
  /* position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -65%);  */
  width: 280px;
  /* height: 280px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-align: center;
  box-sizing: border-box;
}
}

.p-mv__icon {
  width: 38px;
  height: 34px;
  margin-bottom: 30px;
}

@media screen and (min-width: 960px) {
.p-mv__icon {
  width: 24px;
  height: 24px;
  margin-bottom: 39px;
}}

.p-mv__catch {
  margin: 0 0 10px;
  font-size: 1.3rem;
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (min-width: 960px) {
.p-mv__catch {
  margin: 0 0 10px;
  font-size: 1.7rem;
  line-height: 1.4;
  font-weight: 500;
}}

.p-mv__title {
  margin: 0 0 18px;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.3;
}
@media screen and (min-width: 960px) {
.p-mv__title {
  margin: 0 0 30px;
  font-size: 5.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.3;
}
}
/* .p-mv__title::before,
.p-mv__title::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 420px;
  height: 3px;
  background: var(--color-accent);
} */

.p-mv__title::before {
  top: 0;
}

.p-mv__title::after {
  bottom: 0;
}

.p-mv__subtitle {
  margin: 0;
  font-size: 2.0rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-accent);
  position: relative;
  padding: 12px 0;
  width: 100%;
}

@media screen and (min-width: 960px) {
.p-mv__subtitle {
  margin: 0;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.4;
  color: var(--color-accent);
  position: relative;
  padding: 16px 0;
}}

.p-mv__subtitle::before,
.p-mv__subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background: var(--color-accent);
}
@media screen and (min-width: 960px) {
.p-mv__subtitle::before,
.p-mv__subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 3px;
  background: var(--color-accent);
}}

.p-mv__subtitle::before {
  top: 0;
}

.p-mv__subtitle::after {
  bottom: 0;
}

/* Fee */
.p-fee {
  margin-top: 40px;
  text-align: center;
}

.p-fee__inner {
  padding: 0 20px;
}

.p-fee__title {
  margin: 0 0 10px;
  color: var(--color-primary);
  font-size: 1.4rem;
  font-weight: bold;
}

@media screen and (min-width: 960px) {
.p-fee__title {
  margin: 0 0 16px;
  color: var(--color-primary);
  font-size: 1.25rem;
  font-weight: bold;
}}

.p-fee__lead {
  margin: 0 0 8px;
  font-size: 3.0rem;
  font-weight: bold;
  color: var(--color-primary);
  position: relative;
}

.p-fee__lead01 {
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-primary);
  margin-bottom: 20px;
  display: inline-block;
}

@media screen and (min-width: 960px) {
  .p-fee__lead01 {
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--color-primary);
    margin-bottom: 20px;
    display: inline-block;
  }
}

.p-fee__lead02 {
  margin: 0 0 20px 0;
  font-size: 1.4rem;
  font-weight: bold;
  color: var(--color-primary);
  display: inline-block;
}

@media screen and (min-width: 960px) {
.p-fee__lead02 {
  font-size: 4.2rem;
  font-weight: bold;
  color: var(--color-primary);
  display: inline-block;
  margin: 0;
}}

.p-fee__dots {
  position: absolute;
  right: 42px;
  top: -6px;
  display: flex;
  gap: 23px;
}

@media screen and (min-width: 768px) {
  .p-fee__dots {
    position: absolute;
    right: 19%;
    top: -8px;
    display: flex;
    gap: 32px;
  }}

@media screen and (min-width: 960px) {
.p-fee__dots {
  position: absolute;
  right: 19%;
  top: -8px;
  display: flex;
  gap: 32px;
}}

.p-fee__dot {
  display: block;
  width: 6px;
  height: 6px;
  background: var(--color-dot);
  border-radius: 50%;
}

@media screen and (min-width: 768px) {
  .p-fee__dot {
    display: block;
    width: 10px;
    height: 10px;
    background: var(--color-dot);
    border-radius: 50%;
  }}

@media screen and (min-width: 960px) {
.p-fee__dot {
  display: block;
  width: 10px;
  height: 10px;
  background: var(--color-dot);
  border-radius: 50%;
}}

.p-fee__lead__note{
  font-size: 1.2rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-primary);
}

@media screen and (min-width: 960px) {
.p-fee__lead__note{
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-primary);
}}

.p-fee__note {
  margin: 0;
  font-size: 1.2rem;
  color: var(--color-note);
  display: inline-block;
  padding: 6px 23px;
  background: var(--color-note-bg);
  border-radius: 5px;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .p-fee__note {
    margin: 0;
    font-size: 0.75rem;
    color: var(--color-note);
    display: inline-block;
    padding: 8px 198px;
    background: var(--color-note-bg);
    border-radius: 5px;
    margin-bottom: 40px;
  }}

@media screen and (min-width: 960px) {
.p-fee__note {
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-note);
  display: inline-block;
  padding: 8px 198px;
  background: var(--color-note-bg);
  border-radius: 5px;
  margin-bottom: 40px;
}}

/* Discount
--------------------------- */
.p-discount {
  text-align: center;
  background: rgba(0, 147, 96, 0.08);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0 50px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-discount {
    text-align: center;
    background: rgba(0, 147, 96, 0.08);
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 60px 0 100px;
    position: relative;
  }}
@media screen and (min-width: 960px) {
.p-discount {
  text-align: center;
  background: rgba(0, 147, 96, 0.08);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 60px 0 100px;
  position: relative;
}}

.p-discount::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 25px 0 25px;
  border-color: #FFF transparent transparent transparent;
}

.p-discount__title {
  margin: 0 0 40px;
  font-size: 1.6rem;
  font-weight: bold;
  color: var(--color-note);
  line-height: 1.5;
  display: inline-block;
  position: relative;
}

@media screen and (min-width: 768px) {
  .p-discount__title {
    margin: 0 0 60px;
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--color-note);
    line-height: 1.5;
    display: inline-block;
    position: relative;
  }}

@media screen and (min-width: 960px) {
  .p-discount__title {
    margin: 0 0 60px;
    font-size: 2.0rem;
    font-weight: bold;
    color: var(--color-note);
    line-height: 1.5;
    display: inline-block;
    position: relative;
  }}

  .p-discount__title::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-primary);
  }
  
@media screen and (min-width: 960px) {
.p-discount__title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 5px;
  background: #009360;
}}

.p-discount__content {
  max-width: 100%;
  margin: 0 auto 50px;
  padding: 0;
  border-radius: 8px;
}

@media screen and (min-width: 768px) {
  .p-discount__content {
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0;
    border-radius: 8px;
  }}

@media screen and (min-width: 960px) {
.p-discount__content {
  max-width: 900px;
  margin: 0 auto 80px;
  padding: 0;
  border-radius: 8px;
}}

@media screen and (min-width: 960px) {
  .p-discount__content {
    /* padding: 40px; */
  }
}

.p-discount__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
  position: relative;
}
@media screen and (min-width: 960px) {
.p-discount__list {
  display: flex;
  flex-direction: column;
  gap: 60px;
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  position: relative;
}}

.p-discount__list::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 147, 96, 0.08); */
  transform: translateY(-50%);
  z-index: 0;
}

.p-discount__item {
  border-radius: 10px;
  padding: 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .p-discount__item {
    background: var(--color-white);
    border-radius: 10px;
    padding: 0;
    position: relative;
    z-index: 1;
    margin: 0;
  }}

@media screen and (min-width: 960px) {
.p-discount__item {
  background: var(--color-white);
  border-radius: 10px;
  padding: 0;
  position: relative;
  z-index: 1;
  margin: 0 auto;
}}

.p-discount__item--accent {
  border: 3px solid var(--color-accent);
  background: #FFFFE8;
}

.p-discount__head {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 32px 18px 10px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  width: 180px;
  height: 116px;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-discount__head {
    background: var(--color-accent);
    color: var(--color-white);
    padding: 32px 18px 10px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    margin-bottom: 0;
    height: auto;
  }}

  
@media screen and (min-width: 960px) {
.p-discount__head {
  background: var(--color-accent);
  color: var(--color-white);
  padding: 32px 18px 10px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  margin-bottom: 0;
}}

.p-discount__head img {
  width: 42px;
  height: 29px;
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
  top: -9px;
}
@media screen and (min-width: 960px) {
.p-discount__head img {
  width: 24px;
  height: 24px;
  position: static;
}}
.p-discount__label {
  margin: 0 0 5px;
  padding: 0;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
  display: block;
}
@media screen and (min-width: 960px) {
.p-discount__label {
  margin: 0;
  padding: 0;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  white-space: nowrap;
  display: block;
}}

.p-discount__label span {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  display: block;
  margin-bottom: -27px;
}

.p-discount__head .p-discount__note {
  /* position: absolute;
  right: 8px;
  bottom: 8px; */
  margin: 0 0 -16px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.p-discount__item--accent .p-discount__text {
  /* margin-top: 32px; */
}

.p-discount__item--accent .p-discount__off {
  /* margin-bottom: 40px; */
}

.p-discount__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-white);
  width: 275px;
  padding: 30px 32px;
  border-radius: 10px;
}

@media screen and (min-width: 768px) {
  .p-discount__item-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--color-white);
    width: auto;
    padding: 40px 32px 30px;
    border-radius: 10px;
  }}

@media screen and (min-width: 960px) {
.p-discount__item-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: transparent;
  width: auto;
  padding: 0;
}}

.p-discount__list > li:last-child .p-discount__item-inner {
  background: transparent;
}

.p-discount__image {
  margin: 0;
  width: 100%;
}

.p-discount__image img {
  width: 160px;
  height: auto;
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-discount__image img {
    width: 160px;
    height: auto;
    margin-bottom: 0;
  }}

@media screen and (min-width: 960px) {
.p-discount__image img {
  width: 160px;
  height: auto;
  margin-bottom: 0;
}}

.p-discount__text {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-note);
  margin-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .p-discount__text {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.5;
    color: var(--color-note);
    margin-bottom: 0;
  }}

@media screen and (min-width: 960px) {
.p-discount__text {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  color: var(--color-note);
  margin-bottom: 0;
}}

.p-discount__off {
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: normal;
  column-gap: 20px;
  font-size: 1.4rem;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .p-discount__off {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }}

@media screen and (min-width: 960px) {
.p-discount__off {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}}

.p-discount__off span {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 0;
  color: var(--color-note);
}

@media screen and (min-width: 768px) {
  .p-discount__off span {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }}

@media screen and (min-width: 960px) {
.p-discount__off span {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-bottom: 20px;
}}

.p-discount__off strong {
  color: #009360;
  font-size: 4.2rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.p-discount__off strong small {
  font-size: 2.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

.p-discount__off strong span {
  font-size: 2.4rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  margin: 0 0 0 2px;
}

.p-discount__note {
  margin: 0;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
  position: relative;
  color: var(--color-primary);
  white-space: nowrap;
  width: 204px;
  box-sizing: border-box;
  display: block;
  margin: 0 auto 50px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-discount__note {
    margin: 0;
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5;
    display: inline-block;
    position: relative;
    width:auto
  }}

@media screen and (min-width: 960px) {
.p-discount__note {
  margin: 0;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  display: inline-block;
  position: relative;
  width:auto
}}

.p-discount__note::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: -10px;
  width: 200px;
  height: 16px;
  background: #FFF100;
  z-index: -1;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-discount__note::after {
    content: "";
    position: absolute;
    bottom: 11px;
    left: 44%;
    width: 320px;
    height: 22px;
    background: #FFF100;
    z-index: -1;
    flex-shrink: 0;
  }}
@media screen and (min-width: 960px) {
.p-discount__note::after {
  content: "";
  position: absolute;
  bottom: 11px;
  left: 44%;
  width: 320px;
  height: 22px;
  background: #FFF100;
  z-index: -1;
  flex-shrink: 0;
}}

.p-discount__note em {
  font-style: normal;
  font-size: 3.9rem;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  margin-left: 5px;
}
@media screen and (min-width: 960px) {
.p-discount__note em {
  font-style: normal;
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-left: 0;
}}

.p-discount__note small {
  font-size: 2.6rem;
  font-family: 'Outfit', sans-serif;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  .p-discount__note small {
    font-size: 4.2rem;
    font-family: 'Outfit', sans-serif;
    margin-right: 10px;
  }}

@media screen and (min-width: 960px) {
.p-discount__note small {
  font-size: 4.2rem;
  font-family: 'Outfit', sans-serif;
  margin-right: 10px;
}}

.p-discount__note sup {
  font-size: 2.6rem;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
  transform: scale(0.7);
  transform: scale(0.6) translateX(-18px) translateY(32px);
  font-weight: 700;
  vertical-align: super;
}
@media screen and (min-width: 768px) {
  .p-discount__note sup {
    font-size: 4.2rem;
    font-family: 'Outfit', sans-serif;
    display: inline-block;
    transform: scale(0.7);
    transform: scale(0.6) translateX(-18px) translateY(24px);
    font-weight: 700;
    vertical-align: baseline;
  }}
@media screen and (min-width: 960px) {
.p-discount__note sup {
  font-size: 4.2rem;
  font-family: 'Outfit', sans-serif;
  display: inline-block;
  transform: scale(0.7);
  transform: scale(0.6) translateX(-18px) translateY(24px);
  font-weight: 700;
  vertical-align: baseline;
}}

.p-discount__info {
  width: 89.3%;
  margin: 0 auto;
  border: 1px solid var(--color-gray);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}
@media screen and (min-width: 960px) {
.p-discount__info {
  width: auto;
  margin-top: 24px;
  border: 1px solid var(--color-gray);
  border-radius: 8px 8px 0 0;
  overflow: hidden;
}}

.p-discount__info dl {
  display: flex;
  flex-direction: column;
  margin: 0;
}
@media screen and (min-width: 768px) {
.p-discount__info dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0;
  text-align: left;
  font-size: 1.4rem;
  line-height: 1.5;
  align-items: center;
}}

.p-discount__info dt {
  padding: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
  font-size: 1.6rem;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 768px) {
.p-discount__info dt {
  line-height: 1.5;
  padding: 0 40px;
  height: 100%;
  background: var(--color-primary);
  color: var(--color-white);
  font-weight: bold;
  white-space: nowrap;
  font-size: 2.0rem;
  display: flex;
  align-items: center;
  width: auto;
  text-align: left;
}}

.p-discount__info dd {
  margin: 0;
  padding: 30px 0;
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  background: var(--color-white);
  text-align: center;
  border-radius: 0 0 10px 10px;
  font-family: 'Outfit', sans-serif;
}

@media screen and (min-width: 768px) {
.p-discount__info dd {
  margin: 0;
  padding: 30px 0 30px 30px;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  background: var(--color-white);
  text-align: left;
}}

@media screen and (min-width: 960px) {
.p-discount__info dd {
  margin: 0;
  padding: 24px 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  background: var(--color-white);
  text-align: center;
}}

@media screen and (min-width: 768px) {
  .p-discount__info dt:last-of-type {
    border-radius: 0 0 0 10px;
  }}

.p-discount__info-note {
  margin: 0;
  padding: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  background: var(--color-white);
}
@media screen and (min-width: 960px) {
.p-discount__info-note {
  margin: 0;
  padding: 16px;
  font-size: 1.2rem;
  line-height: 1.5;
  text-align: left;
  background: var(--color-white);
}}

@media screen and (min-width: 960px) {
  .p-discount__info {
    margin-top: 24px;
    background: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: 8px;
  }

  .p-discount__info dl {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.5;
    align-items: center;
  }

  .p-discount__info dt {
    line-height: 1.5;
    padding: 0 40px;
    height: 100%;
    background: var(--color-primary);
    color: var(--color-white);
    font-weight: bold;
    white-space: nowrap;
    font-size: 2.0rem;
    display: flex;
    align-items: center;
    width: auto;
    text-align: left;
  }

  .p-discount__info dt:first-of-type {
    border-radius: 10px 0 0 0;
  }

  .p-discount__info dt:last-of-type {
    border-radius: 0 0 0 10px;
  }

  .p-discount__info dd {
    margin: 0;
    padding: 30px 0 30px 30px;
    font-size: 2.4rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    background: var(--color-white);
    text-align: left;
  }

  .p-discount__info dd:first-of-type {
    border-radius: 0 10px 0 0;
  }

  .p-discount__info-note {
    margin: 16px 0 0;
    padding: 0;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-discount__info dt:first-of-type {
  border-radius: 10px 0 0 0;
}

.p-discount__info dt:last-of-type {
  border-radius: 0;
}

@media screen and (min-width: 960px) {
.p-discount__info dt:last-of-type {
  border-radius: 0 0 0 10px;
}}

/* .p-discount__info dd:first-of-type {
  border-radius: 0 10px 0 0;
} */
.p-discount__info dd:first-of-type {
  border-radius: 0 10px 0 0;
}

/* @media screen and (min-width: 960px) {
.p-discount__info dd:first-of-type {
  border-radius: 0 0 10px 0;
}} */
.p-discount__info dt:nth-of-type(2)  {
  border-top: 1px solid #ccc;
  border-radius: 0;
}
@media screen and (min-width: 768px) {
.p-discount__info dt:nth-of-type(2)  {
  border-top: 1px solid #ccc;
  border-radius: 0 0 0 10px;
}}

.p-discount__info dd:nth-of-type(2)  {
  border-top: 1px solid #ccc;
  border-radius: 0 0 10px 10px;
}
@media screen and (min-width: 768px) {
  .p-discount__info dd:nth-of-type(2)  {
    border-top: 1px solid #ccc;
    border-radius: 0 0 10px 0;
  }}

.p-discount__info-date {
  font-size: 2.4rem;
  line-height: 1.5;
  color: var(--color-primary);
}

.p-discount__info-date span {
  font-size: 3.15rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}
@media screen and (min-width: 960px) {
.p-discount__info-date span {
  font-size: 3.6rem;
  line-height: 1.5;
  color: var(--color-primary);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}}
.p-discount__info-date span:first-of-type,
.p-discount__info-date span:nth-of-type(3) {
  margin-left: 4px;
}

.p-discount__info-note {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--color-note);
  text-align: left;
  text-indent: -1em;
  padding-left: 1em;
  margin: 20px auto 0;
  width: 294px;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
.p-discount__info-note {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-note);
  text-align: left;
  width: auto;
}}

@media screen and (min-width: 960px) {
.p-discount__info-note {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--color-note);
  text-align: left;
  width: auto;
}
}

/* Station */
.p-station {
  margin:40px 20px 50px;
}
@media screen and (min-width: 960px) {
.p-station {
  margin-top: 60px;
}}

.p-station__title {
  margin: 0 0 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}

.p-station__list {
  display: block;
  /* flex-direction: column; */
  /* gap: 24px; */
}

.p-station__item {
  padding: 24px;
  background: var(--color-gray);
  border-radius: 8px;
}

.p-station__name {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}

.p-station__image {
  margin: 0 0 20px;
}
@media screen and (min-width: 960px) {
.p-station__image {
  margin: 0 0 16px;
}}

.p-station__text {
  margin: 0 0 20px;
  font-size: 1.4rem;
}
@media screen and (min-width: 960px) {
.p-station__text {
  margin: 0 0 24px;
  font-size: 1.4rem;
}}

.p-station__link {
  margin: 0;
  text-align: center;
}

/* Contact */
.p-contact {
  margin-top: 0;
  padding: 40px 24px;
  background: var(--color-gray);
  text-align: center;
}
@media screen and (min-width: 960px) {
.p-contact {
  margin-top: 60px;
  padding: 40px 24px;
  background: var(--color-gray);
  text-align: center;
}}

.p-contact__title {
  margin: 0 0 24px;
  font-size: 20px;
  font-weight: bold;
}

.p-contact__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.p-contact__qr {
  margin: 0;
}

.p-contact__text {
  display: block;
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

/* Tablet
--------------------------- */
@media screen and (min-width: 768px) and (max-width: 959px) {
  /* Layout */
  .l-main {
    padding: 0 40px;
  }

  /* Main Visual */
  .p-mv {
    margin: 0 -40px;
  }

  .p-mv__content {
    width: 360px;
    height: 360px;
    padding: 30px;
  }

  .p-mv__icon {
    width: 32px;
    height: 32px;
    margin-bottom: 12px;
  }

  .p-mv__catch {
    font-size: 1rem;
    margin: 0 0 12px;
  }

  .p-mv__title {
    font-size: 2.5rem;
    margin: 0 0 12px;
  }

  .p-mv__subtitle {
    font-size: 1.25rem;
    padding: 20px 0;
  }

  .p-mv__subtitle::before,
  .p-mv__subtitle::after {
    width: 280px;
  }

  .p-mv__subtitle::before {
    left: 50%;
  }

  .p-mv__subtitle::after {
    right: -70px;
  }

  /* Fee */
  .p-fee {
    margin-top: 60px;
  }

  .p-fee__inner {
    padding: 0 40px;
  }

  .p-fee__title {
    font-size: 1.5rem;
    margin: 0 0 24px;
  }

  .p-fee__lead {
    font-size: 2rem;
    margin: 0 0 12px;
  }

  .p-fee__note {
    font-size: 0.875rem;
  }

  .p-fee__lead__note{
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-primary);
  }

  /* Discount */
  .p-discount__list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .p-discount__item {
    width: calc(50% - 12px);
  }

  .p-discount__item:nth-child(3) {
    padding: 40px 20px 20px;
  }

  /* Station */
  .p-station__list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .p-station__item {
    width: calc(50% - 12px);
  }

  /* Contact */
  .p-contact__content {
    flex-direction: row;
    justify-content: center;
  }
}

.p-mv {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 478px;
  background: url(../../images/ferris/img_mv_sp@2x.png) no-repeat center center;
  background-size: cover;
}

/* tablet
--------------------------- */
@media screen and (min-width: 768px) {
  /* Layout */
  .l-main {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Main Visual */
  .p-mv {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 420px;
    background: url(../../images/ferris/img_mv_pc.png) no-repeat center center;
    background-size: cover;
  }

  .p-mv img {
    /* display: none; */
  }

  .p-mv__content {
    width: 440px;
    margin: 0 auto;
  }

  .p-mv__icon {
    width: 45px;
    height: 40px;
    margin: 54px 0 39px;
  }

  .p-mv__catch {
    font-size: 1.7rem;
    margin: 0 0 10px;
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
  }

  .p-mv__title {
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 30px;
    white-space: nowrap;
  }

  .p-mv__subtitle {
    font-size: 3.2rem;
    padding: 20px 0;
  }

  .p-mv__subtitle::before,
  .p-mv__subtitle::after {
    width: 420px;
  }

  /* Fee */
  .p-fee {
    margin-top: 60px;
  }

  .p-fee__inner {
    padding: 0;
  }

  .p-fee__title {
    font-size: 2.0rem;
    margin: 0 0 15px;
  }

  .p-fee__lead {
    font-size: 4.2rem;
    margin: 0 0 15px;
  }

  .p-fee__note {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* Discount */
  .p-discount {
    /* margin-top: 80px; */
  }

  .p-discount__title {
    font-size: 20px;
  }

  .p-discount__lead {
    font-size: 36px;
    margin: 0 0 60px;
  }

  .p-discount__service {
    padding: 40px;
  }

  .p-discount__service-title {
    font-size: 24px;
    margin: 0 0 40px;
  }

  .p-discount__list {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .p-discount__item {
    width: calc((100% - 48px) / 3);
    padding: 0;
  }

  .p-discount__item-inner {
    gap: 30px;
  }

  .p-discount__text {
    font-size: 2.4rem;
  }

  .p-discount__text strong {
    font-size: 32px;
    margin-top: 8px;
  }

  .p-discount__note {
    font-size: 20px;
    margin-top: 0;
  }

  .p-discount__note em {
    font-size: 6.3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    margin-left: 10px;
    font-family: 'Outfit', sans-serif;
  }

  .p-discount__campaign {
    margin-top: 40px;
    padding: 32px;
  }

  .p-discount__info {
    font-size: 16px;
    gap: 12px 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Station */
  .p-station {
     margin: 80px auto 100px;
  }

  .p-station__title {
    font-size: 28px;
  }

  .p-station__list {
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
  }

  .p-station__item {
    padding: 32px;
  }

  .p-station__name {
    font-size: 20px;
    margin: 0 0 24px;
  }

  .p-station__image {
    margin: 0 0 40px;
  }

  .p-station__text {
    font-size: 16px;
    margin: 0 0 30px;
  }

  .c-button {
    min-width: 320px;
    padding: 20px 32px;
    font-size: 16px;
  }

  /* Contact */
  .p-contact {
    margin: 0 auto;
    /* max-width: 800px; */
    padding: 60px;
  }

  .p-contact__title {
    font-size: 28px;
    margin: 0 0 40px;
  }

  .p-contact__content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .p-contact__qr img {
    width: 160px;
    height: 160px;
  }

  .p-contact__text {
    font-size: 24px;
  }

  .p-contact__text img {
    width: 32px;
    height: 32px;
  }

  .p-discount {
    /* margin-top: 80px; */
  }

  .p-discount__content {
    /* padding: 60px; */
  }

  .p-discount__list {
    flex-direction: row;
    justify-content: center;
    gap: 60px;
    margin: 0 0 40px;
  }

  .p-discount__item {
    width: 260px;
  }

  .p-discount__item:nth-child(3) {
    padding: 0;
  }

  .p-discount__info {
    /* margin-top: 32px; */
    /* padding: 32px; */
  }

  .p-discount__info dl {
    max-width: 900px;
    /* margin: 0 auto 20px; */
    gap: 0;
    font-size: 1.6rem;
  }

  .p-discount__info-note {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  .p-discount__head {
    padding: 30px 18px 10px;
    position: relative;
  }

  .p-discount__head img {
    width: 42px;
    height: 29px;
    position: absolute;
    top: -8px;  
    left: 50%;
    transform: translateX(-50%);
  }

  .p-discount__label {
    font-size: 2.4rem;
    white-space: nowrap;
    margin-bottom: 5px;
  }

  .p-discount__label span{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: -25px;
  }

  .p-discount__head {
    /* right: 12px;
    bottom: 12px; */
    font-size: 1.4rem;
  }
  
  .p-discount__note01 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0;
  }
  @media screen and (min-width: 960px) {
  .p-discount__note01 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
  }}

  .p-discount__note {
    font-size: 4.2rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-primary);
  }
}

/* PC
--------------------------- */
@media screen and (min-width: 960px) {
  /* Layout */
  .l-main {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* Main Visual */
  .p-mv {
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    height: 420px;
    background: url(../../images/ferris/img_mv_pc.png) no-repeat center center;
    background-size: cover;
  }

  .p-mv img {
    /* display: none; */
  }

  .p-mv__content {
    width: 440px;
    margin: 0 auto;
  }

  .p-mv__icon {
    width: 45px;
    height: 40px;
    margin: 54px 0 39px;
  }

  .p-mv__catch {
    font-size: 1.7rem;
    margin: 0 0 10px;
    line-height: 1.5;
    font-weight: 500;
    white-space: nowrap;
  }

  .p-mv__title {
    font-size: 5.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0 0 30px;
    white-space: nowrap;
  }

  .p-mv__subtitle {
    font-size: 3.2rem;
    padding: 20px 0;
  }

  .p-mv__subtitle::before,
  .p-mv__subtitle::after {
    width: 420px;
  }

  /* Fee */
  .p-fee {
    margin-top: 60px;
  }

  .p-fee__inner {
    padding: 0;
  }

  .p-fee__title {
    font-size: 2.0rem;
    margin: 0 0 15px;
  }

  .p-fee__lead {
    font-size: 4.2rem;
    margin: 0 0 15px;
  }

  .p-fee__note {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  /* Discount */
  .p-discount {
    /* margin-top: 80px; */
  }

  .p-discount__title {
    font-size: 20px;
  }

  .p-discount__lead {
    font-size: 36px;
    margin: 0 0 60px;
  }

  .p-discount__service {
    padding: 40px;
  }

  .p-discount__service-title {
    font-size: 24px;
    margin: 0 0 40px;
  }

  .p-discount__list {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }

  .p-discount__item {
    width: calc((100% - 48px) / 3);
    padding: 30px 34px 20px;
  }

  .p-discount__item-inner {
    gap: 30px;
  }

  .p-discount__text {
    font-size: 2.4rem;
  }

  .p-discount__text strong {
    font-size: 32px;
    margin-top: 8px;
  }

  .p-discount__note {
    font-size: 20px;
    margin-top: 0;
  }

  .p-discount__note em {
    font-size: 6.3rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-primary);
    margin-left: 10px;
    font-family: 'Outfit', sans-serif;
  }

  .p-discount__campaign {
    margin-top: 40px;
    padding: 32px;
  }

  .p-discount__info {
    font-size: 16px;
    gap: 12px 24px;
    max-width: 900px;
    margin: 0 auto;
  }

  /* Station */
  .p-station {
     margin: 80px auto 100px;
  }

  .p-station__title {
    font-size: 28px;
  }

  .p-station__list {
    flex-direction: row;
    gap: 24px;
    margin-top: 40px;
  }

  .p-station__item {
    /* width: calc((100% - 48px) / 3); */
    padding: 32px;
  }

  .p-station__name {
    font-size: 20px;
    margin: 0 0 24px;
  }

  .p-station__image {
    margin: 0 0 24px;
  }

  .p-station__text {
    font-size: 16px;
    margin: 0 0 30px;
  }

  .c-button {
    min-width: 320px;
    padding: 20px 32px;
    font-size: 16px;
  }

  /* Contact */
  .p-contact {
    margin: 0 auto;
    /* max-width: 800px; */
    padding: 60px;
  }

  .p-contact__title {
    font-size: 28px;
    margin: 0 0 40px;
  }

  .p-contact__content {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 40px;
  }

  .p-contact__qr img {
    width: 160px;
    height: 160px;
  }

  .p-contact__text {
    font-size: 24px;
  }

  .p-contact__text img {
    width: 32px;
    height: 32px;
  }

  .p-discount {
    /* margin-top: 80px; */
  }

  .p-discount__content {
    /* padding: 60px; */
  }

  .p-discount__list {
    flex-direction: row;
    justify-content: center;
    column-gap: 60px;
    margin: 0 0 40px;
  }

  .p-discount__item {
    width: calc((100% - 64px) / 3);
  }

  .p-discount__item:nth-child(3) {
    padding: 40px 20px 20px;
  }

  .p-discount__info {
    /* margin-top: 32px; */
    /* padding: 32px; */
  }

  .p-discount__info dl {
    max-width: 900px;
    /* margin: 0 auto 20px; */
    gap: 0;
    font-size: 1.6rem;
  }

  .p-discount__info-note {
    margin-top: 10px;
    font-size: 1.4rem;
  }

  .p-discount__head {
    padding: 30px 18px 10px;
    position: relative;
  }

  .p-discount__head img {
    width: 42px;
    height: 29px;
    position: absolute;
    top: -8px;  
    left: 50%;
    transform: translateX(-50%);
  }

  .p-discount__label {
    font-size: 2.4rem;
    white-space: nowrap;
    margin-bottom: 10px;
  }

  .p-discount__label span{
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: -20px;
  }

  .p-discount__head {
    /* right: 12px;
    bottom: 12px; */
    font-size: 1.4rem;
  }
  
  .p-discount__note01 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
    margin-bottom: 0;
  }
  @media screen and (min-width: 960px) {
  .p-discount__note01 {
    font-size: 1.2rem;
    line-height: 1.5;
    font-weight: 700;
  }}

  .p-discount__note {
    font-size: 4.2rem;
    line-height: 1.5;
    font-weight: 700;
    color: var(--color-primary);
  }
}

/* 学校周辺の主要駅紹介
---------------------------- */
.p-station {
  /* padding: 80px 20px; */
  background: var(--color-bg-gray);
}

.p-station .c-heading {
  font-size: 2.6rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-station .c-heading {
    font-size: 4.2rem;
    color: var(--color-primary);
    text-align: center;
    font-weight: 700;
    margin-bottom: 60px;
  }}
@media screen and (min-width: 960px) {
.p-station .c-heading {
  font-size: 4.2rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}}
.p-station__list {
  margin-top: 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px) {
  .p-station__list {
    margin-top: 40px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }}
@media screen and (min-width: 960px) {
.p-station__list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}}

.p-station__item {
  background: var(--color-white);
  padding: 0;
  border-radius: 20px;
}

@media screen and (min-width: 768px) {
  .p-station__item {
    background: var(--color-white);
    padding: 0;
    border-radius: 20px;
    width: 100%;
  }}

@media screen and (min-width: 960px) {
.p-station__item {
  background: var(--color-white);
  padding: 40px 20px;
  border-radius: 20px;
}}

.p-station__item + .p-station__item {
  margin-top: 0;
}
.p-station__title {
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--color-note);
  text-align: left;
}
@media screen and (min-width: 768px) {
  .p-station__title {
    font-size: 2.4rem;
    font-weight: bold;
    color: var(--color-note);
    text-align: left;
    margin: 0 0 20px;
  }}
@media screen and (min-width: 960px) {
.p-station__title {
  font-size: 2.4rem;
  font-weight: bold;
  color: var(--color-note);
  text-align: left;
  margin: 0 0 20px;
}}

.p-station__image {
  margin-top: 0;
}
@media screen and (min-width: 960px) {
.p-station__image {
  margin-top: 24px;
}}

.p-station__image img {
  width: 100%;
  height: auto;
  border-radius: 0;
}
@media screen and (min-width: 960px) {
.p-station__image img {
  width: 100%;
  height: auto;
}}

.p-station__text {
  margin-top: 0;
  line-height: 1.5;
}
@media screen and (min-width: 960px) {
.p-station__text {
  margin-top: 24px;
  line-height: 1.5;
}}
.p-station__button {
  margin: 0 auto 60px;
  text-align: center;
}
@media screen and (min-width: 960px) {
.p-station__button {
  margin: 24px 0 0;
  text-align: center;
}}

.p-station__list > .p-station__item:last-of-type .p-station__button{
  margin-bottom: 0;
}


.p-station__button .c-button {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  padding: 15px 0;
  white-space: nowrap;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 960px) {
.p-station__button .c-button {
  background: var(--color-white);
  color: var(--color-primary);
  border-radius: 50px;
  border: 2px solid var(--color-primary);
  background: var(--color-white);
  padding: 15px 0;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}}

.c-button__icon{
  width: 16px;
  height: 16px;
  background: url("../../images/ferris/ico_search.svg") no-repeat center / contain;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
.c-button__icon{
  width: 16px;
  height: 16px;
  background: url("../../images/ferris/ico_search.svg") no-repeat center / contain;
  flex-shrink: 0;
}}

@media screen and (min-width: 960px) {
  .p-station {
    /* padding: 100px 40px; */
  }

  .p-station__list {
    margin-top: 60px;
  }

  .p-station__item {
    padding: 0;
    display: flex;
    column-gap: 40px;
    width: 900px;
    margin-bottom: 60px;
  }

  .p-station__item:last-of-type{
    margin-bottom: 0;
  }
  
  .p-station__image {
    margin: 0;
    width: 46.5%;
  }

  .p-station__flexright{
    width: 53.4%;
  }
  .p-station__text {
    margin-top: 0;
    text-align: left;
  }

  .p-station__button {
    margin-top: 0;
  }
}

@media screen and (min-width: 960px) {
  .p-station__list {
    margin: 0 auto;
  }
}

/* お部屋探しのお問合せ
---------------------------- */
.p-contact {
  background: #F5F5F5;
  padding: 40px 20px 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  .p-contact {
    background: #F5F5F5;
    padding: 80px 0 100px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }}
@media screen and (min-width: 960px) {
.p-contact {
  background: #F5F5F5;
  padding: 80px 0;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}}

.p-contact .l-inner {
  padding: 0;
}
@media screen and (min-width: 960px) {
.p-contact .l-inner {
  padding: 0 20px;
}}

.p-contact .c-heading {
  font-size: 2.6rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .p-contact .c-heading {
    font-size: 4.2rem;
    color: var(--color-primary);
    text-align: center;
    font-weight: 700;
    margin-bottom: 60px;
  }}
@media screen and (min-width: 960px) {
.p-contact .c-heading {
  font-size: 4.2rem;
  color: var(--color-primary);
  text-align: center;
  font-weight: 700;
  margin-bottom: 60px;
}}

.p-contact__content {
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  border-radius: 20px;
}
@media screen and (min-width: 960px) {
.p-contact__content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  border-radius: 20px;
}}

.p-contact__text {
  text-align: center;
  line-height: 1.5;
}

.p-contact__text p {
  line-height: 2.0;
  display: block;
  margin: 0 auto 30px;
  text-align: left;
  font-size: 1.4rem;
  color: var(--color-note);
}

.p-contact__button {
  /* margin-top: 30px; */
}

.p-contact__button .c-button {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  padding: 15px 0;
  white-space: nowrap;
  width: 335px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-contact__button .c-button {
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: 50px;
    padding: 15px 0;
    white-space: nowrap;
    width: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
  }}
@media screen and (min-width: 960px) {
.p-contact__button .c-button {
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 50px;
  padding: 15px 0;
  white-space: nowrap;
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
}}

.p-contact__button_icon {
  width: 16px;
  height: 16px;
  background: url("../../images/ferris/send.svg") no-repeat center / contain;
  flex-shrink: 0;
}
@media screen and (min-width: 960px) {
.p-contact__button_icon {
  width: 16px;
  height: 16px;
  background: url("../../images/ferris/send.svg") no-repeat center / contain;
  flex-shrink: 0;
}}

.p-contact__qr {
  margin-top: 40px;
  text-align: center;
}

.p-contact__qr figure {
  margin: 0 auto;
  width: 160px;
}

.p-contact__qr img {
  width: 100%;
  height: auto;
}

.p-contact__qr p {
  margin-top: 10px;
  font-size: 1.4rem;
}
.p-campaign_bg{
  padding: 50px 20px 76px;
}

@media screen and (min-width: 768px) {
  .p-campaign_bg{
    padding: 80px 0 115px;
  }}

@media screen and (min-width: 960px) {
  .p-campaign_bg{
    padding: 0;
  }}

@media screen and (min-width: 960px) {
  .p-contact {
    padding: 80px 0 100px;
  }

  .p-contact .l-inner {
    padding: 0 40px;
  }

  .p-contact__content {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 80px;
    width: 700px;
  }

  .p-contact__text {
    flex: 1;
    text-align: left;
    /* padding-right: 40px; */
  }

  .p-contact__text p {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  .p-contact__qr {
    margin-top: 0;
  }

  .p-campaign_bg{
    margin: 80px auto 125px;
    text-align: center;
  }

  .p-campaign_link{
    display: block;
    width: 898px;
    margin: 0 auto;
  }

  .p-campaign_bg img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
  }
}
