@charset "UTF-8";
/*---------------------------------------------
カスタムプロパティ
---------------------------------------------*/
:root {
  --color-black: #333333;
  --color-white: #ffffff;
  --color-gray: #6f6e6f;
  --color-main: #e9e2d7;
  --color-base:#f8f2f2;
  --color-accent:#ac905e;
}

/*---------------------------------------------
メディアクエリ
---------------------------------------------*/
@media print, screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}

/*---------------------------------------------
リセット
---------------------------------------------*/
/*  ボックスサイジングとルートスタイル */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: smooth;
  }
}
/*  Bodyと基本タイポグラフィ ========================================= */
body {
  margin: 0;
  min-height: 100%;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
@media print, screen and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

/* レイアウトとメディア */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/*  タイポグラフィリセット ========================================= */
p,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  overflow-wrap: break-word;
}

/* リストリセット ========================================= */
ul,
ol {
  padding: 0;
  list-style: none;
}

/*  リンクと水平線（hr）のリセット */
a {
  color: inherit;
  text-decoration: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

/* フォーム要素のリセット */
button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: transparent;
  border: 1px solid transparent;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

::-moz-placeholder {
  opacity: 1;
  color: #9ca3af;
}

:-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

::-ms-input-placeholder {
  opacity: 1;
  color: #9ca3af;
}

::placeholder {
  opacity: 1;
  color: #9ca3af;
}

/* アクセシビリティとフォーカススタイル */
:focus-visible {
  outline: 2px solid var(--focus-color, #3b82f6);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*---------------------------------------------
　font
---------------------------------------------*/
@font-face {
  font-family: "ShipporiMincho";
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/ShipporiMincho-OTF-ExtraBold.woff2") format("woff2"), url("../fonts/ShipporiMincho-OTF-ExtraBold.woff") format("woff");
}
@font-face {
  font-family: "ShipporiMincho";
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ShipporiMincho-OTF-Bold.woff2") format("woff2"), url("../fonts/ShipporiMincho-OTF-Bold.woff") format("woff");
}
@font-face {
  font-family: "ShipporiMincho";
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/ShipporiMincho-OTF-SemiBold.woff2") format("woff2"), url("../fonts/ShipporiMincho-OTF-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "ShipporiMincho";
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ShipporiMincho-OTF-Medium.woff2") format("woff2"), url("../fonts/ShipporiMincho-OTF-Medium.woff") format("woff");
}
@font-face {
  font-family: "ShipporiMincho";
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/ShipporiMincho-OTF-Regular.woff2") format("woff2"), url("../fonts/ShipporiMincho-OTF-Regular.woff") format("woff");
}
/*---------------------------------------------
初期設定
---------------------------------------------*/
html {
  font-family: "ShipporiMincho", serif;
  font-weight: 400;
}

body {
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  line-height: 1.875;
  position: relative;
}

img {
  vertical-align: bottom;
}

/*---------------------------------------------
ユーティリティ
---------------------------------------------*/
.u-nowrap {
  white-space: nowrap;
}

/*---------------------------------------------
アニメーション
---------------------------------------------*/
[data-anime=fadeUp] {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  -webkit-transition: 1s ease transform, 1s ease opacity;
  transition: 1s ease transform, 1s ease opacity;
}

[data-anime=fadeUp].is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

[data-anime=slideRight] {
  opacity: 0;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: 0.5s ease transform, 0.5s ease opacity;
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideRight].is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=slideLeft] {
  opacity: 0;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.5s ease transform, 0.5s ease opacity;
  transition: 0.5s ease transform, 0.5s ease opacity;
}

[data-anime=slideLeft].is-active {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

[data-anime=underLine] {
  padding-bottom: 0.25em;
  background-image: -webkit-gradient(linear, left top, right top, from(var(--color-main)), to(var(--color-main)));
  background-image: linear-gradient(90deg, var(--color-main), var(--color-main));
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 0 0.75em;
  -webkit-transition: background-size 0.7s ease-in;
  transition: background-size 0.7s ease-in;
}

[data-anime=underLine].is-active {
  background-size: 100% 0.75em;
}

/*---------------------------------------------
btn
---------------------------------------------*/
.m-btn {
  position: relative;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 999px;
}
.m-btn::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -120%;
  width: 50%;
  height: 200%;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transition: none;
  transition: none;
}
.m-btn:hover::before, .m-btn:active::before {
  left: 150%;
  -webkit-transition: all 0.6s ease;
  transition: all 0.6s ease;
}

a {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
a:hover, a:active {
  -webkit-filter: brightness(1.1);
          filter: brightness(1.1);
}

/*---------------------------------------------
矢印
---------------------------------------------*/
/* 矢印のデザイン */
.m-arrow {
  position: relative;
  width: 20px;
  height: 80px;
  margin: 0 auto;
}
@media print, screen and (min-width: 768px) {
  .m-arrow {
    height: 130px;
  }
}

.m-arrow-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px; /* 線の太さ */
  background-color: #333;
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-animation: extendLine 3s ease-in-out infinite;
          animation: extendLine 3s ease-in-out infinite;
}

.m-arrow-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 2px;
  height: 20px;
  background-color: #333;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
  opacity: 0;
  -webkit-animation: showHead 3s ease-in-out infinite;
          animation: showHead 3s ease-in-out infinite;
}

@-webkit-keyframes extendLine {
  0% {
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 80% {
    height: 100%;
    opacity: 1;
  }
  90%, 100% {
    height: 100%;
    opacity: 0;
  }
}

@keyframes extendLine {
  0% {
    height: 0;
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 80% {
    height: 100%;
    opacity: 1;
  }
  90%, 100% {
    height: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes showHead {
  0%, 45% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  60%, 80% {
    opacity: 1;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  90%, 100% {
    opacity: 0;
  }
}
@keyframes showHead {
  0%, 45% {
    opacity: 0;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  60%, 80% {
    opacity: 1;
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  90%, 100% {
    opacity: 0;
  }
}
/*---------------------------------------------
円
---------------------------------------------*/
.m-circle {
  border-radius: 999px;
  position: relative;
}
.m-circle::after {
  content: "";
  display: block;
  padding-top: 100%;
}
.m-circle .m-circle-in {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}

/*---------------------------------------------
common
---------------------------------------------*/
main {
  background-color: var(--color-base);
}
@media print, screen and (min-width: 768px) {
  main {
    min-width: 1160px;
    overflow: hidden;
  }
}

.l-container {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .l-container {
    width: 1160px;
    padding-left: 80px;
    padding-right: 80px;
  }
}

.l-inner {
  position: relative;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.l-inner_narrow {
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* flex */
.-fbox_pc {
  display: block;
}
@media print, screen and (min-width: 768px) {
  .-fbox_pc {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.-fbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/*---------------------------------------------
文字
---------------------------------------------*/
/* letterspace/line-hight */
h1,
h2,
h3,
h4,
h5 {
  line-height: 1.4;
  letter-spacing: 0.02em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
}

p {
  font-size: clamp(15px, 2.34375vw, 18px);
  line-height: 1.8;
  letter-spacing: 0.08em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-black);
}

.kerning {
  letter-spacing: -0.1em;
}

/*---------------------------------------------
header
---------------------------------------------*/
/*---------------------------------------------
footer
---------------------------------------------*/
footer {
  background-color: #beb8ac;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  padding-top: 5.2083333333vw;
  padding-bottom: 2.6041666667vw;
}
@media print, screen and (min-width: 768px) {
  footer {
    padding-top: 40px;
    padding-bottom: 20px;
  }
}
@media print, screen and (min-width: 768px) {
  footer .-nav {
    width: 367px;
    margin-left: auto;
    margin-right: auto;
  }
}
footer .-nav li {
  text-align: center;
}
footer .-nav li a {
  font-size: 13px;
  color: #ffffff;
}
@media print, screen and (min-width: 768px) {
  footer .-nav li a {
    font-size: 14px;
  }
}
footer .-txt {
  color: #ffffff;
  text-align: center;
  margin-top: 2em;
  font-size: 12px;
  color: #ffffff;
}
@media print, screen and (min-width: 768px) {
  footer .-txt {
    font-size: 14px;
  }
}

/*---------------------------------------------
p-ttl
---------------------------------------------*/
.p-ttl {
  font-size: clamp(18px, 7.0796460177vw, 48px);
  text-align: center;
  font-weight: 600;
}

/*---------------------------------------------
p-hero
---------------------------------------------*/
.p-hero .l-container {
  padding: 0;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-hero .l-container::before, .p-hero .l-container::after {
    content: "";
    width: calc(50vw - 50%);
    background-color: #000;
    height: 100%;
    background: url(../img/kv_pc_both.webp) no-repeat;
    background-size: auto 100%;
    position: absolute;
    bottom: 0;
  }
  .p-hero .l-container::before {
    background-position: right center;
    left: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .p-hero .l-container::after {
    background-position: left center;
    right: 0;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.p-hero .-btn-wrap {
  width: 95%;
  position: absolute;
  left: 50%;
  bottom: 1%;
  border-radius: 999px;
  overflow: hidden;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media print, screen and (min-width: 768px) {
  .p-hero .-btn-wrap {
    width: 680px;
    bottom: 24px;
  }
}

/*---------------------------------------------
p-problem
---------------------------------------------*/
.p-problem {
  background: url(../img/problem_bg.webp);
  background-size: cover;
  clip-path: polygon(0% 0%, 0% 90%, 50% 100%, 100% 90%, 100% 0%);
  padding-top: 7.8125vw;
  padding-bottom: 15.625vw;
  position: relative;
  z-index: 40;
}
@media print, screen and (min-width: 768px) {
  .p-problem {
    clip-path: polygon(0% 0%, 0% 80%, 50% 100%, 100% 80%, 100% 0%);
    padding-top: 60px;
    padding-bottom: 120px;
  }
}
.p-problem .-img-wrap {
  position: relative;
  z-index: 30;
}
.p-problem .-txt-wrap {
  position: relative;
  z-index: 40;
  margin-top: -7.8125vw;
}
@media print, screen and (min-width: 768px) {
  .p-problem .-txt-wrap {
    margin-top: -90px;
  }
}
.p-problem .-txt-wrap .-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.p-problem .-txt-wrap .-ttl .-big {
  font-size: 1.2em;
}
.p-problem .-txt-wrap .-ttl .-item {
  background: url(../img/underline_wave.png) no-repeat;
  background-position: bottom;
  background-size: 100% auto;
  padding-bottom: 0.25em;
}
@media print, screen and (min-width: 768px) {
  .p-problem .-txt-wrap .-ttl .-item {
    padding-bottom: 0.5em;
  }
}
.p-problem .-txt-wrap .-lead {
  text-align: center;
  font-size: clamp(15px, 3.3854166667vw, 26px);
  margin-top: 1em;
}

.p-problem_shadow {
  position: relative;
  -webkit-filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3803921569));
          filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.3803921569));
  padding-bottom: 6px;
}
@media print, screen and (min-width: 768px) {
  .p-problem_shadow {
    -webkit-filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3803921569));
            filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.3803921569));
    padding-bottom: 12px;
  }
}

/*---------------------------------------------
p-comment
---------------------------------------------*/
.p-comment {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 242, 242)), color-stop(20%, rgba(248, 242, 242, 0.5)), to(rgba(248, 242, 242, 0))), url(../img/coment_bg.webp) no-repeat;
  background: linear-gradient(180deg, rgb(248, 242, 242) 0%, rgba(248, 242, 242, 0.5) 20%, rgba(248, 242, 242, 0) 100%), url(../img/coment_bg.webp) no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 16.9270833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-comment {
    padding-top: 130px;
  }
}
.p-comment .m-arrow {
  position: absolute;
  z-index: 70;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-comment .-content {
  position: relative;
  padding-bottom: 58vw;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content {
    padding-bottom: 160px;
    width: 1160px;
    margin-left: -80px;
    margin-right: -80px;
  }
}
.p-comment .-content .-box_wrap {
  position: relative;
  z-index: 40;
  margin-top: 9.1145833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-box_wrap {
    margin-top: 70px;
  }
}
.p-comment .-content .-box_wrap .-box {
  width: 90%;
  padding: 5.2083333333vw 9.1145833333vw;
  background-color: #fff;
  border: thin solid var(--color-accent);
  border-radius: 999px;
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
          box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
  position: relative;
  z-index: 40;
  margin-bottom: 3.90625vw;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-box_wrap .-box {
    -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
            box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
    padding: 0;
    width: 800px;
    height: 280px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px;
  }
}
.p-comment .-content .-box_wrap .-box:nth-of-type(2) {
  margin-left: auto;
  margin-right: 0;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-box_wrap .-box:nth-of-type(2) {
    margin-left: 90px;
    margin-right: auto;
  }
}
.p-comment .-content .-box_wrap .-box:last-of-type {
  margin-bottom: 0;
}
.p-comment .-content .-box_wrap .-box .-txt {
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  line-height: 1.5;
  font-size: max(15px, 4.1666666667vw);
  color: var(--color-accent);
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-box_wrap .-box .-txt {
    font-size: 38px;
    width: 628px;
  }
}
.p-comment .-content .-box_wrap .-box .-txt .-item {
  display: block;
  color: var(--color-black);
  font-weight: 400;
  font-size: 0.6em;
  text-align: right;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-box_wrap .-box .-txt .-item {
    position: absolute;
    right: 0;
  }
}
.p-comment .-content .-mainimg {
  width: 100vw;
  position: absolute;
  right: calc((50vw - 50%) * -1);
  bottom: 0;
  z-index: 50;
  max-width: none;
}
@media print, screen and (min-width: 768px) {
  .p-comment .-content .-mainimg {
    width: 1200px;
    right: -200px;
    z-index: 30;
  }
}

/*---------------------------------------------
p-reason
---------------------------------------------*/
.p-reason {
  background-color: var(--color-base);
  padding-top: 13.0208333333vw;
  padding-bottom: 13.0208333333vw;
}
@media print, screen and (min-width: 768px) {
  .p-reason {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
.p-reason .-ttl .-item {
  background-color: #fff;
  color: var(--color-accent);
  padding: 0.25em;
  margin-left: 0.25em;
  margin-right: 0.25em;
}
.p-reason .-box {
  position: relative;
  width: calc(100% + 20px);
  margin-left: -10px;
  margin-right: -10px;
  background-color: #fff;
  background: url(../img/reason_box_top.webp) no-repeat, url(../img/reason_box_bottom.webp) no-repeat, url(../img/reason_box_center.webp) repeat-y;
  background-size: 100% auto;
  background-position: top, bottom, center;
  margin-top: 3.6458333333vw;
  padding: 2em 2.5em;
}
@media print, screen and (min-width: 768px) {
  .p-reason .-box {
    margin-top: 28px;
    padding: 46px 100px;
  }
}
.p-reason .-box .-txt-wrap {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .p-reason .-box .-txt-wrap {
    width: 500px;
  }
}
.p-reason .-box .-txt-wrap .-ttl {
  font-size: clamp(15px, 3.6458333333vw, 28px);
  line-height: 1.8;
}
.p-reason .-box .-txt-wrap .-ttl .u-underline {
  font-size: 1.2em;
}
.p-reason .-box .-txt-wrap .-txt {
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-reason .-box .-txt-wrap .-txt {
    padding-right: 2em;
  }
}
.p-reason .-box .-img-wrap {
  text-align: center;
  width: 100%;
  max-width: 370px;
  margin: 1em auto 0 auto;
}
@media print, screen and (min-width: 768px) {
  .p-reason .-box .-img-wrap {
    margin: 0;
    position: absolute;
    right: 46px;
    top: -10px;
  }
}
.p-reason .-box .-img-wrap img {
  width: 70%;
  margin: 0 auto;
}
.p-reason .-box .-img-wrap .-txt {
  line-height: 1.3;
  font-size: clamp(15px, 2.6041666667vw, 20px);
}
.p-reason .-box .-img-wrap .-txt_01 {
  margin-top: 1.25em;
}
.p-reason .-box .-img-wrap .-txt_02 {
  margin-top: 1em;
}
.p-reason .-box .-img-wrap .-txt_02 .-item {
  font-size: 1.5em;
}
.p-reason .-video-wrap {
  background-color: #fff;
  border: thin solid #707070;
  max-width: 800px;
  padding: 10px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 9.1145833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-reason .-video-wrap {
    margin-top: 70px;
  }
}
.p-reason .-video-wrap iframe {
  display: block;
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

/*---------------------------------------------
p-point
---------------------------------------------*/
.p-point {
  background-color: #ffffff;
  padding-top: 17.4479166667vw;
  padding-bottom: 20.8333333333vw;
}
@media print, screen and (min-width: 768px) {
  .p-point {
    padding-top: 134px;
    padding-bottom: 160px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-point .-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
.p-point .-ttl {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.p-point .-box {
  margin-top: 15.625vw;
}
@media print, screen and (min-width: 768px) {
  .p-point .-box {
    margin-top: 120px;
  }
}
@media print, screen and (min-width: 768px) {
  .p-point .-box:nth-of-type(2) .-fbox_pc {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .p-point .-box:nth-of-type(2) .-fbox_pc .-txt-wrap .-ttl_02 {
    white-space: nowrap;
  }
}
@media print, screen and (min-width: 768px) {
  .p-point .-box:nth-of-type(3) .-fbox_pc {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
.p-point .-item_wrap {
  background: url(../img/point_bk.webp) repeat-x;
  background-size: auto 100%;
}
.p-point .-item_wrap .-item {
  width: 50%;
  max-width: 250px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 10.4166666667vw;
}
@media print, screen and (min-width: 768px) {
  .p-point .-item_wrap .-item {
    margin-bottom: 80px;
  }
}
.p-point .-img-wrap {
  width: 100%;
  margin-bottom: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .p-point .-img-wrap {
    width: 360px;
  }
}
.p-point .-txt-wrap {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .p-point .-txt-wrap {
    width: 490px;
  }
}
.p-point .-txt-wrap .-ttl_01 {
  font-size: clamp(32px, 9.1145833333vw, 70px);
  font-weight: 600;
  color: var(--color-accent);
  text-align: center;
  margin-bottom: 6.5104166667vw;
}
@media print, screen and (min-width: 768px) {
  .p-point .-txt-wrap .-ttl_01 {
    margin-bottom: 50px;
  }
}
.p-point .-txt-wrap .-ttl_02 {
  font-size: clamp(18px, 4.1666666667vw, 32px);
  font-weight: 600;
}
.p-point .-txt-wrap .-txt {
  margin-top: 2em;
}

/*---------------------------------------------
p-table
---------------------------------------------*/
.p-table {
  background-color: #ffffff;
  padding-bottom: calc(19.53125vw + 50px);
}
@media print, screen and (min-width: 768px) {
  .p-table {
    padding-bottom: 250px;
  }
}
.p-table .-ttl {
  font-size: clamp(18px, 5.2083333333vw, 40px);
  text-align: center;
  font-weight: 600;
  margin-bottom: 9.1145833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-table .-ttl {
    margin-bottom: 70px;
  }
}
.p-table .-ttl .-item {
  color: var(--color-accent);
}
.p-table .-table_wrap {
  overflow: auto;
  padding-top: 14px;
  -webkit-overflow-scrolling: touch;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-table .-table_wrap {
    padding-top: 18px;
  }
}
.p-table table {
  position: relative;
  border-collapse: collapse;
  width: 620px;
  border: solid thin #beb8ac;
}
@media print, screen and (min-width: 768px) {
  .p-table table {
    width: 100%;
  }
}
.p-table table td, .p-table table th {
  font-size: clamp(14px, 2.3289665211vw, 15px);
  line-height: 1.3;
  text-align: center;
  color: #6f6e6f;
  position: relative;
  z-index: 30;
  padding: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .p-table table td, .p-table table th {
    height: 80px;
  }
}
.p-table table td {
  font-weight: 600;
}
.p-table table th {
  font-weight: 700;
}
.p-table table tr:nth-child(even) th,
.p-table table tr:nth-child(even) td {
  background-color: #f5f5f5;
}
.p-table table tr:nth-child(2n+1) th,
.p-table table tr:nth-child(2n+1) td {
  background-color: #ffffff;
}
.p-table table tr:first-child > th {
  background-color: #beb8ac;
  color: #ffffff;
}
.p-table table tr:first-child > th:not(:nth-child(2)) {
  width: 94px;
}
@media print, screen and (min-width: 768px) {
  .p-table table tr:first-child > th:not(:nth-child(2)) {
    width: 140px;
  }
}
.p-table table tr:first-child > th:nth-child(1) {
  width: 40px;
}
@media print, screen and (min-width: 768px) {
  .p-table table tr:first-child > th:nth-child(1) {
    width: 120px;
  }
}
.p-table table tr:first-child > th:nth-child(2) {
  color: var(--color-accent);
  font-size: 1.1em;
  font-weight: 700;
  width: 110px;
  z-index: 80;
}
@media print, screen and (min-width: 768px) {
  .p-table table tr:first-child > th:nth-child(2) {
    width: 160px;
    font-size: 1.2em;
  }
}
.p-table table tr:first-child > th:nth-child(2)::after {
  content: "";
  clip-path: polygon(100% 102px, 50% 100%, 0% 102px, 0% 0%, 100% 0%);
  width: 100%;
  height: calc(100% + 18px);
  background-color: var(--color-accent);
  position: absolute;
  left: 0;
  top: -8px;
  z-index: 70;
}
@media print, screen and (min-width: 768px) {
  .p-table table tr:first-child > th:nth-child(2)::after {
    clip-path: polygon(100% 98px, 50% 100%, 0% 98px, 0% 0%, 100% 0%);
    height: calc(100% + 32px);
    top: -18px;
  }
}
.p-table table tr:first-child > th:nth-child(2)::before {
  content: "";
  clip-path: polygon(100% 90px, 50% 100%, 0% 90px, 0% 0%, 100% 0%);
  width: calc(100% - 4px);
  height: calc(100% + 14px);
  background-color: #ffffff;
  position: absolute;
  left: 2px;
  top: -6px;
  z-index: 80;
}
@media print, screen and (min-width: 768px) {
  .p-table table tr:first-child > th:nth-child(2)::before {
    clip-path: polygon(100% 98px, 50% 100%, 0% 98px, 0% 0%, 100% 0%);
    height: calc(100% + 34px);
    top: -16px;
  }
}
.p-table table tr:first-child > th:nth-child(2) .-item {
  position: relative;
  z-index: 90;
}
.p-table table .-entry {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media print, screen and (min-width: 768px) {
  .p-table table .-entry {
    -webkit-writing-mode: unset;
        -ms-writing-mode: unset;
            writing-mode: unset;
  }
}
.p-table table tr:last-child > td {
  text-align: left;
  font-size: clamp(14px, 2.3289665211vw, 15px);
  letter-spacing: 0;
}
.p-table table td:nth-child(2) {
  background: var(--color-accent) !important;
  color: #fff;
  font-weight: 700;
}
.p-table table .doblecircle_w {
  background: url(../img/table_doblecircle_w.webp) no-repeat;
}
.p-table table .doblecircle {
  background: url(../img/table_doblecircle.webp) no-repeat;
}
.p-table table .circle {
  background: url(../img/table_circle.webp) no-repeat;
}
.p-table table .triangle {
  background: url(../img/table_triangle.webp) no-repeat;
}
.p-table table .cross {
  background: url(../img/table_cross.webp) no-repeat;
}
.p-table table .doblecircle_w,
.p-table table .doblecircle,
.p-table table .circle,
.p-table table .triangle,
.p-table table .cross {
  display: inline-block;
  width: 18px;
  height: 18px;
  color: transparent;
  background-size: contain;
}
@media print, screen and (min-width: 768px) {
  .p-table table .doblecircle_w,
  .p-table table .doblecircle,
  .p-table table .circle,
  .p-table table .triangle,
  .p-table table .cross {
    width: 28px;
    height: 28px;
  }
}
.p-table table .sticky {
  position: sticky;
  left: 0;
  z-index: 60;
}
.p-table table .sticky::before {
  content: "";
  width: 1px;
  height: 100%;
  background-color: #beb8ac;
  position: absolute;
  left: -1px;
  top: 0;
}
.p-table table .sticky_row2 {
  position: sticky;
  left: 40px;
  z-index: 60;
}

/*---------------------------------------------
p-voice
---------------------------------------------*/
.p-voice {
  padding-top: 10.4166666667vw;
  padding-bottom: 4.1666666667vw;
  background-color: transparent;
  position: relative;
}
@media print, screen and (min-width: 768px) {
  .p-voice {
    padding-top: 80px;
    padding-bottom: 32px;
  }
}
.p-voice::before, .p-voice::after {
  content: "";
  width: 100%;
  height: calc(100% + 100px);
  position: absolute;
  left: 0;
  top: -50px;
}
@media print, screen and (min-width: 768px) {
  .p-voice::before, .p-voice::after {
    height: calc(100% + 200px);
    top: -100px;
  }
}
.p-voice::before {
  clip-path: polygon(100% 50px, 100% 100%, 0% calc(100% - 50px), 0% 0%);
  background-color: var(--color-main);
  z-index: 30;
}
@media print, screen and (min-width: 768px) {
  .p-voice::before {
    clip-path: polygon(100% 100px, 100% 100%, 0% calc(100% - 100px), 0% 0%);
  }
}
.p-voice::after {
  clip-path: polygon(100% 0%, 100% calc(100% - 50px), 0% 100%, 0% 50px);
  background-color: var(--color-base);
  z-index: 40;
}
@media print, screen and (min-width: 768px) {
  .p-voice::after {
    clip-path: polygon(100% 0%, 100% calc(100% - 100px), 0% 100%, 0% 100px);
  }
}
.p-voice .l-container {
  position: relative;
  z-index: 50;
}
@media print, screen and (min-width: 768px) {
  .p-voice .-ttl-wrap.-fbox_pc {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-voice .-ttl-wrap.-fbox_pc .-img-wrap {
  width: 50%;
  max-width: 370px;
  margin-left: auto;
  margin-right: auto;
}
@media print, screen and (min-width: 768px) {
  .p-voice .-ttl-wrap.-fbox_pc .-img-wrap {
    margin-left: 50px;
    margin-right: 0;
  }
}
.p-voice .-ttl-wrap.-fbox_pc .-ttl {
  text-align: center;
  font-size: clamp(18px, 7.0796460177vw, 50px);
  font-weight: 600;
}
.p-voice .-ttl-wrap.-fbox_pc .-ttl .-item {
  font-size: 1.7em;
}
.p-voice .-lead {
  font-size: clamp(16px, 4.1666666667vw, 32px);
  text-align: center;
  font-weight: 600;
  margin: 13.0208333333vw auto;
}
@media print, screen and (min-width: 768px) {
  .p-voice .-lead {
    margin: 100px auto;
  }
}
.p-voice .-box {
  background-color: #fff;
  margin-bottom: 9.765625vw;
  padding: 2em 1em 2em 1em;
}
@media print, screen and (min-width: 768px) {
  .p-voice .-box {
    margin-bottom: 75px;
    padding: 2em 0 4em 0;
  }
}
.p-voice .-box:last-of-type {
  margin-bottom: 0;
}
.p-voice .-box .-img-wrap {
  width: 100%;
}
.p-voice .-box .-txt {
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-voice .-box .-txt {
    padding-left: 2em;
    padding-right: 2em;
  }
}

/*---------------------------------------------
p-feature
---------------------------------------------*/
.p-feature {
  background-color: #fff;
  padding-top: calc(19.53125vw + 50px);
  padding-bottom: 23.4375vw;
}
@media print, screen and (min-width: 768px) {
  .p-feature {
    padding-top: 250px;
    padding-bottom: 180px;
  }
}
.p-feature .-ttl_01 {
  color: var(--color-accent);
  margin-bottom: 11.71875vw;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-ttl_01 {
    margin-bottom: 90px;
  }
}
.p-feature .-fbox_pc {
  position: relative;
  margin-bottom: 13.0208333333vw;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-fbox_pc {
    margin-bottom: 100px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-feature .-fbox_pc:nth-of-type(2) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.p-feature .-fbox_pc::last-of-type {
  margin-bottom: 0;
}
.p-feature .-fbox_pc .-txt-wrap {
  position: relative;
  z-index: 50;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-fbox_pc .-txt-wrap {
    width: 320px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.p-feature .-fbox_pc .-txt-wrap .-ttl_02 {
  font-size: clamp(18px, 4.1666666667vw, 32px);
  font-weight: 600;
  line-height: 1.2;
  margin-top: 0.5em;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-fbox_pc .-txt-wrap .-ttl_02 {
    white-space: nowrap;
  }
}
.p-feature .-fbox_pc .-txt-wrap .-txt {
  margin-bottom: 1em;
  margin-top: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-fbox_pc .-txt-wrap .-txt {
    margin-bottom: 0;
  }
}
.p-feature .-fbox_pc .-img-wrap {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  z-index: 40;
}
@media print, screen and (min-width: 768px) {
  .p-feature .-fbox_pc .-img-wrap {
    width: 480px;
    margin-left: 0;
    margin-right: 0;
  }
}

/*---------------------------------------------
p-flow
---------------------------------------------*/
.p-flow {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(248, 242, 242)), color-stop(10%, rgba(248, 242, 242, 0.5)), to(rgba(248, 242, 242, 0))), url(../img/flow_bg.webp) no-repeat;
  background: linear-gradient(180deg, rgb(248, 242, 242) 0%, rgba(248, 242, 242, 0.5) 10%, rgba(248, 242, 242, 0) 100%), url(../img/flow_bg.webp) no-repeat;
  background-size: cover;
  background-position: center top;
  padding-top: 16.9270833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-flow {
    padding-top: 130px;
  }
}
.p-flow .-item_wrap {
  background: url(../img/flow_bk.webp) repeat-x;
  background-size: auto 100%;
}
.p-flow .-item_wrap .-item {
  width: 50%;
  max-width: 180px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7.8125vw;
}
@media print, screen and (min-width: 768px) {
  .p-flow .-item_wrap .-item {
    margin-bottom: 60px;
  }
}
.p-flow .-ttl_01 {
  margin-bottom: 7.8125vw;
}
@media print, screen and (min-width: 768px) {
  .p-flow .-ttl_01 {
    margin-bottom: 60px;
  }
}
.p-flow .-box.-fbox_pc {
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
          box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
  background-color: #ffffff;
  position: relative;
  margin-bottom: 4.7197640118vw;
}
@media print, screen and (min-width: 768px) {
  .p-flow .-box.-fbox_pc {
    -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
            box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 32px;
  }
}
.p-flow .-box.-fbox_pc:last-of-type {
  margin-bottom: 0;
}
.p-flow .-box.-fbox_pc .-no {
  position: absolute;
  background-color: var(--color-accent);
  color: #ffffff;
  border-radius: 0 100px 100px 0;
  padding: 0.25em 1em;
  line-height: 1;
  letter-spacing: 0;
  font-size: clamp(16px, 4.1666666667vw, 32px);
  font-weight: 600;
  left: 0;
  top: 0.5em;
  z-index: 40;
}
.p-flow .-box.-fbox_pc .-no .-item {
  font-size: 1.1em;
  margin-left: 0.25em;
}
.p-flow .-box.-fbox_pc .-img-wrap {
  width: 100%;
  position: relative;
  z-index: 30;
}
@media print, screen and (min-width: 768px) {
  .p-flow .-box.-fbox_pc .-img-wrap {
    width: 310px;
    padding: 1em;
  }
}
.p-flow .-box.-fbox_pc .-txt-wrap {
  padding: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-flow .-box.-fbox_pc .-txt-wrap {
    width: 490px;
    padding: 1em 1em 1em 2em;
    margin-top: 70px;
  }
}
.p-flow .-box.-fbox_pc .-txt-wrap .-ttl_02 {
  font-size: clamp(18px, 4.1666666667vw, 32px);
  font-weight: 600;
  color: var(--color-accent);
  line-height: 1.2;
}
.p-flow .-box.-fbox_pc .-txt-wrap .-txt {
  margin-top: 0.5em;
  line-height: 1.5;
}
.p-flow .separator {
  margin-top: 16.9270833333vw;
}
@media print, screen and (min-width: 768px) {
  .p-flow .separator {
    margin-top: 130px;
  }
}
.p-flow .separator {
  overflow: hidden;
}
.p-flow .separator .separator_in {
  position: relative;
  background-color: #fff;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  height: 30vw;
  margin-left: -200px;
  margin-right: -200px;
  padding-left: 200px;
  padding-right: 200px;
}
.p-flow .separator .separator_in::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 0;
  border-top-left-radius: 50% 100%;
  border-top-right-radius: 50% 100%;
  border-top: 1px solid var(--color-accent);
  pointer-events: none;
}

/*---------------------------------------------
p-qa
---------------------------------------------*/
.p-qa {
  background-color: #fff;
  margin-top: -20vw;
  padding-bottom: 28.6458333333vw;
}
@media print, screen and (min-width: 768px) {
  .p-qa {
    padding-bottom: 220px;
  }
}
.p-qa .-ttl_01 {
  color: var(--color-accent);
  margin-bottom: 5.2083333333vw;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-ttl_01 {
    margin-bottom: 40px;
  }
}
.p-qa .-ttl_01 .-item {
  font-size: 0.6em;
}
.p-qa .-wrap .-ttl-wrap {
  color: #ffffff;
  background-color: var(--color-accent);
  margin-top: 3.125vw;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  padding: 0.5em 35px;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .-ttl-wrap {
    margin-top: 24px;
    padding: 1em 50px;
  }
}
.p-qa .-wrap .-ttl-wrap::before {
  content: "Q";
  font-size: clamp(16px, 4.9479166667vw, 38px);
  display: block;
  position: absolute;
  line-height: 1;
  width: 20px;
  height: 20px;
  left: 5px;
  top: 8px;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .-ttl-wrap::before {
    width: 50px;
    height: 50px;
    left: 10px;
    top: 14px;
  }
}
.p-qa .-wrap .-ttl-wrap::after {
  content: "";
  display: block;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 10px;
  height: 10px;
  right: 10px;
  top: 15px;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .-ttl-wrap::after {
    width: 14px;
    height: 14px;
    right: 25px;
    top: 25px;
  }
}
.p-qa .-wrap .-ttl-wrap .-ttl_02 {
  color: #ffffff;
  font-size: clamp(15px, 3.2552083333vw, 25px);
}
.p-qa .-wrap .-txt-wrap {
  overflow: hidden;
  padding-left: 30px;
  padding-right: 30px;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .-txt-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.p-qa .-wrap .js-open.is-open::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  top: 20px;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .js-open.is-open::after {
    top: 30px;
  }
}
.p-qa .-wrap .js-open-item {
  border-left: 2px solid var(--color-accent);
  border-right: 2px solid var(--color-accent);
  display: grid;
  grid-template-rows: 0fr;
  -webkit-transition: grid-template-rows 0.2s ease;
  transition: grid-template-rows 0.2s ease;
  transition: grid-template-rows 0.2s ease, -ms-grid-rows 0.2s ease;
}
.p-qa .-wrap .js-open-item .-txt {
  min-height: 0;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}
.p-qa .-wrap .js-open-item.is-open {
  border-top: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  grid-template-rows: 1fr;
  padding-top: 1em;
  padding-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-qa .-wrap .js-open-item.is-open {
    padding-top: 2em;
    padding-bottom: 2em;
  }
}
.p-qa .-wrap .js-open-item.is-open .-txt {
  opacity: 1;
}

/*---------------------------------------------
p-offer
---------------------------------------------*/
.p-offer {
  background-color: #fff;
  padding-bottom: 22.1354166667vw;
}
@media print, screen and (min-width: 768px) {
  .p-offer {
    padding-bottom: 170px;
  }
}
.p-offer .-ttl-wrap {
  text-align: left;
}
.p-offer .-ttl-wrap .-ttl_01 {
  text-align: left;
}
.p-offer .-mainimg {
  width: 100vw;
  margin-top: -6vw;
  margin-left: -15px;
  margin-left: -15px;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-mainimg {
    width: 1370px;
    margin-top: -120px;
    margin-left: -105px;
    margin-left: -105px;
  }
}
.p-offer .-ttl_02 {
  font-size: clamp(16px, 4.8177083333vw, 37px);
  text-align: center;
  font-weight: 600;
}
.p-offer .-box_01 {
  position: relative;
  border: 2px solid var(--color-accent);
  padding-bottom: 1em;
  margin-bottom: 12.5vw;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_01 {
    border: 3px solid var(--color-accent);
    padding-bottom: 55px;
    margin-bottom: 96px;
  }
}
.p-offer .-box_01::before {
  content: "";
  border: 1px solid var(--color-accent);
  position: absolute;
  width: calc(100% + 16px);
  height: calc(100% + 16px);
  top: -8px;
  left: -8px;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_01::before {
    width: calc(100% + 32px);
    height: calc(100% + 32px);
    top: -16px;
    left: -16px;
  }
}
.p-offer .-box_01 .-img-wrap_01 {
  width: 90%;
  max-width: 660px;
  position: relative;
  top: -8px;
  left: -12px;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_01 .-img-wrap_01 {
    top: -10px;
    left: -80px;
  }
}
.p-offer .-box_01 .-ttl_02 {
  padding-left: 2em;
  padding-right: 2em;
  margin-bottom: 7.8125vw;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_01 .-ttl_02 {
    margin-bottom: 60px;
  }
}
.p-offer .-box_01 .-img-wrap_02 {
  width: 90%;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 7.1614583333vw;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_01 .-img-wrap_02 {
    margin-bottom: 55px;
  }
}
.p-offer .-box_01 .-btn-wrap {
  border-radius: 999px;
  overflow: hidden;
  width: 95%;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.p-offer .-box_02 {
  background-color: #f5f5f5;
  position: relative;
  outline: 1px solid var(--color-accent);
  outline-offset: -8px;
  padding: 2em 2em 1.5em 2em;
  -webkit-box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
          box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.3803921569);
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_02 {
    outline-offset: -16px;
    padding: 3em 5em 2em 5em;
    -webkit-box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
            box-shadow: 2px 3px 6px rgba(0, 0, 0, 0.3803921569);
  }
}
.p-offer .-box_02::before, .p-offer .-box_02::after {
  background-color: var(--color-accent);
  content: "";
  width: 25px;
  height: 25px;
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  .p-offer .-box_02::before, .p-offer .-box_02::after {
    width: 50px;
    height: 50px;
  }
}
.p-offer .-box_02::before {
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  left: 0;
  top: 0;
}
.p-offer .-box_02::after {
  clip-path: polygon(100% 100%, 100% 0%, 0% 100%);
  right: 0;
  bottom: 0;
}
.p-offer .-box_02 .-ttl_02 .-item {
  font-size: 2em;
  color: var(--color-accent);
}
.p-offer .-box_02 .-txt_01 {
  margin-top: 1em;
}
.p-offer .-box_02 .-txt_02 {
  font-size: 0.9em;
  margin-top: 2em;
  text-align: right;
}

/*---------------------------------------------
p-shoplist
---------------------------------------------*/
.p-shoplist {
  background-color: #ffffff;
  padding-bottom: 10.4166666667vw;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist {
    padding-bottom: 120px;
  }
}
.p-shoplist .-ttl-wrap_01 {
  background: url(../img/shoplist_bk.webp) repeat-x;
  background-size: auto 100%;
  margin-bottom: 3.90625vw;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-ttl-wrap_01 {
    margin-bottom: 30px;
  }
}
.p-shoplist .-ttl-wrap_01 .-ttl_01 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  margin: 0 auto;
  color: var(--color-accent);
  padding-left: 1em;
  padding-right: 1em;
}
.p-shoplist .-nav {
  gap: 16px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-nav {
    gap: 20px;
  }
}
.p-shoplist .-nav .-btn {
  border: 1px solid var(--color-accent);
  width: calc(50% - 8px);
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-nav .-btn {
    width: calc((100% - 40px) / 3);
  }
}
.p-shoplist .-nav .-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  line-height: 1.2;
  font-size: clamp(15px, 2.6041666667vw, 20px);
  color: var(--color-accent);
  font-weight: 700;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.p-shoplist .-nav .-btn a:hover, .p-shoplist .-nav .-btn a:active {
  background-color: var(--color-accent);
  color: #fff;
}
.p-shoplist .-ttl-wrap_02 {
  position: relative;
  margin-top: 19.53125vw;
  margin-bottom: 3.125vw;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-ttl-wrap_02 {
    margin-top: 150px;
    margin-bottom: 24px;
  }
}
.p-shoplist .-ttl-wrap_02::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 30;
}
.p-shoplist .-ttl-wrap_02 .-ttl_02 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ffffff;
  margin-left: 0;
  margin-right: auto;
  color: var(--color-accent);
  padding-left: 0;
  padding-right: 0.5em;
  position: relative;
  z-index: 40;
}
.p-shoplist .-fbox_pc {
  margin-bottom: 15.625vw;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-fbox_pc {
    margin-bottom: 120px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .p-shoplist .-fbox_pc:last-of-type {
    margin-bottom: 0;
  }
}
.p-shoplist .-fbox_pc .-img-wrap_02 {
  width: 100vw;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-fbox_pc .-img-wrap_02 {
    width: 400px;
    margin: 0;
  }
}
.p-shoplist .-fbox_pc .-txt-wrap .-txt_01 {
  font-weight: 600;
  font-size: 0.9em;
  line-height: 1.2;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-fbox_pc .-txt-wrap .-txt_01 {
    width: 360px;
  }
}
.p-shoplist .-fbox_pc .-txt-wrap .-ttl_03 {
  font-size: clamp(20px, 3.515625vw, 27px);
  font-weight: 700;
}
.p-shoplist .-fbox_pc .-txt-wrap .-txt_02 {
  margin-top: 1em;
  margin-bottom: 1em;
  font-size: 0.9em;
  line-height: 1.3;
}
.p-shoplist .-fbox_pc .-txt-wrap .-btn {
  display: block;
  width: 100%;
  background-color: var(--color-accent);
  color: #fff;
  text-align: center;
  font-size: 0.9em;
  font-weight: 700;
  line-height: 1;
  padding-top: 0.75em;
  padding-bottom: 0.75em;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border: 1px solid var(--color-accent);
}
.p-shoplist .-fbox_pc .-txt-wrap .-btn:hover, .p-shoplist .-fbox_pc .-txt-wrap .-btn:active {
  background-color: #ffffff;
  color: var(--color-accent);
}
.p-shoplist .-link {
  text-align: right;
}
.p-shoplist .-link a {
  font-size: 13px;
  color: var(--color-accent);
  text-decoration: underline;
}
@media print, screen and (min-width: 768px) {
  .p-shoplist .-link a {
    font-size: 14px;
  }
}