@charset "UTF-8";

:root {

  /* color */
  --base: #333;
  --yellow: #FFDA00;

  /* transition */
  --all03: all 0.3s ease;

}

/*
 sp-size
========================================================== */

/* ==========================================================
 reseting
========================================================== */
*,
*:before,
*:after {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font: inherit;
  word-wrap: break-word;
  border: 0;
  vertical-align: baseline;
  outline: none;
}

body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
button,
figure,
figcaption {
  margin: 0;
  padding: 0;
}

body {
  color: var(--base);
  font-size: 3.4vw;
  font-family: 'Noto Sans JP', 游ゴシック体, YuGothic, 'Yu Gothic', "游ゴシック Medium", "Yu Gothic Medium", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1;
  position: relative;
  transition: all 0.3s ease;
  background: url("../images/sp.jpg") no-repeat center top;
  background: #fff;
  background-size: 100%;
}

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

blockquote,
q {
  quotes: none;
}

ul,
ol,
li {
  list-style: none;
}

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

img,
video,
object {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

ins {
  background: none;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

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

hr {
  height: 1px;
  padding: 0;
  margin: 6vw 0;
  border: 0;
  border-top: 1px solid #ccc;
  display: block;
}

*:before,
*:after {
  -moz-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  -o-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  -webkit-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
}

a {
  color: var(--base);
  text-decoration: none;
  display: block;
  -moz-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  -o-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  -webkit-transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
  transition: all 0.3s cubic-bezier(0.05, 0.05, 0.31, 0.97);
}

a:hover,
label:hover {
  opacity: 0.5;
}

.clearfix:after {
  content: '';
  display: block;
  clear: both;
}

.pc {
  display: none;
}

main {
  position: relative;
  padding-top: 17vw;
}

.en,
time {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-style: normal;
}

.liner {
  background: linear-gradient(rgba(0, 0, 0, 0) 60%, var(--yellow) 60%);
}

.marker {
  background: var(--yellow);
}

/* ==========================================================
 links
========================================================== */
.more01 {
  width: 90vw;
  max-width: 100%;
  padding: 3.2vw 0;
  text-align: center;
  border-radius: 100px;
  border: 3px solid var(--base);
  background: url("../images/icon-more.svg") no-repeat center right 7vw;
  background-size: 10vw;
  background-color: var(--yellow);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.66;
}

.more01:hover {
  background: url("../images/icon-more-on.svg") no-repeat center right 7vw;
  background-size: 10vw;
  background-color: var(--base);
  color: #fff;
  opacity: 1;
}

.more01 p {
  position: relative;
  left: -6vw;
}

.more01 span {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1;
}

.btn_wrap {
  width: 90vw;
  max-width: 100%;
  padding: 0 !important;
  text-align: center;
  border-radius: 100px !important;
  border: 3px solid var(--base) !important;
  background: url("../images/icon-more.svg") no-repeat center right 7vw;
  background-size: 10vw;
  background-color: var(--yellow);
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.66;
  color: var(--base);
}

.btn_wrap:hover {
  background: url("../images/icon-more-on.svg") no-repeat center right 7vw !important;
  background-size: 10vw !important;
  background-color: var(--base) !important;
  color: #fff !important;
  opacity: 1;
}

.btn_wrap p {
  position: relative;
  left: -6vw;
}

.btn_wrap span {
  font-size: 6.4vw;
  font-weight: 700;
  line-height: 1;
}

main .stripe-button-el {
  background-image: unset !important;
  box-shadow: unset !important;
  border-radius: unset !important;
  background: unset !important;
  padding: 13px 80px 13px 20px !important;
}

.stripe-button-el span {
  color: var(--base) !important;
  border-radius: unset !important;
  height: unset !important;
  font-size: 4.6vw !important;
  font-weight: 700 !important;
  line-height: 1.66 !important;
  text-shadow: unset;
  background: unset !important;
  font-family: 'Noto Sans JP' !important;
  box-shadow: unset !important;
}

.stripe-button-el:hover span {
  color: #fff !important;
}

.btn_wrap .stripe-button-el span {
  text-shadow: none;
}

/* ==========================================================
 header
========================================================== */
.header {
  position: fixed;
  top: 0;
  z-index: 100;
  margin: 0 auto;
  width: 100%;
  padding: 3vw 4.3vw;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

.header-in {
  margin: 0;
}

.header-logo {
  width: 40vw;
}

.header-logo img {
  margin: 0;
}

.header-navi-btn {
  width: 11.2vw;
}

.header-navi-btn .icon-close {
  display: none;
}

.header-navi {
  opacity: 0;
  visibility: hidden;
  width: 100vw;
  height: 0;
  position: fixed;
  left: 0;
  top: 17vw;
  z-index: 10;
  background: #fff8cc;
  text-align: center;
  padding: 15vw 0 0;
  transition: all 0.3s ease;
}

.header-navi ul {
  margin-bottom: 18vw;
}

.header-navi li {
  font-size: 5.4vw;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 10vw;
  letter-spacing: 0.02em;
}

.header-navi li:last-child {
  margin-right: 0;
}

.header-navi li a:hover {
  opacity: 1;
  text-decoration: underline;
}

.header-navi .header-contact {
  width: 68vw;
  padding: 0;
  text-align: center;
  border-radius: 100px;
  border: 2px solid var(--base);
  background: url("../images/icon-more.svg") no-repeat center right 2vw;
  background-size: 6vw;
  background-color: var(--yellow);
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: center;
  font-size: 4.6vw;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 auto;
}

.header-navi .header-contact p {
  position: relative;
  left: -1.5vw;
}

.header-navi .header-contact span {
  font-size: 4.6vw !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-shadow: none;
}

.header-navi .header-contact:hover {
  background: url("../images/icon-more-on.svg") no-repeat center right 2vw;
  background-size: 2.4vw;
  background-color: var(--base);
  color: #fff;
  opacity: 1;
}

.header-navi .stripe-button-el {
  background-image: unset !important;
  box-shadow: unset !important;
  border-radius: unset !important;
  background: unset !important;
  padding: 12px 50px 0 5px;
}

.header-navi-open {
  overflow: hidden;
}

.header-navi-open .header-navi {
  opacity: 1;
  visibility: visible;
  height: 100vh;
}

.header-navi-open .header-navi-btn .icon-open {
  display: none;
}

.header-navi-open .header-navi-btn .icon-close {
  display: block;
}

/* ==========================================================
 footer
========================================================== */
.footer {
  padding: 14vw 0;
  background: #333333;
}

.footer a {
  color: #fff;
}

.footer-logo {
  width: 40vw;
  margin: 0 auto;
}

.footer-logo img {
  margin: 0;
}

.footer-top {
  margin-top: 12vw;
}

.footer-top li {
  font-size: 4vw;
  font-weight: 700;
  margin: 0 0 5vw;
  text-align: center;
}

.footer-sub {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: box;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  align-items: flex-start;
  margin-top: 13vw;
}

.footer-sub li {
  font-size: 3.4vw;
  margin: 0 4vw 5vw;
}

.copyright {
  margin-top: 4vw;
  color: #fff;
  font-size: 0.9vw;
  text-align: center;
  letter-spacing: 0.02em;
}

/*

 pc-size
========================================================== */
@media screen and (min-width: 799px) {

  body {
    font-size: 1.35vw;
  }

  main {
    padding-top: 0;
  }

  .sp {
    display: none;
  }

  .pc {
    display: block;
  }

  /* ==========================================================
   links
  ========================================================== */
  .more01 {
    width: 40vw;
    padding: 0 !important;
    background: url("../images/icon-more.svg") no-repeat center right 30px;
    background-color: var(--yellow);
    font-size: 2vw;
  }

  .more01:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 30px;
    background-color: var(--base);
    color: #fff;
    opacity: 1;
  }

  .more01 p {
    position: relative;
    left: -3vw;
  }

  .more01 span {
    font-size: 2.6vw;
    font-weight: 700;
    line-height: 1;
  }

  .btn_wrap {
    width: 40vw;
    padding: 0;
    background: url("../images/icon-more.svg") no-repeat center right 30px !important;
    background-color: var(--yellow) !important;
    font-size: 2vw;
  }

  .btn_wrap:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 30px !important;
    background-color: var(--base) !important;
    color: #fff !important;
    opacity: 1;
  }

  .btn_wrap p {
    position: relative;
    left: -3vw;
  }

  .btn_wrap span {
    font-size: 2.6vw;
    font-weight: 700;
    line-height: 1;
  }

  .stripe-button-el span {
    font-size: 2vw !important;
  }

  /* ==========================================================
   header
  ========================================================== */
  .header {
    padding: 1.5vw 2vw;
    position: relative;
  }

  .header-in {
    margin: 0;
  }

  .header-logo {
    width: 18vw;
  }

  .header-logo img {
    margin: 0;
  }

  .header-navi-btn {
    display: none;
    margin: 0;
  }

  .header-navi {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    position: unset;
    background: none;
    padding: 0;
  }

  .header-navi ul {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin-right: 2vw;
    margin-bottom: 0;
  }

  .header-navi li {
    font-size: 1.4vw;
    font-weight: 700;
    line-height: 1.5;
    margin-right: 17px;
    letter-spacing: 0.02em;
    margin-bottom: 0;
  }

  .header-navi li:last-child {
    margin-right: 0;
  }

  .header-navi li a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .header-navi .header-contact {
    width: 22vw;
    padding: 0;
    text-align: center;
    border-radius: 100px;
    border: 2px solid var(--base);
    background: url("../images/icon-more.svg") no-repeat center right 2vw;
    background-size: 2vw;
    background-color: var(--yellow);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    font-size: 1.55vw;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
  }

  .header-navi .header-contact p {
    position: relative;
    left: -1.5vw;
  }

  .header-navi .header-contact span {
    font-size: 1.4vw !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .header-navi .header-contact:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 2vw;
    background-size: 2.4vw;
    background-color: var(--base);
    color: #fff;
    opacity: 1;
  }

  .header-navi .stripe-button-el {
    padding: 12px 50px 0 5px;
  }

  /* ==========================================================
   footer
  ========================================================== */
  .footer {
    padding: 8vw 0 3.5vw;
    background: #333333;
  }

  .footer a {
    color: #fff;
  }

  .footer-logo {
    width: 30vw;
    margin: 0 auto;
  }

  .footer-logo img {
    margin: 0;
  }

  .footer-top {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8vw;
  }

  .footer-top li {
    font-size: 1.6vw;
    font-weight: 700;
    margin: 0 2vw;
  }

  .footer-sub {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 8vw;
  }

  .footer-sub li {
    font-size: 1.2vw;
    margin: 0 2vw;
  }

  .copyright {
    margin-top: 4vw;
    color: #fff;
    font-size: 0.9vw;
    text-align: center;
    letter-spacing: 0.02em;
  }

}

/*
 pc-size
========================================================== */
@media screen and (min-width: 1199px) {

  body {
    font-size: 16px;
  }

  /* ==========================================================
   links
  ========================================================== */
  .more01 {
    width: 416px;
    padding: 13px 0;
    text-align: center;
    border-radius: 100px;
    border: 3px solid var(--base);
    background: url("../images/icon-more.svg") no-repeat center right 30px;
    background-color: var(--yellow);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.66;
  }

  .more01:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 30px;
    background-color: var(--base);
    color: #fff;
    opacity: 1;
  }

  .more01 p {
    position: relative;
    left: -30px;
  }

  .more01 span {
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
  }

  .btn_wrap {
    width: 416px;
    padding: 0 !important;
    text-align: center;
    border-radius: 100px !important;
    border: 3px solid var(--base) !important;
    background: url("../images/icon-more.svg") no-repeat center right 30px !important;
    background-color: var(--yellow) !important;
    display: flex !important;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.66;
  }

  .btn_wrap:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 30px !important;
    background-color: var(--base) !important;
    color: #fff !important;
    opacity: 1;
  }

  .btn_wrap p {
    position: relative;
    left: -30px;
  }

  .btn_wrap span {
    font-size: 24px !important;
    font-weight: 700;
    line-height: 1;
  }

  main .stripe-button-el {
    padding: 13px 100px 13px 40px !important;
  }

  /* ==========================================================
   header
  ========================================================== */
  .header {
    margin: 0 auto;
    width: 1200px;
    padding: 16px 64px;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
  }

  .header-in {
    margin: 0;
  }

  .header-logo {
    width: 186px;
  }

  .header-logo img {
    margin: 0;
  }

  .header-navi-btn {
    display: none;
    margin: 0;
  }

  .header-navi {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
  }

  .header-navi ul {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    align-items: center;
    margin-right: 62px;
  }

  .header-navi li {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
    margin-right: 17px;
    letter-spacing: 0.02em;
  }

  .header-navi li:last-child {
    margin-right: 0;
  }

  .header-navi li a:hover {
    opacity: 1;
    text-decoration: underline;
  }

  .header-navi .header-contact {
    width: 260px;
    padding: 0;
    text-align: center;
    border-radius: 100px;
    border: 2px solid var(--base);
    background: url("../images/icon-more.svg") no-repeat center right 20px;
    background-size: 24px;
    background-color: var(--yellow);
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    line-height: 1.25;
  }

  .header-navi .header-contact p {
    position: relative;
    left: -15px;
  }

  .header-navi .header-contact span {
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
  }

  .header-navi .header-contact:hover {
    background: url("../images/icon-more-on.svg") no-repeat center right 20px;
    background-size: 24px;
    background-color: var(--base);
    color: #fff;
    opacity: 1;
  }

  /* ==========================================================
   footer
  ========================================================== */
  .footer {
    padding: 80px 0 35px;
    background: #333333;
  }

  .footer a {
    color: #fff;
  }

  .footer-logo {
    width: 298px;
    margin: 0 auto;
  }

  .footer-logo img {
    margin: 0;
  }

  .footer-top {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 83px;
  }

  .footer-top li {
    font-size: 20px;
    font-weight: 700;
    margin: 0 20px;
  }

  .footer-sub {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flex;
    display: box;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: center;
    justify-content: center;
    align-items: flex-start;
    margin-top: 81px;
  }

  .footer-sub li {
    font-size: 14px;
    margin: 0 20px;
  }

  .copyright {
    margin-top: 43px;
    color: #fff;
    font-size: 11px;
    text-align: center;
    letter-spacing: 0.02em;
  }

}

.btn_wrap a {
  padding: 13px 80px 13px 20px;
}

.btn_wrap:hover a {
  color: #fff;
  opacity: 1;
}
.header-contact:hover a {
  
  color: #fff;
  opacity: 1;
}
.header-contact a {
  
  padding: 10px 50px 10px 20px;
    font-size: 16px;

}
@media (max-width:375px) {
  main .stripe-button-el {
    padding: 13px 100px 13px 21px !important;
  }
  
}
@media (max-width:767px) {
  .btn_wrap a {
    font-size: 4.6vw !important;
  }

}