@charset "UTF-8";
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuHanJP, "Zen Kaku Gothic New", sans-serif;
  color: #222;
  font-weight: 400;
  font-size: 3.7333333333vw;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
    width: 100%;
    position: relative;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.smp-tab-block {
  display: block;
}
@media screen and (min-width: 1000px) {
  .smp-tab-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

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

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

@keyframes fadeIn {
  0% {
    translate: 0 15px;
    opacity: 0;
  }
  100% {
    translate: 0 0;
    opacity: 1;
  }
}
.ani.fadeIn {
  translate: 0 15px;
  opacity: 0;
}
.ani.fadeIn.animation {
  animation: fadeIn 1s 0s ease forwards;
}

@keyframes heroText {
  0% {
    transform: scale(0.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes heroTextSub {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes heroTextContent {
  0% {
    opacity: 0;
    translate: 0 -125%;
  }
  100% {
    opacity: 1;
    translate: 0 0;
  }
}
:root {
  --base-width: 1000px;
  --base-width-sp: 90%;
  --base-inline-sp: 5%;
  --base-color: #000000;
  --base-text-color: #000000;
  --main-color: #53b340;
  --sub-color: #2948a0;
  --color-step01: var(--main-color);
  --color-step02: #ff822b;
  --color-step03: #54b5e7;
  --color-yellow: #ffe500;
  --color-bg: #d2e9f1;
  --base-font-size: 17px;
  --base-font-size-sp: vw(17);
  --base-transition-time: 0.3s;
}

/*======================================================================================*/
.l-header {
  display: block;
  position: absolute;
  top: 5vw;
  right: 5vw;
  width: 23%;
  z-index: 5;
}
@media screen and (min-width: 768px) {
  .l-header {
    width: 18%;
    top: 2vw;
    right: auto;
    left: 2.8vw;
  }
}

.l-footer {
  border-top: solid 1px #000;
  padding: 6vw 0 20vw;
  margin-top: 20vw;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 30px 0;
    margin-top: 0;
  }
}
.l-footer a.logo {
  display: block;
  width: 62%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .l-footer a.logo {
    width: 354px;
  }
}

.fix-btn {
  display: block;
  position: fixed;
  width: 100%;
  font-size: 4.8vw;
  background-color: var(--main-color);
  padding: 0.8em 0;
  z-index: 30;
  bottom: 0;
  right: 0;
  color: #fff;
  text-align: center;
  font-weight: 600;
}
@media screen and (min-width: 768px) {
  .fix-btn {
    width: 150px;
    height: 150px;
    border-radius: 50em;
    box-sizing: border-box;
    padding: 2em 0 0;
    font-size: 16px;
    line-height: 1.4em;
    bottom: 30px;
    right: 30px;
    transition: 0.3s;
  }
  .fix-btn:hover {
    background-color: var(--sub-color);
  }
}
@media screen and (min-width: 1280px) {
  .fix-btn {
    width: 170px;
    height: 170px;
    font-size: 18px;
  }
}
.fix-btn::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 80%;
  border-top: solid 1px #fff;
  border-bottom: solid 1px #fff;
}
@media screen and (min-width: 768px) {
  .fix-btn::after {
    width: calc(100% - 0.8em);
    height: calc(100% - 0.8em);
    border: solid 2px #fff;
    border-radius: 50em;
    transition: all 0.3s;
  }
}
.fix-btn .txt {
  margin-right: 1em;
}
@media screen and (min-width: 768px) {
  .fix-btn .txt {
    margin: 0;
  }
}
.fix-btn .arrow {
  fill: #fff;
  filter: brightness(0) saturate(100%) invert(99%) sepia(3%) saturate(197%) hue-rotate(283deg) brightness(118%) contrast(100%);
  display: block;
  position: absolute;
  top: 51%;
  right: 5%;
  transform: translate(0, -50%);
  z-index: 1;
  width: 1.4em;
}
@media screen and (min-width: 768px) {
  .fix-btn .arrow {
    position: relative;
    top: 0;
    left: 0;
    transform: translate(0);
    margin: 0.6em auto 0;
  }
}

.hero-area {
  position: relative;
  padding-bottom: 5em;
}
@media screen and (min-width: 768px) {
  .hero-area {
    padding-bottom: 7vw;
  }
}

.hero__title {
  position: absolute;
  bottom: 3.6em;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  width: 86%;
  opacity: 0;
  transform-origin: center bottom;
  transform: scale(0.2);
  animation: heroText 1.25s 0.3s linear(0, 0.082, 0.185, 0.3027, 0.4293, 0.5591, 0.6874, 0.8098, 0.9229, 1.024, 1.1113, 1.1834, 1.2398, 1.2807, 1.3066, 1.3185, 1.318, 1.3065, 1.286, 1.2583, 1.2252, 1.1887, 1.1504, 1.1119, 1.0745, 1.0393, 1.0074, 0.9793, 0.9556, 0.9365, 0.9221, 0.9122, 0.9066, 0.9049, 0.9068, 0.9116, 0.9189, 0.928, 0.9384, 0.9496, 0.961, 0.9724, 0.9832, 0.9932, 1.0021, 1.0098, 1.0162, 1.0212, 1.0248, 1.0271, 1.0282, 1.0281, 1.0271, 1.0253, 1.0228, 1.0199, 1.0167, 1.0133, 1.0099, 1.0066, 1.0035, 1.0007, 0.9982, 0.9961, 0.9944, 0.9931, 0.9922, 0.9917, 0.9916, 0.9918, 0.9922, 0.9928, 0.9936, 0.9946, 0.9955, 0.9966, 0.9976, 0.9985, 0.9994, 1.0002, 1.0009, 1.0014, 1.0019, 1.0022, 1.0024, 1.0025, 1.0025, 1.0024, 1.0022, 1.002, 1.0018, 1.0015, 1.0012, 1.0009, 1.0006, 1.0003, 1.0001, 0.9998, 0.9997, 0.9995, 1) forwards;
}
@media screen and (min-width: 768px) {
  .hero__title {
    width: 44%;
    bottom: 4.4vw;
  }
}
@media screen and (min-width: 1000px) {
  .hero__title {
    width: 44%;
    bottom: 3.6vw;
  }
}
@media screen and (min-width: 1280px) {
  .hero__title {
    width: 44%;
    bottom: 3.2vw;
  }
}
.hero__title .sub {
  width: 24%;
  position: absolute;
  bottom: 7.7em;
  left: 2em;
  z-index: -1;
  opacity: 0;
  transform-origin: right bottom;
  transform: scale(0);
  animation: heroTextSub 0.35s 1.16s ease forwards;
}
@media screen and (min-width: 768px) {
  .hero__title .sub {
    left: 9%;
    bottom: 65%;
  }
}

.hero-content {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding-block: 1.3333333333vw;
  background-color: var(--sub-color);
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .hero-content {
    padding-block: 10px 5px;
  }
}
.hero-content .hero-txt-sub {
  width: 100%;
  text-align: center;
  translate: 0 -125%;
  opacity: 1;
  animation: heroTextContent 0.45s 1.74s ease forwards;
}
.hero-content .hero-txt-sub img {
  display: inline-block;
  width: 82%;
}

.main-wrapper {
  background-color: var(--color-bg);
}

.main-present {
  width: 92%;
  margin-inline: auto;
  padding-block: 4vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .main-present {
    max-width: 640px;
    padding-block: 40px;
  }
}

.step-wrapper {
  width: var(--base-width-sp);
  margin-inline: auto;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  .step-wrapper {
    max-width: var(--base-width);
    padding-bottom: 90px;
  }
}

.step-content {
  --step-color: var(--color-step01);
  position: relative;
  padding: 5.3333333333vw 4.8vw;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.05);
}
@media screen and (min-width: 768px) {
  .step-content {
    padding: 50px 6.5%;
  }
}
.step-content::before, .step-content::after {
  content: "";
  position: absolute;
  display: block;
  clip-path: polygon(50% 50%, 100% 50%, 50% 100%, 0% 50%);
}
.step-content::before {
  top: calc(100% + 10px);
  left: calc(50% + 3px);
  width: 90px;
  height: 40px;
  background-color: rgba(0, 0, 0, 0.05);
  translate: -50% calc(-50% - 5px);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .step-content::before {
    left: calc(50% + 1px);
    width: 95px;
    height: 76px;
  }
}
.step-content::after {
  top: 100%;
  left: 50%;
  width: 95px;
  height: 44px;
  background-color: var(--step-color);
  translate: -50% -50%;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .step-content::after {
    height: 80px;
  }
}
.step-content + .step-content {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .step-content + .step-content {
    margin-top: 60px;
  }
}
.step-content:last-of-type::before, .step-content:last-of-type::after {
  content: none;
}
.step-content.step01 {
  --step-color: var(--color-step01);
}
.step-content.step02 {
  --step-color: var(--color-step02);
}
.step-content.step03 {
  --step-color: var(--color-step03);
}
.step-content .step-content-heading {
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-heading {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
  }
}
.step-content .step-content-heading .step-content-heading-step {
  width: 50%;
  margin-inline: auto;
  margin-bottom: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-heading .step-content-heading-step {
    width: 200px;
    margin-bottom: 0;
    margin: 0;
  }
}
.step-content .step-content-heading .step-content-heading__title {
  font-size: 4.8vw;
  line-height: 1.5;
  letter-spacing: 0.02em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-heading .step-content-heading__title {
    margin-top: -0.3em;
    font-size: 24px;
    letter-spacing: 0.07em;
    line-height: 1.4;
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-heading .step-content-heading__title {
    margin-top: -0.1em;
    font-size: 28px;
  }
}
.step-content .step-content-heading .step-content-heading__title .step-color {
  color: var(--step-color);
}
.step-content .step-content-heading .step-content-heading__title .sup {
  font-size: 0.7em;
  vertical-align: 0.3em;
  color: #000;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-heading .step-content-heading__title .sup {
    font-size: 12px;
    vertical-align: 1em;
  }
}
.step-content .step-content__target {
  border-radius: 10px;
  border: 1px solid var(--step-color);
  color: var(--step-color);
  font-size: 4.8vw;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-content .step-content__target {
    font-size: 24px;
  }
}
.step-content .step-content-cross {
  width: 12vw;
  margin-inline: auto;
  margin-block: 0.9em 1em;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-cross {
    width: 45px;
  }
}
.step-content .step-content-present {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present {
    margin-top: 30px;
  }
}
.step-content .step-content-present .step-content-present__read {
  display: inline-block;
  font-size: 10.9333333333vw;
  line-height: 1.2;
  text-align: center;
  font-weight: 900;
  letter-spacing: -0.1em;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present .step-content-present__read {
    font-size: 30px;
    padding-bottom: 10px;
    background: linear-gradient(#ff6 100%);
    background-size: 100% 20px;
    background-repeat: no-repeat;
    background-position: left bottom;
    letter-spacing: 0em;
    padding-inline: 0.2em;
    line-height: 1.4;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-present .step-content-present__read {
    font-size: 41px;
  }
}
.step-content .step-content-present .step-content-present__read .card {
  font-size: 6.4vw;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present .step-content-present__read .card {
    font-size: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-present .step-content-present__read .card {
    font-size: 41px;
  }
}
.step-content .step-content-present .step-content-present__read .color {
  color: var(--step-color);
}
.step-content .step-content-present .step-content-present__read .num {
  font-size: 20vw;
  line-height: 0.5;
  letter-spacing: 0;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present .step-content-present__read .num {
    font-size: 54px;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-present .step-content-present__read .num {
    font-size: 75px;
  }
}
.step-content .step-content-present .step-content-present__read .comma {
  vertical-align: 0.1em;
}
.step-content .step-content-present .step-content-present__read .border {
  background: linear-gradient(#ff6 100%);
  background-size: 100% 3.2vw;
  background-repeat: no-repeat;
  background-position: left bottom;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present .step-content-present__read .border {
    background: none;
  }
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present.-col {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
  }
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present.-col .step-content-present-image {
    width: 35%;
    max-width: 335px;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present.-col .step-content-present__read {
    padding-left: 0;
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .step-content .step-content-present.-col .step-content-present__read .card {
    background: linear-gradient(#ff6 100%);
    background-size: 100% 20px;
    background-repeat: no-repeat;
    background-position: left bottom;
  }
}
.step-content .step-content-button {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-button {
    margin-top: 35px;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-button {
    margin-top: 45px;
  }
}
.step-content .step-content-button .step-content-link {
  position: relative;
  display: block;
  width: 100%;
  padding: 0.8em 0.9em;
  border-radius: 100px;
  background-color: var(--step-color);
  color: #fff;
  font-size: 5.3333333333vw;
  letter-spacing: 0.05em;
  font-weight: 700;
  text-align: left;
  transition: 0.3s ease all;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-button .step-content-link {
    width: 450px;
    margin-inline: auto;
    font-size: 20px;
    text-align: center;
  }
}
.step-content .step-content-button .step-content-link .arrow {
  position: absolute;
  top: 50%;
  right: 4vw;
  translate: 0 -48%;
  width: 7.4666666667vw;
  fill: #fff;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-button .step-content-link .arrow {
    width: 28px;
  }
}
.step-content .step-content-button .step-content-link::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 97%;
  height: 86%;
  border: solid 1px #fff;
  border-radius: 100px;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-button .step-content-link::after {
    width: calc(100% - 0.5em);
    height: calc(100% - 0.5em);
    border-radius: 50em;
    transition: all 0.3s;
  }
}
.step-content .step-content-button .step-content-link:hover {
  background-color: var(--sub-color);
}
.step-content .step-content-inner {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner {
    margin-top: 20px;
  }
}
.step-content .step-content-inner .step-content-spot {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 2%;
}
.step-content .step-content-inner .step-content-spot > li {
  width: 32%;
  text-align: center;
}
.step-content .step-content-inner .step-content-spot > li .step-content-list__read {
  font-size: 3.7333333333vw;
  letter-spacing: 0.1em;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-spot > li .step-content-list__read {
    font-size: 18px;
  }
}
.step-content .step-content-inner .step-content-spot__note {
  font-size: 3.2vw;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-spot__note {
    display: none;
  }
}
.step-content .step-content-inner .step-content-discussion-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  font-size: 5.6vw;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-discussion-list {
    flex-direction: row;
    justify-content: flex-start;
    gap: 0.3em 1em;
    font-size: 21px;
  }
}
.step-content .step-content-inner .step-content-discussion-list > li::first-letter {
  color: var(--step-color);
}
.step-content .step-content-inner .step-content-discussion-list > li .sup {
  font-size: 0.6em;
  vertical-align: super;
}
.step-content .step-content-inner .step-content-discussion__note {
  margin-top: 1em;
  font-size: 4.2666666667vw;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-discussion__note {
    font-size: 16px;
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns__read {
  color: var(--step-color);
  font-size: 4.8vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns__read {
    font-size: 20px;
    letter-spacing: 0.05em;
    text-align: left;
  }
}
@media screen and (min-width: 1000px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns__read {
    font-size: 28px;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns-list {
    justify-content: flex-start;
    gap: 25px;
    margin-top: 0;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns-list > li.line {
  width: 14.1333333333vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns-list > li.line {
    width: 48px;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns-list > li.insta {
  width: 12vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns-list > li.insta {
    width: 37px;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns-list > li.youtube {
  width: 13.8666666667vw;
}
@media screen and (min-width: 768px) {
  .step-content .step-content-inner .step-content-sns .step-content-sns-list > li.youtube {
    width: 43px;
  }
}
.step-content .step-content-inner .step-content-sns .step-content-sns-list > li a:hover {
  opacity: 0.85;
}

.step__note {
  margin-top: 4vw;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .step__note {
    margin-top: 35px;
  }
}

.howto {
  padding-block: 10.6666666667vw;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .howto {
    padding-block: 60px 70px;
  }
}

.howto-flow-inner {
  width: var(--base-width-sp);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner {
    width: 90%;
    max-width: 1000px;
    padding-bottom: 100px;
  }
}
.howto-flow-inner .howto-flow__title {
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 1.4em;
  padding: 0.28em 0 0.4em;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow__title {
    font-size: 20px;
    text-align: left;
    padding: 0.2em 0 0.2em 0.6em;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .howto-flow-inner .howto-flow__title {
    font-size: 25px;
  }
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
.howto-flow-inner .howto-flow-list li {
  padding: 5% 0 0;
  border-bottom: dashed 1px #111;
  position: relative;
  box-sizing: border-box;
  font-size: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li {
    width: 25%;
    padding: 0;
    border: none;
    border-right: dashed 1px #111;
    font-size: 17px;
    line-height: 1.5;
  }
}
.howto-flow-inner .howto-flow-list li.li01 p {
  position: absolute;
  bottom: 13vw;
  left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li.li01 p {
    text-align: center;
  }
}
.howto-flow-inner .howto-flow-list li.li02 p {
  position: absolute;
  bottom: 21vw;
  left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li.li02 p {
    text-align: center;
  }
}
.howto-flow-inner .howto-flow-list li.li03 p {
  position: absolute;
  bottom: 9vw;
  left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li.li03 p {
    text-align: center;
  }
}
.howto-flow-inner .howto-flow-list li.li04 p {
  position: absolute;
  bottom: 27vw;
  left: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li.li04 p {
    text-align: center;
  }
}
.howto-flow-inner .howto-flow-list li:last-child {
  border: none;
}
.howto-flow-inner .howto-flow-list li .arrow {
  display: block;
  width: 3em;
  height: 1.4em;
  background: #111;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li .arrow {
    width: 1em;
    height: 2em;
    top: 35%;
    right: auto;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
  }
}
.howto-flow-inner .howto-flow-list li .flow-img01 {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li .flow-img01 {
    width: 72%;
    margin: 0 auto 7%;
  }
}
.howto-flow-inner .howto-flow-list li .flow-img02 {
  width: 72%;
  margin: 0 auto 10%;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li .flow-img02 {
    width: 54%;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    transform: translate(0, -105%);
  }
}
.howto-flow-inner .howto-flow-list li .flow-img03 {
  width: 72%;
  margin: 0 auto 10%;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li .flow-img03 {
    width: 64%;
    position: absolute;
    top: -5px;
    left: 0;
    right: 0;
    transform: translate(0, -105%);
  }
}
.howto-flow-inner .howto-flow-list li p {
  text-align: center;
  font-size: 4.2vw;
  letter-spacing: -0.02em;
  font-weight: 500;
  line-height: 1.4em;
}
@media screen and (min-width: 768px) {
  .howto-flow-inner .howto-flow-list li p {
    position: revert !important;
    font-size: 1.4vw;
    line-height: 1.6em;
  }
}
@media screen and (min-width: 1000px) {
  .howto-flow-inner .howto-flow-list li p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .howto-flow-inner .howto-flow-list li p {
    font-size: 17px;
  }
}
.howto-flow-inner .howto-flow-list li p .--color {
  font-weight: bold;
  color: var(--sub-color);
  border-bottom: solid 1px var(--color-yellow);
}

.venue-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--base-width-sp);
  margin-inline: auto;
  padding-block: 8vw;
  border-top: dotted 2px #111;
}
@media screen and (min-width: 768px) {
  .venue-inner {
    display: block;
    padding: 65px 0;
    max-width: 840px;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner {
    max-width: 1000px;
    border-radius: 0;
    padding: 65px 0;
  }
}
.venue-inner .venue-heading {
  margin-inline: auto;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-heading {
    max-width: 650px;
  }
}
.venue-inner .venue-heading .venue-heading-num {
  width: 43%;
  margin-inline: auto;
  margin-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-heading .venue-heading-num {
    width: 160px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-heading .venue-heading-num {
    width: 184px;
    margin-bottom: 40px;
  }
}
.venue-inner .venue-heading .venue-heading-title {
  font-size: 6.4vw;
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-heading .venue-heading-title {
    font-size: 28px;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-heading .venue-heading-title {
    font-size: 32px;
  }
}
.venue-inner .venue-heading .venue-heading-sub {
  margin-block: 0.3em 0.5em;
  padding-block: 0.5em;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 4.8vw;
  letter-spacing: 0.07em;
  line-height: 1.5;
  font-weight: 700;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-heading .venue-heading-sub {
    font-size: 2.4vw;
    border-bottom: none;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-heading .venue-heading-sub {
    font-size: 24px;
  }
}
.venue-inner .venue-heading .venue-heading-sub .--color {
  color: var(--main-color);
}
.venue-inner .venue-list {
  order: 1;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 850px;
    margin-inline: auto;
    margin-top: 55px;
  }
}
.venue-inner .venue-list > li {
  position: relative;
  margin-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li {
    width: 31%;
    margin: 0;
  }
}
.venue-inner .venue-list > li h3 {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% -50%;
  width: 64%;
  padding-bottom: 0.05em;
  border-radius: 10px;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.4em;
  line-height: 1.8;
  font-weight: 600;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li h3 {
    width: 80%;
    font-size: 22px;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-list > li h3 {
    font-size: 25px;
  }
}
.venue-inner .venue-list > li > img {
  width: 77%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li > img {
    width: auto;
  }
}
.venue-inner .venue-list > li .inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.venue-inner .venue-list > li .title {
  text-align: center;
}
.venue-inner .venue-list > li .title .text {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  margin-bottom: 15px;
  font-size: 1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li .title .text {
    margin-top: 15px;
    font-size: 15px;
  }
}
.venue-inner .venue-list > li .title .text::before, .venue-inner .venue-list > li .title .text::after {
  content: "";
  position: absolute;
  bottom: 0.2em;
  display: inline-block;
  width: 2px;
  height: 1.3em;
  background-color: var(--main-color);
}
.venue-inner .venue-list > li .title .text::before {
  left: -0.9em;
  transform: rotate(-30deg);
}
.venue-inner .venue-list > li .title .text::after {
  right: -0.7em;
  transform: rotate(30deg);
}
.venue-inner .venue-list > li .list {
  display: flex;
  flex-direction: column;
  margin-inline: auto;
  margin-bottom: 15px;
  font-size: 0.94em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li .list {
    margin-bottom: 20px;
    font-size: 14px;
  }
}
.venue-inner .venue-list > li .list li {
  width: 100%;
  padding-left: 1.2em;
  text-indent: -1.2em;
}
.venue-inner .venue-list > li .list li::before {
  content: "● ";
  color: var(--main-color);
}
.venue-inner .venue-list > li p {
  font-size: 0.84em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.8em;
  margin: 2em 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li p {
    font-size: 1.5vw;
    margin: 1em 0 1.2em;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-list > li p {
    font-size: 15px;
  }
}
@media screen and (min-width: 1280px) {
  .venue-inner .venue-list > li p {
    font-size: 16px;
  }
}
.venue-inner .venue-list > li > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.venue-inner .venue-list > li > ul li {
  width: 32%;
  margin-bottom: 3%;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li > ul li {
    width: 48%;
  }
}
.venue-inner .venue-list > li > ul li a {
  position: relative;
  display: block;
  padding: 0.6em 0 0.6em 0;
  box-sizing: border-box;
  background-color: #fff;
  border: solid 1px var(--main-color);
  font-weight: 500;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li > ul li a {
    padding: 0.6em 0 0.6em 0;
    font-size: 1.6vw;
    letter-spacing: 0;
    transition: all 0.2s;
    text-indent: -0.5em;
  }
  .venue-inner .venue-list > li > ul li a:hover {
    background-color: var(--main-color);
    color: #fff;
  }
  .venue-inner .venue-list > li > ul li a:hover span.arrow {
    fill: #fff;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-list > li > ul li a {
    font-size: 16px;
    text-indent: 0;
  }
}
@media screen and (min-width: 768px) {
  .venue-inner .venue-list > li > ul li a .txt {
    text-indent: -0.8em;
  }
}
@media screen and (min-width: 1000px) {
  .venue-inner .venue-list > li > ul li a .txt {
    text-indent: 0;
  }
}
.venue-inner .venue-list > li > ul li a > span {
  display: block;
  fill: var(--main-color);
}
.venue-inner .venue-list > li > ul li a > span.arrow {
  position: absolute;
  top: 50%;
  transform: translate(0, -55%);
  right: 0.6em;
  width: 1em;
  transition: all 0.2s;
}
.venue-inner .venue-list > li:last-child {
  margin-bottom: 0;
}
.venue-inner .howto__note {
  font-size: 4.2666666667vw;
  line-height: 1.5;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .venue-inner .howto__note {
    margin-top: 30px;
    font-size: 16px;
  }
}

.howto-note-inner {
  width: 90%;
  margin: auto;
  padding-top: 10.6666666667vw;
  border-top: dotted 2px #111;
}
@media screen and (min-width: 768px) {
  .howto-note-inner {
    width: 90%;
    max-width: 1000px;
    padding-top: 60px;
  }
}
.howto-note-inner .howto-note__title {
  font-size: 3.2vw;
  letter-spacing: -0.05em;
  font-weight: 400;
  margin-bottom: 0.7em;
}
@media screen and (min-width: 768px) {
  .howto-note-inner .howto-note__title {
    font-size: 15px;
  }
}
@media screen and (min-width: 1000px) {
  .howto-note-inner .howto-note__title {
    font-size: 18px;
  }
}
.howto-note-inner .howto-note-list {
  font-size: 3.2vw;
  font-weight: 400;
  line-height: 1.55;
  margin-bottom: 2em;
  text-align: justify;
  word-break: break-all;
}
@media screen and (min-width: 768px) {
  .howto-note-inner .howto-note-list {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  .howto-note-inner .howto-note-list {
    font-size: 14px;
  }
}
.howto-note-inner .howto-note-list:last-child {
  margin-bottom: 0;
}
.howto-note-inner .howto-note-list li {
  text-indent: -0.8em;
  padding-left: 0.8em;
}
.howto-note-inner .howto-note-list li::before {
  content: "・";
}
.howto-note-inner .howto-note-list li a:hover {
  opacity: 0.85;
  text-decoration: underline;
}/*# sourceMappingURL=style.css.map */