@charset "UTF-8";
:root {
  --color-black: #000;
  --color-link: #0071bc;
  --color-red: #e50000;
  --color-blue: #0071bc;
  --color-aqua: #65ffff;
  --btn-bg-gradient: linear-gradient(0deg, #d34304, #f16224, #f6a27d);
  --btn-bg-gradient-hover: linear-gradient(180deg, #f16224, #fd8754 60%, transparent);
  --btn-blue-bg-gradient: linear-gradient(0deg, #0071bc, #50b0cb);
  --btn-blue-bg-gradient-hover: linear-gradient(180deg, #50b0cb 60%, transparent);
  --bg-color: #f3ee29;
  --shadow: #f9cd38;
  --text-shadow: #c9a328;
}

/* ==========================================================================
   Reset
   ========================================================================== */
/* Initialize
   ========================================================================== */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strong, sub, sup, var,
b, u, i,
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, main,
menu, nav, output, ruby, section, summary, input, textarea,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

html {
  font-size: 0.625em;
  height: 100%;
  overflow-y: scroll;
}

body {
  color: var(--color-black);
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
}
body.is-fixed {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
}

button {
  font-family: "Noto Sans JP", "メイリオ", "Meiryo", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", sans-serif;
}

dd,
dt,
td,
th,
ol,
ul,
p {
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.5555555556;
}
@media screen and (max-width: 767px) {
  dd,
  dt,
  td,
  th,
  ol,
  ul,
  p {
    font-size: 3.2vw;
  }
}

td dl,
td ul,
td ol,
td td,
td th,
td p,
td li,
dd dd,
dd dt,
dd p,
dd li,
dd ul,
dd ol,
li th,
li td,
li table,
li dd,
li dt,
li ol,
li ul,
ol li,
ul li,
li p {
  font-size: 1em;
}

ol,
ul {
  list-style: none;
}

a {
  color: var(--color-link);
  text-decoration: underline;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
  a:hover img {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

address {
  font-style: normal;
}

/* google chrome input button padding */
input[type=button],
input[type=submit],
input[type=reset],
input[type=file]::-webkit-file-upload-button, button {
  padding: 1px 6px;
}

input[type=checkbox] {
  margin: 0;
}

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

.img-box {
  font-size: 0;
  line-height: 0;
}

.wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: 1020px;
  padding-left: 30px;
  padding-right: 30px;
  width: 100%;
}
.wrap.--small {
  max-width: 810px;
}
@media screen and (max-width: 767px) {
  .wrap {
    max-width: initial;
    padding-left: 4vw;
    padding-right: 4vw;
    width: auto;
  }
  .wrap.--small {
    width: auto;
  }
}

table {
  border-collapse: collapse;
  width: 100%;
}

sup {
  font-size: 1.2rem;
  font-weight: normal;
  vertical-align: top;
}

.text-bold,
strong {
  font-weight: bold;
}

.text-small {
  font-size: 0.8em;
}

.text-large {
  font-size: 2.4em;
}

.text-underline {
  text-decoration: underline;
}

.text-italic {
  font-style: italic;
}

video {
  outline: none;
}

.align-left {
  text-align: left !important;
}

.align-center {
  text-align: center !important;
}

.align-right {
  text-align: right !important;
}

.color-red {
  color: var(--color-red) !important;
}

.text-black {
  color: var(--color-black) !important;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

/* ---------------------------------------------------------

■■■ PC SP ■■■■■■■■■■

--------------------------------------------------------- */
@media screen and (min-width: 768px) {
  img.sp,
  br.sp,
  span.sp,
  .sp {
    display: none !important;
  }
  br.sp {
    width: 0 !important;
  }
  .pc {
    display: block !important;
  }
  span.pc,
  img.pc,
  br.pc {
    display: inline !important;
  }
  th.pc,
  td.pc {
    display: table-cell !important;
  }
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
  th.pc,
  td.pc,
  span.pc,
  br.pc,
  img.pc,
  .pc {
    display: none !important;
  }
  img.sp,
  br.sp,
  span.sp {
    display: inline !important;
  }
}
.mb0 {
  margin-bottom: 0 !important;
}

.ml0 {
  margin-left: 0 !important;
}

.mr0 {
  margin-right: 0 !important;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.pl0 {
  padding-left: 0 !important;
}

.pr0 {
  padding-right: 0 !important;
}

.pt0 {
  padding-top: 0 !important;
}

/* f-move-top
========================================================================== */
.f-move-top {
  opacity: 0;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.f-move-top.--delay {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.f-move-top.--delay2 {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
@media screen and (max-width: 767px) {
  .f-move-top.--delay2, .f-move-top.--delay {
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}
.f-move-top.--move {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.c-btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
.c-btn-wrap .c-btn {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .c-btn-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.7333333333vw;
  }
}

/* c-caution
========================================================================== */
.c-caution {
  font-size: 13px;
}
.c-caution > li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .c-caution {
    font-size: 2.6666666667vw;
  }
}

/* c-btn
========================================================================== */
.c-check {
  font-size: 16px;
  line-height: 1.625;
}
.c-check > li {
  background: url(../img/icon-check.png) no-repeat 0 10px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-check {
    font-size: 3.7333333333vw;
  }
  .c-check > li {
    background-position: 0 1.7333333333vw;
    background-size: 3.3333333333vw 2.4vw;
    padding-left: 5.3333333333vw;
  }
}

/* c-marker
========================================================================== */
.c-marker {
  background: -webkit-gradient(linear, left bottom, left top, from(#fffd38), to(#fffd38)) no-repeat 0 100%;
  background: -webkit-linear-gradient(bottom, #fffd38, #fffd38) no-repeat 0 100%;
  background: linear-gradient(0deg, #fffd38, #fffd38) no-repeat 0 100%;
  background-size: 100% 0.6em;
  mix-blend-mode: multiply;
}

/* c-btn
========================================================================== */
.c-btn {
  font-family: "corporate-logo-ver2", "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.1;
  margin-top: 40px;
  text-align: center;
}
.c-btn > a {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--bg-color);
  border-radius: 20px;
  -webkit-box-shadow: 0 3px 0 2px var(--shadow);
          box-shadow: 0 3px 0 2px var(--shadow);
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 70px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  overflow: hidden;
  text-decoration: none;
  width: 396px;
  position: relative;
  z-index: 0;
}
.c-btn > a > span {
  font-weight: 700;
  position: relative;
}
.c-btn > a::after {
  background: url(../img/icon-arrow.png) no-repeat 50% 50% #fff;
  background-size: 11px 12px;
  content: "";
  border-radius: 50%;
  height: 25px;
  width: 25px;
  position: absolute;
  right: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (hover: hover) {
  .c-btn > a:hover {
    -webkit-box-shadow: 0 2px 0 1px var(--shadow);
            box-shadow: 0 2px 0 1px var(--shadow);
    text-shadow: 1px 1px 0 var(--text-shadow);
    -webkit-transform: translateY(1px);
        -ms-transform: translateY(1px);
            transform: translateY(1px);
  }
  .c-btn > a:hover::after {
    -webkit-box-shadow: 1px 1px 0 0 var(--shadow);
            box-shadow: 1px 1px 0 0 var(--shadow);
  }
}
.c-btn.--blue > a {
  --bg-color: #00c2ff;
  --shadow: #00a7db;
  --text-shadow: #007ea5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-btn {
    font-size: 4.2666666667vw;
    margin-top: 0;
  }
  .c-btn > a {
    border-radius: 5.3333333333vw;
    -webkit-box-shadow: 0 0.8vw 0 0.5333333333vw var(--shadow);
            box-shadow: 0 0.8vw 0 0.5333333333vw var(--shadow);
    height: 16vw;
    width: 90.6666666667vw;
  }
  .c-btn > a::after {
    background-size: 2.9333333333vw 3.2vw;
    height: 6vw;
    width: 6vw;
    right: 6.6666666667vw;
  }
}

/* c-title
========================================================================== */
.c-title {
  font-size: 32px;
  font-weight: 500;
  margin-bottom: 0.5em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 4.2666666667vw;
  }
}

/* c-term
========================================================================== */
.c-term {
  background-color: #fff;
  border: 2px solid #272727;
  border-radius: 16px;
  overflow: hidden;
  padding: 20px 10px;
}
.c-term .c-term_inner {
  height: 300px;
  overflow: hidden auto;
  padding: 16px;
}
.c-term .c-term_inner p {
  font-size: 16px;
  margin-top: 1.5em;
  font-weight: 400;
}
.c-term .c-term_inner p:first-child {
  margin-top: 0;
}
.c-term .c-term_inner dl dd,
.c-term .c-term_inner dl dt {
  font-weight: 700;
}
.c-term .c-term_inner dl dt {
  color: #05479f;
  margin-bottom: 0.8em;
}
.c-term .c-term_inner dl dd {
  margin-bottom: 1.5em;
}
.c-term .c-term_inner dl dd:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-term {
    border-width: 0.5333333333vw;
    border-radius: 2.6666666667vw;
    padding: 2.6666666667vw 1.3333333333vw;
  }
  .c-term .c-term_inner {
    height: 80vw;
    padding: 3.2vw;
  }
  .c-term .c-term_inner p {
    font-size: 3.2vw;
  }
}

/* c-pagetop
========================================================================== */
.c-pagetop {
  cursor: pointer;
  display: none;
  position: fixed;
  bottom: 70px;
  right: 48px;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  .c-pagetop {
    bottom: 10.6666666667vw;
    right: 5.3333333333vw;
  }
  .c-pagetop img {
    width: 12vw;
  }
}

/* l-container
========================================================================== */
.l-container {
  overflow-x: hidden;
}

/* l-header
========================================================================== */
.l-header {
  background-color: #111;
}
.l-header .l-header_inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 80px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-header .l-header_inner {
    height: 8vw;
  }
}
.l-header .logo {
  width: 238px;
}
@media screen and (max-width: 767px) {
  .l-header .logo {
    width: 37.0666666667vw;
  }
}

/* l-footer
========================================================================== */
.l-footer {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #111;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 130px;
  padding: 20px 48px;
  text-align: center;
}
.l-footer .logo {
  line-height: 1;
  width: 238px;
}
.l-footer .copyright {
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .l-footer {
    margin-top: 30.6666666667vw;
    padding: 2.6666666667vw 4.2666666667vw;
  }
  .l-footer .logo {
    width: 37.0666666667vw;
  }
  .l-footer .copyright {
    font-size: 2.6666666667vw;
  }
}

/* p-main-visual
========================================================================== */
.p-main-visual {
  background: url(../img/kv_bg.jpg) no-repeat 50% 50%/cover;
  text-align: center;
}
.p-main-visual .p-main-visual_title {
  padding: 48px 36px 36px;
}
@media screen and (max-width: 767px) {
  .p-main-visual {
    background: none;
  }
  .p-main-visual .p-main-visual_title {
    padding: 0;
  }
}

/* p-catch
========================================================================== */
.p-catch {
  margin-bottom: 28px;
  margin-top: 32px;
  text-align: center;
}
.p-catch h2 {
  display: table;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3888888889;
  margin: 0 auto 24px;
  padding: 30px 36px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.p-catch h2::after, .p-catch h2::before {
  background: var(--color-aqua);
  border-radius: 10px;
  content: "";
  height: 10px;
  width: 100%;
  position: absolute;
  left: 0;
}
.p-catch h2::before {
  top: 0;
}
.p-catch h2::after {
  bottom: 0;
}
.p-catch h2 > span {
  font-size: 0.7em;
}
@media screen and (max-width: 767px) {
  .p-catch {
    margin-bottom: 6.6666666667vw;
    margin-top: 5.8666666667vw;
  }
  .p-catch h2 {
    font-size: 4.8vw;
    margin-bottom: 4.2666666667vw;
    padding: 3.7333333333vw 2.6666666667vw;
  }
  .p-catch h2::after, .p-catch h2::before {
    height: 1.3333333333vw;
  }
}

/* p-consider
========================================================================== */
.p-consider-wrap {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-consider-wrap {
    margin-top: 16vw;
    padding-left: 1.6vw;
    padding-right: 1.6vw;
  }
}

.p-consider-main-title {
  display: table;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.3888888889;
  margin: 0 auto 24px;
  text-align: center;
}
.p-consider-main-title > span {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, var(--color-aqua)), color-stop(40%, transparent)) no-repeat 0 100%;
  background: -webkit-linear-gradient(bottom, var(--color-aqua) 40%, transparent 40%) no-repeat 0 100%;
  background: linear-gradient(0deg, var(--color-aqua) 40%, transparent 40%) no-repeat 0 100%;
  background-size: 100% 1em;
}
.p-consider-main-title > span > span {
  font-size: 0.7em;
}
@media screen and (max-width: 767px) {
  .p-consider-main-title {
    font-size: 4.8vw;
    margin-bottom: 4.2666666667vw;
  }
}

.p-consider {
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  margin-bottom: 50px;
  overflow: hidden;
  padding: 0 60px 60px;
}
.p-consider .p-consider_title-img02,
.p-consider .p-consider_title-img01 {
  margin-bottom: 24px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.p-consider .p-consider_title-img02::before,
.p-consider .p-consider_title-img01::before {
  background: url(../img/title_bg.jpg) 50% 50%;
  border-radius: 9px 9px 0 0;
  content: "";
  height: 60px;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.p-consider .p-consider_title-img01 img {
  margin-top: 40px;
}
.p-consider .p-consider_title-img01::before {
  margin-left: -60px;
  margin-right: -60px;
  width: -webkit-calc(100% + 120px);
  width: calc(100% + 120px);
}
.p-consider .p-consider_title-img02 {
  margin-top: 90px;
}
.p-consider .p-consider_title-img02 img {
  margin-top: 24px;
}
.p-consider .p-consider_title-img02::before {
  width: 100%;
}
.p-consider .p-consider_title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 80px;
  text-align: center;
}
.p-consider .p-consider_title em,
.p-consider .p-consider_title strong {
  font-weight: 900;
}
.p-consider .p-consider_title em {
  font-size: 1.2em;
}
.p-consider .p-consider_title strong {
  font-size: 1.4em;
}
.p-consider .p-consider_title span {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(40%, #fad264), color-stop(40%, transparent)) no-repeat 0 100%;
  background: -webkit-linear-gradient(bottom, #fad264 40%, transparent 40%) no-repeat 0 100%;
  background: linear-gradient(0deg, #fad264 40%, transparent 40%) no-repeat 0 100%;
  background-size: 100% 1em;
  font-weight: 900;
}
.p-consider .p-consider_title.--small {
  font-size: 24px;
  margin-bottom: 1em;
}
.p-consider .p-consider_title.--bottom {
  margin-bottom: 36px;
}
.p-consider .p-consider_img01 {
  margin-bottom: 90px;
}
.p-consider .p-consider_img02 {
  margin-bottom: 48px;
  text-align: center;
}
.p-consider .p-consider_img03 {
  margin-bottom: 16px;
  text-align: center;
}
.p-consider .p-consider_table-title {
  border: 1px solid #4a4a4a;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 auto 16px;
  padding: 12px 0 14px;
  text-align: center;
  width: 460px;
}
.p-consider .p-consider_caution {
  display: table;
  font-size: 16px;
  line-height: 1.75;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
.p-consider .p-consider_banner {
  margin-bottom: 30px;
  text-align: center;
}
.p-consider .p-consider_banner a img {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media (hover: hover) {
  .p-consider .p-consider_banner a:hover img {
    -webkit-filter: contrast(120%);
            filter: contrast(120%);
  }
}
@media screen and (max-width: 767px) {
  .p-consider {
    border-radius: 1.3333333333vw;
    margin-bottom: 4.2666666667vw;
    padding: 0 4vw 8vw;
  }
  .p-consider .p-consider_title-img02,
  .p-consider .p-consider_title-img01 {
    margin-bottom: 5.3333333333vw;
  }
  .p-consider .p-consider_title-img02::before,
  .p-consider .p-consider_title-img01::before {
    border-radius: 1.2vw 1.2vw 0 0;
    height: 8vw;
  }
  .p-consider .p-consider_title-img01 img {
    margin-top: 4.8vw;
    width: 58.9333333333vw;
  }
  .p-consider .p-consider_title-img01::before {
    margin-left: -4vw;
    margin-right: -4vw;
    width: -webkit-calc(100% + 8vw);
    width: calc(100% + 8vw);
  }
  .p-consider .p-consider_title-img02 {
    margin-top: 16vw;
  }
  .p-consider .p-consider_title-img02 img {
    margin-top: 3.2vw;
    width: 69.0666666667vw;
  }
  .p-consider .p-consider_title {
    font-size: 6.4vw;
    margin-bottom: 12vw;
  }
  .p-consider .p-consider_title.--small {
    font-size: 4.2666666667vw;
  }
  .p-consider .p-consider_title.--bottom {
    margin-bottom: 4.2666666667vw;
  }
  .p-consider .p-consider_img01 {
    margin-bottom: 13.3333333333vw;
  }
  .p-consider .p-consider_img02 {
    margin-bottom: 7.4666666667vw;
  }
  .p-consider .p-consider_img02 img {
    width: 85.2vw;
  }
  .p-consider .p-consider_img03 {
    margin-bottom: 5.3333333333vw;
  }
  .p-consider .p-consider_table-title {
    font-size: 3.2vw;
    margin-bottom: 4.2666666667vw;
    padding: 3.2vw 0;
    width: auto;
  }
  .p-consider .p-consider_caution {
    font-size: 2.9333333333vw;
  }
  .p-consider .p-consider_banner {
    margin-bottom: 4vw;
  }
  .p-consider .p-consider_banner img {
    width: 82.6666666667vw;
  }
}

/* p-target
========================================================================== */
.p-target {
  margin-bottom: 70px;
}
.p-target h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0.33em;
}
.p-target p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.p-target p:last-child {
  margin-bottom: 0;
}
.p-target .p-target_calendar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 40px;
  margin-top: 80px;
}
.p-target .p-target_calendar figure figcaption {
  display: table;
  font-size: 20px;
  font-weight: 700;
  margin-left: auto;
}
.p-target .p-target_calendar figure figcaption span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 7px;
  margin-top: 12px;
  position: relative;
}
.p-target .p-target_calendar figure figcaption span::before {
  background-color: #fef701;
  border-radius: 50%;
  content: "";
  height: 1em;
  width: 1em;
}
.p-target .p-target_calendar figure figcaption span.--pink::before {
  background-color: #ff9cc8;
}
.p-target .p-target_calendar figure figcaption span.--aqua::before {
  background-color: #00f6ff;
}
@media screen and (max-width: 767px) {
  .p-target {
    margin-bottom: 7.3333333333vw;
  }
  .p-target h2 {
    font-size: 3.7333333333vw;
  }
  .p-target .p-target_calendar {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.2666666667vw;
    margin-bottom: 5.3333333333vw;
    margin-top: 4.2666666667vw;
  }
  .p-target .p-target_calendar figure figcaption {
    font-size: 3.2vw;
  }
  .p-target .p-target_calendar figure figcaption span {
    gap: 0 1.8666666667vw;
    margin-top: 2.9333333333vw;
  }
}

/* p-about-coupon
========================================================================== */
.p-about-coupon {
  background-color: #fffbe5;
  padding-bottom: 100px;
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .p-about-coupon {
    padding-bottom: 12vw;
    padding-top: 12vw;
  }
}
.p-about-coupon .wrap {
  max-width: 740px;
}
@media screen and (max-width: 767px) {
  .p-about-coupon .wrap {
    max-width: initial;
  }
}
.p-about-coupon .p-about-coupon_title {
  background-color: #fbd364;
  -webkit-box-shadow: 0 0 0 3px #000, 3px 3px 0 3px #000;
          box-shadow: 0 0 0 3px #000, 3px 3px 0 3px #000;
  border-radius: 20px;
  display: table;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 56px;
  min-width: 300px;
  padding: 16px;
  text-align: center;
  position: relative;
  z-index: 0;
}
.p-about-coupon .p-about-coupon_title::before {
  background: url(../img/title_arrow.png) no-repeat 0 0;
  background-size: 100% 100%;
  content: "";
  height: 25px;
  width: 28px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 100%);
      -ms-transform: translate(-50%, 100%);
          transform: translate(-50%, 100%);
}
@media screen and (max-width: 767px) {
  .p-about-coupon .p-about-coupon_title {
    -webkit-box-shadow: 0 0 0 0.5333333333vw #000, 0.5333333333vw 0.5333333333vw 0 0.5333333333vw #000;
            box-shadow: 0 0 0 0.5333333333vw #000, 0.5333333333vw 0.5333333333vw 0 0.5333333333vw #000;
    border-radius: 2.6666666667vw;
    font-size: 4.2666666667vw;
    min-width: 57.3333333333vw;
    margin-bottom: 8.5333333333vw;
    padding: 3.2vw;
  }
  .p-about-coupon .p-about-coupon_title::before {
    height: 4.2666666667vw;
    width: 5.3333333333vw;
  }
}
.p-about-coupon .p-about-coupon_content {
  margin-top: 100px;
}
.p-about-coupon .p-about-coupon_content:first-child {
  margin-top: 0;
}
.p-about-coupon .p-about-coupon_content h3 {
  font-size: 20px;
  font-weight: 700;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  letter-spacing: 0.05em;
  line-height: 1.6;
  margin-bottom: 20px;
}
.p-about-coupon .p-about-coupon_content .p-about-coupon_content_catch {
  display: table;
  margin: 0 auto 24px;
}
.p-about-coupon .p-about-coupon_content .p-about-coupon_content_catch:last-child {
  margin-bottom: 0;
}
.p-about-coupon .p-about-coupon_content figure {
  margin-bottom: 35px;
  text-align: center;
}
.p-about-coupon .p-about-coupon_content figure.--img02 {
  margin-bottom: 0;
}
.p-about-coupon .p-about-coupon_content figure:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-about-coupon .p-about-coupon_content {
    margin-top: 13.3333333333vw;
  }
  .p-about-coupon .p-about-coupon_content h3 {
    font-size: 3.7333333333vw;
    margin-bottom: 2.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_content .p-about-coupon_content_catch {
    margin-bottom: 4vw;
  }
  .p-about-coupon .p-about-coupon_content figure {
    margin-bottom: 6.4vw;
  }
  .p-about-coupon .p-about-coupon_content figure.--img01 img {
    width: 83.0666666667vw;
  }
  .p-about-coupon .p-about-coupon_content figure.--img02 {
    margin-bottom: 6.4vw;
  }
  .p-about-coupon .p-about-coupon_content figure.--img02 img {
    width: 36vw;
  }
  .p-about-coupon .p-about-coupon_content figure.--img03 img {
    width: 31.3333333333vw;
  }
}
.p-about-coupon .p-about-coupon_flow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-weight: 700;
  gap: 40px;
  line-height: 1.1;
  margin-bottom: 24px;
}
.p-about-coupon .p-about-coupon_flow li {
  background: #fff;
  border: 2px solid #000;
  border-radius: 100px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 10px;
  text-align: center;
  position: relative;
}
.p-about-coupon .p-about-coupon_flow li:not(:last-child)::after {
  border-color: transparent transparent transparent #000;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  content: "";
  position: absolute;
  right: -15px;
  top: 50%;
  -webkit-transform: translate(100%, -50%);
      -ms-transform: translate(100%, -50%);
          transform: translate(100%, -50%);
}
@media screen and (max-width: 767px) {
  .p-about-coupon .p-about-coupon_flow {
    font-size: 3.7333333333vw;
    gap: 4vw;
    margin-bottom: 4.2666666667vw;
  }
  .p-about-coupon .p-about-coupon_flow li {
    border-width: 0.2666666667vw;
    padding: 1.3333333333vw 0vw;
  }
  .p-about-coupon .p-about-coupon_flow li:not(:last-child)::after {
    border-width: 0.9333333333vw 0 0.9333333333vw 1.6vw;
    right: -1.6vw;
  }
}
.p-about-coupon .p-about-coupon_step {
  counter-reset: step;
  margin-top: 44px;
}
.p-about-coupon .p-about-coupon_step > li {
  background-color: #fff;
  border: 2px dotted #000;
  border-radius: 20px;
  counter-increment: step;
  margin-top: 80px;
  padding: 24px 24px 40px;
}
.p-about-coupon .p-about-coupon_step > li:first-child {
  margin-top: 0;
}
.p-about-coupon .p-about-coupon_step > li::before {
  background-color: #f3ee29;
  border-radius: 100px;
  content: "STEP " counter(step, decimal-leading-zero);
  display: block;
  font-family: "futura-pt", "Noto Sans JP", sans-serif;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1;
  margin: 0 auto 24px;
  padding: 10px;
  text-align: center;
  width: 150px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 560px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text {
  margin-bottom: 24px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text .p-about-coupon_content_catch {
  margin-bottom: 16px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text .c-caution {
  margin-top: 16px;
}
.p-about-coupon .p-about-coupon_step > li:nth-child(1) .p-about-coupon_step_text {
  margin-left: auto;
  margin-right: auto;
  max-width: 450px;
}
.p-about-coupon .p-about-coupon_step > li:nth-child(2) .p-about-coupon_step_text {
  margin-left: auto;
  margin-right: auto;
  max-width: 500px;
}
.p-about-coupon .p-about-coupon_step > li:nth-child(4) .p-about-coupon_step_text p {
  margin-bottom: 36px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point {
  counter-reset: point;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point > li {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  counter-increment: point;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  text-align: left;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point > li::before {
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #000;
  content: counter(point);
  font-family: "futura-pt", "Noto Sans JP", sans-serif;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 22px;
  font-weight: 600;
  height: 28px;
  line-height: 28px;
  text-align: center;
  width: 28px;
}
.p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point .p-about-coupon_content_catch {
  display: block;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .p-about-coupon .p-about-coupon_step {
    margin-top: 6.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li {
    border-radius: 2.6666666667vw;
    margin-top: 6.6666666667vw;
    padding: 4.2666666667vw 0 0;
  }
  .p-about-coupon .p-about-coupon_step > li::before {
    font-size: 5.3333333333vw;
    margin-bottom: 3.7333333333vw;
    padding: 0.6666666667vw;
    width: 25.8666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    max-width: initial;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_inner figure {
    margin-bottom: 0;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-bottom: 5.3333333333vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text h3 {
    font-size: 3.7333333333vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text .p-about-coupon_content_catch {
    margin-bottom: 1.0666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text .p-about-coupon_content_catch:last-child {
    margin-bottom: 0;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_text .c-caution {
    margin-top: 3.2vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(1) figure {
    width: 45.8666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(1) figure img {
    border-radius: 0 0 0 2.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(1) .p-about-coupon_step_text {
    margin-left: 0;
    margin-right: 0;
    max-width: initial;
    padding-right: 2vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(2) figure {
    width: 45.3333333333vw;
    position: relative;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(2) figure img {
    border-radius: 0 0 0 2.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(2) figure::after {
    background: url(../img/icon-click.png) no-repeat 0 0;
    background-size: 100% 100%;
    content: "";
    height: 9.2vw;
    width: 9.0666666667vw;
    position: absolute;
    bottom: -3.4666666667vw;
    left: 34.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(2) .p-about-coupon_step_text {
    margin-left: 0;
    margin-right: 0;
    max-width: initial;
    padding-right: 2vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(4) figure img, .p-about-coupon .p-about-coupon_step > li:nth-child(3) figure img {
    border-radius: 0 0 2.6666666667vw 2.6666666667vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(4) .p-about-coupon_step_inner, .p-about-coupon .p-about-coupon_step > li:nth-child(3) .p-about-coupon_step_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(4) .p-about-coupon_step_text, .p-about-coupon .p-about-coupon_step > li:nth-child(3) .p-about-coupon_step_text {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    padding-left: 3.2vw;
    padding-right: 3.2vw;
  }
  .p-about-coupon .p-about-coupon_step > li:nth-child(4) .p-about-coupon_step_text p {
    margin-bottom: 5.3333333333vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point > li {
    gap: 2.1333333333vw;
    margin-bottom: 3.2vw;
  }
  .p-about-coupon .p-about-coupon_step > li .p-about-coupon_step_point > li::before {
    border-width: 0.4vw;
    font-size: 3.7333333333vw;
    height: 5.0666666667vw;
    line-height: 5.3333333333vw;
    width: 5.0666666667vw;
  }
}

/* p-contact
========================================================================== */
.p-contact {
  margin-top: 90px;
  text-align: center;
}
.p-contact h2 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1em;
}
.p-contact p {
  font-size: 24px;
}
.p-contact p.p-contact_tel {
  line-height: 1;
}
.p-contact p.p-contact_tel > a {
  text-decoration: none;
}
.p-contact p.p-contact_tel > a img {
  width: 468px;
}
.p-contact .c-btn {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .p-contact {
    margin-top: 12vw;
  }
  .p-contact h2 {
    font-size: 4.2666666667vw;
  }
  .p-contact p {
    font-size: 3.7333333333vw;
  }
  .p-contact p.p-contact_tel > a img {
    width: 77.3333333333vw;
  }
  .p-contact .c-btn {
    margin-top: 6.6666666667vw;
  }
}