@charset "UTF-8";
.animated {
  opacity: 0;
}

:root {
  --c-light-blue: #f2f7ff;
  --c-green: #00b76a;
  --c-blue: #0062ff;
  --c-text: #353f50;
}

em {
  font-style: normal;
  font-weight: bold;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.7;
}

.animated {
  opacity: 0;
}

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

body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--c-text);
  font-size: 14px;
  line-height: 1.8;
}

a {
  text-decoration: none;
  color: var(--c-text);
}

.pc {
  display: none;
}

p {
  line-height: 1.8;
  color: var(--c-text);
  font-size: 14px;
  text-align: justify;
  letter-spacing: 0;
}

header {
  position: fixed;
  z-index: 10;
  background: #fff;
  width: calc(100% - 20px);
  border-radius: 16px;
  -webkit-box-shadow: 0px 0px 15px 5px rgba(0, 98, 255, 0.13);
          box-shadow: 0px 0px 15px 5px rgba(0, 98, 255, 0.13);
  top: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
header .inner {
  padding: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header p.logo-ttl {
  font-size: 10px;
  font-weight: bold;
  line-height: 1.4;
  display: none;
}
header picture.logo {
  display: block;
  width: 60px;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav a.login {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  font-size: 12px;
}
header nav a.login::before {
  content: "";
  display: inline-block;
  margin-right: 0.2em;
  width: 1.2em;
  height: 1.2em;
  background: url("../images/icon-login.svg") no-repeat center;
  background-size: contain;
}
header nav a.new {
  margin-left: 10px;
  border-radius: 20px;
  border: 2px solid var(--c-green);
  color: var(--c-green);
  font-size: 11px;
  font-weight: bold;
  padding: 4px 10px;
}

main {
  overflow: hidden;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

#loading {
  height: 100%;
  width: 100%;
  background: #fff;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 100;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#loading img {
  width: 190px;
  margin: 0 auto;
  display: block;
}
#loading .logo-top {
  font-size: 11px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}
#loading .wrap-logo.load-anim {
  -webkit-animation: down 0.2s;
  animation: down 0.2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes down {
  0% {
    -webkit-transform: rotate(0) translate(0, 0);
            transform: rotate(0) translate(0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translate(0, 5px);
            transform: rotate(0) translate(0, 5px);
    opacity: 1;
  }
}
@keyframes down {
  0% {
    -webkit-transform: rotate(0) translate(0, 0);
            transform: rotate(0) translate(0, 0);
    opacity: 0;
  }
  100% {
    -webkit-transform: rotate(0) translate(0, 5px);
            transform: rotate(0) translate(0, 5px);
    opacity: 1;
  }
}
a.btn-primary {
  background: var(--c-green);
  font-weight: 800;
  font-size: 4.8vw;
  color: #fff;
  width: 100%;
  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: 4em;
  border-radius: 2em;
  -webkit-box-shadow: 0 6px 0 #009154;
          box-shadow: 0 6px 0 #009154;
  position: relative;
  letter-spacing: 0.02em;
  text-shadow: 0 0 5px rgba(0, 119, 101, 0.75);
}
a.btn-primary::before {
  content: "";
  display: inline-block;
  width: 1.6em;
  height: 1.6em;
  background: url("../images/btn-arrow.svg") no-repeat center;
  background-size: contain;
  margin-right: 0.6em;
}

a.btn-secondary {
  background: #fff;
  font-weight: 800;
  font-size: 4.8vw;
  color: var(--c-blue);
  width: 100%;
  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: 4em;
  border-radius: 2em;
  position: relative;
  letter-spacing: 0.02em;
}

.hstyle-primary {
  margin-bottom: 3em;
}
.hstyle-primary .en {
  display: block;
  text-align: center;
  font-weight: 700;
  color: var(--c-blue);
  margin-bottom: 10px;
}
.hstyle-primary .ja {
  display: block;
  text-align: center;
  color: var(--c-text);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.3;
}
.hstyle-primary .ja strong {
  background: -webkit-linear-gradient(0deg, #0062ff, #00ebff);
  color: red;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

section.hero-area {
  padding-top: 136px;
  background: url("../images/dots.svg") no-repeat right 8% top 100px;
  background-size: 50%;
  position: relative;
}
section.hero-area .obj-pink {
  position: absolute;
  width: 50px;
  top: 0;
  left: 85px;
  z-index: 1;
}
section.hero-area .obj-blue {
  position: absolute;
  width: 54px;
  top: 54px;
  left: -15px;
  z-index: 1;
}
section.hero-area .obj-yellow {
  position: absolute;
  width: 70px;
  top: 144px;
  left: 0;
  z-index: 1;
}
section.hero-area .obj-green {
  position: absolute;
  width: 20px;
  top: 114px;
  left: 54px;
  z-index: 1;
}
section.hero-area .ob {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
section.hero-area .ph {
  display: block;
  margin-right: 30px;
}
section.hero-area .ph img {
  border-radius: 0 20px 20px 0;
}
section.hero-area .main-v {
  position: relative;
}
section.hero-area .label {
  position: absolute;
  right: -20px;
  bottom: -70px;
  width: 130px;
  opacity: 0;
}
section.hero-area .desc {
  margin-top: 30px;
  padding: 0 5%;
}
section.hero-area .desc h1 {
  font-weight: 800;
  font-size: 7vw;
  line-height: 1.3;
  margin-bottom: 1em;
}
section.hero-area .desc p {
  font-size: 15px;
}
section.hero-area a.btn-primary {
  margin-top: 40px;
}

section.block {
  margin: 80px 0;
}
section.block .inner {
  padding: 0 5%;
}

section.wave {
  margin-top: 80px;
  background: var(--c-light-blue);
  position: relative;
}
section.wave::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background: url("../images/bg-wave.svg") no-repeat center top;
  background-size: 100%;
  position: absolute;
  top: 0;
}
section.wave .inner {
  padding: 15% 5%;
  position: relative;
  z-index: 1;
}

ul.flow-step .card {
  background: #fff;
  border-radius: 30px 0 30px 0;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 98, 255, 0.08);
          box-shadow: 0px 0px 30px 5px rgba(0, 98, 255, 0.08);
  padding: 10% 5%;
  position: relative;
}
ul.flow-step .card:not(:last-child) {
  margin-bottom: 80px;
}
ul.flow-step .card:not(:last-child) ::after {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../images/card-arrow.svg") no-repeat center;
  position: absolute;
  bottom: -55px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}
ul.flow-step .step {
  color: var(--c-blue);
  font-weight: 800;
  border: 1px solid var(--c-blue);
  border-radius: 15px;
  display: inline-block;
  font-size: 14px;
  padding: 0.3em 1em;
  line-height: 1;
  margin-bottom: 2em;
}
ul.flow-step .illust {
  width: 40%;
  margin: 0 auto 30px;
}
ul.flow-step h3 {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0.4em;
  text-align: center;
}

table.style-01 {
  width: 100%;
}
table.style-01 th {
  width: 50%;
  font-size: 15px;
  text-align: center;
  padding: 0.4em;
}
table.style-01 td {
  font-size: 15px;
  text-align: center;
  padding: 0.4em;
  font-weight: bold;
}
table.style-01 tbody tr {
  border-bottom: 1px dotted #ddd;
}
table.style-01 tr:nth-child(even) {
  background: #f8f8f8;
}
table.style-01 thead tr {
  background: #f2f7ff;
}
table.style-01 thead th {
  color: var(--c-blue);
  border-bottom: 2px solid var(--c-blue);
}
table.style-01.th-hide thead tr {
  display: none;
}

ul.notes {
  margin-top: 20px;
}
ul.notes li {
  position: relative;
  padding-left: 1em;
}
ul.notes li::before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}

section.pr-area {
  background: url("../images/bg-blueimage.jpg") no-repeat center;
  background-size: cover;
  padding: 60px 0;
}
section.pr-area h2 {
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 6vw;
  margin-bottom: 1.5em;
}
section.pr-area .wrap-bt {
  margin: 0 5%;
  display: -ms-grid;
  display: grid;
  gap: 20px;
}

.wrap-about .hstyle-about {
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 1em;
}
.wrap-about .hstyle-about em,
.wrap-about .hstyle-about strong {
  color: var(--c-blue);
}
.wrap-about .desc p {
  margin-bottom: 1em;
}
.wrap-about .image {
  position: relative;
  margin-top: 40px;
}
.wrap-about .image img {
  position: relative;
  z-index: 1px;
}
.wrap-about .image::before {
  content: "";
  width: 100px;
  height: 100px;
  display: block;
  background: url("../images/about-dots.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  right: -3%;
  top: -10%;
  z-index: 0;
}

ul.faq {
  display: -ms-grid;
  display: grid;
  gap: 30px;
}
ul.faq li {
  background: #fff;
  border-radius: 30px 0 30px 0;
  -webkit-box-shadow: 0px 0px 30px 5px rgba(0, 98, 255, 0.08);
          box-shadow: 0px 0px 30px 5px rgba(0, 98, 255, 0.08);
  padding: 10% 5%;
}
ul.faq a {
  color: #0090eb;
  text-decoration: underline;
}
ul.faq h3.question {
  font-size: 16px;
  padding-left: 28px;
  position: relative;
  font-weight: bold;
  border-bottom: 1px dotted #cecece;
  padding-bottom: 15px;
  margin-bottom: 15px;
}
ul.faq h3.question::before {
  content: "Q";
  color: var(--c-blue);
  font-weight: 800;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -6px;
}
ul.faq .answer {
  position: relative;
  padding-left: 28px;
}
ul.faq .answer::before {
  content: "A";
  color: #79acff;
  font-weight: 800;
  font-size: 22px;
  position: absolute;
  left: 0;
  top: -6px;
}

footer {
  padding: 40px 0 0;
  margin-top: auto;
}
footer .logo {
  width: 150px;
  margin: 0 auto;
}
footer nav.ft-nav {
  text-align: center;
  margin-top: 20px;
}
footer nav.ft-nav a:not(:last-child) {
  margin-right: 1.5em;
  position: relative;
}
footer nav.ft-nav a:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1em;
  background: var(--c-text);
  position: absolute;
  right: -0.75em;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
footer small {
  background: #f7f7f7;
  display: block;
  text-align: center;
  margin-top: 30px;
  padding: 1em;
  font-size: 11px;
}

.page-wrapper {
  margin-top: 90px;
}

ul.breadCrumb {
  padding: 0 5%;
  margin-bottom: -40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
ul.breadCrumb li {
  margin-right: 2em;
  font-size: 11px;
}
ul.breadCrumb a {
  text-decoration: underline;
  position: relative;
}
ul.breadCrumb a::after {
  content: ">";
  position: absolute;
  right: -1.2em;
}

table.style-02 {
  width: 100%;
  border-top: 2px solid #ebebeb;
  position: relative;
}
table.style-02::after {
  content: "";
  width: 4em;
  height: 2px;
  background: var(--c-blue);
  position: absolute;
  left: 0;
  top: -2px;
}
table.style-02 th,
table.style-02 td {
  font-size: 14px;
  padding: 1em;
}
table.style-02 th {
  width: 45%;
  position: relative;
}
table.style-02 th::after {
  content: "";
  width: 4em;
  height: 2px;
  background: var(--c-blue);
  position: absolute;
  left: 0;
  bottom: -2px;
}
table.style-02 tr {
  border-bottom: 2px solid #ebebeb;
}

p.terms-dot {
  padding-left: 1em;
  text-align: left;
  position: relative;
}
p.terms-dot::before {
  content: "●";
  color: var(--c-blue);
  position: absolute;
  left: 0;
  top: 0;
}

ol.terms-num {
  margin-top: 1em;
  display: -ms-grid;
  display: grid;
  gap: 3px 0;
}
ol.terms-num li {
  counter-increment: cnt;
  font-size: 14px;
}
ol.terms-num li::before {
  content: "(" counter(cnt) ") ";
}

section.terms:not(:first-of-type) {
  margin-top: 30px;
}

.page-404 .block-404 {
  margin: 0 5%;
}
.page-404 a.btn-404 {
  border: 1px solid var(--c-blue);
  padding: 1em 2em;
  border-radius: 10px;
  display: inline-block;
  margin-top: 2em;
  color: var(--c-blue);
  font-weight: bold;
  display: block;
  text-align: center;
  width: 90%;
  margin: 40px auto 0;
}

/**********************************************************************

 * Media Query For PC

 ***********************************************************************/
@media print, screen and (min-width: 768px) {
  #loading img {
    width: 300px;
  }
  #loading .logo-top {
    font-size: 16px;
    margin-bottom: 6px;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
  p {
    font-size: 16px;
    line-height: 2;
  }
  p.center {
    text-align: center;
  }
  a.btn-primary {
    font-size: 20px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  a.btn-primary:hover {
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateY(5px);
            transform: translateY(5px);
    background: #21c680;
  }
  a.btn-secondary {
    font-size: 20px;
    -webkit-transition: 0.1s;
    transition: 0.1s;
  }
  a.btn-secondary:hover {
    background: var(--c-blue);
    color: #fff;
  }
  .hstyle-primary {
    margin-bottom: 4em;
  }
  .hstyle-primary .en {
    font-size: 15px;
  }
  .hstyle-primary .ja {
    font-size: 38px;
  }
  header {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0 0 16px 16px;
    top: 0;
  }
  header .inner {
    padding: 20px;
  }
  header p.logo-ttl {
    font-size: 11px;
    margin-bottom: 5px;
    display: block;
  }
  header picture.logo {
    width: 240px;
  }
  header nav a.login {
    font-size: 15px;
  }
  header nav a.login:hover {
    opacity: 0.8;
  }
  header nav a.new {
    margin-left: 20px;
    font-size: 14px;
    padding: 0.3em 20px;
  }
  header nav a.new:hover {
    background: var(--c-green);
    color: #fff;
  }
  section.hero-area {
    padding: 80px 0 90px;
    max-width: 1400px;
    margin: 210px auto 0;
    background: url("../images/dots.svg") no-repeat right 10px top 0px;
    background-size: 435px;
  }
  section.hero-area .obj-pink {
    width: 50px;
    top: 30px;
    left: -45px;
  }
  section.hero-area .obj-blue {
    width: 84px;
    top: 146px;
    left: -135px;
  }
  section.hero-area .obj-yellow {
    width: 140px;
    top: 266px;
    left: -130px;
  }
  section.hero-area .obj-green {
    width: 33px;
    top: 443px;
    left: -16px;
  }
  section.hero-area .inner {
    padding: 0;
  }
  section.hero-area .hero-image {
    max-width: 1200px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
  section.hero-area .ob {
    position: absolute;
    left: -130px;
    top: 0;
    z-index: 2;
    width: 180px;
  }
  section.hero-area .ph {
    margin-right: 0;
  }
  section.hero-area .ph img {
    border-radius: 20px;
  }
  section.hero-area .main-v {
    width: 55%;
  }
  section.hero-area .label {
    position: absolute;
    right: -120px;
    bottom: -100px;
    width: 280px;
  }
  section.hero-area .desc {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-top: 0;
    padding: 0;
    margin-right: 90px;
  }
  section.hero-area .desc h1 {
    font-size: 42px;
    line-height: 1.5;
    margin-bottom: 1em;
    white-space: nowrap;
  }
  section.hero-area .desc p {
    font-size: 18px;
  }
  section.hero-area a.btn-primary {
    max-width: 386px;
    margin-top: 40px;
    position: relative;
    z-index: 3;
  }
  section.block {
    margin: 80px 0;
  }
  section.block .inner {
    padding: 80px 0;
    max-width: 1140px;
    margin: 0 auto;
  }
  section.wave {
    margin-top: 50px;
    padding: 0 0 20px;
  }
  section.wave .inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 140px 0 70px;
  }
  ul.flow-step {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr 60px 1fr;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
  }
  ul.flow-step .card {
    border-radius: 30px 0 30px 0;
    padding: 30px 20px;
  }
  ul.flow-step .card:not(:last-child) {
    margin-bottom: 0;
  }
  ul.flow-step .card:not(:last-child) ::after {
    content: "";
    display: block;
    width: 25px;
    height: 25px;
    background: url("../images/card-arrow.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    bottom: -55px;
    left: auto;
    right: -44px;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(0);
            transform: translate(0, -50%) rotate(0);
  }
  ul.flow-step .step {
    color: var(--c-blue);
    font-weight: 800;
    border: 1px solid var(--c-blue);
    border-radius: 15px;
    display: inline-block;
    font-size: 14px;
    padding: 0.3em 1em;
    line-height: 1;
    margin-bottom: 2em;
  }
  ul.flow-step .illust {
    width: 45%;
    margin: 0 auto 30px;
  }
  ul.flow-step h3 {
    font-size: 17px;
    margin-bottom: 0.4em;
    text-align: left;
  }
  ul.flow-step p {
    font-size: 14px;
  }
  .wrap-shipping {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 40px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  table.style-01 {
    width: 100%;
  }
  table.style-01 th {
    font-size: 18px;
    padding: 0.7em;
  }
  table.style-01 td {
    font-size: 18px;
    padding: 0.7em;
  }
  table.style-01.th-hide thead tr {
    display: table-row;
    width: 100%;
  }
  ul.notes {
    margin-top: 20px;
  }
  ul.notes li {
    font-size: 16px;
  }
  section.pr-area {
    background: url("../images/bg-blueimage.jpg") no-repeat center;
    background-size: cover;
    padding: 180px 40px 220px;
  }
  section.pr-area h2 {
    font-size: 41px;
    margin-bottom: 1em;
  }
  section.pr-area .wrap-bt {
    max-width: 830px;
    margin: 0 auto;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 1fr;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .wrap-about {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 60px 43.2456140351%;
    grid-template-columns: 1fr 43.2456140351%;
    gap: 60px;
    margin-top: 90px;
  }
  .wrap-about .hstyle-about {
    font-size: 24px;
    margin-bottom: 1em;
  }
  .wrap-about .hstyle-about em {
    color: var(--c-blue);
  }
  .wrap-about .desc p {
    margin-bottom: 1em;
    font-size: 18px;
  }
  .wrap-about .image {
    margin-top: 0;
  }
  .wrap-about .image::before {
    content: "";
    width: 246px;
    height: 246px;
    display: block;
    background: url("../images/about-dots.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -80px;
    top: -80px;
    z-index: 0;
  }
  ul.faq {
    gap: 55px;
  }
  ul.faq li {
    padding: 40px;
  }
  ul.faq a:hover {
    text-decoration: none;
  }
  ul.faq h3.question {
    font-size: 20px;
    padding-left: 45px;
    position: relative;
    font-weight: bold;
    border-bottom: 1px dotted #cecece;
    padding-bottom: 25px;
    margin-bottom: 25px;
  }
  ul.faq h3.question::before {
    font-size: 32px;
    top: -0.4em;
  }
  ul.faq .answer {
    padding-left: 45px;
  }
  ul.faq .answer::before {
    font-size: 32px;
    top: -0.4em;
  }
  footer {
    padding: 70px 0 0;
    margin-top: auto;
  }
  footer .logo {
    width: 180px;
    margin: 0 auto;
  }
  footer nav.ft-nav a:hover {
    opacity: 0.7;
  }
  footer small {
    margin-top: 40px;
    padding: 1.5em;
    font-size: 11px;
  }
  .page-wrapper {
    margin-top: 110px;
  }
  ul.breadCrumb {
    padding: 0;
    width: 1140px;
    margin: 0 auto -60px;
  }
  ul.breadCrumb li {
    font-size: 14px;
  }
  table.style-02 {
    max-width: 980px;
    margin: 0 auto;
  }
  table.style-02::after {
    content: "";
    width: 4em;
    height: 2px;
    background: var(--c-blue);
    position: absolute;
    left: 0;
    top: -2px;
  }
  table.style-02 th,
  table.style-02 td {
    font-size: 17px;
    padding: 1.5em;
  }
  table.style-02 th {
    width: 30%;
    position: relative;
  }
  table.style-02 th::after {
    content: "";
    width: 4em;
    height: 2px;
    background: var(--c-blue);
    position: absolute;
    left: 0;
    bottom: -2px;
  }
  table.style-02 tr {
    border-bottom: 2px solid #ebebeb;
  }
  ol.terms-num {
    gap: 3px 0;
  }
  ol.terms-num li {
    font-size: 16px;
  }
  .page-404 {
    margin-top: 100px;
    margin-bottom: 100px;
  }
  .page-404 .block-404 {
    margin: 0;
  }
  .page-404 .block-404 p {
    text-align: center;
  }
  .page-404 a.btn-404 {
    border: 1px solid var(--c-blue);
    padding: 1em 2em;
    border-radius: 10px;
    display: inline-block;
    margin-top: 2em;
    color: var(--c-blue);
    font-weight: bold;
    display: block;
    text-align: center;
    width: 90%;
    max-width: 300px;
    margin: 40px auto 0;
  }
  .page-404 a.btn-404:hover {
    background: var(--c-blue);
    color: #fff;
  }
}
/**********************************************************************

 * Other

 ***********************************************************************/
@media screen and (min-width: 768px) and (max-width: 1000px) {
  a.btn-primary {
    font-size: 16px;
  }
  a.btn-secondary {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1620px) {
  section.hero-area .obj-pink {
    width: 30px;
    top: auto;
    bottom: 180px;
    left: 5px;
  }
  section.hero-area .obj-blue {
    width: 64px;
    top: auto;
    bottom: 70px;
    left: -25px;
  }
  section.hero-area .obj-yellow {
    width: 120px;
    top: auto;
    bottom: -50px;
    left: 10px;
  }
  section.hero-area .obj-green {
    width: 23px;
    top: auto;
    bottom: -80px;
    left: 174px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1440px) {
  section.hero-area {
    padding: 60px 20px 20px;
    margin: 160px auto 0;
    background-size: 26%;
  }
  section.hero-area .ob {
    position: absolute;
    left: -60px;
    top: -30px;
    z-index: 2;
    width: 130px;
  }
  section.hero-area .desc {
    margin-right: 60px;
  }
  section.hero-area .desc h1 {
    font-size: 36px;
  }
  section.hero-area .desc p {
    font-size: 16px;
  }
  section.hero-area .label {
    right: -70px;
    bottom: -60px;
    width: 200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1300px) {
  section.hero-area .obj-pink {
    width: 25px;
    top: auto;
    bottom: 0px;
    left: 45px;
  }
  section.hero-area .obj-blue {
    width: 47px;
    top: auto;
    bottom: -90px;
    left: -15px;
  }
  section.hero-area .obj-yellow {
    width: 90px;
    top: auto;
    bottom: -90px;
    left: 70px;
  }
  section.hero-area .obj-green {
    width: 23px;
    top: auto;
    bottom: -130px;
    left: 164px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1040px) {
  section.hero-area {
    padding: 40px 20px 20px;
  }
  section.hero-area .desc {
    margin-right: 30px;
  }
  section.hero-area .desc h1 {
    font-size: 30px;
  }
  section.hero-area .desc p {
    font-size: 13px;
  }
  section.hero-area .label {
    right: -40px;
    bottom: -40px;
    width: 170px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1220px) {
  section.block .inner {
    padding: 80px 40px;
  }
  section.wave .inner {
    padding: 140px 40px 70px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  ul.flow-step {
    gap: 40px;
  }
  ul.flow-step .card:not(:last-child) {
    margin-bottom: 0;
  }
  ul.flow-step .card:not(:last-child) ::after {
    width: 20px;
    height: 20px;
    right: -32px;
  }
  ul.flow-step h3 {
    font-size: 15px;
    margin-bottom: 0.4em;
    text-align: left;
  }
  ul.flow-step p {
    font-size: 12px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  .wrap-shipping {
    gap: 20px;
  }
  table.style-01 th {
    font-size: 15px;
  }
  table.style-01 td {
    font-size: 15px;
  }
  ul.notes li {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  section.pr-area {
    padding: 100px 40px 120px;
  }
  section.pr-area h2 {
    font-size: 35px;
    margin-bottom: 1em;
  }
  section.pr-area .wrap-bt {
    gap: 30px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1090px) {
  .wrap-about {
    gap: 40px;
  }
  .wrap-about .hstyle-about {
    font-size: 20px;
  }
  .wrap-about .desc p {
    font-size: 16px;
  }
  .wrap-about .image::before {
    content: "";
    width: 180px;
    height: 180px;
    display: block;
    background: url("../images/about-dots.svg") no-repeat center;
    background-size: contain;
    position: absolute;
    right: -40px;
    top: -40px;
    z-index: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
  ul.breadCrumb {
    padding: 0 5%;
    width: 100%;
  }
}
/*# sourceMappingURL=main.css.map */