@charset "UTF-8";
/**
 * 変数
 */
/**
 * color
 * ---------------------------
 */
/**
 * コンテンツ幅
 * ---------------------------
 */
/**
 * font famiry
 * ---------------------------
 */
/**
 * font size
 * ---------------------------
 */
:root {
  --fontSize: 20px;
  --font-2xs: calc(var(--fontSize) * 0.6); /* 12px */
  --font-xs: calc(var(--fontSize) * 0.7); /* 14px */
  --font-s: calc(var(--fontSize) * 0.8); /* 16px */
  --font-m: calc(var(--fontSize) * 0.9); /* 18px */
  --font-l: calc(var(--fontSize) * 1);
  --font-xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-2xl: calc(var(--fontSize) * 1.1); /* 22px */
  --font-3xl: calc(var(--fontSize) * 1.25); /* 25px */
  --font-4xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-4_2xl: calc(var(--fontSize) * 1.5); /* 30px */
  --font-5xl: calc(var(--fontSize) * 1.5); /* 30px */
}

@media (min-width: 768px) {
  :root {
    --font-2xs: calc(var(--fontSize) * 0.7); /* 14px */
    --font-xs: calc(var(--fontSize) * 0.8); /* 16px */
    --font-s: calc(var(--fontSize) * 0.9); /* 18px */
    --font-m: calc(var(--fontSize) * 1);
    --font-l: calc(var(--fontSize) * 1.1); /* 22px */
    --font-xl: calc(var(--fontSize) * 1.25); /* 25px */
    --font-2xl: calc(var(--fontSize) * 1.5); /* 30px */
    --font-3xl: calc(var(--fontSize) * 1.75); /* 35px */
    --font-4xl: calc(var(--fontSize) * 2); /* 40px */
    --font-4_2xl: calc(var(--fontSize) * 2.1); /* 42px */
    --font-5xl: calc(var(--fontSize) * 2.25); /* 45px */
  }
}
/*
overview
---------------------------*/
#overview {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(30%, #FEF8DE), color-stop(70%, #ffffff));
  background: linear-gradient(180deg, #FEF8DE 30%, #ffffff 70%);
}
#overview > .wrap {
  background: #ffffff;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 769px) {
  #overview > .wrap {
    border-radius: 50px 50px 0 0;
  }
}

/*
main-title
---------------------------*/
#main-title > .wrap {
  padding-bottom: 30px;
}
#main-title .title__wrap {
  width: 100%;
  max-width: 981px;
  margin: 0 auto;
}
#main-title .title__wrap p {
  padding: 7px 15px;
  font-size: min(6.5vw, 25px);
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  paint-order: stroke;
  background: #3EC06F;
  border: 1px solid #026934;
  border-radius: 10px;
  text-stroke: 2px #026934;
  -webkit-text-stroke: 2px #026934;
}
#main-title .main__wrap {
  margin-top: 30px;
}
#main-title .main__wrap p {
  font-size: 20px;
  font-weight: 700;
}
#main-title .detail__wrap {
  margin-top: 30px;
}
#main-title .detail__wrap p {
  font-size: 18px;
  font-weight: 500;
}
#main-title .detail__wrap p + p {
  margin-top: 10px;
}
#main-title .attention__wrap {
  margin-top: 30px;
}
#main-title .attention__wrap p {
  font-size: 16px;
  font-weight: 700;
}
@media (min-width: 769px) {
  #main-title > .wrap {
    padding-bottom: 50px;
  }
  #main-title .title__wrap p {
    font-size: min(3.5vw, 40px);
  }
  #main-title .main__wrap {
    margin-top: 30px;
  }
  #main-title .main__wrap p {
    font-size: min(2.5vw, 25px);
    text-align: center;
  }
  #main-title .detail__wrap {
    margin-top: 30px;
  }
  #main-title .detail__wrap p {
    font-size: min(2vw, 20px);
    text-align: center;
  }
  #main-title .detail__wrap p + p {
    margin-top: 15px;
  }
  #main-title .attention__wrap {
    margin-top: 30px;
  }
  #main-title .attention__wrap p {
    font-size: min(1.6vw, 18px);
    text-align: center;
  }
}

/*
download
---------------------------*/
#download > .wrap {
  padding-bottom: 50px;
}
#download .box {
  padding: 20px 15px;
  border: 1px solid #026934;
  border-radius: 30px;
}
#download .box .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 30px 15px;
  background: #FFF9B1;
  border-radius: 20px;
}
#download .box .main .detail {
  width: 100%;
}
#download .box .main .img {
  width: 100%;
  max-width: 200px;
  margin: 40px auto 0;
}
#download .box .main .point-text dt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 10px 6px;
  background: #3EC06F;
  border-top: 1px solid #026934;
  border-left: 1px solid #026934;
  border-right: 1px solid #026934;
  border-radius: 10px 10px 0 0;
}
#download .box .main .point-text dt p {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
  color: #ffffff;
}
#download .box .main .point-text dd {
  padding: 20px 15px;
  background: #ffffff;
  border: 1px solid #026934;
  border-radius: 0 10px 10px 10px;
}
#download .box .main .point-text dd .text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 2;
}
#download .box .main .point-text dd .attention {
  margin-top: 20px;
}
#download .box .main .point-text dd .attention p {
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
}
#download .box .main.comingsoon .detail .name {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 50px;
}
#download .box .main.comingsoon .detail .name::before, #download .box .main.comingsoon .detail .name::after {
  content: "";
  position: absolute;
  top: 0;
  width: auto;
  height: 100%;
  aspect-ratio: 22/72;
}
#download .box .main.comingsoon .detail .name::before {
  left: 0;
  background: url("/img/common/brackets-start.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#download .box .main.comingsoon .detail .name::after {
  right: 0;
  background: url("/img/common/brackets-end.png");
  background-repeat: no-repeat;
  background-size: cover;
}
#download .box .main.comingsoon .detail .name p {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(7vw, 30px);
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
#download .box .main.comingsoon .detail .soon {
  margin: 20px 0 30px;
}
#download .box .main.comingsoon .detail .soon__main {
  width: 70%;
  max-width: 200px;
  margin: 0 auto;
  padding: 23px 0;
}
#download .box .main.comingsoon .detail .soon__sub {
  width: 100%;
  max-width: 600px;
  margin: 25px auto 0;
  padding: 7px 20px 9px;
  background: #E75611;
  border: 1px solid #026934;
  border-radius: 27px;
}
#download .box .main.comingsoon .detail .soon__sub p {
  font-size: min(4.5vw, 20px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}
#download .box .main.release .detail .detail__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  max-width: 550px;
  margin: 0 auto 50px;
}
#download .box .main.release .detail .detail__contents .detail__content {
  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-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}
#download .box .main.release .detail .detail__contents .detail__content:nth-of-type(1) {
  padding-bottom: 30px;
}
#download .box .main.release .detail .detail__contents .detail__content:nth-of-type(2) {
  padding-top: 30px;
  border-top: 2px dotted #026934;
}
#download .box .main.release .detail .detail__contents .bubble {
  position: relative;
  width: 100%;
  max-width: 350px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: 0 auto;
  -webkit-box-shadow: 2px 2px 0 #026934;
          box-shadow: 2px 2px 0 #026934;
  border-radius: 60px;
  z-index: 2;
}
#download .box .main.release .detail .detail__contents .bubble p {
  position: relative;
  padding: 7px 10px;
  font-size: min(3.8vw, 18px);
  font-weight: 700;
  text-align: center;
  color: #ffffff;
  background: #E75611;
  border-radius: 60px;
  z-index: 3;
}
#download .box .main.release .detail .detail__contents .bubble .triangle::before {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 1px;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 17px 0 17px;
  border-color: #026934 transparent transparent transparent;
  z-index: 2;
}
#download .box .main.release .detail .detail__contents .bubble .triangle::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 16px 0 16px;
  border-color: #E75611 transparent transparent transparent;
  z-index: 2;
}
#download .box .main.release .detail .detail__contents .img__contents {
  margin-top: 18px;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content + .img__content {
  margin-top: 10px;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content p {
  font-size: min(4.8vw, 16px);
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content .img__wrap {
  margin: 10px auto 0;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content .img__wrap.app {
  width: 85%;
  max-width: 190px;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content .img__wrap.google {
  width: 95%;
  max-width: 235px;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content .img__wrap.qr-code {
  width: 90%;
  max-width: 200px;
  padding: 25px;
  background: #ffffff;
  border: 1px solid #026934;
  border-radius: 15px;
}
#download .box .main.release .detail .detail__contents .img__contents .img__content .img__wrap a {
  display: block;
}
#download .box .sub {
  margin-top: 40px;
}
#download .box .sub ul li {
  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;
  padding-left: 26px;
}
#download .box .sub ul li::before {
  content: "";
  position: absolute;
  top: 11px;
  left: 0;
  width: 15px;
  height: 15px;
  background: #3EC06F;
  border-radius: 50%;
}
#download .box .sub ul li p {
  font-size: 18px;
  line-height: 2;
}
#download .box .sub ul li p.title {
  font-weight: 700;
}
#download .box .sub .attention {
  margin-top: 20px;
}
#download .box .sub .attention p {
  font-size: 16px;
  line-height: 2;
}
#download .btn {
  width: 100%;
  max-width: 500px;
  margin: 50px auto 0;
  border-radius: 15px;
}
#download .btn a {
  padding: 15px 65px 18px 25px;
  font-size: min(5.3vw, 20px);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 15px;
}
@media (min-width: 769px) {
  #download > .wrap {
    padding-bottom: 100px;
  }
  #download .box .sub {
    margin-top: 40px;
  }
  #download .box .sub ul li {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #download .box .sub ul li::before {
    width: 18px;
    height: 18px;
  }
  #download .box .sub ul li p {
    font-size: 20px;
  }
  #download .box .sub ul li p.title {
    margin-right: 30px;
  }
  #download .box .sub ul li p:not(.title) {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #download .box .sub .attention p {
    font-size: 18px;
  }
  #download .btn {
    max-width: 700px;
    margin: 100px auto 0;
    border-radius: 30px;
  }
  #download .btn a {
    padding: 30px 65px;
    font-size: min(2.5vw, 24px);
    border-radius: 30px;
  }
}
@media (min-width: 900px) {
  #download .box {
    padding: 40px;
  }
  #download .box .main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 60px 4% 40px;
  }
  #download .box .main .detail {
    width: calc(100% - 230px);
    padding-right: 50px;
  }
  #download .box .main .img {
    width: 230px;
    max-width: initial;
    margin: 0 auto;
  }
  #download .box .main .point-text dt {
    padding: 4px 16px 6px;
  }
  #download .box .main .point-text dt p {
    font-size: 20px;
  }
  #download .box .main .point-text dd {
    padding: 30px;
  }
  #download .box .main .point-text dd .text p {
    font-size: min(2vw, 20px);
  }
  #download .box .main .point-text dd .attention {
    margin-top: 20px;
  }
  #download .box .main .point-text dd .attention p {
    font-size: min(1.8vw, 18px);
  }
  #download .box .main.comingsoon .detail {
    margin-top: 20px;
  }
  #download .box .main.comingsoon .detail .name p {
    font-size: min(2.7vw, 34px);
    line-height: 2;
  }
  #download .box .main.comingsoon .detail .soon {
    margin: 20px 0 40px;
  }
  #download .box .main.comingsoon .detail .soon__main {
    width: 55%;
    max-width: 240px;
  }
  #download .box .main.comingsoon .detail .soon__sub {
    margin: 15px auto 0;
  }
  #download .box .main.comingsoon .detail .soon__sub p {
    font-size: min(2.2vw, 24px);
  }
  #download .box .main.release .detail {
    margin-top: 10px;
  }
  #download .box .main.release .detail .detail__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: auto;
    max-width: initial;
    margin: 10px auto 40px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  #download .box .main.release .detail .detail__contents .detail__content {
    width: 50%;
  }
  #download .box .main.release .detail .detail__contents .detail__content.only {
    width: 100%;
  }
  #download .box .main.release .detail .detail__contents .detail__content.only:nth-of-type(1) .img__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  #download .box .main.release .detail .detail__contents .detail__content.only:nth-of-type(1) .img__contents .img__content + .img__content {
    margin-top: 0;
    margin-left: 10px;
  }
  #download .box .main.release .detail .detail__contents .detail__content.only:nth-of-type(1) .img__contents .img__content p {
    font-size: min(1.5vw, 18px);
  }
  #download .box .main.release .detail .detail__contents .detail__content:nth-of-type(1) {
    padding-bottom: 0;
    padding-right: 5%;
  }
  #download .box .main.release .detail .detail__contents .detail__content:nth-of-type(2) {
    padding-top: 0;
    padding-left: 5%;
    border-top: none;
    border-left: 2px dotted #026934;
  }
  #download .box .main.release .detail .detail__contents .bubble p {
    font-size: min(1.8vw, 20px);
  }
  #download .box .main.release .detail .detail__contents .img__contents .img__content p {
    font-size: min(1.4vw, 18px);
  }
}
@media (min-width: 1000px) {
  #download .box .main {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  #download .box .main.comingsoon .detail .soon {
    margin: 34px 0 30px;
  }
  #download .box .main.comingsoon .detail .soon__sub {
    margin: 50px auto 0;
  }
  #download .box .main.release .detail .detail__contents {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
@media (min-width: 1400px) {
  #download .box .main {
    padding: 60px 80px 40px 60px;
  }
  #download .box .main .detail {
    width: calc(100% - 300px);
    padding-right: 80px;
  }
  #download .box .main .img {
    width: 300px;
  }
  #download .box .main.release .detail .detail__contents .detail__content:nth-of-type(1) {
    padding-right: 40px;
  }
  #download .box .main.release .detail .detail__contents .detail__content:nth-of-type(2) {
    padding-left: 40px;
  }
}/*# sourceMappingURL=app-download.css.map */