@charset "UTF-8";
:root {
  --color-white: #ffffff;
  --color-black: #000000;
  --color-black2: #1a1a1a;
  --color-main: #8f6c29;
  --color-bg: #f4f2ef;
  --gradient-main: linear-gradient(to right, #8f6c29, #e7d680);
  --gradient-sub: linear-gradient(to right, #18244d 0%, #193ea1 35%, #18244d 100%);
}

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

body {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  background-color: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

ins {
  text-decoration: none;
}

mark {
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  border: 0;
  border-top: 1px solid #000000;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

img {
  font-size: 0;
  line-height: 0;
  vertical-align: top;
}

* {
  box-sizing: border-box !important;
  font-size: 1.4rem;
}

html {
  font-size: 62.5%;
}
html.is-open {
  overflow: hidden;
}

body {
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background-color: var(--color-white);
  color: var(--color-black2);
  font-family: "Noto Serif JP";
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  overflow-x: hidden;
  width: 100%;
}
body * {
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--color-black2);
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  a:hover {
    opacity: 1;
  }
}

picture {
  display: block;
}

input[type=submit],
input[type=button],
input[type=text],
input[type=number],
input[type=email],
input[type=tel],
input[type=date],
input[type=reset],
select,
button,
textarea {
  -webkit-appearance: none;
  background-color: var(--color-white);
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: var(--color-black2);
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration,
input[type=text]::-webkit-search-decoration,
input[type=number]::-webkit-search-decoration,
input[type=email]::-webkit-search-decoration,
input[type=tel]::-webkit-search-decoration,
input[type=date]::-webkit-search-decoration,
input[type=reset]::-webkit-search-decoration,
select::-webkit-search-decoration,
button::-webkit-search-decoration,
textarea::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus,
input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=date]:focus,
input[type=reset]:focus,
select:focus,
button:focus,
textarea:focus {
  outline-offset: 0;
}

input[type=date]::-webkit-date-and-time-value,
input[type=time]::-webkit-date-and-time-value,
input[type=datetime-local]::-webkit-date-and-time-value {
  text-align: left;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
.is-pc--inline {
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .is-pc--inline {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp {
    display: block;
  }
}
.is-sp--inline {
  display: none;
}
@media screen and (max-width: 767px) {
  .is-sp--inline {
    display: inline-block;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1200 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
    @media screen and (max-width: 1199px) {
      transform: translateY(calc(10 / 1200 * 100vw));
    }
    @media screen and (max-width: 767px) {
      transform: translateY(calc(10 / 375 * 100vw));
    }
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@-webkit-keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@-webkit-keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@keyframes popup {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.8);
  }
  100% {
    transform: translateY(0) scale(1);
  }
  80%, 100% {
    opacity: 1;
  }
}
@-webkit-keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
/* noto-serif-jp-500 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/noto-serif-jp-v31-japanese_latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-600 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/noto-serif-jp-v31-japanese_latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-serif-jp-700 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Serif JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/noto-serif-jp-v31-japanese_latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-regular.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-500 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-500.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap;
  /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/noto-sans-jp-v53-japanese_latin-700.woff2") format("woff2");
  /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  background-color: #f5f1e9;
  height: 4px;
  opacity: 1;
  width: 11px;
}
@media screen and (max-width: 1199px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(4 / 1200 * 100vw);
    margin: 0 calc(5 / 1200 * 100vw);
    width: calc(11 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    height: calc(4.5 / 375 * 100vw);
    margin: 0 calc(5 / 375 * 100vw);
    width: calc(12.4 / 375 * 100vw);
  }
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active,
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet-active {
  background-color: var(--color-main);
}
.swiper-pagination-bullet{
  border-radius: 0;
}
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{
  margin: 0;
}
.swiper-button-prev,
.swiper-button-next {
  display: block;
  height: auto;
  margin-top: 0;
  top: 310px;
  width: auto;
  z-index: 2;
}
@media screen and (max-width: 1199px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(310 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: calc(240 / 375 * 100vw);
  }
}
.swiper-button-prev {
  left: -62px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev {
    left: calc(-62 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev {
    left: calc(22 / 375 * 100vw);
    top: 50%;
    width: 30px;
    height: 30px;
  }
}
.swiper-button-next {
  right: -62px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-next {
    right: calc(-62 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-next {
    right: calc(22 / 375 * 100vw);
    top: 50%;
    width: 30px;
    height: 30px;
  }
}
.swiper-button-prev:after,
.swiper-button-next:after {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  content: "";
  display: block;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.1));
  height: 40px;
  width: 27px;
}
@media screen and (max-width: 1439px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    filter: drop-shadow(0px 0px calc(20 / 1440 * 100vw) rgba(0, 0, 0, 0.1));
    height: calc(40 / 1440 * 100vw);
    width: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after,
  .swiper-button-next:after {
    filter: drop-shadow(0px 0px calc(11 / 375 * 100vw) rgba(26, 26, 26, 0.12));
    width: 100%;
    height: 100%;
  }
}
.swiper-button-prev:after {
  background-image: url(../images/swiper_icon_prev.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-prev:after {
    background-image: url(../images/swiper_icon_prev_sp.png);
  }
}
.swiper-button-prev.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}
.swiper-button-prev.swiper-button-disabled:after {
  background-image: url(../images/swiper_icon_prev_disabled.svg);
}
.swiper-button-next:after {
  background-image: url(../images/swiper_icon_next.svg);
}
@media screen and (max-width: 767px) {
  .swiper-button-next:after {
    background-image: url(../images/swiper_icon_next_sp.png);
  }
}
.swiper-button-next.swiper-button-disabled {
  opacity: 1;
  pointer-events: auto;
}
.swiper-button-next.swiper-button-disabled:after {
  background-image: url(../images/swiper_icon_next_disabled.svg);
}

.swiper-pagination {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: calc(0 / 375 * 100vw) !important;
  }
}

.swiper-container {
  overflow: visible;
  padding-bottom: 37px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .swiper-container {
    padding-bottom: calc(37 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .swiper-container {
    padding-bottom: calc(30 / 375 * 100vw);
  }
}

.swiper-pagination {
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .swiper-pagination {
    bottom: calc(0 / 375 * 100vw) !important;
  }
}

.l-container {
  margin: 0 auto;
  padding-left: 100px;
  padding-right: 100px;
  width: 1200px;
}
@media screen and (max-width: 1199px) {
  .l-container {
    padding-left: calc(100 / 1200 * 100vw);
    padding-right: calc(100 / 1200 * 100vw);
    width: calc(1200 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-left: calc(22 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
    width: 100%;
  }
}

header{
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 1;
}
.p-header{
  padding-top: 24px;
}
@media screen and (max-width: 1199px) {
  .p-header{
    padding-top: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header{
    padding-top: calc(24 / 375 * 100vw);
  }
}
.p-header .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  width: 100%;
}
.p-header__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.p-header__logo {
  position: absolute;
  left: 27px;
}
@media screen and (max-width: 1439px) {
  .p-header__logo {
    left: calc(27 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    left: calc(13 / 375 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  #thanks .p-header__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}
.p-header__logo img {
  height: auto;
  width: 260px;
}
@media screen and (max-width: 1439px) {
  .p-header__logo img {
    width: calc(260/ 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__logo img {
    width: calc(140 / 375 * 100vw);
  }
}
.p-header__logo a {
  display: block;
}
.p-header__button{
  margin-left: auto;
  background: linear-gradient(90deg, #8f6c29 0%, #e7d680 48%, #8f6c29 100%);
  margin-right: 39px;
  border-radius: 9999px;
  box-shadow: 0 0 8px rgba(26, 26, 26, 0.3);
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-header__button{
    margin-right: calc(39/ 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-header__button{
    display: none;
  }
}
.p-header__button a{
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Sans JP';
  font-size: 24px;
  color: var(--color-white);
  width: 330px;
  height: 68px;
  text-align: center;
  font-weight: 500;
  transform: translateX(-10px);
  text-shadow: 0 0 7px rgba(26, 26, 26, 0.1);
}
@media screen and (max-width: 1439px) {
  .p-header__button a{
    font-size: calc(24 / 1440 * 100vw);
    width: calc(330 / 1440 * 100vw);
    height: calc(68 / 1440 * 100vw);
    transform: translateX(calc(-10 / 1440 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-header__button a{
    display: none;
  }
}
.p-header__button a:after{
  background-image: url(../images/button_icon_arrow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 15px;
  width: 9px;
  margin: auto 0;
  position: absolute;
  right: 19px;
  top: 2px;
}
@media screen and (max-width: 1439px) {
  .p-header__button a:after{
    height: calc(15 / 1440 * 100vw);
    width: calc(9 / 1440 * 100vw);
    right: calc(19 / 1440 * 100vw);
    top: calc(2 / 1440 * 100vw);
  }
}
.p-mainVisual {
  background-image: url(../images/mainvisual_bg.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 690px;
  position: relative;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual {
    height: calc(690 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual {
    background-image: url(../images/mainvisual_bg_sp.jpg);
    height: calc(684 / 375 * 100vw);
  }
}
.p-mainVisual .l-container {
  height: 100%;
  padding-left: 0;
  padding-right: 0;
}
.p-mainVisual__text {
  background-image: url(../images/mainvisual_text.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 497px;
  left: 87px;
  overflow: hidden;
  position: absolute;
  text-indent: 150vw;
  top: 113px;
  white-space: nowrap;
  width: 632px;
}
@media screen and (max-width: 1439px) {
  .p-mainVisual__text {
    height: calc(497 / 1440 * 100vw);
    left: calc(87 / 1440 * 100vw);
    top: calc(113 / 1440 * 100vw);
    width: calc(632 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-mainVisual__text {
    display: none;
  }
}
.p-mainVisual__button{
  display: none;
}
@media screen and (max-width: 767px) {
  .p-mainVisual__button{
    display: block;
    background: linear-gradient(90deg, #8f6c29 0%, #e7d680 48%, #8f6c29 100%);
    border-radius: 9999px;
    box-shadow: 0 0 8px rgba(238, 234, 234, 0.3);
    position: absolute;
    width: calc(290 / 375 * 100vw);
    margin: 0 auto;
    bottom: calc(30 / 375 * 100vw);
    left: 50%;
    transform: translateX(-50%);
  }
  .p-mainVisual__button a{
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Noto Sans JP';
    font-size: calc(20 / 375 * 100vw);
    font-weight: 500;
    color: var(--color-white);
    width: 100%;
    height: calc(60 / 375 * 100vw);
    text-align: center;
    text-shadow: 0 0 6px rgba(26, 26, 26, 0.1);
  }
  .p-mainVisual__button a:after{
    background-image: url(../images/button_icon_arrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    height: calc(11 / 375 * 100vw);
    width: calc(7 / 375 * 100vw);
    margin: auto 0;
    position: absolute;
    right: calc(27 / 375 * 100vw);
    top: 0;
  }
}
.p-example {
  background: var(--color-white)
}
.p-example .l-container{
  width: 1200px;
  padding-left: 100px;
  padding-right: 100px;
}
@media screen and (max-width: 1199px) {
  .p-example .l-container{
    width: calc(1200 / 1200 * 100vw);
    padding-left: calc(100 / 1200 * 100vw);
    padding-right: calc(100 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example .l-container{
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }
}
.p-example__inner {
  padding-bottom: 68px;
  padding-top: 64px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .p-example__inner {
    padding-bottom: calc(68 / 1200 * 100vw);
    padding-top: calc(64 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__inner {
    padding-bottom: calc(49 / 375 * 100vw);
    padding-top: calc(44 / 375 * 100vw);
  }
}
.p-example__titleBox {
  margin-bottom: 30px;
}
@media screen and (max-width: 1199px) {
  .p-example__titleBox {
    margin-bottom: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__titleBox {
    margin-bottom: 0;
  }
}
.p-example__titleBox__title {
  color: var(--color-black2);
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-example__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    line-height: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__titleBox__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(37 / 375 * 100vw);
  }
}
.p-example__swiper__wrapper {
  overflow: hidden;
  padding-top: 15px;
}
@media screen and (max-width: 1199px) {
  .p-example__swiper__wrapper {
    padding-top: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-example__swiper__wrapper {
    display: none;
  }
}
.p-example__swiper {
  margin: 0 auto;
  width: 100%;
  transform: translateX(-205px);
}
@media screen and (max-width: 1199px) {
  .p-example__swiper {
    transform: translateX(calc(-205 / 1200 * 100vw));
  }
}
.p-example__swiper .swiper-slide{
  width: 330px;
}
@media screen and (max-width: 1199px) {
  .p-example__swiper .swiper-slide{
    width: calc(330 / 1200 * 100vw);
  }
}
.p-example__swiper .swiper-horizontal > .swiper-pagination-bullets,
.p-example__swiper .swiper-container-horizontal > .swiper-pagination-bullets {
  transform: translateX(205px);
}
@media screen and (max-width: 1199px) {
  .p-example__swiper .swiper-horizontal > .swiper-pagination-bullets,
  .p-example__swiper .swiper-container-horizontal > .swiper-pagination-bullets {
    transform: translateX(calc(205 / 1200 * 100vw));
  }
}
.p-example__swiper__wrapperSP {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-example__swiper__wrapperSP {
    display: block;
    padding-top: 24px;
    overflow: hidden;
  }
  .p-example__swiperSP {
    margin: 0 auto;
    width: 100%;
  }
  .p-example__swiperSP .swiper-slide{
    width: calc(290 / 375 * 100vw);
  }
}
.c-example {
  margin: 0 auto;
  height: 348px;
  box-shadow: 0 0 10px rgba(26, 26, 26, 0.12);
}
@media screen and (max-width: 1199px) {
  .c-example {
    height: calc(348 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example {
    height: calc(348 / 375 * 100vw);
    box-shadow: 0 0 calc(10 / 375 * 100vw) rgba(26, 26, 26, 0.12);
  }
}
.c-example__titleBox {
  width: 100%;
}
.c-example__titleBox__text {
  color: var(--color-black2);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 17px;
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__text {
    font-size: calc(20 / 1200 * 100vw);
    padding-top: calc(40 / 1200 * 100vw);
    padding-bottom: calc(17 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__text {
    font-size: calc(20 / 375 * 100vw);
    padding-top: calc(40 / 375 * 100vw);
    padding-bottom: calc(17 / 375 * 100vw);
  }
}
.c-example__titleBox__text--fit{
  font-size: 18px;
  padding-bottom: 19px;
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__text--fit{
    font-size: calc(18 / 1200 * 100vw);
    padding-bottom: calc(19 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__text--fit{
    font-size: calc(18 / 375 * 100vw);
    padding-bottom: calc(19 / 375 * 100vw);
  }
}
.c-example__titleBox__text--fit2row{
  font-size: 20px;
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__text--fit2row{
    font-size: calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__text--fit2row{
    font-size: calc(20 / 375 * 100vw);
    padding-top: calc(27 / 375 * 100vw);
    padding-bottom: calc(8 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
  }
}
.c-example__titleBox__title {
  color: var(--color-black2);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 35px;
  margin: 0 20px;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__title {
    font-size: calc(15 / 1200 * 100vw);
    padding-bottom: calc(35 / 1200 * 100vw);
    margin: 0 calc(20 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__title {
    font-size: calc(14 / 375 * 100vw);
    padding-bottom: calc(35 / 375 * 100vw);
    margin: 0 auto;
  }
}
.c-example__titleBox__title:after{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 290px;
  height: 1px;
  background: var(--gradient-sub);
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__title:after{
    width: calc(290 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__title:after{
    width: calc(250 / 375 * 100vw);
    left: 7%;
  }
}
.c-example__titleBox__title--fit{
  letter-spacing: 0;
}
.c-example__titleBox__title--fit2row{
  padding-bottom: 26px;
}
@media screen and (max-width: 1199px) {
  .c-example__titleBox__title--fit2row{
    padding-bottom: calc(26 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__titleBox__title--fit2row{
    padding-bottom: calc(27 / 375 * 100vw);
  }
}
.c-example__textBox {
  background-color: var(--color-white);
  padding: 19px 23px 0 19px;
  font-family: 'Noto Sans JP';
  font-weight: 500;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox {
    padding: calc(19 / 1200 * 100vw) calc(23 / 1200 * 100vw) 0 calc(19 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox {
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) 0;
  }
}
.c-example__textBox img{
  height: 32px;
  
}
@media screen and (max-width: 1199px) {
  .c-example__textBox img{
    height: calc(32 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox img{
    height: calc(32 / 375 * 100vw);
  }
}

.c-example__textBox__detail {
  margin-top: 18px;
  padding-bottom: 3px;
  text-align: left;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox__detail {
    margin-top: calc(18 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox__detail {
    margin-top: calc(17 / 375 * 100vw);
  }
}
.c-example__textBox__detail p{
  color: var(--color-main);
  font-size: 13px;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox__detail p{
    font-size: calc(13 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox__detail p{
    font-size: calc(13 / 375 * 100vw);
  }
}
.c-example__textBox__detail > ul > li {
  font-size: 15px;
  position: relative;
  padding-left: 11px;
  text-indent: 0;
  line-height: 22px;
  margin-top: 5px;
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox__detail > ul > li {
    font-size: calc(15 / 1200 * 100vw);
    padding-left: calc(11 / 1200 * 100vw);
    line-height: calc(22 / 1200 * 100vw);
    margin-top: calc(5 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox__detail > ul > li {
    font-size: calc(15 / 375 * 100vw);
    padding-left: calc(11 / 375 * 100vw);
    line-height: calc(22 / 375 * 100vw);
    margin-top: calc(5 / 375 * 100vw);
  }
}
.c-example__textBox__detail > ul > li:before{
  content: "■";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-main);
  font-size: 5px;
  left: -1px;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox__detail > ul > li:before{
    font-size: calc(5 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox__detail > ul > li:before{
    font-size: calc(5 / 375 * 100vw);
    top: 2px;
  }
}
.c-example__textBox__detail > ul > li + li {
  margin-top: 9px;
}
@media screen and (max-width: 1199px) {
  .c-example__textBox__detail > ul > li + li{
    margin-top: calc(9 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .c-example__textBox__detail > ul > li + li {
    margin-top: calc(9 / 375 * 100vw);
  }
}

.p-cta {
  background: var(--gradient-sub);
  display: block;
  height: 335px;
}
@media screen and (max-width: 1439px) {
  .p-cta {
    height: calc(335 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta {
    height: calc(231 / 375 * 100vw);
  }
}
.p-cta .l-container {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.p-cta__title {
  color: var(--color-white);
  font-size: 33px;
  font-weight: bold;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(51, 51, 51, 0.2);
}
@media screen and (max-width: 1439px) {
  .p-cta__title {
    font-size: calc(33 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(38 / 375 * 100vw);
    margin-top: -1px;
  }
}
.p-cta__buttonBox {
  margin-top: 44px;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox {
    margin-top: calc(44 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox {
    margin-top: calc(8 / 375 * 100vw);
  }
}
.p-cta__buttonBox__title {
  background-image: url(../images/cta_title_button.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 39px;
  margin: 0 auto;
  margin-bottom: 12px;
  overflow: hidden;
  text-indent: 150vw;
  white-space: nowrap;
  width: 183px;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__title {
    height: calc(39 / 1440 * 100vw);
    margin-bottom:calc(12 / 1440 * 100vw);
    width: calc(182 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__title {
    height: calc(39 / 375 * 100vw);
    margin-bottom:calc(4 / 375 * 100vw);
    width: calc(110 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a {
  font-family: 'Noto Sans JP';
  align-items: center;
  background: var(--gradient-main);
  border-radius: 9999px;
  color: var(--color-white);
  display: flex;
  font-size: 20px;
  font-weight: bold;
  height: 70px;
  justify-content: center;
  margin: 0 auto;
  width: 370px;
  gap: 6px;
  padding-left: 11px;
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a {
    font-size: calc(20 / 1440 * 100vw);
    height: calc(70 / 1440 * 100vw);
    width: calc(370 / 1440 * 100vw);
    gap: calc(6 / 1440 * 100vw);
    padding-left: calc(11 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a {
    font-size: calc(18 / 375 * 100vw);
    height: calc(57 / 375 * 100vw);
    width: calc(330 / 375 * 100vw);
    gap: calc(6 / 375 * 100vw);
    padding-left: calc(11 / 375 * 100vw);
  }
}
.p-cta__buttonBox__button a span.label {
  background-color: var(--color-white);
  border-radius: 2px;
  margin-right: 10px;
  padding: 5px 5px 6px 7px;
  text-align: center;
  color: var(--color-main);
  transform: translateY(1px);
}
@media screen and (max-width: 1439px) {
  .p-cta__buttonBox__button a span.label {
    border-radius: calc(2 / 1440 * 100vw);
    margin-right: calc(10 / 1440 * 100vw);
    padding: calc(5 / 1440 * 100vw) calc(5 / 1440 * 100vw)
      calc(5 / 1440 * 100vw) calc(7 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-cta__buttonBox__button a span.label {
    border-radius: calc(2 / 375 * 100vw);
    margin-right: calc(7 / 375 * 100vw);
    padding: calc(4 / 375 * 100vw) calc(4 / 375 * 100vw) calc(6 / 375 * 100vw)
      calc(6 / 375 * 100vw);
    transform: translateX(-4px);
  }
}
.p-merit{
  background-color: var(--color-bg);
}
.p-merit__inner {
  padding: 59px 0 71px 0;
}
@media screen and (max-width: 1439px) {
  .p-merit__inner {
    padding: calc(59 / 1440 * 100vw) 0 calc(71 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__inner {
    padding: calc(44 / 375 * 100vw) 0 calc(51 / 375 * 100vw);
  }
}
.p-merit__title {
  font-size: 35px;
  font-weight: bold;
  line-height: 53px;
  margin-bottom: 44px;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  .p-merit__title {
    font-size: calc(35 / 1440 * 100vw);
    line-height: calc(53 / 1440 * 100vw);
    margin-bottom: calc(44 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(35 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.p-merit__title span.em {
  color: var(--color-black2);
  font-size: 130%;
}
.p-merit__meritList > ul > li:nth-child(1) .p-merit__meritList__meritBox__thumbnail {
  background-image: url(../images/merit_thumbnail_1.png);
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li:nth-child(1) .p-merit__meritList__meritBox__thumbnail {
    background-image: url(../images/merit_thumbnail_1_sp.png);
  }
}
.p-merit__meritList > ul > li:nth-child(2) .p-merit__meritList__meritBox__thumbnail {
  background-image: url(../images/merit_thumbnail_2.png);
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li:nth-child(2) .p-merit__meritList__meritBox__thumbnail {
    background-image: url(../images/merit_thumbnail_2_sp.png);
  }
}
.p-merit__meritList > ul > li:nth-child(3) .p-merit__meritList__meritBox__thumbnail {
  background-image: url(../images/merit_thumbnail_3.png);
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li:nth-child(3) .p-merit__meritList__meritBox__thumbnail {
    background-image: url(../images/merit_thumbnail_3_sp.png);
  }
}
.p-merit__meritList > ul > li:nth-child(4) .p-merit__meritList__meritBox__thumbnail {
  background-image: url(../images/merit_thumbnail_4.png);
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li:nth-child(4) .p-merit__meritList__meritBox__thumbnail {
    background-image: url(../images/merit_thumbnail_4_sp.png);
  }
}
.p-merit__meritList > ul > li:nth-child(5) .p-merit__meritList__meritBox__thumbnail {
  background-image: url(../images/merit_thumbnail_5.png);
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li:nth-child(5) .p-merit__meritList__meritBox__thumbnail {
    background-image: url(../images/merit_thumbnail_5_sp.png);
  }
}
.p-merit__meritList > ul > li + li {
  margin-top: 30px;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList > ul > li + li {
    margin-top: calc(30 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList > ul > li + li {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox {
  align-items: flex-start;
  background-color: var(--color-white);
  border-radius: 0 30px 0 30px;
  display: flex;
  height: 200px;
  position: relative;
  box-shadow: 0 0 10px rgba(26, 26, 26, 0.12);
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox {
    border-radius: 0 calc(30 / 1440 * 100vw) 0 calc(30 / 1440 * 100vw);
    box-shadow: 0 0 calc(10 / 1440 * 100vw)  rgba(26, 26, 26, 0.12);
    height: calc(200 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox {
    height: auto;
    border-radius: 0 calc(25 / 375 * 100vw) 0 calc(25 / 375 * 100vw);
    box-shadow: 0 0 calc(10 / 375 * 100vw)  rgba(26, 26, 26, 0.12);
    display: block;
  }
}
.p-merit__meritList__meritBox__thumbnail {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  display: block;
  flex-shrink: 0;
  width: 350px;
  height: 100%;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__thumbnail {
    width: calc(350 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__thumbnail {
    width: 100%;
    height: calc(188 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox {
  padding: 28px 0 0 41px;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox {
    padding: calc(28 / 1440 * 100vw) 0 0 calc(41 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox {
    padding: calc(19 / 375 * 100vw) calc(20 / 375 * 100vw) 0 calc(20 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox__title {
  color: var(--color-main);
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox__title {
    font-size: calc(21 / 1440 * 100vw);
    margin-bottom: calc(15 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox__title {
    font-size: calc(19 / 375 * 100vw);
    margin-bottom: calc(14 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox__line{
  width: 529px;
  height: 2px;
  background: linear-gradient( to right, #8f6c29 0px, #8f6c29 19px, #f5f1e9 19px, #f5f1e9 100%);
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox__line{
    width: calc(529 / 1440 * 100vw);
    height: calc(2 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox__line{
    width: calc(290 / 375 * 100vw);
    height: calc(2 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox__title .em_point {
  font-size: 16px;
  margin-right: 3px;
  padding-left: 10px;
  padding-top: 4px;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox__title .em_point {
    font-size: calc(16 / 1440 * 100vw);
    margin-right: calc(3 / 1440 * 100vw);
    padding-left: calc(10 / 1440 * 100vw);
    padding-top: calc(4 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox__title .em_point {
    font-size: calc(13 / 375 * 100vw);
    margin-right: calc(2 / 375 * 100vw);
    padding-left: calc(1 / 375 * 100vw);
    padding-top: calc(8 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox__title .em_num {
  font-size: 23px;
  margin-right: 12px;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox__title .em_num {
    font-size: calc(23 / 1440 * 100vw);
    margin-right: calc(12 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox__title .em_num {
    font-size: calc(21 / 375 * 100vw);
    margin-right: calc(7 / 375 * 100vw);
  }
}
.p-merit__meritList__meritBox__textBox__text {
  font-size: 15px;
  line-height: 28px;
  font-family: 'Noto Sans JP';
  padding: 10px 0 0 10px;
  width: 496px;
}
@media screen and (max-width: 1439px) {
  .p-merit__meritList__meritBox__textBox__text {
    font-size: calc(15 / 1440 * 100vw);
    line-height: calc(28 / 1440 * 100vw);
    padding: calc(10 / 1440 * 100vw) 0 0 calc(10 / 1440 * 100vw);
    width: calc(496 / 1440 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-merit__meritList__meritBox__textBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw) 0 calc(36 / 375 * 100vw) calc(1 / 375 * 100vw);
    width: 100%;
  }
}

.p-flow .l-container{
  width: 1155px;
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 1199px) {
  .p-flow .l-container{
    width: calc(1155 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow .l-container{
    width: 100%;
    padding-left: calc(27 / 375 * 100vw);
    padding-right: calc(27 / 375 * 100vw);
  }
}
.p-flow__inner {
  padding-bottom: 67px;
  padding-top: 64px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .p-flow__inner {
    padding-bottom: calc(67 / 1200 * 100vw);
    padding-top: calc(64 / 1200 * 100vw);
    width: calc(1045 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__inner {
    padding-bottom: calc(42 / 375 * 100vw);
    padding-top: calc(44 / 375 * 100vw);
    width: 100%;
  }
}
.p-flow__titleBox {
  margin-bottom: 46px;
}
@media screen and (max-width: 1199px) {
  .p-flow__titleBox {
    margin-bottom: calc(46 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__titleBox {
    margin-bottom: calc(24 / 375 * 100vw);
  }
}
.p-flow__titleBox__title {
  color: var(--color-black2);
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-flow__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    line-height: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__titleBox__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(37 / 375 * 100vw);
  }
}
.p-flow__stepList > ul {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .p-flow__stepList > ul {
    display: block;
  }
}
.p-flow__stepList > ul > li {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-flow__stepList > ul > li {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList > ul > li + li {
    margin-top: calc(43 / 375 * 100vw);
  }
}
.p-flow__stepList__stepBox {
  background-color: var(--color-white);
  position: relative;
  width: 207px;
  display: block;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList__stepBox {
    width: calc(207 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox {
    padding: 0;
    width: 100%;
    height: auto;
    display: flex;
  }
}
.p-flow__stepList ul li:not(:last-of-type) .p-flow__stepList__stepBox:after{
  background-image: url(../images/flow_icon_next.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 24px;
  width: 13px;
  margin: auto 0;
  position: absolute;
  right: -21px;
  top: -209px;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList ul li:not(:last-of-type) .p-flow__stepList__stepBox:after{
    height: calc(24 / 1200 * 100vw);
    width: calc(13 / 1200 * 100vw);
    right: calc(-21 / 1200 * 100vw);
    top: calc(-209 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList ul li:not(:last-of-type) .p-flow__stepList__stepBox:after{
    height: calc(17 / 375 * 100vw);
    width: calc(15 / 375 * 100vw);
    transform: rotate(90deg);
    top: auto;
    bottom: -26px;
    right: auto;
    left: 23px;
  }
}
.p-flow__stepList__stepBox .em_point{
  color: var(--color-white);
  background: var(--gradient-main);
  -webkit-clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  clip-path: polygon(5% 0%, 100% 0%, 95% 100%, 0% 100%);
  font-size: 9px;
  font-weight: bold;
  width: 54px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 3px 3px 5px 3px;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList__stepBox .em_point{
    font-size: calc(9 / 1200 * 100vw);
    width: calc(54 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox .em_point{
    font-size: calc(9 / 375 * 100vw);
    width: calc(54 / 375 * 100vw);
    margin-left: 0;
    padding: 3px 3px 4px 3px;
  }
}
.p-flow__stepList__stepBox .em_num{
  font-size: 13px;
  margin-left: 2px;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList__stepBox .em_num{
    font-size: calc(13 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox .em_num{
    font-size: calc(13 / 375 * 100vw);
  }
}
.p-flow__stepList__stepBox__icon{
  margin: 0 auto;
}
.p-flow__stepList__stepBox__icon img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__icon {
    flex-shrink: 0;
    margin-left: 0;
    width: calc(60 / 375 * 100vw);
    height: calc(64 / 375 * 100vw);
  }
}
.p-flow__stepList ul li:nth-of-type(1) .p-flow__stepList__stepBox__icon{
  width: 67px;
  height: 70px;
  margin-top: 30px;
}
.p-flow__stepList ul li:nth-of-type(2) .p-flow__stepList__stepBox__icon{
  width: 57px;
  height: 72px;
  margin-top: 28px;
}
.p-flow__stepList ul li:nth-of-type(3) .p-flow__stepList__stepBox__icon{
  width: 71px;
  height: 71px;
  margin-top: 28px;
}
.p-flow__stepList ul li:nth-of-type(4) .p-flow__stepList__stepBox__icon{
  width: 87px;
  height: 67px;
  margin-top: 32px;
}
.p-flow__stepList ul li:nth-of-type(5) .p-flow__stepList__stepBox__icon{
  width: 74px;
  height: 64px;
  margin-top: 35px;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList ul li:nth-of-type(1) .p-flow__stepList__stepBox__icon{
    width: calc(65 / 1200 * 100vw);
    height: calc(70 / 1200 * 100vw);
    margin-top: calc(30 / 1200 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(2) .p-flow__stepList__stepBox__icon{
    width: calc(57 / 1200 * 100vw);
    height: calc(72 / 1200 * 100vw);
    margin-top: calc(28 / 1200 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(3) .p-flow__stepList__stepBox__icon{
    width: calc(71 / 1200 * 100vw);
    height: calc(71 / 1200 * 100vw);
    margin-top: calc(28 / 1200 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(4) .p-flow__stepList__stepBox__icon{
    width: calc(87 / 1200 * 100vw);
    height: calc(67 / 1200 * 100vw);
    margin-top: calc(32 / 1200 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(5) .p-flow__stepList__stepBox__icon{
    width: calc(76 / 1200 * 100vw);
    height: calc(64 / 1200 * 100vw);
    margin-top: calc(35 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList ul li:nth-of-type(1) .p-flow__stepList__stepBox__icon{
    width: calc(61 / 375 * 100vw);
    margin-top: 0;
  }
  .p-flow__stepList ul li:nth-of-type(2) .p-flow__stepList__stepBox__icon{
    width: calc(53 / 375 * 100vw);
    height: calc(72 / 375 * 100vw);
    margin-top: calc(99 / 375 * 100vw);
    margin-left: calc(4 / 375 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(3) .p-flow__stepList__stepBox__icon{
    width: calc(69 / 375 * 100vw);
    height: calc(71 / 375 * 100vw);
    margin-top: calc(61 / 375 * 100vw);
    margin-left: calc(-3 / 375 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(4) .p-flow__stepList__stepBox__icon{
    width: calc(83 / 375 * 100vw);
    height: calc(67 / 375 * 100vw);
    margin-top: calc(21 / 375 * 100vw);
    margin-left: calc(-10 / 375 * 100vw);
  }
  .p-flow__stepList ul li:nth-of-type(5) .p-flow__stepList__stepBox__icon{
    width: calc(70 / 375 * 100vw);
    height: calc(64 / 375 * 100vw);
    margin-top: calc(24 / 375 * 100vw);
    margin-left: calc(-4 / 375 * 100vw);
  }
}
.p-flow__stepList__stepBox__stepNo--pc{
  display: block;
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__stepNo--pc{
    display: none;
  }
}
.p-flow__stepList__stepBox__stepNo--sp{
  display: none;
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__stepNo--sp{
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__textBox{
    width: calc(231 / 375 * 100vw);
  }
}
.p-flow__stepList__stepBox__textBox__title {
  color: var(--color-main);
  font-size: 21px;
  font-weight: 700;
  line-height: 25px;
  padding-top: 24px;
  padding-bottom: 13px;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList__stepBox__textBox__title {
    font-size: calc(21 / 1200 * 100vw);
    line-height: calc(25 / 1200 * 100vw);
    padding-top: calc(24 / 1200 * 100vw);
    padding-bottom: calc(13 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__textBox__title {
    font-size: calc(18 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    padding-top: calc(7 / 375 * 100vw);
    padding-bottom: calc(2 / 375 * 100vw);
    text-align: left;
  }
}
.p-flow__stepList__stepBox__textBox__text {
  font-size: 15px;
  line-height: 28px;
  font-family: 'Noto Sans JP';
  font-weight: 400;
  letter-spacing: 0;
}
@media screen and (max-width: 1199px) {
  .p-flow__stepList__stepBox__textBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(28 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-flow__stepList__stepBox__textBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(28 / 375 * 100vw);
    text-align: justify;
  }
}
.p-faq{
  background-color: var(--color-bg);
}
@media screen and (max-width: 767px) {
  .p-faq .l-container{
    padding-left: calc(22 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
  }
}
.p-faq__inner {
  padding-bottom: 68px;
  padding-top: 64px;
  width: 650px;
  margin: 0 auto;
}
@media screen and (max-width: 1199px) {
  .p-faq__inner {
    padding-bottom: calc(68 / 1200 * 100vw);
    padding-top: calc(64 / 1200 * 100vw);
    width: calc(650 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding-bottom: calc(51 / 375 * 100vw);
    padding-top: calc(43 / 375 * 100vw);
    width: 100%;
  }
}
.p-faq__titleBox__title {
  color: var(--color-black2);
  font-size: 35px;
  font-weight: 700;
  line-height: 45px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-faq__titleBox__title {
    font-size: calc(35 / 1200 * 100vw);
    line-height: calc(45 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__titleBox__title {
    font-size: calc(25 / 375 * 100vw);
    line-height: calc(37 / 375 * 100vw);
  }
}
.p-faq__titleBox {
  margin-bottom: 46px;
}
@media screen and (max-width: 1199px) {
  .p-faq__titleBox {
    margin-bottom: calc(55 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__titleBox {
    margin-bottom: calc(28 / 375 * 100vw);
  }
}
.p-faq__faqList > ul > li + li {
  margin-top: 30px;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(30 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList > ul > li + li {
    margin-top: calc(15 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox{
  background-color: var(--color-white);
  box-shadow: 0 0 10px rgba(26, 26, 26, 0.12);
}
.p-faq__faqList__faqBox__qBox {
  cursor: pointer;
  position: relative;
}
.p-faq__faqList__faqBox__qBox::after,
.p-faq__faqList__faqBox__qBox::before {
  background-image: url(../images/icon_faq.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  bottom: 0;
  content: "";
  display: block;
  height: 15px;
  margin: auto 0;
  position: absolute;
  right: 24px;
  top: 0;
  width: 15px;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__qBox::after,
  .p-faq__faqList__faqBox__qBox::before {
    height: calc(15 / 1200 * 100vw);
    right: calc(24 / 1200 * 100vw);
    width: calc(15 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox::after,
  .p-faq__faqList__faqBox__qBox::before {
    height: calc(15 / 375 * 100vw);
    right: calc(16 / 375 * 100vw);
    width: calc(15 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox::after{
  transform: rotate(90deg);
}
.p-faq__faqList__faqBox__qBox__inner {
  display: flex;
  padding: 24px;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__qBox__inner {
    padding: calc(24 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__inner {
    align-items: center;
    min-height: calc(60 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw) calc(32 / 375 * 100vw) calc(14 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__inner img{
  width: 21px;
  margin-right: 27px;
  margin-left: 8px;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__qBox__inner img{
    width: calc(21 / 1200 * 100vw);
    margin-right: calc(27 / 1200 * 100vw);
    margin-left: calc(8 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__inner img{
    width: calc(15 / 375 * 100vw);
    height: calc(22 / 375 * 100vw);
    margin-right: calc(20 / 375 * 100vw);
    margin-left: calc(3 / 375 * 100vw);
    margin-top: calc(4 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__qBox__text {
  color: var(--color-main);
  font-size: 21px;
  font-weight: bold;
  transform: translateY(5px);
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(21 / 1200 * 100vw);
    transform: translateY(calc(5 / 1200 * 100vw));
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__qBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(25 / 375 * 100vw);
    transform: translateY(calc(0 / 375 * 100vw));
  }
}
.p-faq__faqList__faqBox__qBox.is-open::after {
  transform: rotate(180deg);
}
.p-faq__faqList__faqBox__aBox {
  display: none;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__aBox {
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox {
  }
}
.p-faq__faqList__faqBox__aBox__inner {
  display: flex;
  padding: 4px 23px 28px 31px;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__aBox__inner {
    padding: calc(4 / 1200 * 100vw) calc(24 / 1200 * 100vw) calc(28 / 1200 * 100vw) calc(31 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__inner {
    padding: calc(4 / 375 * 100vw) calc(24 / 375 * 100vw) calc(28 / 375 * 100vw) calc(31 / 375 * 100vw);
  }
}
.p-faq__faqList__faqBox__aBox__text {
  font-size: 15px;
  line-height: 29px;
  letter-spacing: 0;
  font-family: 'Noto sans JP';
  font-weight: 400;
}
@media screen and (max-width: 1199px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(15 / 1200 * 100vw);
    line-height: calc(29 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-faq__faqList__faqBox__aBox__text {
    font-size: calc(15 / 375 * 100vw);
    line-height: calc(29 / 375 * 100vw);
  }
}
.p-footerVisual{
  background: var(--gradient-main);
  color: var(--color-white);
  text-align: center;
  font-size: 40px;
  font-weight: bold;
  padding: 59px 0;
}
@media screen and (max-width: 1199px) {
  .p-footerVisual{
    font-size: calc(40 / 1200 * 100vw);
    padding: calc(59 / 1200 * 100vw) 0;
  }
}
@media screen and (max-width: 767px) {
  .p-footerVisual{
    font-size: calc(30 / 375 * 100vw);
    padding: calc(43 / 375 * 100vw) 0 calc(48 / 375 * 100vw) 0;
    line-height: calc(43 / 375 * 100vw);
  }
}
.p-footer {
  background-color: var(--color-black2);
}
.p-footer__inner {
  font-family: 'Noto Sans JP';
  font-weight: 400;
  padding-bottom: 25px;
  padding-top: 25px;
  font-size: 14px;
}
@media screen and (max-width: 1199px) {
  .p-footer__inner {
    padding-bottom: calc(25 / 1200 * 100vw);
    padding-top: calc(25 / 1200 * 100vw);
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__inner {
    padding-bottom: calc(25 / 375 * 100vw);
    padding-top: calc(19 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}

.p-footer__nav > ul {
  align-items: center;
  display: flex;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 1199px) {
  .p-footer__nav > ul {
    gap: calc(48 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav > ul {
    gap: calc(14 / 375 * 100vw);
  }
}
.p-footer__nav > ul > li + li {
  margin-left: 1em;
}
.p-footer__nav a {
  color: var(--color-white);
  font-size: 14px;
  text-decoration: underline;
}
@media screen and (max-width: 1199px) {
  .p-footer__nav a {
    font-size: calc(14 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__nav a {
    font-size: calc(12 / 375 * 100vw);
  }
}
.p-footer__copyright {
  color: var(--color-white);
  margin-top: 23px;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  .p-footer__copyright {
    margin-top: calc(23 / 1200 * 100vw);
  }
}
@media screen and (max-width: 767px) {
  .p-footer__copyright {
    font-size: calc(10 / 375 * 100vw);
    margin-top: calc(11 / 375 * 100vw);
  }
}