@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");

:root {
  --white: #fff;
  --white-rgb: 255, 255, 255;
  --black: #000;
  --black-rgb: 0, 0, 0;
  --green: #009682;
  --lightgreen: #e9f4f1;
  --gray: #f7f7f7;
  --red: #e83a3a;
  --blue: #2680eb;
}

/* -----------------------------------------------
* Plugins エントリーポイント
-------------------------------------------------- */
/*------------------------------------------------------------------------------
  reset
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button,
body {
  font-family:
    "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif !important;
  font-weight: 400 !important;
  font-size: 16px;
}

html {
  background: #fff;
  font-size: 16px !important;
  line-height: 1.6;
  word-break: break-all;
}

html p {
  margin: 0;
}

body {
  color: #222 !important;
  background: var(--white) !important;
  margin: 0;
}

@media only screen and (max-width: 750px) {
  body {
    font-size: 12px;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

* {
  min-height: 0vw;
  /* Safari clamp関数対策 */
  word-break: normal !important;
  word-wrap: break-word;
}

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
  image-rendering: -webkit-optimize-contrast;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: #222;
  text-decoration: none;
}

input,
select,
textarea,
button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #ccc;
}

:-ms-input-placeholder {
  color: #ccc;
}

::-ms-input-placeholder {
  color: #ccc;
}

::-moz-placeholder {
  color: #ccc;
}

::placeholder {
  color: #ccc;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;

  margin: 0;
  padding: 0;
}

main {
  display: block;
  position: relative;
  overflow: hidden;
}

.outer-block {
  min-width: 100%;
}

@media only screen and (max-width: 750px) {
  .outer-block {
    min-width: 320px;
  }
}

.inner-block {
  position: relative;
  max-width: 1260px;
  padding: 0 30px;
}

@media only screen and (min-width: 751px) {
  .inner-block {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 750px) {
  .inner-block {
    width: auto;
    padding: 0 15px;
  }
}

#wrapper {
  position: relative;
}

@media only screen and (max-width: 750px) {
  #wrapper {
    min-width: 320px;
  }
}

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

  a[href^="tel:"] {
    pointer-events: none;
  }

  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

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

dl,
dt,
dd {
  padding: 0;
  margin: 0;
}

/* --------------------------------
c-header
----------------------------------- */
header {
  position: relative;
  z-index: 7;
}

header .header-logo a {
  position: absolute;
  left: 30px;
  top: 20px;
  width: 130px;
  height: 60px;
  display: block;
}

@media only screen and (max-width: 750px) {
  header .header-logo a {
    width: 66px;
    height: 30px;
    left: 16px;
    top: 10px;
  }
}

header .header-logo img {
  width: 100%;
}

#header {
  z-index: 8;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
}

.menu-btn {
  position: fixed;
  right: 30px;
  top: 26px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  width: 46px;
  height: 36px;
  opacity: 1;
  z-index: 10;
}

@media only screen and (max-width: 750px) {
  .menu-btn {
    background-color: var(--white);
    width: 50px;
    height: 50px;
    right: 10px;
    top: 10px;
    border-radius: 50%;
  }
}

.menu-btn span {
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 5px;
  border-radius: 2px;
  background-color: var(--black);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media only screen and (max-width: 750px) {
  .menu-btn span {
    width: 34px;
    border-radius: 2px;
    height: 3px;
  }
}

.menu-btn span:nth-of-type(1) {
  top: 0px;
}

@media only screen and (max-width: 750px) {
  .menu-btn span:nth-of-type(1) {
    top: 16px;
  }
}

.menu-btn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}

.menu-btn span:nth-of-type(3) {
  bottom: 0px;
}

@media only screen and (max-width: 750px) {
  .menu-btn span:nth-of-type(3) {
    bottom: 16px;
  }
}

.menu-btn.is-open span {
  top: 20px;
}

@media only screen and (max-width: 750px) {
  .menu-btn.is-open span {
    top: 24px;
  }
}

.menu-btn.is-open span:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.menu-btn.is-open span:nth-of-type(2) {
  opacity: 0;
}

.menu-btn.is-open span:nth-of-type(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 0;
  bottom: 12px;
}

@media only screen and (max-width: 750px) {
  .menu-btn.is-open span:nth-of-type(3) {
    bottom: 24px;
  }
}

.menu {
  padding: 20px;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  z-index: 9;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0;
  overflow-y: scroll;
  background-color: rgba(18, 130, 113, 0.8);
}

@media only screen and (min-width: 751px) {
  .menu {
    height: 300px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 750px) {
  .menu {
    padding: 90px 40px;
  }
}

.menu.is-open {
  opacity: 1;
  visibility: visible;
}

@media only screen and (min-width: 751px) {
  .menu-list {
    width: 440px;
    margin: 0 auto;
  }
}

.menu-list li {
  list-style: none;
  position: relative;
  border-bottom: 1px dashed var(--gray-db);
}

.menu-list a {
  display: block;
  position: relative;
  font-size: clamp(1.0625rem, 0.9524647887rem + 0.4694835681vw, 1.375rem);
  padding: 10px 0;
  color: var(--white);
  font-weight: 600;
}

@media only screen and (max-width: 750px) {
  .menu-list a {
    line-height: 1.4;
    padding: 12px 0;
  }
}

.menu-list a::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7.5px 0 7.5px 14px;
  border-color: transparent transparent transparent var(--white);
}

/* --------------------------------
c-footer
----------------------------------- */
.footer {
  background-color: #009682;
  padding: 40px 0;
  color: var(--white);
  position: relative;
}

@media only screen and (max-width: 750px) {
  .footer {
    text-align: center;
    padding: 44px 0 26px;
  }
}

@media only screen and (min-width: 751px) {
  .footer .inner-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.footer .info {
  font-size: clamp(0.75rem, 0.661971831rem + 0.3755868545vw, 1rem);
  line-height: 1.63;
}

.footer .copyright {
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
  margin-top: 26px;
}

@media only screen and (max-width: 750px) {
  .footer .copyright {
    margin-top: 40px;
  }
}

/* --------------------------------
c-pagetop
----------------------------------- */
#pagetop {
  z-index: 99;
  position: absolute;
}

@media only screen and (min-width: 751px) {
  #pagetop {
    width: 51px;
    height: 51px;
    right: 20px;
    bottom: 20px;
    top: auto;
    margin: auto;
  }
}

@media only screen and (max-width: 750px) {
  #pagetop {
    width: 42px;
    height: 42px;
    right: 10px;
  }
}

#pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  position: relative;
  background-color: var(--green);
  border-radius: 50%;
}

@media only screen and (min-width: 751px) {
  #pagetop a:hover {
    opacity: 1;
  }

  #pagetop a:hover:before {
    top: 0;
  }
}

#pagetop a::before {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  top: 5px;
  bottom: 0;
  margin: auto;
  width: 13px;
  height: 13px;
  border-left: 2px solid var(--white);
  border-top: 2px solid var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: top 0.3s;
  transition: top 0.3s;
}

@media only screen and (max-width: 750px) {
  #pagetop a::before {
    border-left: 1px solid var(--white);
    border-top: 1px solid var(--white);
  }
}

/* --------------------------------
c-parts
----------------------------------- */
#wrapper a:hover,
#wrapper a:focus,
#wrapper a:active {
  opacity: 1;
}

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

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

.ib {
  display: inline-block;
}

.c-section {
  position: relative;
}

@media only screen and (min-width: 751px) {
  .c-section {
    padding: 100px 0;
  }
}

@media only screen and (max-width: 750px) {
  .c-section {
    padding: 50px 0;
  }
}

/*----------------------
*  title
----------------------*/
.c-title {
  margin-bottom: 40px;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(1.5625rem, 1.3204225352rem + 1.0328638498vw, 2.25rem);
}

@media only screen and (max-width: 750px) {
  .c-title {
    margin-bottom: 20px;
  }
}

.c-title.green {
  color: var(--green);
}

.c-title .big {
  color: #009682;
  font-size: clamp(2.8125rem, 2.4823943662rem + 1.4084507042vw, 3.75rem);
}

.c-title .circle {
  font-size: clamp(2.8125rem, 2.2403169014rem + 2.441314554vw, 4.4375rem);
  font-weight: bold;
  color: var(--white);
  background-color: #128271;
  border-radius: 50%;
  margin: 0 10px;
  text-align: center;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: clamp(4.375rem, 3.605rem + 3.29vw, 6.563rem);
  height: clamp(4.375rem, 3.605rem + 3.29vw, 6.563rem);
  padding-bottom: 8px;
  padding-right: 4px;
}

@media only screen and (max-width: 750px) {
  .c-title .circle {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}

/*----------------------
*  button
----------------------*/
/* .c-button {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border: solid 1px var(--red);
  background-color: #fffe84;
  height: 90px;
  border-radius: 64px;
  font-weight: 600;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
  box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
  background-color: var(--red);
  font-size: clamp(1.125rem, 0.9049295775rem + 0.9389671362vw, 1.75rem);
  max-width: 514px;
  margin: 0 auto;
  color: var(--white);
  letter-spacing: 0.1em;
} */

.c-button img {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  display: inline-block;
}

.c-button:hover img {
  transform: translateY(4px); /* 少し下に下がる */
  opacity: 0.8; /* うっすら半透明 */
}

@media only screen and (max-width: 750px) {
  .c-button {
    height: 54px;
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

@media only screen and (min-width: 751px) {
  .c-button:hover {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.c-button .wrap {
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.c-button .dot {
  position: relative;
}

.c-button .dot::before {
  content: "";
  position: absolute;
  top: -8px;
  width: 6px;
  height: 6px;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--white);
  border-radius: 50%;
}

@media only screen and (max-width: 750px) {
  .c-button .dot::before {
    top: -4px;
    width: 3px;
    height: 3px;
  }
}

.c-button .small {
  font-size: clamp(0.875rem, 0.6549295775rem + 0.9389671362vw, 1.5rem);
}

.c-button-open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #fffe84;
  border: 1px solid var(--black);
  padding: 5px 10px;
  -webkit-box-shadow: 0px 5px 0 0 var(--black);
  box-shadow: 0px 5px 0 0 var(--black);
}

@media only screen and (max-width: 750px) {
  .c-button-open {
    -webkit-box-shadow: 0px 2px 0 0 var(--black);
    box-shadow: 0px 2px 0 0 var(--black);
  }
}

@media only screen and (min-width: 751px) {
  .c-button-open:hover {
    -webkit-transform: translateY(5px);
    transform: translateY(5px);
    -webkit-box-shadow: none;
    box-shadow: none;
  }
}

.c-button-open .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 50%;
}

.c-button-open .icon-free {
  background-color: var(--white);
  border-radius: 50%;
  border: 1px solid var(--black);
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: clamp(0.8125rem, 0.7024647887rem + 0.4694835681vw, 1.125rem);
  margin-right: 10px;
}

@media only screen and (max-width: 750px) {
  .c-button-open .icon-free {
    width: 38px;
    height: 38px;
  }
}

@media only screen and (min-width: 751px) {
  .c-button-open .text {
    width: 144px;
  }
}

@media only screen and (max-width: 750px) {
  .c-button-open .text {
    width: 113px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.c-button-open .text-big {
  width: 50%;
  font-size: clamp(1.25rem, 1.0959507042rem + 0.6572769953vw, 1.6875rem);
  letter-spacing: 0.1em;
  font-weight: bold;
}

@media only screen and (max-width: 750px) {
  .c-button-open .text-big {
    padding-right: 20px;
  }
}

@media only screen and (max-width: 374px) {
  .c-button-open .text-big {
    font-size: 16px;
  }
}

/*----------------------
*  sticky
----------------------*/
.sticky {
  display: none;
  width: 100%;
  position: fixed;
  left: 0px;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 10;
  padding: 20px 0;
}

.sticky img {
  max-width: 400px;
  margin: auto;
}

@media only screen and (max-width: 750px) {
  .sticky {
    padding: 10px 0;
  }
  .sticky img {
    max-width: 300px;
    margin: auto;
  }
}

@media only screen and (max-width: 750px) {
  .sticky .c-button {
    width: calc(100% - 120px);
  }
}

/*------------------------------------------------------------------------------
  animation
------------------------------------------------------------------------------*/
@-webkit-keyframes startFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes startFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media not print {
  .anm {
    opacity: 0;
  }

  .anm.is-animated {
    -webkit-animation: fadeIn 1.5s forwards;
    animation: fadeIn 1.5s forwards;
  }

  .anm-up {
    opacity: 0;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  .anm-up.is-animated {
    -webkit-animation: fadeInUp 1.5s forwards;
    animation: fadeInUp 1.5s forwards;
  }

  .anm-left {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  .anm-left.is-animated {
    -webkit-animation: fadeInLeft 1.5s forwards;
    animation: fadeInLeft 1.5s forwards;
  }

  .anm-right {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  .anm-right.is-animated {
    -webkit-animation: fadeInRight 1.5s forwards;
    animation: fadeInRight 1.5s forwards;
  }
}

.anm-list > * {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
}

.anm-list > *.is-animated {
  -webkit-animation: fadeInUp 1.5s forwards;
  animation: fadeInUp 1.5s forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
    transition-timing-function: cubic-bezier(0, 0.4, 0.2, 1);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #313131;
  line-height: 1;
  width: 30px;
  height: 30px;
  position: relative;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .lineClose {
    width: 22px;
    height: 22px;
  }
}

.lineClose::before,
.lineClose::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--white);
}

.lineClose::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lineClose::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.swiper-pagination-bullets {
  bottom: 50px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-pagination-bullets {
    bottom: 36px !important;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 10px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background-color: #1fbc86;
}

.swiper-button-next,
.swiper-button-prev {
  color: #009682 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem) !important;
  font-weight: bold !important;
}

.swiper-button-next {
  right: 60px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-button-next {
    right: 10px !important;
  }
}

.swiper-button-prev {
  left: 60px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-button-prev {
    left: 10px !important;
  }
}

/* --------------------------------
* mv-block
----------------------------------- */

.mv-block {
  position: relative;
  overflow: hidden;
  background-color: #a7dbd3;
  border-bottom: 5px solid #7bb1a9;
}

.mv-block .inner-block {
  max-width: 1460px;
}

@media only screen and (max-width: 849px) {
  .mv-block {
    padding-top: 20px;
  }
}

.mv-block .image-area {
  position: relative;
}

@media only screen and (min-width: 850px) {
  .mv-block .image-area {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    max-height: 678px;
    height: 47.0833333333vw;
  }
}

@media only screen and (min-width: 850px) {
  .mv-block .image-area::before {
    width: 80.5555555556vw;
    height: 34.0972222222vw;
    right: -34.7222222222vw;
    top: 0px;
  }
}

@media only screen and (min-width: 1441px) {
  .mv-block .image-area::before {
    width: 1160px;
    height: 491px;
    right: -500px;
    top: 0px;
  }
}

@media only screen and (max-width: 849px) {
  .mv-block .image-area::before {
    width: 133.3333333333vw;
    height: 58.6666666667vw;
    right: -40vw;
    bottom: 26.6666666667vw;
  }
}

@media only screen and (min-width: 850px) {
  .mv-block .image-area .image {
    position: absolute;
    bottom: 0;
    left: 3%;
    z-index: 1;
    max-width: 600px;
    width: 33%;
  }
}

@media only screen and (max-width: 849px) {
  .mv-block .image-area .image {
    /* position: absolute; */
    margin: 0 auto;
    order: 2;
    /* bottom: -5%; */
    width: 100%;
    height: 60%;
    padding-bottom: 80px;
    display: flex;
  }

  .mv-block {
    border-bottom: none;
  }

  .info-area {
    order: 1;
    height: 40%;
  }
}

.mv-block .image-area .info {
  text-align: center;
  position: relative;
  z-index: 2;
  padding-top: 3%;
  height: auto;
  display: flex;
  align-items: baseline;
}

@media only screen and (min-width: 1441px) {
  .mv-block .image-area .info {
    margin-top: 2%;
  }
}

.mv-block .image-area .info .subtitle {
  font-size: clamp(20px, 14vw, 200px);
  line-height: 1;
  font-weight: bold;
  margin-top: 0%;
  /* text-shadow: 2px 2px 0px #33cdb9; */
}

.mv-block .image-area .info .main-title {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  /* transform: rotate(-3deg); */
  /* font-style: italic; */
  zoom: 1.3;
  margin-bottom: 0;
  /* text-shadow: 2px 2px 0px #33cdb9; */
  font-size: clamp(30px, 4.8vw, 70px);
  letter-spacing: 1px;
  line-height: 1.4;
}

.mv-block .image-area .info .main-title .number {
  font-size: clamp(50px, 5vw, 70px);
  color: var(--white);
  text-shadow: 3px 3px 0px #000000;
  margin-right: 4px;
}

.mv-block .button-area {
  margin: 8% auto 0 auto;
  z-index: 3;
  max-width: 1440px;
  width: 68%;
}

@media only screen and (max-width: 849px) {
  .mv-block .button-area {
    margin-top: -16vw;
    padding: 90px 0 20px;
    width: 100%;
    left: 0;
  }

  .mv-block .button-area {
    bottom: 0%;
    background-color: #008d7b;
    padding-top: 3%;
    position: absolute;
    width: 100%;
    z-index: 1;
    text-align: center;
  }

  .button-area img {
    max-width: 300px;
    text-align: center;
  }

  .mv-block .image-area .info .subtitle {
    font-size: 180px;
    margin-bottom: 0;
    margin-top: 0;
  }

  .mv-block .grid {
    position: absolute;
    bottom: 8%;
    background-color: #008d7b;
    padding: 20px 0 0 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 2;
    display: none !important;
  }
}

@media only screen and (min-width: 751px) {
  .mv-block .button-area::before {
    content: "";
    position: absolute;
    max-width: 1920px;
    width: 100vw;
    max-height: 210px;
    height: 10.9375vw;
    left: 0;
    right: 0;
    top: -20px;
    margin: auto;
  }
}

@media only screen and (min-width: 751px) and (min-width: 1921px) {
  .mv-block .button-area::before {
    top: -30px;
  }
}

@media only screen and (min-width: 751px) and (max-width: 1440px) {
  .mv-block .button-area::before {
    top: -10px;
  }
}

.mv-block .button-area .c-button {
  font-size: clamp(1rem, 0.8019366197rem + 0.8450704225vw, 1.5625rem);
}

@media only screen and (min-width: 751px) {
  .mv-block .button-area .c-button {
    margin-right: auto;
    margin-left: 0;
    width: clamp(23.75rem, 16.025rem + 15.81vw, 32.25rem);
    height: 75px;
    margin: auto;
  }
}

.sp-info p {
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  white-space: nowrap;
  zoom: 1.1;
  margin-bottom: 0;
  font-size: clamp(30px, 4.8vw, 60px);
  color: #106e61;
  margin-top: 20px;
}

@media only screen and (max-width: 849px) {
  .mv-block .button-area .c-button {
    height: 50px;
    width: calc(100% - 60px);
  }

  .mv-block .pc {
    display: none !important;
  }

  .mv-block .sp {
    display: block !important;
    margin: auto;
    padding-bottom: 2%;
    max-width: 660px;
    width: 100%;
  }

  .mv-block .inner-block {
    padding: 0;
  }

  .info-area {
    width: 100% !important;
    padding-top: 4%;
  }

  .mv-block .image-area .info {
    text-align: center;
    position: relative;
    z-index: 2;
    padding-top: 3%;
    height: auto;
    display: flex;
    align-items: baseline;
    width: 100%;
    justify-content: center;
  }

  .sp-info {
    display: block;
  }
}

@media only screen and (max-width: 700px) {
  .info-area {
    width: 100% !important;
  }

  .mv-block .sp {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .mv-block .image-area .info {
    flex-wrap: wrap;
    height: auto;
  }

  .mv-block .image-area .info .main-title {
    width: 100%;
  }

  .mv-block .image-area .info .subtitle {
    width: 100%;
  }
}

.mv-block .min-sp {
  display: none !important;
}

@media only screen and (max-width: 550px) {
  .mv-block .min-sp {
    display: block !important;
    margin: auto;
  }

  .mv-block .image-area .info .main-title {
    font-size: 45px;
  }

  .mv-block .image-area .info .main-title .number {
    font-size: 42px;
    text-shadow: 2px 2px 0px #000000;
  }

  .mv-block .image-area .info .subtitle {
    font-size: 70px;
    margin-bottom: 10px;
    letter-spacing: 10px;
    margin-top: 0;
  }

  .mv-block .image-area .info {
    padding-top: 0;
  }

  h1 {
    line-height: 1.1;
  }
}

@media only screen and (max-width: 374px) {
  .mv-block .image-area .info .subtitle {
    font-size: 100px;
  }

  .mv-block .image-area .info .main-title {
    font-size: 28px;
  }

  .mv-block .image-area .info .main-title .number {
    font-size: 40px;
    text-shadow: 2px 2px 0px #000000;
  }

  .sp-info p {
    font-size: 22px;
    margin-top: 10px;
  }
}

@media only screen and (min-width: 850px) {
  .mv-block .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 5%;
  }
}

.mv-block .grid {
  display: flex;
  width: 100%;
  justify-content: center;
}

.mv-block .theme-anchor-button {
  position: relative;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.11);
  background-color: #fff;
}

.mv-block .theme-counter-button {
  font-weight: 600;
  color: #009682;
  counter-increment: number;
  padding: 16px 5% 16px 8%;
  text-align: center;
  border-radius: 100px;
  border: 3px solid #007e6e;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: normal;
  min-width: 200px;
  margin: 0 5px;
}

.mv-block .theme-counter-button::before {
  content: counter(number, decimal-leading-zero);
  color: rgba(0, 150, 130, 0.5);
  display: block;
  font-style: italic;
  font-size: 40px;
  position: absolute;
  left: 7px;
  top: 7%;
  font-size: clamp(34px, 2.8vw, 40px);
}

.info-area {
  display: flex;
  flex-wrap: wrap;
  width: 65%;
  justify-content: center;
  align-content: center;
}

@media (max-width: 1100px) {
  .mv-block .image-area {
    height: 60.0833333333vw;
  }

  .mv-block .theme-counter-button {
    font-weight: 600;
    color: #009682;
    counter-increment: number;
    padding: 0;
    text-align: center;
    border-radius: 100px;
    border: 3px solid #007e6e;
    font-size: clamp(15px, 1.1vw, 16px);
    letter-spacing: 0;
    height: 200px;
    align-items: center;
    display: flex;
    justify-content: center;
  }

  .mv-block .theme-counter-button::before {
    left: 37%;
  }
}

@media (max-width: 849px) {
  .mv-block .image-area {
    height: 980px;
    flex-direction: column;
    display: flex;
    position: relative;
  }

  .info-area {
    order: 1;
    padding: 30px 0;
  }
}

@media (max-width: 550px) {
  .mv-block .image-area {
    height: auto;
  }

  .sp-info p {
    font-size: 26px;
    margin-top: 10px;
  }
}

@media (max-width: 389px) {
}

/* --------------------------------
* overall-block
----------------------------------- */

.overall-text-box {
  display: flex;
}

.overall-text-box .overall-text-box-text {
  width: 85%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5%;
}

.overall-text-box img {
  width: 15%;
  padding: 20px 22px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .overall-block .c-title {
    width: calc(100% + 10px);
    margin: 0 -5px 20px;
  }
}

.overall-block .overall-wrap {
  display: flex;
  flex-wrap: wrap;
}

@media only screen and (min-width: 1441px) {
  .overall-block .overall-wrap {
    gap: 20px 40;
  }
}

@media only screen and (min-width: 751px) {
  .overall-block .overall-wrap {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(1, 1fr);
  }
}

@media only screen and (max-width: 750px) {
  .overall-block .overall-wrap {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.overall-block .overall-box {
  border-radius: 20px;
  -webkit-box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 15px 0 rgba(0, 0, 0, 0.1);
  background-color: var(--white);
  width: 100%;
  margin-bottom: 40px;
}

@media only screen and (min-width: 1441px) {
  .overall-block .overall-box {
  }
}

@media only screen and (max-width: 750px) {
  .overall-block .overall-box {
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px 3px 7px 0 rgba(0, 0, 0, 0.1);
  }
}

.overall-block .overall-box .title {
  text-align: center;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  padding-right: 15%;
}

.overall-block .overall-box .title .sub {
  font-size: clamp(1.375rem, 1.0669014085rem + 1.3145539906vw, 2.25rem);
  line-height: 1.3;
  display: block;
}

.overall-block .overall-box .title .big {
  font-size: clamp(1.375rem, 1.0669014085rem + 1.3145539906vw, 2.25rem);
  color: var(--green);
  line-height: 1.3;
  text-decoration: underline;
  text-underline-offset: 6px;
  display: block;
}

@media only screen and (max-width: 750px) {
  .overall-text-box .overall-text-box-text {
    flex-wrap: wrap;
  }

  .overall-text-box .overall-text-box-text {
    width: 75%;
    padding-left: 0;
  }

  .overall-text-box img {
    padding: 10px;
  }

  .overall-text-box img {
    width: 25%;
  }

  .overall-block .overall-box .title .big {
    margin-top: 2px;
    text-decoration-thickness: 1px;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 550px) {
  .overall-block .overall-box .title .sub {
    font-size: 18px;
  }
}

.overall-block .overall-box .text {
  font-size: clamp(0.875rem, 0.7649647887rem + 0.4694835681vw, 1.1875rem);
  line-height: 2;
  padding-top: 0;
}

@media only screen and (max-width: 750px) {
  .overall-block .overall-box .text {
    line-height: 1.75;
  }
}

.plus {
  color: var(--black);
  right: 18px;
  top: 20%;
}

@media only screen and (max-width: 750px) {
  .plus {
    width: 20px;
    height: 20px;
    right: 14px;
    top: 19%;
  }
}

.plus:before,
.plus:after {
  background-color: var(--black);
  width: 12px;
}

@media only screen and (max-width: 750px) {
  .plus:before,
  .plus:after {
    width: 12px;
    height: 2px;
  }
}

.plus:before,
.plus:after {
  content: "";
  position: absolute;
  top: 12px;
  width: 16px;
  height: 2px;
  background-color: #00a385;
}

/* --------------------------------
* table-block
----------------------------------- */
.table-block .scroll {
  position: relative;
}

@media only screen and (max-width: 750px) {
  .table-block .scroll {
    overflow-x: scroll;
    padding-bottom: 4px;
  }

  .table-block .scroll::-webkit-scrollbar {
    width: 12px;
  }

  .table-block .scroll::-webkit-scrollbar-track {
    border: solid 1px #ccc;
    background-color: #efefef;
  }

  .table-block .scroll::-webkit-scrollbar-thumb {
    border-radius: 19px;
    background-color: #ccc;
  }
}

@media only screen and (min-width: 751px) {
  .table-block .brand-table {
    margin: 0 auto;
    width: 100%;
  }
}

@media only screen and (max-width: 750px) {
  .table-block .brand-table {
    width: 750px;
  }
}

.table-block .brand-table th,
.table-block .brand-table td {
  border: 1px solid #ccc;
  font-size: clamp(0.8125rem, 0.6584507042rem + 0.6572769953vw, 1.25rem);
  text-align: center;
  line-height: 1.15;
}

.table-block .brand-table th {
  padding: 9px;
  background-color: var(--lightgreen);
}

@media only screen and (max-width: 750px) {
  .table-block .brand-table th {
    padding: 4px;
  }
}

/*
.table-block .brand-table th:not([rowspan="2"]),
.table-block .brand-table td:not([rowspan="2"]) {
    font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
}
*/

/**/
.table-block .brand-table td:not([rowspan="2"]) {
  font-size: clamp(0.8125rem, 0.7684859155rem + 0.1877934272vw, 0.9375rem);
}
/**/

.table-block .brand-table td {
  padding: 19px 10px;
}

@media only screen and (max-width: 750px) {
  .table-block .brand-table td {
    padding: 10px 10px;
  }
}

.table-block .brand-table td[rowspan="2"] {
  font-weight: bold;
}

.table-block .brand-table tr:first-child th,
.table-block .brand-table tr:nth-child(2) th {
  color: var(--white);
  background-color: #128271;
}

@media only screen and (min-width: 751px) {
  .scroll-sp {
    display: none;
  }
}

@media only screen and (max-width: 750px) {
  .scroll-sp {
    border-bottom: 1px solid #128271;
    display: block;
    line-height: 1;
    width: 90px;
    height: 17px;
    margin-left: auto;
    padding-bottom: 20px;
    margin-bottom: 10px;
    position: relative;
  }

  .scroll-sp::before {
    content: "";
    background: #128271;
    border-radius: 100px;
    position: absolute;
    -webkit-animation: scroll 3s ease-in-out infinite;
    animation: scroll 3s ease-in-out infinite;
    bottom: -4px;
    left: -4px;
    width: 7px;
    height: 7px;
    --pos1: 14px;
    --pos2: 75px;
  }

  .scroll-sp .inn {
    display: block;
    text-align: right;
    color: #128271;
  }
}

@-webkit-keyframes scroll {
  0% {
    opacity: 0;
    left: var(--pos1);
  }

  10% {
    opacity: 1;
    left: var(--pos1);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: var(--pos2);
  }
}

@keyframes scroll {
  0% {
    opacity: 0;
    left: var(--pos1);
  }

  10% {
    opacity: 1;
    left: var(--pos1);
  }

  80% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    left: var(--pos2);
  }
}

/* --------------------------------
* step-block
----------------------------------- */
.step-block {
  overflow: hidden;
  background-image: linear-gradient(90deg, #e9f9e0, #c2f2df);
}

@media only screen and (min-width: 1441px) {
  .step-block {
    padding-bottom: 100px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block {
    padding-bottom: 20px;
  }
}

.step-block .c-title {
  margin-bottom: 30px;
}

@media only screen and (max-width: 750px) {
  .step-block .c-title {
    margin-bottom: 26px;
  }
}

.step-block .step-area {
  border-radius: 20px;
  background-color: var(--white);
}

@media only screen and (min-width: 751px) {
  .step-block .step-area {
    padding: 60px 5.5555555556vw 54px;
  }
}

@media only screen and (min-width: 1441px) {
  .step-block .step-area {
    padding: 60px 80px 54px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-area {
    padding: 26px 17px 30px;
  }
}

@media only screen and (min-width: 751px) {
  .step-block .step-wrap {
    border: solid 6px #c7e3dd;
    -ms-grid-columns: (1fr) [6];
    grid-template-columns: repeat(6, 1fr);
    display: -ms-grid;
    display: grid;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-wrap {
    border: solid 3px #c7e3dd;
  }
}

.step-block .step-box {
  background-color: var(--white);
  text-align: center;
  padding: 14px 0 24px;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .step-block .step-box {
    padding: 14px 15px 20px;
  }
}

@media only screen and (min-width: 751px) {
  .step-block .step-box + .step-box {
    border-left: solid 6px #c7e3dd;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box + .step-box {
    border-top: solid 3px #c7e3dd;
  }
}

.step-block .step-box + .step-box::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 8px;
  border-color: transparent transparent transparent #c7e3dd;
  top: 0;
  margin: auto;
  left: 0;
}

@media only screen and (min-width: 751px) {
  .step-block .step-box + .step-box::before {
    bottom: 0;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box + .step-box::before {
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 10px 0 10px;
    border-color: #c7e3dd transparent transparent transparent;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box:nth-child(3) .image img {
    max-width: 76px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box:nth-child(5) .image img {
    max-width: 80px;
  }
}

.step-block .step-box .title {
  border-radius: 17px;
  color: var(--white);
  background-color: #078271;
  font-size: clamp(0.8125rem, 0.7464788732rem + 0.2816901408vw, 1rem);
  margin: 0 auto 46px;
  font-family: futura-pt, "Noto Sans JP";

  padding: 5px 10px;
  line-height: 1.3;
}

@media only screen and (min-width: 751px) {
  .step-block .step-box .title {
    width: calc(100% - 30px);
  }
}

@media only screen and (max-width: 1024px) {
  .step-block .step-box .title {
    width: calc(100% - 16px);
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box .title {
    width: 100%;
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 751px) {
  .step-block .step-box .image {
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 130px;
    width: 9.2857142857vw;
    max-height: 90px;
    height: 6.4285714286vw;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .step-box .image {
    width: 40%;
  }
}

.step-block .step-box .text {
  font-size: clamp(1.125rem, 1.0809859155rem + 0.1877934272vw, 1.25rem);
  color: var(--green);
  font-weight: bold;
  line-height: 1.5;
}

@media only screen and (max-width: 750px) {
  .step-block .step-box .text {
    line-height: 1.28;
    width: 60%;
  }
}

.step-block .notice {
  margin-top: 20px;
  font-size: clamp(0.6875rem, 0.6654929577rem + 0.0938967136vw, 0.75rem);
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 750px) {
  .step-block .notice {
    margin-top: 14px;
    width: 80%;
  }
}

.step-block .person {
  position: absolute;
  pointer-events: none;
}

@media only screen and (min-width: 751px) {
  .step-block .person {
    max-width: 411px;
    width: 35.4861111111vw;
    max-height: 538px;
    height: 37.3611111111vw;
    right: -4.7222222222vw;
    bottom: -27.833333vw;
  }
}

@media only screen and (min-width: 1441px) {
  .step-block .person {
    right: -140px;
    bottom: -384px;
    max-width: 440px;
  }
}

@media only screen and (max-width: 750px) {
  .step-block .person {
    bottom: -200px;
    right: -30px;
    width: 82.6666666667vw;
    max-width: 250px;
  }
}

.step-block .person img {
  max-height: 100%;
  max-width: 100%;
}

/* --------------------------------
* point-block
----------------------------------- */

.point-block {
  padding-top: 30px;
}

.point-block .point + .point {
  margin-top: 120px;
}

.point-block .point-subtitle {
  text-align: center;
  font-size: clamp(1rem, 0.7139084507rem + 1.220657277vw, 1.8125rem);

  margin-bottom: 20px;
}

.point-block .point-table {
  width: 100%;
}

.point-block .point-table th,
.point-block .point-table td {
  border: solid 1px #ccc;
  line-height: 1.53;
}

.point-block .point-table th {
  padding: 16px 10px;
  background-color: #128271;
  color: var(--white);
  font-size: clamp(0.75rem, 0.5959507042rem + 0.6572769953vw, 1.1875rem);
}

@media only screen and (max-width: 750px) {
  .point-block .point-table th {
    padding: 5px 2px;
  }
}

.point-block .point-table td {
  padding: 20px 10px;
  text-align: center;
  font-size: clamp(0.625rem, 0.4269366197rem + 0.8450704225vw, 1.1875rem);
}

@media only screen and (min-width: 751px) {
  .point-block .point-table td {
    height: 90px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .point-table td {
    height: 40px;
    padding: 5px 2px;
  }
}

.point-block .point-table td[rowspan="4"] {
  background-color: #e9f4f1 !important;
}

.point-block .point-table td[rowspan="4"] .marker {
  position: relative;
  display: inline-block;
}

@media only screen and (min-width: 751px) {
  .point-block .point-table td[rowspan="4"] .marker {
    padding-bottom: 10px;
    margin-bottom: 50px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .point-table td[rowspan="4"] .marker {
    padding-bottom: 4px;
    margin-bottom: 10px;
  }
}

.point-block .point-table td[rowspan="4"] .marker::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 20px;
  background-color: #d3e7ff;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 750px) {
  .point-block .point-table td[rowspan="4"] .marker::before {
    height: 10px;
  }
}

.point-block .point-table td[rowspan="4"] .number {
  position: relative;
  font-size: clamp(2.75rem, 1.5616197183rem + 5.0704225352vw, 6.125rem);
}

.point-block .point-table td[rowspan="4"] .yen {
  position: relative;
  font-size: clamp(1rem, 0.5378521127rem + 1.9718309859vw, 2.3125rem);
}

.point-block .point-table td .big {
  font-size: clamp(0.9375rem, 0.6294014085rem + 1.3145539906vw, 1.8125rem);
}

.point-block .point-table tr td:first-child {
  font-size: clamp(0.75rem, 0.5959507042rem + 0.6572769953vw, 1.1875rem);
  font-weight: bold;
}

.point-block .point-table tr:nth-child(odd) td {
  background-color: #f7f7f7;
}

.point-block .point-table tr:nth-child(even) td {
  background-color: #d9d9d9;
}

.point-block .point-table .number,
.point-block .point-table .yen {
  color: var(--blue);
  font-weight: bold;
  line-height: 1;
}

.point-block .point-table .number {
  font-size: clamp(2.1875rem, 1.3512323944rem + 3.5680751174vw, 4.5625rem);
}

.point-block .point-table .yen {
  font-size: clamp(1rem, 0.6038732394rem + 1.6901408451vw, 2.125rem);
}

.point-block .notice {
  font-size: clamp(0.6875rem, 0.6654929577rem + 0.0938967136vw, 0.75rem);
  margin-top: 20px;
}

@media only screen and (min-width: 751px) {
  .point-block .notice {
    line-height: 2;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .notice {
    line-height: 1.45;
  }
}

.point-block .tool + .tool {
  margin-top: 90px;
}

@media only screen and (max-width: 750px) {
  .point-block .tool + .tool {
    margin-top: 100px;
  }
}

@media only screen and (min-width: 751px) {
  .point-block .tool.tool01 .image {
    width: 312px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .tool.tool01 .image {
    width: 260px;
  }
}

@media only screen and (min-width: 751px) {
  .point-block .tool.tool02 .image {
    width: 449px;
  }
}

@media only screen and (min-width: 751px) {
  .point-block .tool.tool03 .image {
    width: 383px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .tool.tool03 .image {
    width: 300px;
  }
}

.point-block .tool .title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(1.5rem, 1.3679577465rem + 0.5633802817vw, 1.875rem);
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 750px) {
  .point-block .tool .title {
    line-height: 1.46;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .tool .title.end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
  }

  .point-block .tool .title.end .icon-pc {
    margin-bottom: 4px;
    margin-left: -14px;
  }
}

.point-block .tool .image {
  text-align: center;
}

@media only screen and (min-width: 751px) {
  .point-block .tool .image {
    margin: 0 auto 10px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .tool .image {
    margin: 0 auto;
  }
}

.point-block .tool .text {
  font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
  line-height: 1.78;
}

.modal-detail .point-block .tool .text {
  text-align: left;
}

@media only screen and (max-width: 750px) {
  .point-block .tool .text {
    width: calc(100% - 50px);
    margin: 0 auto;
  }
}

.point-block .tool .button {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(1.25rem, 1.161971831rem + 0.3755868545vw, 1.5rem);
  font-weight: bold;
  width: 284px;
  height: 57px;
  margin: 36px auto 0;
  padding: 10px;
  border-radius: 38px;
  -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
  box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
  background-color: var(--green);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}

@media only screen and (max-width: 750px) {
  .point-block .tool .button {
    width: 245px;
    height: 50px;
    margin: 26px auto 0;
  }
}

@media only screen and (min-width: 751px) {
  .point-block .tool .button:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transform: translateY(3px);
    transform: translateY(3px);
  }
}

.point-block .tool .icon-pc,
.point-block .tool .icon-sp {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 70px;
  height: 30px;
  border-radius: 22px;
  font-size: clamp(0.875rem, 0.8089788732rem + 0.2816901408vw, 1.0625rem);
}

@media only screen and (min-width: 751px) {
  .point-block .tool .icon-pc,
  .point-block .tool .icon-sp {
    margin-left: 10px;
  }
}

@media only screen and (max-width: 750px) {
  .point-block .tool .icon-pc,
  .point-block .tool .icon-sp {
    margin-left: 8px;
    width: 60px;
    height: 26px;
  }
}

.point-block .tool .icon-pc {
  border: solid 2px var(--green);
  color: var(--green);
}

@media only screen and (max-width: 750px) {
  .point-block .tool .icon-pc {
    border: solid 1px var(--green);
  }
}

.point-block .tool .icon-sp {
  background-color: var(--green);
  color: var(--white);
}

.point01-block .inner-block {
  max-width: 830px;
}

.point01-block .point-intro {
  text-align: center;
  font-size: clamp(0.875rem, 0.7649647887rem + 0.4694835681vw, 1.1875rem);
  margin-bottom: 40px;
}

.point02-block .inner-block {
  max-width: 740px;
}

@media only screen and (max-width: 750px) {
  .point02-block .c-title02 {
    margin-bottom: 50px;
  }
}

.point03-block .title-area {
  padding: 30px 0;
  background-image: -webkit-gradient(linear, left top, right top, color-stop(1%, #f8fffe), color-stop(99%, #dffafa));
  background-image: linear-gradient(to right, #f8fffe 1%, #dffafa 99%);
}

@media only screen and (max-width: 750px) {
  .point03-block .title-area {
    padding: 20px 0;
  }
}

.point03-block .title-area .c-title02 {
  margin: 0;
}

.point03-block .title-area .c-title02 .triangle::before {
  border-color: #f8fffe transparent transparent transparent;
}

.c-title02 {
  margin-bottom: 50px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 750px) {
  .c-title02 {
    margin-bottom: 20px;
  }
}

.c-title02 .wrap {
  display: inline-block;
  position: relative;
}

.c-title02 .triangle {
  position: relative;
  width: 67px;
  height: 67px;
  display: block;
  margin-right: -44px;
  margin-bottom: 14px;
  z-index: 2;
}

@media only screen and (max-width: 750px) {
  .c-title02 .triangle {
    width: 48px;
    height: 48px;
    margin-right: -30px;
  }
}

.c-title02 .triangle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 67px 67px 0 0;
  border-color: var(--white) transparent transparent transparent;
}

@media only screen and (max-width: 750px) {
  .c-title02 .triangle::before {
    border-width: 48px 48px 0 0;
  }
}

.c-title02 .triangle::after {
  content: "";
  position: absolute;
  height: 1px;
  background-color: var(--green);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media only screen and (min-width: 751px) {
  .c-title02 .triangle::after {
    left: -12px;
    top: 33px;
    width: 90px;
  }
}

@media only screen and (max-width: 750px) {
  .c-title02 .triangle::after {
    width: 60px;
    left: -5px;
    top: 22px;
  }
}

.c-title02 .triangle .point {
  color: var(--green);
  font-size: clamp(0.625rem, 0.6029929577rem + 0.0938967136vw, 0.6875rem);
  line-height: 1em;
  position: absolute;
  top: 8px;
  left: 0;
}

@media only screen and (max-width: 750px) {
  .c-title02 .triangle .point {
    top: 2px;
  }
}

.c-title02 .number {
  color: var(--green);
  font-size: clamp(3.75rem, 3.3098591549rem + 1.8779342723vw, 5rem);
  position: relative;
  display: inline-block;
  line-height: 1;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (max-width: 750px) {
  .c-title02 .number {
    margin-right: 4px;
  }
}

.c-title02 .ja {
  font-size: clamp(1.5625rem, 1.3204225352rem + 1.0328638498vw, 2.25rem);
  font-weight: bold;
  line-height: 1.3;
}

@media only screen and (max-width: 750px) {
  .c-title02 .ja {
    line-height: 1.37;
  }
}

/* --------------------------------
* free-block
----------------------------------- */
@media only screen and (min-width: 751px) {
  .free-block .c-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.free-block .free-wrap {
  display: -ms-grid;
  display: grid;
  gap: 20px 26px;
  -ms-grid-columns: 1fr 26px 1fr 26px 1fr 26px 1fr;
  grid-template-columns: repeat(4, 1fr);
}

@media only screen and (min-width: 751px) {
  .free-block .free-wrap {
    width: calc(100% - 60px);
    margin: 0 auto;
  }
}

@media only screen and (max-width: 1024px) {
  .free-block .free-wrap {
    -ms-grid-columns: 1fr 15px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
}

.free-block .free-box {
  background-color: var(--white);
}

@media only screen and (min-width: 751px) {
  .free-block .free-box {
    -webkit-box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 8px 8px 20px 0 rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 24px 20px 20px;
  }
}

@media only screen and (max-width: 750px) {
  .free-block .free-box {
    -webkit-box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 10px 0 rgba(0, 0, 0, 0.1);
    padding: 14px 10px 20px;
    border-radius: 10px;
  }
}

.free-block .free-box .title {
  font-size: clamp(0.9375rem, 0.8274647887rem + 0.4694835681vw, 1.25rem);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (min-width: 751px) {
  .free-block .free-box .title {
    margin-bottom: 16px;
  }
}

@media only screen and (max-width: 750px) {
  .free-block .free-box .title {
    margin-bottom: 10px;
  }
}

.free-block .free-box .image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 16px;
}

@media only screen and (min-width: 751px) {
  .free-block .free-box .image {
    width: 112px;
    height: 115px;
  }
}

@media only screen and (max-width: 750px) {
  .free-block .free-box .image {
    width: 66px;
    height: 68px;
  }
}

.free-block .free-box .image img {
  max-height: 100%;
}

.free-block .free-box .text {
  font-size: clamp(0.6875rem, 0.6214788732rem + 0.2816901408vw, 0.875rem);
  line-height: 1.57;
}

@media only screen and (max-width: 750px) {
  .free-block .free-box .text {
    line-height: 1.45;
  }
}

.free-block .free-box .text.center {
  text-align: center;
}

/* --------------------------------
* c-bg-image-block
----------------------------------- */
.bg-wrap {
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 751px) {
  .bg-wrap .inner-block {
    max-width: 1060px;
  }
}

.bg-wrap .info {
  position: relative;
}

@media only screen and (min-width: 751px) {
  .bg-wrap .info {
    max-width: 560px;
    width: 38.8888888889vw;
    padding: 76px 0;
  }
}

@media only screen and (max-width: 1024px) {
  .bg-wrap .info {
    width: 54.6875vw;
  }
}

@media only screen and (max-width: 750px) {
  .bg-wrap .info {
    padding: 50px 0;
  }
}

.bg-wrap .title {
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .bg-wrap .title {
    margin-bottom: 10px;
  }
}

.bg-wrap .title .green {
  color: var(--green);
}

.bg-wrap .text {
  font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);

  line-height: 1.78;
}

.bg-wrap02 {
  background: url("/event/ipo-aff-01/image/common/bg_image_01.jpg") no-repeat center/cover;
  background-size: cover;
  background-position: center !important;
  padding: 3vw 0;
}

@media only screen and (max-width: 750px) {
  .bg-wrap02 {
    background: url("/event/ipo-aff-01/image/common/bg_image_01_sp.jpg") no-repeat center/cover;
    background-size: contain;
    background-position: right !important;
  }
}

@media only screen and (max-width: 750px) {
  .bg-wrap02 .info {
    width: calc(100% - 150px);
  }
}

.bg-wrap01 {
  background: url("/event/ipo-aff-01/image/common/bg_image_02.jpg") no-repeat center/cover;
  background-size: cover;
  background-position: top !important;
  padding: 3vw 0;
}

@media only screen and (max-width: 750px) {
  .bg-wrap01 {
    background: url("/event/ipo-aff-01/image/common/bg_image_02_sp.jpg") no-repeat center/cover;
    background-position: left !important;
    background-size: contain;
  }
}

.bg-wrap01 .info {
  margin-left: auto;
}

@media only screen and (max-width: 750px) {
  .bg-wrap01 .info {
    width: calc(100% - 140px);
  }
}

/* --------------------------------
* apply-block
----------------------------------- */
.apply-block {
  padding: 60px 0;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .apply-block {
    padding: 40px 0;
  }
}

.apply-block02 {
  padding: 80px 0;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .apply-block02 {
    padding: 50px 0;
  }
}

.apply-block img,
.apply-block02 img {
  max-width: 400px;
  width: 100%;
}

/* --------------------------------
* flow-block
----------------------------------- */
.flow-block {
  background-color: #edf1f6;
}

.flow-block .inner-block {
  max-width: 1040px;
}

@media only screen and (max-width: 750px) {
  .flow-block .c-title {
    margin-bottom: 40px;
  }
}

.flow-block .subtitle {
  color: var(--white);
  background-color: var(--green);
  width: 278px;
  height: 56px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 auto 20px;
  border-radius: 28px;
  font-size: clamp(0.875rem, 0.6769366197rem + 0.8450704225vw, 1.4375rem);
}

@media only screen and (max-width: 750px) {
  .flow-block .subtitle {
    width: 170px;
    height: 36px;
    margin: 0 auto 10px;
  }
}

.flow-block .subtitle .number {
  margin-right: 4px;
  margin-bottom: 4px;
  font-weight: bold;
  font-size: clamp(1.75rem, 1.3098591549rem + 1.8779342723vw, 3rem);
}

.flow-block .notice {
  margin-top: 14px;
  font-size: clamp(0.6875rem, 0.6214788732rem + 0.2816901408vw, 0.875rem);
  line-height: 1.71;
}

@media only screen and (max-width: 750px) {
  .flow-block .notice {
    margin-top: 24px;
    line-height: 1.45;
  }
}

.flow-block .notice a {
  text-decoration: underline;
}

.flow-block .flow-area {
  display: -ms-grid;
  display: grid;
  gap: 25px;
}

@media only screen and (min-width: 751px) {
  .flow-block .flow-area {
    -ms-grid-columns: (1fr) [3];
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.flow-block .flow-area .flow-box {
  background-color: var(--white);
  border-radius: 33px;
  padding: 0 50px 26px;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area .flow-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 32px 10px;
    border-radius: 10px;
  }
}

.flow-block .flow-area .number {
  font-size: clamp(2.3125rem, 2.0264084507rem + 1.220657277vw, 3.125rem);
  color: #009682;
  font-weight: bold;
  line-height: 1;
}

@media only screen and (min-width: 751px) {
  .flow-block .flow-area .number {
    margin-top: -0.5em;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area .number {
    position: absolute;
    width: 1em;
    height: 1em;
    top: -0.5em;
    left: 0;
    right: 0;
    margin: auto;
  }
}

@media only screen and (min-width: 751px) {
  .flow-block .flow-area .image {
    height: 123px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    margin-bottom: 18px;
  }
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area .image {
    width: 27.2vw;
    text-align: center;
  }
}

.flow-block .flow-area .image img {
  max-height: 100%;
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area .image img {
    max-height: 110px;
  }
}

.flow-block .flow-area .text {
  font-size: clamp(1rem, 0.911971831rem + 0.3755868545vw, 1.25rem);
  font-weight: bold;
  line-height: 1.27;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .flow-block .flow-area .text {
    width: 42.6666666667vw;
  }
}

/* --------------------------------
* contact-block
----------------------------------- */
.contact-block {
  padding-bottom: 180px;
  overflow: hidden;
}

@media only screen and (max-width: 750px) {
  .contact-block {
    padding-bottom: 60px;
  }
}

.contact-block .inner-block {
  max-width: 1360px;
}

.contact-block .c-title {
  font-size: clamp(1.3125rem, 0.9823943662rem + 1.4084507042vw, 2.25rem);
}

@media only screen and (max-width: 750px) {
  .contact-block .c-title {
    margin-bottom: 10px;
  }
}

.contact-block .intro {
  font-size: clamp(0.75rem, 0.6179577465rem + 0.5633802817vw, 1.125rem);
}

@media only screen and (min-width: 751px) {
  .contact-block .intro {
    padding: 0 30px;
    max-width: 550px;
    margin: 0 auto 40px;
    text-align: center;
  }
}

@media only screen and (min-width: 900px) {
  .contact-block .intro {
    padding: 0 30px;
    max-width: 670px;
    margin: 0 auto 40px;
    text-align: center;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .intro {
    line-height: 1.42;
    padding: 20px 0;
    max-width: 670px;
    margin: 10px;
    width: 75%;
  }
}

.contact-block .leaf {
  position: relative;
  padding: 20px 20px 30px;
}

@media only screen and (max-width: 750px) {
  .contact-block .leaf {
    padding: 10px 0 20px;
  }
}

@media only screen and (min-width: 751px) {
  .contact-block .leaf::before,
  .contact-block .leaf::after {
    content: "";
    position: absolute;
    width: 150px;
    height: 406px;
    background: url("/event/ipo-aff-01/image/common/icon_leaf.svg") no-repeat center/contain;
    top: -30px;
    z-index: 1;
  }
}

@media only screen and (min-width: 751px) {
  .contact-block .leaf::before {
    left: -120px;
  }
}

@media only screen and (min-width: 751px) {
  .contact-block .leaf::after {
    right: -120px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
}

.contact-block .sp-leaf {
  position: relative;
}

@media only screen and (max-width: 750px) {
  .contact-block .sp-leaf {
    max-width: 400px;
    margin: 0 auto;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .sp-leaf::before,
  .contact-block .sp-leaf::after {
    content: "";
    position: absolute;
    width: 50px;
    height: 130px;
    background: url("/event/ipo-aff-01/image/common/icon_leaf.svg") no-repeat center/contain;
    top: 0px;
    z-index: 1;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .sp-leaf::before {
    left: 0px;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .sp-leaf::after {
    right: 0px;
    -webkit-transform: scale(-1, 1);
    transform: scale(-1, 1);
  }
}

.contact-block .grade-box {
  background-color: #fffdeb;
  position: relative;
  max-width: 880px;
}

@media only screen and (min-width: 751px) {
  .contact-block .grade-box {
    width: calc(100% - 160px);
    margin: 80px auto 0;
    border-top: 18px solid #d8caa3;
    border-bottom: 18px solid #d8caa3;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box {
    padding: 0 20px;
    width: calc(100% + 40px);
    margin: 20px -20px 0;
    border-top: 10px solid #d8caa3;
    border-bottom: 10px solid #d8caa3;
  }
}

.contact-block .grade-box::before,
.contact-block .grade-box::after {
  content: "";
  position: absolute;
  width: 74px;
  height: 379px;
  background: url("/event/ipo-aff-01/image/common/contact_circle.png") no-repeat center/contain;
  top: 0;
}

.contact-block .grade-box::before {
  left: -74px;
}

.contact-block .grade-box::after {
  right: -74px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.contact-block .grade-box .title {
  font-weight: bold;
  font-size: clamp(0.75rem, 0.4198943662rem + 1.4084507042vw, 1.6875rem);
  text-align: center;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .title {
    line-height: 1.42;
    margin-bottom: 8px;
  }
}

.contact-block .grade-box .ribbon {
  position: relative;
  font-size: clamp(0.6875rem, 0.511443662rem + 0.7511737089vw, 1.1875rem);
  font-weight: bold;
  color: var(--white);
  background-color: #cfba7d;
  padding: 6px 10px;
  margin: 0 auto 14px;
  max-width: 640px;
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .ribbon {
    max-width: calc(100% - 60px);
    padding: 3px 10px;
    line-height: 1.45;
    margin: 0 auto 20px;
  }
}

.contact-block .grade-box .ribbon::before,
.contact-block .grade-box .ribbon::after {
  content: "";
  position: absolute;
  width: 54px;
  height: 48px;
  bottom: -12px;
  background: url("/event/ipo-aff-01/image/common/icon_ribbon.svg") no-repeat center/contain;
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .ribbon::before,
  .contact-block .grade-box .ribbon::after {
    width: 32px;
    height: 27px;
    bottom: -7px;
  }
}

.contact-block .grade-box .ribbon::before {
  left: -29px;
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .ribbon::before {
    left: -18px;
  }
}

.contact-block .grade-box .ribbon::after {
  right: -29px;
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .ribbon::after {
    right: -18px;
  }
}

.contact-block .grade-box .star {
  text-align: center;
  line-height: 1;
  font-size: clamp(0.6875rem, 0.4674295775rem + 0.9389671362vw, 1.3125rem);
  font-family: YuMincho, "Yu Mincho";
  font-weight: 800;
  color: #b08e2c;
}

@media only screen and (min-width: 751px) {
  .contact-block .grade-box .star {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.contact-block .grade-box .star .number {
  font-size: clamp(1.6875rem, 1.2913732394rem + 1.6901408451vw, 2.8125rem);
}

.contact-block .grade-box .star .big {
  font-size: clamp(2.5rem, 1.7957746479rem + 3.0046948357vw, 4.5rem);
  line-height: 1;
}

@media only screen and (min-width: 751px) {
  .contact-block .grade-box .star .big {
    margin-left: 20px;
    padding-top: 6px;
  }
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .star .year {
    margin-bottom: 10px;
  }
}

.contact-block .grade-box .card {
  margin: 20px auto 0;
  max-width: 362px;
}

@media only screen and (max-width: 750px) {
  .contact-block .grade-box .card {
    max-width: 170px;
    margin: 10px auto 0;
  }
}

.c-tab {
  max-width: 1260px;
  margin: 0 auto;
  position: relative;
}

.c-tab .image {
  position: absolute;
  width: 220px;
  right: -3%;
  bottom: -28%;
}

@media only screen and (max-width: 1200px) {
  .c-tab .image {
    width: 200px;
  }
}

.tab-area {
  /* display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    cursor: pointer; */
}

.tab-area .tab {
  width: 100%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--white);
  font-size: clamp(0.8125rem, 0.5264084507rem + 1.220657277vw, 1.625rem);
  font-weight: bold;
  border-radius: 18px 18px 0 0;
}

@media only screen and (max-width: 750px) {
  .tab-area .tab {
    height: 6.9333333333vw;
    min-height: 26px;
  }
}

.info-box {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 3%;
  height: 214px;
}

.info-box-1 .tab {
  background-color: var(--green);
}

.info-box-2 .tab {
}

.info-box-1 {
}

.info-box-2 {
  background-color: #07ab74 !important;
}

.content-area {
  font-size: 30px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.content-area .content {
  border-radius: 20px;
  width: 40%;
  margin: 0 10px;
}

@media only screen and (max-width: 750px) {
  .content-area .content {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.content-area .content .info {
  text-align: center;
  padding: 0 4%;
}

@media only screen and (max-width: 1100px) {
  .content-area {
    display: flex;
    flex-wrap: wrap;
  }

  .content-area .content {
    width: 100%;
    margin-bottom: 30px;
  }
}

.content-area .content .image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media only screen and (min-width: 751px) {
  .content-area .content .image {
    margin-left: 30px;
  }
}

.content-area .green {
  background-color: #009682;
}

@media only screen and (min-width: 751px) {
  .content-area .green .image {
    width: 30%;
  }
}

@media only screen and (max-width: 750px) {
  .content-area .green .image {
    width: 32vw;
  }
}

.content-area .lightgreen {
  border: 2px solid #0abc86;
}

@media only screen and (max-width: 750px) {
  .content-area .lightgreen {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

@media only screen and (min-width: 751px) {
  .content-area .lightgreen .info {
    padding-top: 2.0833333333vw;
    max-width: 486px;
  }
}

@media only screen and (min-width: 751px) {
  .content-area .lightgreen .image {
    width: 19.4444444444vw;
    max-width: 280px;
  }
}

@media only screen and (max-width: 750px) {
  .content-area .lightgreen .image {
    width: 34.6666666667vw;
  }
}

.content-area .tel {
  font-size: clamp(36px, 3.7vw, 50px);
  font-weight: bold;
  position: relative;
  display: inline-block;
  color: #fff;
  line-height: 1;
  padding-left: 36px;
}

@media only screen and (max-width: 750px) {
  .content-area .tel {
    padding-left: 25px;
    margin-bottom: 10px;
  }
}

.content-area .tel::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 42px;
  background: url("/event/ipo-aff-01/image/common/icon_tel.svg") no-repeat center/contain;
  left: 0;
  top: 8px;
}

@media only screen and (max-width: 750px) {
  .content-area .tel::before {
    width: 25px;
    height: 30px;
  }
}

.content-area .link {
  font-size: clamp(1.3rem, 1vw, 1.8rem);
  font-weight: bold;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #ffffff;
  line-height: 1;
  color: #009682;
  height: 50px;
}

@media only screen and (min-width: 751px) {
  .content-area .link {
    padding-right: 30px;
    -webkit-box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    box-shadow: 3px 3px 10px 0 rgba(34, 34, 34, 0.3);
    border-radius: 54px;
    margin-bottom: 20px;
  }
}

@media only screen and (max-width: 750px) {
  .content-area .link {
    padding-right: 20px;
    -webkit-box-shadow: 2px 2px 5px 0 rgba(34, 34, 34, 0.3);
    box-shadow: 2px 2px 5px 0 rgba(34, 34, 34, 0.3);
    border-radius: 27px;
    height: 8vw;
    width: clamp(12.5rem, 6.25rem + 26.67vw, 18.75rem);
    margin-bottom: 10px;
  }
}

.content-area .link::before,
.content-area .link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.content-area .link::before {
  width: 33px;
  height: 33px;
  background: #09ab74;
  right: 20px;
  border-radius: 50%;
}

@media only screen and (max-width: 750px) {
  .content-area .link::before {
    width: 16px;
    height: 16px;
  }
}

.content-area .link::after {
  right: 32px;
  width: 10px;
  height: 10px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transition: 0.6s cubic-bezier;
  transition: 0.6s cubic-bezier;
}

@media only screen and (max-width: 750px) {
  .content-area .link::after {
    right: 26px;
    top: 2px;
    width: 4px;
    height: 4px;
  }
}

.content-area .hour {
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: bold;
  line-height: 1.3;
  color: #fff;
}

.content-area .notice {
  font-size: 11px;
  text-align: left;
  margin-top: 10px;
  color: #fff;
}

.security-block {
  background-image: linear-gradient(90deg, #e9f9e0, #c2f2df);
}

@media only screen and (max-width: 750px) {
  .content-area .notice {
    margin-top: 2px;
    line-height: 1.33;
  }
}

@media only screen and (max-width: 1100px) {
  .content-area .tel {
    font-size: clamp(1.6875rem, 0.7632042254rem + 3.9436619718vw, 4.3125rem);
  }

  .content-area .hour {
    font-size: clamp(0.6875rem, 0.3573943662rem + 1.4084507042vw, 1.625rem);
  }

  .c-tab .image {
    bottom: -60%;
  }
}

@media only screen and (max-width: 600px) {
  .content-area .tel {
    padding-left: 18px;
  }

  .tab-area .tab {
    min-height: 40px;
    font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  }

  .content-area .tel::before {
    left: -4%;
  }

  .content-area .green .image {
    width: 25vw;
  }

  .content-area .content {
    border-radius: 10px;
  }

  .tab-area .tab {
    border-radius: 8px 8px 0 0;
  }

  .content-area .content .info {
    padding: 0 0%;
  }

  .content-area .link {
    font-size: clamp(0.875rem, 0.5228873239rem + 1.5023474178vw, 1.875rem);
  }

  .content-area .notice {
    font-size: clamp(0.625rem, 0.4929577465rem + 0.5633802817vw, 1rem);
  }

  .info-box {
    height: 130px;
  }

  .info-box-2 .info-box {
    /* justify-content: flex-start; */
  }

  .c-tab .image {
    right: -2%;
  }
}

@media only screen and (max-width: 500px) {
  .c-tab .image {
    position: absolute;
    width: 43%;
    right: -4%;
    bottom: -5%;
  }
}

@media only screen and (max-width: 355px) {
  .c-tab .image {
    width: 120px;
    right: -8%;
  }
}

/* --------------------------------
* security-block
----------------------------------- */
@media only screen and (min-width: 751px) {
  .security-block {
    padding-bottom: 180px;
  }
}

@media only screen and (max-width: 750px) {
  .security-block {
    padding-bottom: 140px;
  }
}

@media only screen and (min-width: 751px) {
  .security-block .inner-block {
    max-width: 1030px;
  }
}

.security-block .security-title {
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem);
  text-align: center;
  font-weight: bold;
  margin-bottom: 10px;
}

.security-block .intro {
  line-height: 1.71;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .security-block .intro {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
}

.security-block .text {
  line-height: 1.71;
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
}

.security-block .security-slider {
  margin-top: 40px;
  position: relative;
}

@media only screen and (min-width: 751px) {
  .security-block .security-slider::before {
    content: "";
    position: absolute;
    width: 29%;
    height: 100%;
    left: 0;
    z-index: 2;
    top: 0;
  }
}

.security-block .security-slider .security-box {
  border-radius: 23px;
  background-color: var(--white);
}

@media only screen and (min-width: 751px) {
  .security-block .security-slider .security-box {
    margin: 0 17px;
    padding: 40px;
  }
}

@media only screen and (max-width: 750px) {
  .security-block .security-slider .security-box {
    margin: 0 30px;
    padding: 20px;
  }
}

.security-block .security-slider .image {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  height: 104px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (min-width: 751px) {
  .security-block .security-slider .image {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 1024px) {
  .security-block .security-slider .image {
    margin: 0 auto 20px;
  }
}

@media only screen and (max-width: 750px) {
  .security-block .security-slider .image {
    max-width: 80px;
  }
}

.security-block .security-slider .info .title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: clamp(0.875rem, 0.7209507042rem + 0.6572769953vw, 1.3125rem);
  text-align: center;
}

@media only screen and (max-width: 750px) {
  .security-block .security-slider .info .title {
    margin-bottom: 10px;
  }
}

.arrows-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  bottom: 100px;
  left: 0;
  right: 0;
}

@media only screen and (max-width: 750px) {
  .arrows-dots {
    bottom: 60px;
  }
}

.slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  z-index: 2;
  margin: 0 22px;
}

.slick-dots li {
  background: #cccccc;
  border-radius: 50%;
  text-indent: -9999px;
  height: 11px;
  width: 11px;
}

@media only screen and (max-width: 750px) {
  .slick-dots li {
    height: 10px;
    width: 10px;
  }
}

.slick-dots li + li {
  margin-left: 22px;
}

.slick-dots li.slick-active {
  opacity: 1;
  background: #1fbc86;
}

.slick-arrow {
  font-size: 0;
  z-index: 2;
  border-radius: 50%;
  width: 57px;
  height: 57px;
  background-color: #1fbc86;
  position: relative;
}

.slick-arrow.slick-prev::before {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
}

.slick-arrow.slick-disabled {
  background-color: #ccc;
  pointer-events: none;
}

.slick-arrow::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 0px;
  border-top: solid 3px var(--white);
  border-right: solid 3px var(--white);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media only screen and (max-width: 750px) {
  .slick-arrow::before {
    height: 18px;
    width: 18px;
  }
}

.slick-prev::before {
  left: 4px;
}

.slick-next::before {
  right: 4px;
}

.slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.slick-slide {
  height: auto !important;
}

/* --------------------------------
* link-block
----------------------------------- */
.link-block {
  position: relative;
}

@media only screen and (min-width: 751px) {
  .link-block {
    padding: 90px 0;
  }
}

@media only screen and (max-width: 750px) {
  .link-block {
    padding: 70px 0 60px;
  }
}

.link-block .link-title {
  font-size: clamp(1.375rem, 1.2429577465rem + 0.5633802817vw, 1.75rem);
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
  color: var(--green);
}

@media only screen and (max-width: 750px) {
  .link-block .link-title {
    margin-bottom: 30px;
  }
}

@media only screen and (min-width: 751px) {
  .link-block .button-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 750px) {
  .link-block .button-wrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 8px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 10px 8px;
  }
}

.link-block .button-wrap a {
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--green);
  border: solid 1px var(--green);
  text-align: center;
  border-radius: 27px;
  height: 43px;
  background-color: var(--white);
  margin-bottom: 10px !important;
}

@media only screen and (min-width: 751px) {
  .link-block .button-wrap a {
    margin: 0 4px;
    max-width: 245px;
    width: 17.0138888889vw;
  }

  .link-block .button-wrap a:hover {
    background-color: var(--green);
    color: var(--white);
  }
}

@media only screen and (max-width: 750px) {
  .link-block .button-wrap a {
    height: 38px;
  }
}

/* --------------------------------
* otoku-block
----------------------------------- */
.otoku-block.c-section {
  padding-top: 50px;
}

.debut-block {
  margin-bottom: 80px;
}

.debut-block .title::before {
  content: "";
  background-image: url("/event/ipo-aff-01/image/debut_icon.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  width: min(calc(60 / 750 * 100vw), 2.2rem);
  height: 3rem;
  display: block;
  margin: 0 auto;
}

.otoku-block .otoku-wrap {
  margin-top: 50px;
}

.otoku-block .otoku-wrap ul {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}

.otoku-block .otoku-wrap ul li {
  background: #f2f2f2;
  padding: 0 40px 20px;
  border-radius: 10px;
  width: 280px;
}

.otoku-block .js_modalWrap img {
  margin: 0 auto 10px;
  display: block;
}

.modal-case-ttl img {
  margin: 0 auto 10px;
  display: block;
}

.otoku-block .js_modalWrap .attention {
  text-align: center;
  margin-top: -15px;
}

.otoku-list-ttl {
  font-size: min(calc(45 / 750 * 100vw), 1.6rem);
  font-weight: bold;
  text-align: center;
  color: #13ab97;
  line-height: 1.5;
}

.otoku-list-ttl span {
  background: #13ab97;
  color: #ffee53;
  padding: 0 5px;
  margin: 0 5px;
}

.otoku-block .otoku-wrap ul li .otoku-list-ttl::after {
  content: "";
  background-image: url("/event/ipo-aff-01/image/otoku_icon01.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position-x: center;
  height: 70px;
  display: block;
  margin: 20px auto 0;
}

.otoku-block .otoku-wrap ul li:nth-child(2) .otoku-list-ttl::after {
  background-image: url("/event/ipo-aff-01/image/otoku_icon02.png");
}

.otoku-block .otoku-wrap ul li:nth-child(3) .otoku-list-ttl::after {
  background-image: url("/event/ipo-aff-01/image/otoku_icon03.png");
}

.otoku-block .otoku-wrap ul li .futura {
  font-size: min(calc(85 / 750 * 100vw), 3rem);
  text-align: center;
  margin-top: -2.6rem;
  color: #13ab97;
}

.otoku-wrap .modal-btn a {
  background: #fff;
  border-radius: 30px;
  padding: 5px 41px 5px 24px;
  font-size: min(calc(85 / 750 * 100vw), 1.1rem);
  font-weight: bold;
  margin-top: 15px;
  color: var(--black);
  width: 92%;
  text-align: center;
  margin: 15px auto 0;
}

.otoku-wrap .modal-btn a .plus {
  color: var(--black);
  right: 18px;
  top: 20%;
}

.otoku-wrap .modal-btn a .plus:before,
.otoku-wrap .modal-btn a .plus:after {
  background-color: var(--black);
  width: 12px;
}

@media only screen and (max-width: 750px) {
  .otoku-block .otoku-wrap ul {
    flex-direction: column;
    margin-bottom: 0;
  }

  .otoku-block .otoku-wrap ul li {
    width: 100%;
    padding: 0;
    margin-bottom: 3rem;
  }

  .otoku-wrap .modal-btn a {
    width: 100%;
    background: #d5d5d5;
    border-radius: 0 0 10px 10px;
  }

  .modal-text,
  .modal-aten {
    text-align: left;
  }
}

/* --------------------------------
* modal
----------------------------------- */
.js_modalBtnCont {
  display: block;
  padding: 15px 5px;
  transition: 0.3s;
  position: relative;
}

.js_modalWrap {
  display: none;
  z-index: 1000;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.js_modalBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
}

.js_modalContInner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 980px;
  max-width: 100%;
  max-height: calc(100vh - 80px);
  background-color: #fff;
  overflow: auto;
  padding: 0;
  border-radius: 10px;
  border: 4px solid #13ab97;
}

.js_modalCont {
  overflow-y: scroll;
  max-height: 600px;
}

.js_modalCont > * + * {
  margin-top: 10px;
}

.js_modalContInner > .js_modalClose + * {
  margin-top: 0;
  padding: 40px;
}

.js_modalClose {
  display: block;
  position: absolute;
  top: 6.5px;
  right: 24.5px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  cursor: pointer;
  z-index: 1001;
  background: #f2f2f2;
  border-radius: 50%;
  border: none;
}

.js_modalClose::before,
.js_modalClose::after {
  content: "";
  background-color: var(--green);
  position: absolute;
  top: 22%;
  right: 15px;
  width: 2px;
  height: 56%;
}

.js_modalClose::before {
  transform: rotate(45deg);
}

.js_modalClose::after {
  transform: rotate(-45deg);
}

/* ==========================
    コンテンツの中身
  ========================== */
.md_textblock > * + * {
  margin-top: 10px;
}

.md_textblock > * + .js_modalBtnWrap {
  margin-top: 20px;
}

.md_linkBtnWrap {
  width: 300px;
  max-width: 100%;
  margin: 10px auto 0;
  text-align: center;
}

.md_linkBtnCont {
  display: block;
  color: #222;
  border: 1px solid #222;
  padding: 15px 5px;
  transition: 0.3s;
}

.md_linkBtnCont:hover,
.md_linkBtnCont:focus {
  color: #fff;
  background-color: #222;
}

.modal-ttl {
  color: #00a385;
  font-size: min(calc(40 / 750 * 100vw), 1.5rem);
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  margin-bottom: min(calc(15 / 750 * 100vw), 1.2rem);
}

.modal-ttl span {
  font-size: min(calc(30 / 750 * 100vw), 1.2rem);
}

.modal-ttl.ttl_02 {
  margin-top: 50px;
}

.modal-img {
  margin-bottom: 2rem;
}

.modal-case-text {
  font-size: min(calc(30 / 750 * 100vw), 1.2rem);
  text-align: center;
  font-weight: 500;
  margin: 30px 0;
}

.modal-graph-wrap {
  background: #edfaf5;
  border-radius: 10px;
  padding: min(calc(30 / 750 * 100vw), 2.5rem);
  margin: 20px auto;
}

.modal-about-wrap {
  border: 2px solid var(--green);
  border-radius: 10px;
  padding: min(calc(30 / 750 * 100vw), 2.5rem);
  margin: 40px auto;
  position: relative;
}

.modal-about-wrap p {
  width: 70%;
  text-align: left;
}

.modal-about-wrap figure {
  position: absolute;
  right: 8%;
  top: 20%;
}

.modal-ex-wrap {
  background: var(--green);
  border-radius: 10px;
  padding: min(calc(20 / 750 * 100vw), 2.5rem);
}

.modal-ex-wrap._ex02 {
  margin-top: 30px;
  background: var(--pink);
}

.modal-ex-wrap dl {
  background: var(--white);
  border-radius: 10px;
  padding: min(calc(20 / 750 * 100vw), 2.5rem);
  font-size: min(calc(25 / 750 * 100vw), 1rem);
}

.modal-ex-wrap dl dt,
.modal-ex-wrap dl dd {
  font-weight: bold;
  display: flex;
  align-items: center;
  text-align: left;
}

.modal-ex-wrap dl dt {
  color: var(--green);
}

.modal-ex-wrap._ex02 dl dt {
  color: var(--pink);
}

.modal-ex-wrap dl dd {
  align-items: flex-start;
  font-weight: 100;
  line-height: 1.5;
  margin-bottom: 20px;
}

.modal-ex-wrap dl dt::before,
.modal-ex-wrap dl dd::before {
  content: "Q.";
  font-size: min(calc(50 / 750 * 100vw), 1.6rem);
  font-family: "futura-pt", sans-serif;
  font-weight: 600;
  font-style: normal;
  margin-right: 10px;
}

.modal-ex-wrap dl dd::before {
  content: "A.";
}

.modal-l {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.modal-l a {
  border-bottom: 1px solid;
}

.type-modal-step {
  display: flex;
  flex-direction: column;
}

.type-modal-step li {
  background: #e5fdf5;
  border: 1px solid #00a385;
  border-radius: 5px;
  padding: 20px 30px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.type-modal-step li figure {
  width: 11%;
  height: 20px;
  margin-right: 30px;
}

.type-modal-step li p {
  font-size: 16px;
  font-weight: bold;
}

.modal-link {
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}

.modal-link a {
  color: #222;
}

.modal-link a:hover {
  text-decoration: underline;
}

.type-modal-step li .c-button {
  font-size: 18px;
  padding: 0 20px;
  height: 50px;
  width: 260px;
}

.active {
  background: none;
  bottom: -30px;
}

/* PC幅に適用 */
@media (max-width: 750px) {
  .js_modalContInner {
    padding: 20px;
    width: 85%;
    /*IE(Internet Explorer)・Microsoft Edgeへの対応*/
    -ms-overflow-style: none;
    /*Firefoxへの対応*/
    scrollbar-width: none;
  }

  .js_modalContInner::-webkit-scrollbar {
    display: none;
  }

  .js_modalContInner > .js_modalClose + * {
    padding: 0;
  }

  .js_modalClose {
    top: 2%;
    right: 3%;
  }
}

@media only screen and (max-width: 750px) {
  .js_modalWrap .c-button {
    margin-bottom: 20px;
  }

  .type-modal-step li {
    flex-direction: column;
    padding: 10px 20px;
  }

  .type-modal-step li figure {
    width: 25%;
    margin-right: 0;
  }

  .type-modal-step li p {
    font-size: 3.5vw;
  }

  .type-modal-step li .c-button {
    font-size: 4vw;
    width: 100%;
    margin-top: 10px;
  }

  .modal-link {
    font-size: 3vw;
  }

  .modal-l {
    font-size: 3vw;
  }

  .modal-about-wrap {
    display: flex;
    flex-direction: column;
  }

  .modal-about-wrap p {
    width: 100%;
  }

  .modal-about-wrap p.modal-ttl {
    order: 1;
    text-align: center;
  }

  .modal-about-wrap figure {
    order: 2;
    position: relative;
    right: 0;
  }

  .modal-about-wrap p.text {
    order: 3;
  }

  .modal-ex-wrap dl dt,
  .modal-ex-wrap dl dd {
    align-items: flex-start;
    line-height: 1.3;
  }

  .modal-ex-wrap dl dt {
    margin-bottom: 10px;
  }
}

/* --------------------------------
* l_wrap_inr
----------------------------------- */
.l_wrap_inr {
  max-width: 1110px;
  width: 68vw;
  margin: auto;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
/* common */
/* block */
/* common block */
/* -----------------------------------------------
* home Module
* homeページ用
-------------------------------------------------- */
/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

/*-----20250207追加分-------*/

/* --------------------------------
* ipo-block
----------------------------------- */
.ipo-block .ipo-intro {
  font-size: clamp(0.875rem, 0.7649647887rem + 0.4694835681vw, 1.1875rem);
  margin-bottom: 40px;
}

.ipo-block .image {
  text-align: center;
}

/* --------------------------------
* step-block
----------------------------------- */

@media only screen and (min-width: 751px) {
  .step-block .notice {
    text-align: center;
  }
}

.step-area .image {
  text-align: center;
}

/*------*/
.tool .text {
  text-align: center;
}

.u-pt100 {
  padding-top: 100px;
}

.u-pt0 {
  padding-top: 0px;
}

/* アコーディオン */

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 1em;
}

.overall-block .title,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.overall-block .title {
  padding: 1em;
  display: block;
  color: #333;
  font-weight: bold;
}

.overall-block .title::after,
.overall-block .title::before {
  content: "";
  position: absolute;
  right: 5%;
  top: 44%;
  width: 6px;
  height: 34px;
  background-color: #515151;
  transition: all 0.3s;
}

.overall-block .title::after {
  transform: rotate(90deg);
}

.overall-wrap .content {
  max-height: 0;
  overflow: hidden;
}

.overall-wrap .content p {
  margin: 0;
  padding: 2em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
  padding: 30px 30px 40px 30px;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

@media only screen and (max-width: 750px) {
  .overall-block .title::after,
  .overall-block .title::before {
    right: 8%;
    top: auto;
  }
}

/* --------------------------------
* modal
----------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 150, 130, 0.9);
}

@media only screen and (min-width: 751px) {
  .modal {
    padding: 30px;
  }
}

@media only screen and (max-width: 750px) {
  .modal {
    padding: 15px;
  }
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .modal .title {
    margin-bottom: 36px;
  }
}

.modal .title .point {
  margin-right: 30px;
  line-height: 1;
}

@media only screen and (max-width: 750px) {
  .modal .title .point {
    margin-right: 10px;
  }
}

.modal .title .en {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
}

@media only screen and (min-width: 751px) {
  .modal .title .en {
    margin-right: 10px;
  }
}

.modal .title .number {
  font-size: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  font-weight: bold;
  color: #727171;
}

.modal .title .ja {
  line-height: 1.77;
  font-size: clamp(0.75rem, 0.5299295775rem + 0.9389671362vw, 1.375rem);
}

@media only screen and (min-width: 751px) {
  .modal .title .ja {
    padding-top: 6px;
  }
}

.modal .image {
  max-width: 280px;
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .modal .image {
    max-width: 260px;
  }
}

.modal-inner {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal-container {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 751px) {
  .modal-container {
    padding: 20px;
  }
}

.modal-item {
  background: #fff;
  max-width: 810px;
  margin: 0 auto;
  padding: 50px 20px 70px;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

@media only screen and (min-width: 751px) {
  .modal-item {
    border-radius: 5px;
  }
}

@media only screen and (max-width: 750px) {
  .modal-item {
    border-radius: 2px;
    padding: 30px 15px 60px;
  }
}

.modal-close-button {
  position: absolute;
  right: 0;
  top: -50px;
  width: 90px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  text-align: right;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 750px) {
  .modal-close-button {
    top: -40px;
  }
}

.modal-close-button:hover {
  opacity: 0.8;
}

.modal-close-button .en {
  color: var(--white);
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: bold;
}

.lineClose {
  display: inline-block;
  vertical-align: middle;
  color: #313131;
  line-height: 1;
  width: 30px;
  height: 30px;
  position: relative;
  border: 2px solid var(--white);
  border-radius: 50%;
  position: relative;
  pointer-events: none;
}

@media only screen and (max-width: 750px) {
  .lineClose {
    width: 22px;
    height: 22px;
  }
}

.lineClose::before,
.lineClose::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background-color: var(--white);
}

.lineClose::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.lineClose::after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.swiper-pagination-bullets {
  bottom: 50px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-pagination-bullets {
    bottom: 36px !important;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  width: 9px;
  height: 9px;
  background-color: #ccc;
  opacity: 1;
  margin: 0 10px !important;
}

@media only screen and (max-width: 750px) {
  .swiper-pagination-clickable .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 8px !important;
  }
}

.swiper-pagination-clickable .swiper-pagination-bullet-active {
  background-color: #1fbc86;
}

.swiper-button-next,
.swiper-button-prev {
  color: #009682 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: clamp(1.25rem, 1.0299295775rem + 0.9389671362vw, 1.875rem) !important;
  font-weight: bold !important;
}

.swiper-button-next {
  right: 60px !important;
}

.swiper-button-prev {
  left: 60px !important;
}

/* --------------------------------
* modal
----------------------------------- */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 0;
  z-index: 100;
  background-color: rgba(0, 150, 130, 0.9);
}

@media only screen and (min-width: 751px) {
  .modal {
    padding: 30px;
  }
}

@media only screen and (max-width: 750px) {
  .modal {
    padding: 15px;
  }
}

.modal.is-active {
  opacity: 1;
  pointer-events: auto;
}

.modal .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 40px;
}

@media only screen and (max-width: 750px) {
  .modal .title {
    margin-bottom: 36px;
  }
}

.modal .title .point {
  margin-right: 30px;
  line-height: 1;
  color: #0abc86;
}

@media only screen and (max-width: 750px) {
  .modal .title .point {
    margin-right: 10px;
  }
}

.modal .title .en {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-size: clamp(0.625rem, 0.4049295775rem + 0.9389671362vw, 1.25rem);
}

@media only screen and (min-width: 751px) {
  .modal .title .en {
    margin-right: 10px;
  }
}

.modal .title .number {
  font-size: clamp(2.5rem, 1.6197183099rem + 3.7558685446vw, 5rem);
  font-weight: bold;
  color: #0abc86;
}

.modal .title .ja {
  line-height: 1.77;
  font-size: clamp(0.75rem, 0.5299295775rem + 0.9389671362vw, 1.375rem);
}

@media only screen and (min-width: 751px) {
  .modal .title .ja {
    padding-top: 10px;
  }
}

@media only screen and (min-width: 751px) {
  .modal .three-line {
    margin-bottom: 4px;
  }
}

@media only screen and (max-width: 750px) {
  .modal .three-line {
    margin-bottom: 10px;
  }
}

.modal .image {
  max-width: 280px;
  margin: 0 auto;
}

@media only screen and (max-width: 750px) {
  .modal .image {
    max-width: 260px;
  }
}

.modal__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.modal__content {
  position: relative;
  width: 100%;
}

@media only screen and (min-width: 751px) {
  .modal__content {
    padding: 20px;
  }
}

.modal_inner {
  background: #fff;
  max-width: 810px;
  margin: 0 auto;
  padding: 50px 20px 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
  position: relative;
}

@media only screen and (min-width: 751px) {
  .modal_inner {
    border-radius: 5px;
  }
}

@media only screen and (max-width: 750px) {
  .modal_inner {
    border-radius: 2px;
    padding: 30px 15px 60px;
  }
}

.modal__close-btn {
  position: absolute;
  right: 0;
  top: -50px;
  width: 90px;
  height: 40px;
  cursor: pointer;
  z-index: 20;
  text-align: right;
  letter-spacing: 0.05em;
}

@media only screen and (max-width: 750px) {
  .modal__close-btn {
    top: -40px;
  }
}

.modal__close-btn:hover {
  opacity: 0.8;
}

.modal__close-btn .en {
  color: var(--white);
  font-size: clamp(0.75rem, 0.7059859155rem + 0.1877934272vw, 0.875rem);
  font-weight: bold;
}

/* --------------------------------
* modal-detail
----------------------------------- */
.modal-detail {
  display: none;
  background-color: rgba(0, 150, 130, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 999;
}

.modal-detail .modal-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media only screen and (max-width: 750px) {
  .modal-detail .modal-container {
    padding: 20px;
  }
}

.modal-detail .modal-detail-title {
  text-align: center;
  font-weight: bold;
  font-size: clamp(0.875rem, 0.698943662rem + 0.7511737089vw, 1.375rem);
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .modal-detail .modal-detail-title {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 750px) {
  .modal-detail .modal-item {
    padding: 30px 20px;
  }
}

.modal-detail .text {
  font-size: clamp(0.625rem, 0.4929577465rem + 0.5633802817vw, 1rem);
  margin-top: 40px;
}

.inner-green {
  background-color: #edfdf3;
  border-radius: 20px;
  padding: 40px 20px;
}

.modal-detail .text span {
  background-color: yellow;
}

.modal-detail .text + .text {
  margin-top: 1em;
}

.modal-detail .inner {
  max-width: 590px;
  margin: 0 auto;
}

.modal-detail .image {
  margin-top: 40px;
}

@media only screen and (max-width: 750px) {
  .modal-detail .image {
    margin-top: 20px;
  }
}

#stickyIn {
  background-color: #edf1f6;
}

/*-----------------------------------
  新デザインコンテンツ
-----------------------------------*/

.forPC {
  display: inherit !important;
}

@media not all and (min-width: 768px) {
  .forPC {
    display: none !important;
  }
}

.p-flow__footnoteLink {
  text-decoration-line: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.l-flow {
  padding: 99px 0 108px;
  background-color: #eff2f7;
}
@media not all and (min-width: 768px) {
  .l-flow {
    padding: 9.0666666667vw 0 12.5333333333vw;
  }
}
.l-flow__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
}
.l-flow__headingLine1 {
  padding-right: 0.05em;
  font-size: 1.75rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
@media not all and (min-width: 768px) {
  .l-flow__headingLine1 {
    font-size: 3.7333333333vw;
  }
}
.l-flow__headingLine1 .u-textSmall,
.l-flow__headingLine1 .u-textLarge {
  letter-spacing: 0.025em;
}
.l-flow__headingLine1 .u-textLarge {
  position: relative;
  bottom: -2px;
}
@media not all and (min-width: 768px) {
  .l-flow__headingLine1 .u-textLarge {
    bottom: -0.2666666667vw;
  }
}
.l-flow__headingLine2 {
  margin-top: 13px;
  padding-right: 0.06em;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .l-flow__headingLine2 {
    margin-top: 1.8666666667vw;
    padding-left: 0;
    font-size: 6.4vw;
  }
}
.l-flow__contents {
  margin-top: 71px;
}
@media not all and (min-width: 768px) {
  .l-flow__contents {
    margin-top: 10.6666666667vw;
  }
}

.c-supportEvaluation {
  max-width: 1100px;
  margin: 60px auto 0;
}
.c-supportEvaluation img {
  height: auto;
}
@media not all and (min-width: 768px) {
  .c-supportEvaluation {
    width: 75.8666666667vw;
    margin-top: 4vw;
  }
}

.l-support {
  padding: 108px 20px 98px;
}
@media not all and (min-width: 768px) {
  .l-support {
    padding: 15.4666666667vw 5.3333333333vw 11.4666666667vw;
  }
}
.l-support__heading {
  padding-right: 7px;
}
@media not all and (min-width: 768px) {
  .l-support__heading {
    padding-right: 0.5333333333vw;
  }
}
.l-support__lead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1100px;
  width: 100%;
  margin: 32px auto 0;
}
@media not all and (min-width: 768px) {
  .l-support__lead {
    margin-top: 4.5333333333vw;
  }
}
.l-support__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 37px 2.5454545455%;
  max-width: 1100px;
  width: 100%;
  margin: 56px auto 0;
}
@media not all and (min-width: 768px) {
  .l-support__contents {
    gap: 0;
    margin-top: 5.8666666667vw;
  }
}

.l-security {
  padding-top: 129px;
  padding-bottom: 108px;
}
@media not all and (min-width: 768px) {
  .l-security {
    padding: 12.2666666667vw 5.3333333333vw 11.2vw;
  }
}
.l-security__heading {
  padding-right: 1px;
}
@media not all and (min-width: 768px) {
  .l-security__heading {
    padding-right: 0;
  }
}
.l-security .c-headerGroup__description {
  margin-top: 32px;
  margin-right: 1px;
}
@media not all and (min-width: 768px) {
  .l-security .c-headerGroup__description {
    margin-top: 4.8vw;
    margin-right: 0.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}
.p-security {
  margin-top: 47px;
}
@media not all and (min-width: 768px) {
  .p-security {
    margin-top: 7.2vw;
  }
}
.l-links {
  padding: 89px 20px 85px;
}
@media not all and (min-width: 768px) {
  .l-links {
    padding: 10.1333333333vw 5.3333333333vw 11.2vw;
  }
}
.l-links__heading {
  padding-right: 1px;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .l-links__heading {
    padding-right: 0.8vw;
  }
}
.l-links__contents {
  margin-top: 45px;
}
@media not all and (min-width: 768px) {
  .l-links__contents {
    margin-top: 6.6666666667vw;
  }
}
.l-links__button {
  margin-top: 108px;
}
@media not all and (min-width: 768px) {
  .l-links__button {
    margin-top: 14.9333333333vw;
  }
}
.p-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  gap: 2.5454545455%;
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .p-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 89.3333333333vw;
    gap: 3.7333333333vw 4vw;
  }
}
.p-links__item {
  width: 254px;
}
@media not all and (min-width: 768px) {
  .p-links__item {
    width: 42.6666666667vw;
  }
}
.p-links__link {
  display: block;
  padding: 19px 10px;
  border: currentColor solid 1px;
  border-radius: 28px;
  color: #096e5f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
}
@media not all and (min-width: 768px) {
  .p-links__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 9.3333333333vw;
    padding: 0 0 0.5333333333vw;
    border-radius: 4.8vw;
    font-size: 3.2vw;
    border-width: 0.2666666667vw;
  }
}
.l-footer {
  padding-top: 66px;
  padding-bottom: 47px;
}
@media not all and (min-width: 768px) {
  .l-footer {
    padding: 11.4666666667vw 5.3333333333vw 22.1333333333vw;
  }
}
.l-footer__inner {
  grid-row-gap: 20px;
}
@media not all and (min-width: 768px) {
  .l-footer__inner {
    display: block;
    grid-row-gap: 0;
  }
}
.l-footer__column:nth-child(1) {
  padding-left: 1px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(1) {
    padding-left: 0.2666666667vw;
  }
}
.l-footer__column:nth-child(2) {
  grid-area: 2/1/3/2;
  padding-left: 1px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(2) {
    margin-top: 7.4666666667vw;
    padding-left: 0;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
.c-pointIcon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 116px;
  width: 116px;
  padding-top: 33px;
  color: #fff;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  background: url(../images/bg_point.svg) no-repeat 0 0 / contain;
}
@media not all and (min-width: 768px) {
  .c-pointIcon {
    width: 19.2vw;
    height: 19.2vw;
    padding-top: 5.0666666667vw;
    padding-right: 0;
  }
}
.c-pointIcon__text {
  padding-right: 1px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media not all and (min-width: 768px) {
  .c-pointIcon__text {
    font-size: 2.6666666667vw;
  }
}
.c-pointIcon__num {
  margin-top: 2px;
  padding-right: 2px;
  font-size: 2.5625rem;
  line-height: 1;
}
@media not all and (min-width: 768px) {
  .c-pointIcon__num {
    margin-top: 0;
    font-size: 7.4666666667vw;
  }
}
.c-headerGroup {
  text-align: center;
}
.c-headerGroup__description {
  margin-top: 29px;
  padding-right: 1px;
  font-size: 1.125rem;
  line-height: 2;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-headerGroup__description {
    margin-top: 4.5333333333vw;
    padding-right: 0;
    font-size: 3.4666666667vw;
    line-height: 1.7692307692;
    text-align: justify;
  }
}
.c-heading01 {
  font-weight: 700;
  font-size: 3.125rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-heading01 {
    font-size: 6.9333333333vw;
    line-height: 1.1923076923;
  }
}
.c-heading01 .u-textSmall {
  letter-spacing: 0.025em;
}
.c-heading02 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-heading02 {
    font-size: 5.6vw;
    line-height: 1.2857142857;
  }
}
.c-heading02 .u-textSmall {
  letter-spacing: 0.025em;
}
.c-heading03 {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-heading03 {
    font-size: 5.6vw;
    line-height: 1.0952380952;
  }
}
.c-heading03 .u-textSmall {
  letter-spacing: 0.025em;
}
.c-buttonOpening {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-box-shadow: 2.5px 4.33px 3px 0 rgba(0, 0, 0, 0.07);
  box-shadow: 2.5px 4.33px 3px 0 rgba(0, 0, 0, 0.07);
  width: 638px;
  margin-right: auto;
  margin-left: auto;
  padding: 33px 24px 29px 0;
  border-radius: 48px;
  line-height: 1;
  background-color: #e83a3a;
  text-align: center;
  text-decoration: none;
}
@media (hover: hover) {
  .c-buttonOpening {
    -webkit-transition: all 200ms;
    transition: all 200ms;
  }
  .c-buttonOpening:hover {
    opacity: 1;
    -webkit-box-shadow: 2.5px 4.33px 3px 0 rgba(0, 0, 0, 0);
    box-shadow: 2.5px 4.33px 3px 0 rgba(0, 0, 0, 0);
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
}
@media not all and (min-width: 768px) {
  .c-buttonOpening {
    left: 0.2666666667vw;
    width: 78.6666666667vw;
    height: 14.6666666667vw;
    padding: 4.8vw 1.6vw 7.7333333333vw 0;
    border-radius: 14.6666666667vw;
    background-color: #e53c40;
    -webkit-box-shadow: 0.3333333333vw 0.5773333333vw 0.4vw 0 rgba(0, 0, 0, 0.07);
    box-shadow: 0.3333333333vw 0.5773333333vw 0.4vw 0 rgba(0, 0, 0, 0.07);
  }
}
.c-buttonOpening::after {
  position: absolute;
  top: 31px;
  right: 19px;
  display: block;
  content: "";
  width: 37px;
  height: 37px;
  background: url(../images/ico_button-account.png) no-repeat 0 0 / contain;
}
@media not all and (min-width: 768px) {
  .c-buttonOpening::after {
    top: 4.2666666667vw;
    right: 2.6666666667vw;
    width: 6.4vw;
    height: 6.4vw;
    background: url(../images/ico_button-account_sp.png) no-repeat 0 0 / contain;
  }
}
.c-buttonOpening__speech {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: -47px;
  left: 187px;
  width: 272px;
  height: 74px;
  padding: 21px 0 0 1px;
  font-weight: 700;
  font-style: italic;
  font-size: 1.3125rem;
  line-height: 1;
  letter-spacing: 0.025em;
  background: url(../images/bg_buttonOpen.png) no-repeat center/contain;
}
@media not all and (min-width: 768px) {
  .c-buttonOpening__speech {
    top: -7.4666666667vw;
    left: 50%;
    width: 44.5333333333vw;
    height: 12vw;
    margin-left: 0.8vw;
    padding: 3.2vw 0 0 0.5333333333vw;
    font-size: 3.4666666667vw;
    background: url(../images/bg_buttonOpen_sp.png) no-repeat center/contain;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}
.c-buttonOpening__textWrap {
  color: #fff;
}
.c-buttonOpening__text1 {
  position: relative;
  top: 1px;
  display: inline-block;
  margin-right: 9px;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}
@media not all and (min-width: 768px) {
  .c-buttonOpening__text1 {
    top: 0;
    margin-right: 1.0666666667vw;
    font-size: 3.2vw;
  }
}
.c-buttonOpening__text2 {
  font-weight: 700;
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-buttonOpening__text2 {
    font-size: 5.6vw;
  }
}
.c-buttonOpening .u-textSmall {
  font-size: 85%;
  line-height: 1;
  letter-spacing: 0.025em;
}
.p-flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media print, screen and (max-width: 1000px) {
  .p-flow__list {
    zoom: 0.8;
  }
}
@media not all and (min-width: 768px) {
  .p-flow__list {
    zoom: initial;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.p-flow__item {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 384px;
}
@media not all and (min-width: 768px) {
  .p-flow__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    width: 89.3333333333vw;
    height: 42.2666666667vw;
    margin: 0 auto;
    border-radius: 1.6vw;
    background-color: #fff;
  }
}
@media not all and (min-width: 768px) {
  .p-flow__item:nth-child(n + 2) {
    margin-top: 15.4666666667vw;
  }
}
.p-flow__item:nth-child(n + 2)::before {
  opacity: 0.6;
  position: absolute;
  top: 138px;
  left: -10px;
  display: block;
  content: "";
  width: 28px;
  height: 48px;
  background: url(/event/ipo-aff-01/image/common/ico_flow.svg) no-repeat 0 0 / contain;
}
@media not all and (min-width: 768px) {
  .p-flow__item:nth-child(n + 2)::before {
    top: -13.3333333333vw;
    left: 50%;
    width: 4.5333333333vw;
    height: 7.6vw;
    -webkit-transform: translateX(-50%) rotate(90deg);
    transform: translateX(-50%) rotate(90deg);
  }
}
.p-flow__icon {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: -18px;
  display: inline-block;
  width: 110px;
  padding: 12px 10px 11px;
  color: #fff;
  border-radius: 20px;
  font-weight: 700;
  font-family: "Geist", sans-serif;
  font-size: 1.0625rem;
  line-height: 1;
  background-color: #7fc35e;
  text-transform: uppercase;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .p-flow__icon {
    left: 50%;
    width: 21.3333333333vw;
    padding: 1.8666666667vw 1.3333333333vw;
    top: -2.9333333333vw;
    font-size: 2.9333333333vw;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.u-textLarge {
  font-size: 160%;
}
.p-flow__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 326px;
  height: 326px;
  border-radius: 50%;
  background-color: #fff;
}
.p-flow__image img {
  height: auto;
}
@media not all and (min-width: 768px) {
  .p-flow__image {
    display: block;
    width: 36.5333333333vw;
    height: 100%;
    border-radius: 0;
    background-color: rgba(0, 0, 0, 0);
  }
}
.p-flow__imageObject1 {
  width: 123px;
  margin: 82px 0 0 100px;
}
@media not all and (min-width: 768px) {
  .p-flow__imageObject1 {
    position: absolute;
    display: block;
    width: 19.8666666667vw;
    margin: 7.7333333333vw 0 0 9.3333333333vw;
  }
}
.p-flow__imageObject2 {
  width: 123px;
  margin: 81px 0 0 102px;
}
@media not all and (min-width: 768px) {
  .p-flow__imageObject2 {
    display: block;
    width: 19.7333333333vw;
    margin: 8.1333333333vw 0 0 9.3333333333vw;
  }
}
.p-flow__imageObject3 {
  width: 123px;
  margin: 50px 0 0 100px;
}
@media not all and (min-width: 768px) {
  .p-flow__imageObject3 {
    display: block;
    width: 19.6vw;
    margin: 4.8vw 0 0 9.3333333333vw;
  }
}
.p-flow__text {
  margin-top: 19px;
  padding-right: 0.05em;
  font-size: 1.375rem;
  line-height: 1.3636363636;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .p-flow__text {
    margin-top: 0;
    margin-bottom: 0.5333333333vw;
    padding-right: 0;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
    text-align: left;
  }
}
.p-flow__footnotes {
  margin: 36px 20px 0;
  padding-right: 0.05em;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media not all and (min-width: 768px) {
  .p-flow__footnotes {
    margin: 6.4vw 5.3333333333vw 0;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
.p-flow__footnote {
  position: relative;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .p-flow__footnote {
    text-align: left;
    text-indent: -1em;
    margin-left: 1em;
  }
}
.p-flow__footnote::before {
  display: inline;
  content: "※";
}
@media not all and (min-width: 768px) {
  .p-flow__footnote + .p-flow__footnote {
    margin-top: 1.0666666667vw;
  }
}

.l-security {
  overflow: hidden;
  position: relative;
  padding: 129px 20px 108px;
  z-index: 0;
  background-color: #d1f5e3;
}
@media not all and (min-width: 768px) {
  .l-security {
    padding: 12.2666666667vw 5.3333333333vw 10.1333333333vw;
  }
}
.l-security__heading {
  padding-right: 3px;
}
@media not all and (min-width: 768px) {
  .l-security__heading {
    padding-right: 0;
  }
}
.l-security__heading .u-textSmall {
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .l-security .c-headerGroup__description {
    margin-top: 3.2vw;
  }
}
.p-security {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  max-width: 1100px;
  width: 100%;
  margin: 34px auto 0;
}
@media not all and (min-width: 768px) {
  .p-security {
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    gap: 6.6666666667vw 0;
    margin-top: 6.4vw;
  }
}
.p-security__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 350px;
  width: 100%;
  padding: 5% 3.3636363636% 6.5454545455% 3.7272727273%;
  border-radius: 12px;
  background-color: #fff;
}
.p-security__item img {
  height: auto;
}
@media not all and (min-width: 768px) {
  .p-security__item {
    max-width: 100%;
    width: 89.3333333333vw;
    padding: 7.2vw 7.4666666667vw 9.6vw;
    border-radius: 1.8666666667vw;
  }
}
.p-security__item + .p-security__item {
  margin-left: 10px;
}
@media not all and (min-width: 768px) {
  .p-security__item + .p-security__item {
    margin-left: 0;
  }
}
.p-security__heading {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
  padding-right: 0.15em;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.025em;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .p-security__heading {
    padding-left: 1.0666666667vw;
    font-size: 4vw;
    line-height: 1.6666666667;
  }
}
.p-security__description {
  -webkit-box-ordinal-group: 4;
  -ms-flex-order: 3;
  order: 3;
  margin-top: 28px;
  font-size: 0.9375rem;
  line-height: 1.8666666667;
  letter-spacing: 0.025em;
  text-align: justify;
}
@media not all and (min-width: 768px) {
  .p-security__description {
    margin-top: 3.2vw;
    font-size: 2.9333333333vw;
    line-height: 1.7272727273;
    line-break: anywhere;
  }
}
.p-security__icon {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.p-security__icon--01 {
  width: 77px;
  margin: 0 3px 30px 0;
}
@media not all and (min-width: 768px) {
  .p-security__icon--01 {
    width: 15.8666666667vw;
    margin: 0 0 2.9333333333vw 0;
  }
}
.p-security__icon--02 {
  width: 83px;
  margin: 4px 3px 32px 0;
}
@media not all and (min-width: 768px) {
  .p-security__icon--02 {
    width: 17.3333333333vw;
    margin: 0.8vw 0 4.2666666667vw 0;
  }
}
.p-security__icon--03 {
  width: 122px;
  margin: 5px 5px 34px 0;
}
@media not all and (min-width: 768px) {
  .p-security__icon--03 {
    width: 27.4666666667vw;
    margin: 0.2666666667vw 0.8vw 4.5333333333vw 0;
  }
}
.l-links {
  padding: 89px 20px 85px;
}
@media not all and (min-width: 768px) {
  .l-links {
    padding: 14.1333333333vw 5.3333333333vw 11.4666666667vw;
  }
}
.l-links__heading {
  padding-right: 1px;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .l-links__heading {
    padding-right: 0.8vw;
  }
}
.l-links__contents {
  margin-top: 45px;
}
@media not all and (min-width: 768px) {
  .l-links__contents {
    margin-top: 6.6666666667vw;
  }
}
.l-links__button {
  margin-top: 108px;
}
@media not all and (min-width: 768px) {
  .l-links__button {
    margin-top: 14.9333333333vw;
  }
}
.p-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  gap: 2.5454545455%;
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .p-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 89.3333333333vw;
    gap: 3.7333333333vw 4vw;
  }
}
.p-links__item {
  width: 254px;
}
@media not all and (min-width: 768px) {
  .p-links__item {
    width: 42.6666666667vw;
  }
}
.p-links__link {
  position: relative;
  display: block;
  padding: 19px 10px;
  border: currentColor solid 1px;
  border-radius: 28px;
  color: #096e5f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
}
@media not all and (min-width: 768px) {
  .p-links__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 9.3333333333vw;
    padding: 0 0 0.5333333333vw;
    border-radius: 4.8vw;
    font-size: 3.2vw;
    border-width: 0.2666666667vw;
  }
}
.p-links__link::after {
  position: absolute;
  top: 23px;
  right: 21px;
  display: block;
  content: "";
  width: 10px;
  height: 9px;
  background: url(/event/ipo-aff-01/image/common/ico_link-arrow.png) no-repeat 0 0 / contain;
}
@media not all and (min-width: 768px) {
  .p-links__link::after {
    top: 3.2vw;
    right: 2.6666666667vw;
    width: 2.1333333333vw;
    height: 2.1333333333vw;
    background: url(/event/ipo-aff-01/image/common/ico_link-arrow_sp.png) no-repeat 0 0 / contain;
  }
}
.l-support {
  padding: 108px 20px 98px;
}
@media not all and (min-width: 768px) {
  .l-support {
    padding: 15.4666666667vw 5.3333333333vw 11.4666666667vw;
  }
}
.l-support__heading {
  padding-right: 7px;
}
@media not all and (min-width: 768px) {
  .l-support__heading {
    padding-right: 0.5333333333vw;
  }
}
.l-support__lead {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  max-width: 1100px;
  width: 100%;
  margin: 32px auto 0;
}
@media not all and (min-width: 768px) {
  .l-support__lead {
    margin-top: 4.5333333333vw;
  }
}
.l-support__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 37px 2.5454545455%;
  max-width: 1100px;
  width: 100%;
  margin: 56px auto 0;
}
@media not all and (min-width: 768px) {
  .l-support__contents {
    gap: 0;
    margin-top: 5.8666666667vw;
  }
}
.c-support {
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 536px;
  width: 100%;
  height: 328px;
  border-radius: 14px;
  color: #fff;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
@media not all and (min-width: 768px) {
  .c-support {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
    max-width: 100%;
    width: 89.3333333333vw;
    height: 57.3333333333vw;
    border-radius: 1.8666666667vw;
  }
}
.c-support--tel {
  background-image: linear-gradient(135deg, rgb(12, 182, 155) 0%, rgb(0, 141, 121) 100%);
}
@media not all and (min-width: 768px) {
  .c-support--tel {
    background-image: linear-gradient(135deg, rgb(33, 181, 155) 0%, rgb(19, 140, 121) 100%);
  }
}
.c-support--mail {
  background-image: linear-gradient(135deg, rgb(10, 186, 132) 0%, rgb(0, 170, 118) 100%);
  -webkit-transform: translateX(-1px);
  transform: translateX(-1px);
}
@media not all and (min-width: 768px) {
  .c-support--mail {
    margin-top: 4.8vw;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
.c-support__heading {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 10px 33px;
  font-weight: 700;
  font-size: 1.625rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  border-bottom: hsla(0, 0%, 100%, 0.3) solid 1px;
}
@media not all and (min-width: 768px) {
  .c-support__heading {
    padding: 5.6vw 1.3333333333vw 4.8vw;
    border-width: 0.2666666667vw;
    font-size: 4.8vw;
  }
}
.c-support__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
@media not all and (min-width: 768px) {
  .c-support__contentsInner {
    width: 89.3333333333vw;
  }
}
.c-support__telNumber {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  font-family: "Geist", sans-serif;
  font-weight: 700;
  font-size: 2.894375rem;
  margin-top: 58px;
  margin-bottom: 17px;
}
.c-support__telNumber a {
  color: #fff;
}
@media not all and (min-width: 768px) {
  .c-support__telNumber {
    font-size: 7.2vw;
    margin-top: 11.7333333333vw;
    margin-bottom: 3.4666666667vw;
  }
}
.c-support__telNumber::before {
  display: inline-block;
  content: "";
  width: 64px;
  height: 42px;
  margin-right: 12px;
  margin-left: 1px;
  background: url(/event/ipo-aff-01/image/common/ico_freedial.png) no-repeat center/contain;
}
@media not all and (min-width: 768px) {
  .c-support__telNumber::before {
    margin-left: 0.2666666667vw;
    margin-right: 1.8666666667vw;
    width: 10vw;
    height: 6.5333333333vw;
  }
}
.c-support__receptionHours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.4;
  letter-spacing: 0.025em;
}
@media not all and (min-width: 768px) {
  .c-support__receptionHours {
    font-size: 3.2vw;
    line-height: 1.3333333333;
  }
}
.c-support__receptionHours sup {
  position: relative;
  top: 3px;
  font-size: 60%;
  vertical-align: top;
}
@media not all and (min-width: 768px) {
  .c-support__receptionHours sup {
    top: 0.8vw;
  }
}
.c-support__receptionHoursSpan {
  display: inline-block;
  margin: 0 0.15em 0 0.225em;
}
@media not all and (min-width: 768px) {
  .c-support__receptionHoursSpan {
    margin: 0 0 0 0.12em;
  }
}
@media not all and (min-width: 768px) {
  .c-support__receptionHoursSpanSp {
    margin: 0 0.2em 0 0.275em;
  }
}
.c-support__link {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: block;
  width: 310px;
  height: 66px;
  margin: 31px auto 17px;
  padding: 24px 8px 0 0;
  border-radius: 33px;
  color: #01986a;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.025em;
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgb(235, 248, 244)), to(rgb(255, 255, 255)));
  background-image: linear-gradient(0deg, rgb(235, 248, 244) 0%, rgb(255, 255, 255) 100%);
  -webkit-box-shadow: 2.5px 4.33px 5px 0px rgba(0, 0, 0, 0.13);
  box-shadow: 2.5px 4.33px 5px 0px rgba(0, 0, 0, 0.13);
  text-align: center;
  text-decoration: none;
  -webkit-transform: translateX(3px);
  transform: translateX(3px);
}
@media not all and (min-width: 768px) {
  .c-support__link {
    width: 62.6666666667vw;
    height: 12.5333333333vw;
    margin: 4.5333333333vw 0 2.4vw 12.5333333333vw;
    padding: 4.2666666667vw 0 0;
    border-radius: 6.2666666667vw;
    font-size: 3.7333333333vw;
    -webkit-box-shadow: 0.3333333333vw 0.5773333333vw 0.6666666667vw 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0.3333333333vw 0.5773333333vw 0.6666666667vw 0 rgba(0, 0, 0, 0.13);
  }
}
.c-support__link::after {
  position: absolute;
  top: 15px;
  right: 12px;
  display: block;
  content: "";
  width: 37px;
  height: 37px;
  background: url(/event/ipo-aff-01/image/common/ico_button-support.png) no-repeat 0 0 / contain;
}
.c-support__link:hover {
  opacity: 0.8 !important;
}
@media not all and (min-width: 768px) {
  .c-support__link::after {
    top: 2.9333333333vw;
    right: 2.6666666667vw;
    width: 6.9333333333vw;
    height: 6.9333333333vw;
    background: url(/event/ipo-aff-01/image/common/ico_button-support_sp.png) no-repeat 0 0 / contain;
  }
}
.c-support__footnote {
  margin-top: 19px;
  margin-right: 3px;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media not all and (min-width: 768px) {
  .c-support__footnote {
    margin: 1.8666666667vw 0 0 0.5333333333vw;
    font-size: 2.6666666667vw;
    line-height: 1.5;
    text-align: center;
  }
}
.c-supportEvaluation {
  width: 100%;
}
@media not all and (min-width: 768px) {
  .c-supportEvaluation {
    width: 89.3333333333vw;
    margin-top: 4vw;
  }
}
.p-floating {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: fixed;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 170px;
  padding-top: 57px;
  background-color: hsla(0, 0%, 100%, 0.9);
  z-index: 10;
}
@media not all and (min-width: 768px) {
  .p-floating {
    display: block;
    height: 26.6666666667vw;
    padding-top: 9.0666666667vw;
  }
}
@media not all and (min-width: 768px) {
  .p-floating__button {
    margin-left: 6.9333333333vw;
  }
  .p-floating__button .c-buttonOpening {
    margin: 0;
  }
}
.p-floating__pageTop {
  position: absolute;
  right: 13px;
  bottom: 18px;
}
@media not all and (min-width: 768px) {
  .p-floating__pageTop {
    bottom: 2.6666666667vw;
    right: 2.6666666667vw;
  }
}
.c-floatingPageTop {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 49px;
  height: 49px;
  border-radius: 50%;
  background-color: dimgray;
}
@media not all and (min-width: 768px) {
  .c-floatingPageTop {
    width: 9.3333333333vw;
    height: 9.3333333333vw;
    padding: 0.5333333333vw 0 0 0.2666666667vw;
  }
}
@media (hover: hover) {
  .c-floatingPageTop:hover {
    opacity: 1;
  }
  .c-floatingPageTop:hover .c-floatingPageTop__image {
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
.c-floatingPageTop__image {
  width: 14px;
  height: 17px;
}
@media (hover: hover) {
  .c-floatingPageTop__image {
    -webkit-transition: -webkit-transform 200ms;
    transition: -webkit-transform 200ms;
    transition: transform 200ms;
    transition:
      transform 200ms,
      -webkit-transform 200ms;
  }
}
@media not all and (min-width: 768px) {
  .c-floatingPageTop__image {
    width: 2.9333333333vw;
    height: 3.2vw;
  }
}

.l-footer {
  overflow: hidden;
  position: relative;
  z-index: 0;
  padding: 58px 20px 109px;
  background-color: #009682;
}
@media not all and (min-width: 768px) {
  .l-footer {
    padding: 11.4666666667vw 5.3333333333vw 22.1333333333vw;
  }
}
.l-footer__inner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-column-gap: 0;
  grid-row-gap: 68px;
  max-width: 1100px;
  margin: 0 auto;
}
@media not all and (min-width: 768px) {
  .l-footer__inner {
    display: block;
    grid-row-gap: 0;
  }
}
.l-footer__column {
  color: #fff;
  font-size: 0.75rem;
  line-height: 2;
  letter-spacing: 0.05em;
  -webkit-font-smoothing: initial;
}
@media not all and (min-width: 768px) {
  .l-footer__column {
    font-size: 2.9333333333vw;
    line-height: 1.5454545455;
    text-align: center;
  }
}
.l-footer__column:nth-child(1) {
  grid-area: 1/1/2/3;
  padding-left: 2px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(1) {
    padding-left: 0.2666666667vw;
  }
}
.l-footer__column:nth-child(2) {
  grid-area: 2/1/3/2;
  padding-left: 2px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(2) {
    margin-top: 5.3333333333vw;
    padding-left: 0;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
.l-footer__column:nth-child(3) {
  justify-self: flex-end;
  grid-area: 2/2/3/3;
  -ms-flex-item-align: end;
  align-self: flex-end;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(3) {
    margin-top: 8.5333333333vw;
    justify-self: initial;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}
.l-footer__column a {
  color: #fff;
  text-decoration: underline;
  margin-right: 10px;
}
.l-footer__copyright {
  font-family: "Geist", sans-serif;
  letter-spacing: 0;
}
.c-pageTop {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: absolute;
  top: 8px;
  right: 1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 78px;
  height: 78px;
  padding: 2px 0 0 2px;
  border-radius: 50%;
  background-color: #fff;
}
.c-pageTop__arrow {
  width: 14px;
  height: 15px;
}
@media (hover: hover) {
  .c-pageTop__arrow {
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    transition: transform 400ms;
    transition:
      transform 400ms,
      -webkit-transform 400ms;
  }
}
@media (hover: hover) {
  .c-pageTop:hover {
    opacity: 1;
  }
  .c-pageTop:hover .c-pageTop__arrow {
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}
@media not all and (min-width: 768px) {
  .c-pageTop {
    display: none;
  }
}
.l-support {
  padding-bottom: 92px;
}
@media not all and (min-width: 768px) {
  .l-support {
    padding: 12.8vw 5.3333333333vw 13.8666666667vw;
  }
}
.l-support__lead {
  margin-top: 38px;
}
@media not all and (min-width: 768px) {
  .l-support__lead {
    margin-top: 4.5333333333vw;
  }
}
.l-support__contents {
  margin-top: 46px;
}
@media not all and (min-width: 768px) {
  .l-support__contents {
    margin-top: 8vw;
  }
}
.l-security {
  padding-top: 129px;
  padding-bottom: 108px;
}
@media not all and (min-width: 768px) {
  .l-security {
    padding: 12.2666666667vw 5.3333333333vw 11.2vw;
  }
}
.l-security__heading {
  padding-right: 1px;
}
@media not all and (min-width: 768px) {
  .l-security__heading {
    padding-right: 0;
  }
}
.l-security .c-headerGroup__description {
  margin-top: 32px;
  margin-right: 1px;
}
@media not all and (min-width: 768px) {
  .l-security .c-headerGroup__description {
    margin-top: 4.8vw;
    margin-right: 0.2666666667vw;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
  }
}
.p-security {
  margin-top: 47px;
}
@media not all and (min-width: 768px) {
  .p-security {
    margin-top: 7.2vw;
  }
}
.l-links {
  padding: 89px 20px 85px;
}
@media not all and (min-width: 768px) {
  .l-links {
    padding: 10.1333333333vw 5.3333333333vw 11.2vw;
  }
}
.l-links__heading {
  padding-right: 1px;
  text-align: center;
}
@media not all and (min-width: 768px) {
  .l-links__heading {
    padding-right: 0.8vw;
  }
}
.l-links__contents {
  margin-top: 45px;
}
@media not all and (min-width: 768px) {
  .l-links__contents {
    margin-top: 6.6666666667vw;
  }
}
.l-links__button {
  margin-top: 108px;
}
@media not all and (min-width: 768px) {
  .l-links__button {
    margin-top: 14.9333333333vw;
  }
}
.p-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1100px;
  gap: 2.5454545455%;
  margin-right: auto;
  margin-left: auto;
}
@media not all and (min-width: 768px) {
  .p-links {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 89.3333333333vw;
    gap: 3.7333333333vw 4vw;
  }
}
.p-links__item {
  width: 254px;
}
@media not all and (min-width: 768px) {
  .p-links__item {
    width: 42.6666666667vw;
  }
}
.p-links__link {
  display: block;
  padding: 19px 10px;
  border: currentColor solid 1px;
  border-radius: 28px;
  color: #096e5f;
  font-weight: 500;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.025em;
  text-align: center;
  text-decoration: none;
}
@media not all and (min-width: 768px) {
  .p-links__link {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 9.3333333333vw;
    padding: 0 0 0.5333333333vw;
    border-radius: 4.8vw;
    font-size: 3.2vw;
    border-width: 0.2666666667vw;
  }
}
.l-footer {
  padding-top: 66px;
  padding-bottom: 47px;
}
@media not all and (min-width: 768px) {
  .l-footer {
    padding: 11.4666666667vw 5.3333333333vw 22.1333333333vw;
  }
}
.l-footer__inner {
  grid-row-gap: 20px;
}
@media not all and (min-width: 768px) {
  .l-footer__inner {
    display: block;
    grid-row-gap: 0;
  }
}
.l-footer__column:nth-child(1) {
  padding-left: 1px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(1) {
    padding-left: 0.2666666667vw;
  }
}
.l-footer__column:nth-child(2) {
  grid-area: 2/1/3/2;
  padding-left: 1px;
}
@media not all and (min-width: 768px) {
  .l-footer__column:nth-child(2) {
    margin-top: 7.4666666667vw;
    padding-left: 0;
    font-size: 2.6666666667vw;
    line-height: 1.5;
  }
}

/* --------------------------------
タイアップ企画
----------------------------------- */

.p-campain {
  padding-top: 1.5625rem;
  padding-bottom: 2.1875rem;
}

@media screen and (min-width: 768px) {
  .p-campain {
    padding-top: 3.125rem;
    padding-bottom: 5.625rem;
  }
}

.pc-none {
  display: block;
}

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

.mtn-tieup {
  padding: 2rem 0 3.25rem;
  background: #fafafa;
  margin-top: 4.375rem;
}

@media screen and (min-width: 768px) {
  .mtn-tieup {
    padding: 4.375rem 0 5.625rem;
    margin-top: 4.375rem;
  }
}

.mtn-tieup__inner {
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__inner {
    margin-top: 1.75rem;
  }
}

.mtn-tieup__panel {
  position: relative;
  background: #fff;
  border: 0.125rem solid #00a28d;
  border-radius: 1.25rem;
  padding: 1rem;
  overflow: visible;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__panel {
    padding: 3.4375rem 3rem 3rem;
    border-radius: 1.5rem;
  }
}

.mtn-tieup__label {
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
  background: #00a28d;
  color: #ffffff;
  text-align: center;
  font-weight: 900;
  font-size: 26px;
  line-height: 1.35;
  letter-spacing: 0.03em;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 2.25rem;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__label {
    margin-bottom: 2.25rem;
    font-size: 3rem;
    line-height: 1.4166666667;
    padding-inline: 3rem;
  }
}

.mtn-tieup__lead {
  text-align: center;
}

.mtn-tieup__lead-line {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 1.75rem;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.45;
}

.mtn-tieup__lead-line::before,
.mtn-tieup__lead-line::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1rem;
  height: 0.125rem;
  background: #111;
}

.mtn-tieup__lead-line::before {
  left: 0;
  transform: translateY(-50%) rotate(55deg);
}

.mtn-tieup__lead-line::after {
  right: 0;
  transform: translateY(-50%) rotate(-55deg);
}

@media screen and (min-width: 768px) {
  .mtn-tieup__lead-line {
    padding: 0 2.75rem;
    font-size: 2rem;
  }

  .mtn-tieup__lead-line::before,
  .mtn-tieup__lead-line::after {
    width: 1.5rem;
  }
}

.mtn-tieup__leadMain {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 0.875rem;
  flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__leadMain {
    gap: 1rem;
    margin-top: 1rem;
    flex-wrap: nowrap;
  }
}

.mtn-tieup__max {
  position: relative;
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.25rem;
  height: 56px;
  padding: 0 0.75rem;
  border-radius: 9999px;
  background: #00bba5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
  line-height: 1;
}

.mtn-tieup__max::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -0.5rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 0.375rem solid transparent;
  border-bottom: 0.375rem solid transparent;
  border-left: 0.625rem solid #00bba5;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__max {
    min-width: 4.5rem;
    height: 5.3rem;
    padding: 0 1rem;
    font-size: 1.625rem;
  }

  .mtn-tieup__max::after {
    right: -0.6875rem;
    border-top-width: 0.5rem;
    border-bottom-width: 0.5rem;
    border-left-width: 0.8125rem;
  }
}

.mtn-tieup__leadPoint {
  display: inline-flex;
  align-items: flex-end;
  gap: 0.125rem;
  margin: 0;
  line-height: 1;
  position: relative;
  padding-bottom: 0.25rem;
}

.mtn-tieup__leadPoint::after {
  content: "";
  position: absolute;
  left: 0.15em;
  right: 0.1em;
  bottom: 0.15rem;
  height: 0.5rem;
  background: #efe75d;
  z-index: 0;
}

.mtn-tieup__leadNum,
.mtn-tieup__leadUnit {
  position: relative;
  z-index: 1;
  color: #ff2d40;
  font-weight: 900;
  line-height: 0.9;
}

.mtn-tieup__leadNum {
  font-size: 70px;
  letter-spacing: -0.02em;
}

.mtn-tieup__leadUnit {
  font-size: 3.25rem;
}

.mtn-tieup__leadText {
  margin: 10px 0 0.4px;
  flex: 0 0 auto;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.2;
  color: #ff2d40;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__leadPoint {
    padding-bottom: 0.3125rem;
  }

  .mtn-tieup__leadPoint::after {
    bottom: 0.2rem;
    height: 0.75rem;
  }

  .mtn-tieup__leadNum {
    font-size: 5.75rem;
  }

  .mtn-tieup__leadUnit {
    font-size: 4.625rem;
  }

  .mtn-tieup__leadText {
    margin-bottom: 0.5rem;
    font-size: 3.2rem;
  }
}

.mtn-tieup__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 1.75rem;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem;
    margin-top: 3.5rem;
  }
}

.mtn-tieup__card {
  text-align: center;
}

.mtn-tieup__stepHead {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80%;
  max-width: 100%;
  position: relative;
}

.mtn-tieup__stepNum {
  position: relative;
  z-index: 2;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ff9c12;
  border: 0.125rem solid #fff;
  color: #fff;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0.125rem #ff9c12;
  flex-shrink: 0;
  padding-bottom: 3px;
}

.mtn-tieup__stepTitle {
  margin: 0 0 0 -1rem;
  padding: 0.625rem 2rem;
  border-radius: 9999px;
  background: #00a28d;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__stepNum {
    width: 4.125rem;
    height: 4.125rem;
    font-size: 2.5rem;
  }

  .mtn-tieup__stepTitle {
    min-width: 100%;
    padding: 0.75rem 1.5rem 0.75rem 2rem;
    font-size: 1.5rem;
  }
}

.mtn-tieup__cardText {
  margin: 0;
  color: #0b5d52;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.01em;
  font-weight: 900;
}

.mtn-tieup__cardText strong {
  font-size: 20px;
  font-weight: 900;
  text-underline-offset: 0.08em;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__cardText {
    font-size: 1.625rem;
  }

  .mtn-tieup__cardText strong {
    font-size: 1.875rem;
  }
}

.mtn-tieup__point {
  position: relative;
  display: inline-block;
  margin: 1rem 0 0;
  padding: 0 0.25rem 0.2rem;
  color: #ff2d40;
  font-size: 40px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.mtn-tieup__point::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 0.5rem;
  background: #efe75d;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__point {
    margin-top: 1.125rem;
    font-size: 3.25rem;
  }

  .mtn-tieup__point::after {
    height: 0.625rem;
  }
}

.mtn-tieup__cardBody {
  margin-top: 0.875rem;
  background: #ebf4f1;
  border-radius: 1rem;
  padding: 1.25rem 0.875rem 2.5rem;
  min-height: 9.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__cardBody {
    min-height: 20rem;
    padding: 1.75rem 1rem 1.875rem;
    border-radius: 1rem;
  }
}

.mtn-tieup__pointWrap {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.375rem;
  margin: 1rem 0 0;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__pointWrap {
    margin-top: 1.25rem;
    gap: 0.5rem;
  }
}

.mtn-tieup__point {
  position: relative;
  display: inline-block;
  margin: 0;
  padding: 0 0.25rem 0.2rem;
  color: #ff2d40;
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.01em;
}

.mtn-tieup__point::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05rem;
  height: 0.5rem;
  background: #efe75d;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__point {
    font-size: 3.25rem;
  }

  .mtn-tieup__point::after {
    height: 0.625rem;
  }
}

.mtn-tieup__pointText {
  display: inline-block;
  color: #ff2d40;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 0.2rem;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__pointText {
    font-size: 1.75rem;
    margin-bottom: 0.3rem;
  }
}

.mtn-tieup__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 10rem;
  margin-top: 2rem;
  padding: 0.5rem 3rem;
  border-radius: 10px;
  background: #f9a506;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.12);
  cursor: pointer;
  transition: opacity 0.3s ease;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__btn {
    min-width: 11.875rem;
    margin-top: 2rem;
    padding: 0.8rem 4rem;
    font-size: 1.625rem;
  }
}

.mtn-tieup__btn:hover {
  opacity: 0.85;
}

.mtn-tieup__inner .c-btn1 {
  padding: 10px 30px;
  font-size: 20px;
  font-weight: bold !important;
}

/* タイアアップモーダル */

.campaign-modalCont {
  text-align: center;
  max-width: 500px;
  margin: auto;
  margin-top: 5%;
}

.campaign-modalCont .mtn-tieup__stepTitle {
  margin: 0 0 0 -1rem;
  padding: 0.625rem 2.1rem;
  border-radius: 9999px;
  background: #00a28d;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
}

@media screen and (min-width: 768px) {
  .campaign-modalCont .mtn-tieup__stepTitle {
    font-size: 2rem;
  }
}

.js_modalCont .p-camain__inner table {
  font-size: 12px !important;
}

.js_modalCont .p-camain__inner .stockaff-table th {
  font-size: 12px !important;
}

.js_modalCont .p-camain__inner .indent-list li {
  margin-bottom: 10px;
}

@media screen and (min-width: 768px) {
  .js_modalCont .p-camain__inner table {
    font-size: 14px !important;
  }
  .js_modalCont .p-camain__inner .stockaff-table th {
    font-size: 14px !important;
  }
}

@media (max-width: 750px) {
  .js_modalCont .p-camain__inner .green-title {
    font-size: 1rem;
  }
}

/* --------------------------------
table
----------------------------------- */

/* --------------------------------
プログラム詳細
----------------------------------- */

.banner-stockaff-block02 .intro {
  margin: 50px 0;
  font-size: clamp(0.875rem, 0.786971831rem + 0.3755868545vw, 1.125rem);
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .intro {
    margin: 40px 0 30px;
  }
}

.banner-stockaff-block02 .green-title {
  text-align: center;
  background-color: #128271;
  border-radius: 30px;
  font-size: clamp(1.125rem, 0.9049295775rem + 0.9389671362vw, 1.75rem);
  color: var(--white);
  padding: 6px;
  margin-bottom: 20px;
}

@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .green-title {
    margin-bottom: 30px;
  }
}
.banner-stockaff-block02 .stockaff-table {
  width: 100%;
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table tr {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-top: 1px solid #ccc;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table tr:last-child td {
    border-bottom: 1px solid #ccc;
  }
}
.banner-stockaff-block02 .stockaff-table th,
.banner-stockaff-block02 .stockaff-table td {
  padding: 12px 20px;
  font-size: clamp(0.6875rem, 0.5334507042rem + 0.6572769953vw, 1.125rem);
}
@media only screen and (min-width: 751px) {
  .banner-stockaff-block02 .stockaff-table th,
  .banner-stockaff-block02 .stockaff-table td {
    border: 1px solid #ccc;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table th,
  .banner-stockaff-block02 .stockaff-table td {
    width: 100%;
    display: block;
    padding: 6px 16px;
  }
}
.banner-stockaff-block02 .stockaff-table th {
  background-color: #e9f4f1;
  text-align: left;
}
@media only screen and (min-width: 751px) {
  .banner-stockaff-block02 .stockaff-table th {
    width: 24%;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table th {
    border-bottom: 1px solid #ccc;
  }
}
.banner-stockaff-block02 .stockaff-table td {
  background-color: var(--white);
}
.banner-stockaff-block02 .stockaff-table .bg-gray {
  background-color: #f7f7f7;
  font-weight: bold;
  font-size: clamp(0.625rem, 0.448943662rem + 0.7511737089vw, 1.125rem);
}
@media only screen and (min-width: 751px) {
  .banner-stockaff-block02 .stockaff-table .bg-gray {
    width: 24%;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table .bg-gray {
    display: inline-block;
    width: 28%;
    padding: 8px 6px;
    border: none;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table .next-bg-gray {
    display: inline-block;
    width: 72%;
    padding: 8px 6px;
    border: none;
  }
}
.banner-stockaff-block02 .stockaff-table .red {
  font-size: clamp(0.6875rem, 0.4894366197rem + 0.8450704225vw, 1.25rem);
  color: #e83a3a;
  font-weight: bold;
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block02 .stockaff-table .red {
    margin: 2px 0;
  }
}
.banner-stockaff-block02 .stockaff-table .notice {
  font-size: clamp(0.625rem, 0.5809859155rem + 0.1877934272vw, 0.75rem);
}
@media only screen and (min-width: 751px) {
  .banner-stockaff-block02 .stockaff-table .notice {
    margin-top: 1em;
  }
}

.banner-stockaff-block02 .thumbnail img {
  width: 100%;
}
@media only screen and (min-width: 751px) {
  .banner-stockaff-block02 .thumbnail img {
    min-height: 339px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}
.stockaff-table th {
  background-color: #e9f4f1;
  text-align: left;
  box-sizing: border-box;
  width: 24%;
  font-weight: bold;
}

.block02 .stockaff-table td {
  line-height: 1.7;
  box-sizing: border-box;
}
.stockaff-table th,
.stockaff-table td {
  padding: 12px 6px;
  vertical-align: middle;
  font-size: 12px !important;
}

.green-title {
  text-align: center;
  background-color: #128271;
  border-radius: 100px;
  font-size: 2rem;
  color: #fff;
  padding: 6px;
  margin: 20px 0;
  font-weight: bold;
  line-height: 1.7;
}

.p-camain__inner .stockaff-table {
  text-align: left;
}

.p-camain__inner .indent-list li {
  margin-bottom: 10px;
}

.p-camain__inner table {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .p-camain__inner table {
    font-size: 14px;
  }
  .stockaff-table th,
  .stockaff-table td {
    font-size: 14px !important;
  }
}

@media screen and (min-width: 768px) {
  .mtn-tieup__inner .p-merit3__bannerOpen {
    margin-top: 20px;
  }
}

@media screen and (min-width: 768px) {
  .mtn-tieup__inner .c-btn1 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  .l-inner {
    max-width: 1050px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}
.l-inner {
  width: 100%;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (min-width: 768px) {
  .mtn-tieup__inner .c-btn1 {
    font-size: 1.6rem;
  }
}
.mtn-tieup__inner .c-btn1 {
  padding: 10px 30px;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .c-btn1 {
    font-size: 1.375rem;
    line-height: 1.2272727273;
    padding: 0.3125rem 1.6875rem 0.4375rem;
    gap: 1.0625rem;
  }
}
.c-btn1 {
  display: inline-block;
  padding: 0.3125rem 2.3125rem 0.4375rem;
  font-size: 2rem;
  line-height: 1.1875;
  font-weight: 900;
  color: #fff;
  background-color: #ff8400;
  border-radius: 3.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 1.5625rem;
  -webkit-box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0.25rem 0.25rem 0 rgba(0, 0, 0, 0.25);
}

.p-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 6.25rem;
  height: 100vh;
  overflow-y: auto;
  display: none;
}
.p-modal.is-show {
  display: block;
}

.p-modal__bg {
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.p-modal__inner.l-inner {
  max-width: 46.875rem;
}

.p-modal__content {
  background-color: #fff;
  border-radius: 1.25rem;
  -webkit-box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(0, 0, 0, 0.25);
  box-shadow: 0.1875rem 0.1875rem 0.1875rem rgba(0, 0, 0, 0.25);
  padding: 20px 14px 100px 14px;
  position: relative;
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .p-modal__content {
    padding: 20px 24px;
  }
}

.p-modal__close {
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-modal__close {
    cursor: pointer;
  }
}
.p-modal__close button {
  display: inline-block;
  background: none;
  border: none;
  margin: 0;
  font-size: 20px;
  line-height: 1.25;
  color: #fff;
  padding: 10px 14px;
  border-radius: 100px;
  background-color: #8b8b8b;
  min-width: 200px;
}

.p-modal .splide__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 10;
  width: 90.8571428571%;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__arrows {
    width: 100%;
  }
}
.p-modal .splide__arrows button.splide__arrow {
  position: relative;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  background: #ff9f38;
  height: auto;
  aspect-ratio: 1;
  width: 4.875rem;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__arrows button.splide__arrow {
    width: 2.9375rem;
  }
}
.p-modal .splide__arrows button.splide__arrow--prev {
  left: 0;
}
.p-modal .splide__arrows button.splide__arrow--prev:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url(/event/stock-aff-03/images/arrow_left.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -60% -50%;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__arrows button.splide__arrow--prev:after {
    width: 1.5rem;
  }
}
.p-modal .splide__arrows button.splide__arrow--next {
  right: 0;
}
.p-modal .splide__arrows button.splide__arrow--next:after {
  content: "";
  display: block;
  width: 2.5rem;
  height: auto;
  aspect-ratio: 1;
  background: url(/event/stock-aff-03/images/arrow_right.svg) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -40% -50%;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__arrows button.splide__arrow--next:after {
    width: 1.5rem;
  }
}
.p-modal .splide__arrows button.splide__arrow svg {
  display: none;
}
.p-modal .splide__pagination {
  padding: 0;
  bottom: 0.875rem;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__pagination {
    bottom: 0.625rem;
  }
}
.p-modal .splide__pagination__page {
  width: 1.5625rem;
  height: auto;
  aspect-ratio: 1;
  margin-inline: 1.25rem;
  background-color: #c0c0c0;
}
@media screen and (min-width: 768px) {
  .p-modal .splide__pagination__page {
    width: 0.8125rem;
    margin-inline: 1.25rem;
  }
}
.p-modal .splide__pagination__page.is-active {
  -webkit-transform: scale(1);
  transform: scale(1);
  background-color: #ff9f38;
  opacity: 1;
}

.p-campain-modal {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  padding-block: 50px;
  height: 100vh;
  overflow-y: auto;
  display: none;
}
.p-campain-modal.is-show {
  display: block;
}

.p-campain-modal__head {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__head {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    gap: 2.5rem;
  }
}

.p-campain-modal__img {
  margin-top: 1.6875rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__img {
    margin-top: 0;
    grid-area: 1/1/3/2;
  }
}

.p-campain-modal__text {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__text {
    margin-top: 0;
    grid-area: 1/2/2/3;
  }
}
.p-campain-modal__text .u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__text .u-desktop {
    display: inlne;
  }
}

.p-campain-modal__note {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__note {
    margin-top: 0;
    grid-area: 2/2/3/3;
  }
}

.p-campain-modal__table {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__table {
    margin-top: 2.5rem;
  }
}

.p-campain-modal__tableList {
  margin-top: 2.5rem;
}

.p-campain-modal__tableItem:nth-child(n + 2) {
  margin-top: 2.5rem;
}

.p-campain-modal__tableTitle {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
  background-color: #0e8574;
  border-radius: 6.25rem;
  padding: 0.625rem;
  margin-bottom: 1.25rem;
  text-align: center;
}

.p-campain-modal__tableTitleSm {
  display: block;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__tableTitleSm {
    font-size: 1rem;
    line-height: 1.5;
    text-align: left;
  }
}

.p-campain-modal__tableCaution {
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 700;
  margin-top: 1.25rem;
}

.p-campain-modal__tableNote {
  margin-block: 1.25rem;
}

.p-campain-modal__caution {
  padding-left: 2rem;
}

.p-campain-modal__cautionItem {
  font-size: 1rem;
  line-height: 1.5;
  list-style: disc;
}
@media screen and (min-width: 768px) {
  .p-campain-modal__cautionItem {
    font-size: 0.75rem;
    line-height: 1.3333333333;
  }
}
.p-campain-modal__cautionItem:nth-child(n + 2) {
  margin-top: 0.625rem;
}

.p-campain-modal__cautionListSmItem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 0.625rem;
}

.p-campain-modal__inner .banner-stockaff-block02 .stockaff-table th,
.banner-stockaff-block02 .stockaff-table td {
  padding: 12px 6px;
  font-size: 12px !important;
}

@media screen and (min-width: 768px) {
  .p-campain-modal__inner .banner-stockaff-block02 .stockaff-table th,
  .banner-stockaff-block02 .stockaff-table td {
    padding: 12px 6px;
    font-size: 14px !important;
  }
}

.stockaff-table a {
  color: #122382;
  text-decoration: underline;
}

/* --------------------------------
* banner-stockaff-block
----------------------------------- */

@media only screen and (min-width: 751px) {
  .banner-stockaff-block01 {
    padding-top: 80px;
    background-color: #edf1f6;
  }
}
@media only screen and (max-width: 750px) {
  .banner-stockaff-block01 {
    padding-top: 30px;
  }
}
