@charset "UTF-8";
:root {
  --color-green: #225C2C;
  --color-yellow: #D0A649;
  --color-orennji: #D47B38;
  --color-green02: #60A14D;
  --color-red: #A04655;
  --color-greenyello: #A6BA17;
}

/* ==================== reset ==================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: subpixel-antialiased;
  color: #211715;
  font-optical-sizing: auto;
  font-style: normal;
  background-image: url(../images/common/bg_pc.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4em;
    background-image: none;
    background-image: url(../images/common/bg_sp.png);
  }
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

ol, ul {
  list-style-type: none;
}

img {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: bottom;
  display: block;
  width: 100%;
  height: auto;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
}

/* ==================== conditional ==================== */
.img-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .img-pc {
    display: none;
  }
}

.img-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .img-sp {
    display: block;
  }
}

.break-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .break-pc {
    display: none !important;
  }
}

.break-sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  .break-sp {
    display: block !important;
  }
}

/* ==================== blank-content ==================== */
.blank-content {
  position: relative;
  height: 300px;
}

.blank-content-gray {
  background: #f8f8f8;
}

.blank-content-white {
  background: #fff;
}

.blank-content-title {
  position: absolute;
  font-size: 1.8rem;
  line-height: 1.6;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ==================== two-column ==================== */
.two-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  align-content: space-between;
  flex-wrap: wrap;
}

.two-column-8 {
  width: 78%;
}
@media screen and (max-width: 768px) {
  .two-column-8 {
    width: 100%;
  }
}

.two-column-7 {
  width: 68%;
}
@media screen and (max-width: 768px) {
  .two-column-7 {
    width: 100%;
  }
}

.two-column-6 {
  width: 58%;
}
@media screen and (max-width: 768px) {
  .two-column-6 {
    width: 100%;
  }
}

.two-column-5 {
  width: 48%;
}
@media screen and (max-width: 768px) {
  .two-column-5 {
    width: 100%;
  }
}

.two-column-4 {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .two-column-4 {
    width: 100%;
  }
}

.two-column-3 {
  width: 28%;
}
@media screen and (max-width: 768px) {
  .two-column-3 {
    width: 100%;
  }
}

.two-column-2 {
  width: 18%;
}
@media screen and (max-width: 768px) {
  .two-column-2 {
    width: 100%;
  }
}

.scr-event {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.scr-event.active {
  opacity: 1;
}

/* Slider */
/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 34px;
  }
}

.slick-dots {
  position: absolute;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
  transform: translateY(-6px);
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: #ccc;
  display: block;
  height: 11px;
  width: 11px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  border-radius: 50%;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 12px;
    height: 12px;
  }
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  height: 11px;
  width: 11px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 12px;
    height: 12px;
  }
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
  background-color: #E64117;
  border-radius: 50%;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir=rtl] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ==================== slick ==================== */
@media screen and (max-width: 768px) {
  .slider {
    width: 100%;
  }
}

.slider img {
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots li button {
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 768px) {
  .slick-dots li button:before {
    width: 10px;
    height: 10px;
  }
}

.slick-dotted.slick-slider {
  margin-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .slick-dotted.slick-slider {
    margin-bottom: 17px;
  }
}

.slide-arrow:before {
  content: "" !important;
  width: 14px;
  height: 18px;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .slide-arrow:before {
    width: 11px;
    height: 20px;
  }
}

.next-arrow:before {
  background: url(../images/common/icon_arrow.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  top: calc(50% - 11px);
  right: -17px;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .next-arrow:before {
    right: -19px;
  }
}

.prev-arrow:before {
  background: url(../images/common/icon_arrow.svg) !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  transform: rotate(180deg);
  top: calc(50% - 11px);
  left: -19px;
  opacity: 1;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .prev-arrow:before {
    left: -19px;
  }
}

/* ==================== header ==================== */
header {
  position: relative;
  background-color: #fff;
}
.c-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 31px 40px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .c-header-inner {
    padding: 17px 20px;
    margin: 0 auto;
    transform: translateX(-3px);
  }
}

.c-header-link {
  display: block;
  max-width: 360px;
}
@media screen and (min-width: 769px) {
  .c-header-link {
    transition: opacity 0.6s ease;
  }
  .c-header-link:hover {
    opacity: 0.5;
  }
}

.maru-gothic {
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
}

/* ==================== footer ==================== */
.c-footer-inner {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .c-footer-inner {
    padding: 42px 0;
  }
}
.c-footer-inner img {
  width: 257px;
  transform: translateX(76px);
}
@media screen and (max-width: 768px) {
  .c-footer-inner img {
    width: 90%;
    transform: translateX(11px);
  }
}

.c-footer-link {
  display: block;
  max-width: 320px;
  margin: 0 auto;
  transform: translateX(-43px);
}
@media screen and (min-width: 769px) {
  .c-footer-link {
    transition: opacity 0.6s ease;
  }
  .c-footer-link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .c-footer-link {
    width: 55%;
    transform: translateX(0);
  }
}

/* ==================== section-footer-note ==================== */
.c-section-footer-note {
  margin-top: -19px;
}
@media screen and (max-width: 768px) {
  .c-section-footer-note {
    width: 95%;
    margin: -5px auto 60px;
    max-width: 518px;
  }
}
.c-section-footer-note .section-inner {
  padding: 15px 0;
}
@media screen and (max-width: 768px) {
  .c-section-footer-note .section-inner {
    padding: 20px 20px 0;
  }
}
.c-section-footer-note .section-inner img {
  width: 400px;
}

.c-footer-note {
  max-width: 548px;
  margin: 0 auto 60px;
  list-style: none;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 40px 54px 40px 60px;
}
@media screen and (max-width: 768px) {
  .c-footer-note {
    padding: 22px 10px 17px;
    transform: translateX(0);
    margin-bottom: 0;
  }
}
.c-footer-note li {
  position: relative;
  font-size: 1.5rem;
  line-height: 1.53;
  padding: 0 0 0 1.6em;
  letter-spacing: 0;
  padding-left: 1.6em;
}
@media screen and (max-width: 768px) {
  .c-footer-note li {
    line-height: 1.56;
    letter-spacing: 0;
    padding-left: 22px;
    font-size: 1.4rem;
  }
}
.c-footer-note li + li {
  margin: 8px 0 0 0;
}
@media screen and (max-width: 768px) {
  .c-footer-note li + li {
    margin: 6px 0 0 0;
  }
}
.c-footer-note li a {
  color: #01006A;
}
.c-footer-note li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.c-footer-note li.asterisk_none {
  padding-left: 0;
}
.c-footer-note li.asterisk_none::before {
  display: none;
}
.c-footer-note li.asterisk_none dl {
  margin-top: 20px;
}
.c-footer-note li.asterisk_none dt {
  margin: 0;
}

.p-shop {
  margin: 0 auto;
  background-color: #FFF0B7;
  border-radius: 10px;
  transition: opacity 0.4s ease;
  width: 100%;
  padding: 20px 20px 13px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .p-shop {
    max-height: initial;
    margin-bottom: 20px;
    padding: 21px 3vw 13px;
  }
}
.p-shop a {
  text-decoration: none;
  color: #333333;
}
.p-shop__shop-name {
  border-bottom: solid 2px #fff;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .p-shop__shop-name {
    margin-bottom: 13px;
  }
}
.p-shop__wrap {
  max-width: 1000px;
  margin: 0 auto 79px;
  width: 98%;
}
@media screen and (max-width: 768px) {
  .p-shop__wrap {
    width: 94.6%;
    display: block;
    margin: 0 auto 60px;
  }
}
.p-shop__box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-shop__box {
    display: block;
  }
}
.p-shop__detail-list {
  display: flex;
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .p-shop__detail-list {
    display: block;
  }
}
.p-shop__detail-list li {
  margin-bottom: 7px;
  flex: 1;
}
.p-shop__detail-list dl {
  display: flex;
}
.p-shop__detail-list dt {
  background-color: #7FB45A;
  padding: 8px 24px;
  color: #fff;
  font-weight: 700;
  font-size: 1.5rem;
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  max-height: 34px;
  width: 120px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .p-shop__detail-list dt {
    font-size: 1.5rem;
    width: 99px;
    padding: 8.1px 0;
  }
}
.p-shop__detail-list dd {
  line-height: 1.9;
  font-size: 1.6rem;
  flex: 1;
}
.p-shop__img {
  width: 23%;
  aspect-ratio: 1/1;
  display: block;
  padding-left: 16px;
}
@media screen and (max-width: 768px) {
  .p-shop__img {
    width: 85%;
    aspect-ratio: 280/200;
    margin: 0 auto 0;
    padding: 0;
  }
}
.p-shop__name {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .p-shop__name {
    font-size: 2.2rem;
    margin-bottom: 9px;
    width: 100%;
    height: initial;
    line-height: 1.3em;
  }
}
@media screen and (max-width: 768px) {
  .p-shop__name span {
    width: 100%;
    height: 100%;
  }
}
.p-shop__floor-item {
  font-size: 1.6rem;
  color: #fff;
  font-weight: 500;
  text-align: center;
  display: inline-block;
  border-radius: 5px;
  height: 32px;
  padding: 10px 12px;
  margin: 0 auto 9px;
  line-height: 0.8em;
  background-color: #E13A17;
}
@media screen and (max-width: 768px) {
  .p-shop__floor-item {
    margin-bottom: 7px;
    font-size: 1.6rem;
  }
}

#service .p-shop__wrap {
  margin-bottom: 122px;
}
@media screen and (max-width: 768px) {
  #service .p-shop__wrap {
    margin-bottom: 61px;
  }
}

#foods .p-shop__img-wrap {
  margin-bottom: 18px;
}

.p-merchandise {
  width: 90%;
  margin-top: -12px;
}
@media screen and (max-width: 768px) {
  .p-merchandise {
    margin-top: 0;
    width: 100%;
  }
}
.p-merchandise.w100 {
  width: 100%;
}
.p-merchandise__item {
  margin-bottom: 9px;
  margin-top: 12px;
  padding-bottom: 10px;
  border-bottom: solid 2px #fff;
}
@media screen and (max-width: 768px) {
  .p-merchandise__item {
    padding-bottom: 8px;
    margin-top: 11px;
  }
}
.p-merchandise__name {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
}
h2.p-merchandise__name,
h3.p-merchandise__name {
  margin: 0;
}
.p-merchandise__category {
  font-weight: 700;
  line-height: 1.5;
  font-size: 1.8rem;
  letter-spacing: -0.01em;
  margin: 16px 0 16px 0;
}
@media screen and (max-width: 768px) {
  .p-merchandise__name {
    line-height: 1.3;
  }
  h2.p-merchandise__name,
  h3.p-merchandise__name {
    line-height: 1.3;
  }
  .p-merchandise__category {
    line-height: 1.3;
  }
}
.p-merchandise__detail {
  display: flex;
  justify-content: space-between;
}
.p-merchandise__text {
  color: #555555;
  line-height: 1.47;
  margin-top: 9px;
}
@media screen and (max-width: 768px) {
  .p-merchandise__text {
    margin-top: 11px;
    line-height: 1.54em;
    font-size: 1.5rem;
  }
}
.p-merchandise__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transform: translate(0px, 4px);
}
.p-merchandise__price-wrap {
  font-size: 1.5rem;
  display: inline-block;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-merchandise__price-wrap {
    margin-top: 7px;
  }
}
.p-merchandise__price-wrap span {
  color: #E13A17;
  font-weight: 700;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .p-merchandise__price-wrap span {
    letter-spacing: 0;
  }
}
.p-merchandise__price-wrap-flex {
  display: flex;
  justify-content: end;
  align-items: center;
}
.p-merchandise__price-wrap.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .p-merchandise__price-wrap.pc {
    display: none;
  }
}
.p-merchandise__price-wrap.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-merchandise__price-wrap.sp {
    display: block;
  }
}
.p-merchandise__limited {
  line-height: 1.3;
  font-size: 1.6rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-merchandise__limited {
    font-size: 1.4rem;
    min-width: 87px;
    text-align: end;
  }
}
.p-merchandise__price {
  text-align: end;
  display: inline-block;
  min-width: 124px;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .p-merchandise__price {
    min-width: 116px;
    letter-spacing: 0.05em;
  }
}

/* ==================== loader ==================== */
.loader.active {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #fff;
  top: 0;
  left: 0;
  z-index: 9999;
}
.loader.active::after {
  content: "";
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  border-top: 2px solid #cb8c02;
  border-right: 2px solid #cb8c02;
  border-bottom: 2px solid #cb8c02;
  border-left: 2px solid transparent;
  border-radius: 50%;
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  animation: spin 1s infinite linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==================== wrapper ==================== */
.wrapper {
  overflow: hidden;
}
.serif {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

.br-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .br-pc {
    display: none;
  }
}

.br-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .br-sp {
    display: block;
  }
}

/* ==================== feature-group ==================== */
.p-feature-group {
  position: relative;
  z-index: 1;
}

.p-feature-image {
  position: relative;
  display: block;
  margin: 0 auto;
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .p-feature-image {
    margin: 0 auto;
  }
}

/* ==================== main ==================== */
.main {
  position: relative;
}
.p-main {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-main::before, .p-main::after {
    content: "";
    display: block;
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    z-index: -1;
  }
}

@media screen and (max-width: 768px) {
  .p-main-inner {
    max-width: 500px;
    margin: 0 auto;
  }
}

.section {
  position: relative;
}
.section-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0px 0px;
  width: 95%;
}
@media screen and (max-width: 768px) {
  .section-inner {
    width: 100%;
    padding: 20px 0 0;
  }
}

.section-introduction .section-inner {
  width: 100%;
}

.p-titlearea {
  color: #fff;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  border-bottom: solid 3px #fff;
  width: 98%;
  max-width: 1000px;
  margin: 0 auto 23px;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-titlearea {
    font-size: 2.2rem;
    width: 94.6%;
  }
}

.p-btn__wrap {
  max-width: 451px;
  margin: 0 auto 62px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-btn__wrap {
    max-width: 355px;
    margin-bottom: 41px;
  }
}
.p-btn__item {
  background-color: #7FB45A;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.4s ease;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 16px 0;
  border-radius: 30px;
  border: solid 2px #7FB45A;
  width: 206px;
  text-decoration: none;
  transition: 0.6s ease;
}
@media screen and (max-width: 768px) {
  .p-btn__item {
    padding: 12px 0;
    width: 166px;
  }
}
.p-btn__item a {
  color: var(--color-green);
  font-weight: 700;
  font-size: clamp(1rem, 0.902vw, 1.3rem);
  text-decoration: none;
}
.p-btn__item:hover {
  color: #7FB45A;
  background-color: #fff;
  border: solid 2px #7FB45A;
}

.p-introduction__copy {
  max-width: 1000px;
  margin: 0 auto 60px;
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  border-top: solid 4px #FF0000;
  border-bottom: solid 4px #FF0000;
  background-color: #fff;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .p-introduction__copy {
    padding: 20px 6vw 21px 7vw;
    margin-bottom: 40px;
  }
}
.p-introduction__copy p {
  font-size: clamp(2rem, 1.7vw, 2.4rem);
  line-height: 1.45em;
  font-weight: 500;
  color: #FF0000;
  max-width: 812px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-introduction__copy p {
    font-size: 1.8rem;
    line-height: 1.5em;
    text-align: start;
  }
}
.p-introduction__passport {
  background-color: #D42C35;
  color: #fff;
  width: 98%;
  max-width: 1200px;
  border-radius: 4px;
  margin: 0 auto 20px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.7em;
  text-align: center;
  padding: 13px 0;
}
@media screen and (max-width: 768px) {
  .p-introduction__passport {
    width: 94.6%;
    font-size: 1.6rem;
    line-height: 1.43em;
  }
}
.p-introduction__passport .yello {
  color: #F3DF86;
}
@media screen and (max-width: 768px) {
  .p-introduction__passport .spmb-9 {
    display: block;
    margin-bottom: -9px;
  }
}
