@charset "UTF-8";
/* -------- リセット -------- */
body {
  -webkit-text-size-adjust: 100%;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

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

a {
  text-decoration:none; 
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  cursor: pointer;
  font: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  vertical-align: middle;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
button {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
button::-webkit-search-decoration {
  display: none;
}

input[type="submit"]::focus,
button::focus {
  outline-offset: -2px;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.sp_on {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc_on {
    display: none;
  }
  .sp_on {
    display: inline-block;
  }
}

body {
  background: #fdfcff;
  font-family: "ヒラギノ角ゴシック", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4;
  overflow-x: hidden;
}

main {
  padding-top: 48px;
}


@media screen and (min-width:1025px) {
  main {
    padding-top: 60px;
  }
}

/* -------- basic -------- */
.inner {
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 22px;
  padding-right: 22px;
}

.sp-br {
  display: block;
}

.sp-br-1025 {
  display: none;
}

@media screen and (min-width:1025px) {
  .inner {
     max-width: 1200px;
  }
  
  .sp-br {
    display: none;
  }
  .sp-br-1025 {
    display: block;
  }
}

/* -------- header -------- */
header {
  height: 48px;
  width: 100%;
  background: #7BB328;
  position: fixed;
  z-index: 99;
  text-align: center;
}

header img {
  padding: calc((48px - 32px) / 2) 0;
}

@media screen and (min-width:1025px) {
  header {
    height: 60px;
    text-align: left;
  }
  
  header img {
    padding: calc((60px - 32px) / 2) 22px;
  }
}

/* -------- nav -------- */
#nav-menu {
  position:fixed;
  z-index: 999;
  top:0;
  right: -120%;
  width:100%;
  height: 100vh;
  background:#7BB328;
  transition: all 0.6s;
  opacity: 0;
}

#nav-menu ul {
  padding: 20px 20px 0;
}

#nav-menu ul li a {
width: 100%;
display: block;
text-align: left;
padding: 20px;
color: #fff;
border-bottom: 1px solid #fff;
}

#nav-menu ul li:last-child a {
margin-bottom: 0;
}

/* ハンバーガーメニューボタン */
.burger-btn {
  display: block;
  width: 22px;
  height: 22px;
  position:fixed;
  z-index: 9999;
  right: 22px;
  top: calc((48px - 22px) / 2);
  cursor: pointer;
}

.burger-btn span {
  width: 22px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: ease .4s;
}

.burger-btn span:nth-child(1) {
  top: 3px;
}

.burger-btn span:nth-child(2) {
  top: 11px;
}

.burger-btn span:nth-child(3) {
  top: 19px;
}

.overlay {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  transition: all .4s; 
}

/* ハンバーガーメニュークリック後 */
#nav-menu.active {
  right: 0;
  opacity: 1;
}

#body.active {
  overflow: hidden;
}

.burger-btn.active span:nth-child(1) {
  top: 8px;
  left: 5px;
  transform: translateY(6px) rotate(-45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  top: 20px;
  left: 5px;
  transform: translateY(-6px) rotate(45deg);
}

.overlay.active {
  visibility: visible;
  opacity: 1;
}

@media screen and (min-width:1025px) {
  .burger-btn {
    display: none;
  }
  
  #nav-menu {
    position:fixed;
    z-index: 9999;
    height: 60px;
    width:100%;
    max-width: 800px;
    right: 0;
    opacity: 1;
  }
  
  #nav-menu ul {
    width: 100%;
    display: flex;
    justify-content: end;
    align-items: center;
    padding: 0 22px 0;
  }
  
  #nav-menu ul li a {
    padding: 0 0 0 30px;
    line-height: 60px;
    border-bottom: none;
  }
}

/* -------- footer -------- */
footer {
  background: #7BB328;
  padding: 0 22px;
}

.footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-text-wrap {
  padding: 46px 0 48.2px;
  color: #fff;
}

.footer-text-wrap h2 {
  font-weight: 600;
  padding-bottom: 16px;
  font-size: 16px;
}

.footer-text-wrap .contact p {
  padding-bottom: 16px;
}

.footer-text-wrap .contact a {
  text-decoration: none;
  color: #fff;
}

@media screen and (min-width:1025px) {
  .footer-text-wrap {
    display: flex;
    justify-content: left;
    align-items: center;
  }
  
  .footer-text-wrap h2 {
    padding-bottom: 0;
    font-size: 18px;
  }
  
  .footer-text-wrap .contact {
    padding-left: 30px;
  }
  
  .footer-text-wrap .contact p {
    padding-bottom: 5px;
  }
}

/* -------- ページトップボタン -------- */
.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 30px;
  font-size: 16px;
  line-height: 16px;
  background: #fff;
  color: #7BB328;
  padding: 15px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0,0,0,.5), 0 3px 10px -4px rgba(0,0,0,.2);
  transition: ease .4s;
  opacity: 0;
}

.page-top-btn:hover {
  background: #7BB328;
  color: #fff;
}

@media screen and (min-width:1025px) {
  .page-top-btn {
    right: 30px;
    bottom: 30px;
    font-size: 25px;
    line-height: 25px;
    padding: 20px;
  }
}

/* -------- first view -------- */
.top-box {
  background: no-repeat url(../images/first-view.jpg);
  background-position: bottom 8% right 38%;
  background-size: auto 420px;
  width: 100%;
  height: 212px;
  position: relative;
  z-index: 1;
}

.top-box h1 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.9;
  padding: 13px 22px 12.5px;
}

.band-wrap {
  padding-bottom: 24px;
}

.band-wrap div p {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  display: inline-block;
  padding: 6px 12px 6px 22px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  margin: 0 0 4px;
  box-shadow: 0px 0px 6px -3px rgb(0 0 0 / 60%);
}

.band-wrap div:nth-of-type(1) p {
  background: #F27946;
}

.band-wrap div:nth-of-type(2) p {
  background: #018BEB;
}

.band-wrap div:nth-of-type(3) p {
  background: #55C31A;
}

@media screen and (min-width:600px) {
  .top-box {
    background-position: bottom 8% right 38%;
    background-size: auto 620px;
    width: 100%;
    height: 300px;
  }
  .top-box h1 {
    font-size: 20px;
    padding: 35px 27px;
  }
  
  .band-wrap {
    padding-bottom: 30px;
  }
  
  .band-wrap div p {
    font-size: 14px;
    padding: 8px 30px 8px 40px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    margin: 0 0 6px;
  }
}

@media screen and (min-width:1025px) {
  .top-box {
    background-position: bottom 8% right 38%;
    background-size: auto 800px;
    width: 100%;
    height: 370px;
  }
  .top-box h1 {
    font-size: 25px;
    padding: 50px 27px 60px;
  }
  
  .band-wrap div p {
    font-size: 18px;
    padding: 10px 50px 10px 70px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    margin: 0 0 15px;
  }
}

/* 英語版 */
.en.top-box {
  background-position: bottom 0% right 38%;
  background-size: auto 450px;
  height: 280px;
}

.en.band-wrap div p {
  padding: 2px 12px 2px 22px;
  border-top-right-radius: 18px;
  border-bottom-right-radius: 18px;
}

@media screen and (min-width:600px) {
  .en.top-box {
    background-position: bottom 8% right 38%;
    background-size: auto 750px;
    height: 370px;
  }
  
  .en.top-box h1 {
    padding: 28px 20px;
  }
  
  .en.band-wrap div p {
    padding: 7px 30px 7px 40px;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
  }
}

@media screen and (min-width:1025px) {
  .en.top-box {
    background-position: bottom 8% right 38%;
    background-size: auto 800px;
    height: 390px;
  }
  
  .en.top-box h1 {
    padding: 25px 27px 25px;
  }
  
  .en.band-wrap div p {
    padding: 11px 50px 11px 70px;
    border-top-right-radius: 35px;
    border-bottom-right-radius: 35px;
  }
}

/* -------- 概要 -------- */
.summary-wrap {
  padding-top: 22px;
  padding-bottom: 48px;
}
.summary-top-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 22px;
}

.summary-top-wrap > img {
  margin-right: 11px;
  width: 77px;
  height: 77px;
}

.summary-top-wrap > div {
  margin-left: 11px;
}

.summary-top-wrap > div img {
  width: 119px;
  height: 48px;
}

.summary-download-wrap {
  text-align: center;
  margin: 0 auto;
  margin-bottom: 55.3px;
}

.summary-download-wrap > div p {
  font-weight: 600;
  text-align: left;
  line-height: 2;
  margin-bottom: 22px;
}

.download-btn {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
}

.download-btn a:nth-of-type(1) img {
  width: 155px;
  background-size: contain;
}

.download-btn a:nth-of-type(2) img {
  width: 155px;
}

/* 英語版 */
.en.download-btn a:nth-of-type(2) img {
  width: 175px;
}

.summary-detail-wrap {
  text-align: center;
}

.summary-detail-wrap .price {
  max-width: 390px;
  width: 100%;
  margin: 0 auto 22px;
}

.summary-detail-wrap .os {
  max-width: 390px;
  width: 100%;
  margin: 0 auto;
}

.summary-detail-wrap dl dt {
  margin-bottom: 17px;
  font-weight: 600;
}

.summary-detail-wrap dl dd {
  text-align: left;
  margin: 0 36px;
}

.summary-detail-wrap .os dd {
  text-align: center;
}

.summary-detail-wrap .pick-text {
  color: #E0550B;
  font-weight: 600;
  margin-bottom: 48px;
}

@media screen and (min-width:600px) {
  .download-btn {
    display: flex;
    flex-flow: row;
    justify-content: center;
    align-items: center;
  }
  .download-btn a:nth-of-type(1) {
    padding: 0 15px;
  }
  .download-btn a:nth-of-type(1) img {
    width: auto;
    height: 57px;
    background-size: contain;
  }
  
  .download-btn a:nth-of-type(2) img {
    width: auto;
    height: calc(57px + (8px * 2));
  }
  .summary-download-wrap > p {
    text-align: center;
  }
  
  /* 英語版 */
  .en.download-btn a:nth-of-type(2) img {
    width: auto;
    height: calc(57px + (13px * 2));
  }
}


@media screen and (min-width:1025px) {
  .summary-wrap {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  
  .summary-top-wrap {
    margin-bottom: 30px;
  }
  
  .summary-download-wrap {
    margin-bottom: 70px;
  }
  
  .summary-download-wrap > div {
    text-align: center;
  }
  
  .summary-download-wrap > div p {
    font-size: 18px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
  }
  
  .summary-detail-wrap dl {
    display: flex;
    justify-content: space-around;
    align-items: center;
  }
  
  .summary-detail-wrap dl dt {
    margin-bottom: 0;
  }
  
  .summary-detail-wrap dl dd {
    text-align: left;
    margin: 0 0 0 40px;
  }
  
  .summary-detail-wrap .os dd {
    text-align: center;
  }
  
}

/* -------- 共通 -------- */
.feature-box h2, .function-box h2, .example-box h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 22px;
}

.feature-box h3, .function-box h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}

.section-inner:not(:last-of-type) {
  padding-bottom: 30px;
}

.feature-wrap .feature-inner p, .function-wrap .function-inner p {
  text-align: left;
}


@media screen and (min-width:600px) {
  .feature-box h2, .function-box h2, .example-box h2 {
    font-size: 25px;
    margin-bottom: 22px;
  }
  
  .feature-box h3, .function-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
  } 
}

@media screen and (min-width:1025px) {
  .feature-box h2, .function-box h2, .example-box h2 {
    font-size: 30px;
    margin-bottom: 22px;
  }
  
  .feature-box h3, .function-box h3 {
    font-size: 20px;
    margin-bottom: 20px;
    text-align: left;
  } 
  
  .section-inner {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .section-inner:not(:last-of-type) {
    padding-bottom: 50px;
  }
  
  .section-inner .text-wrap {
    width: 600px;
    padding-left: 20px;
  }
  
  .section-inner .text-wrap p {
    text-align: left;
  }
}

/* -------- 特徴 -------- */
.feature-box {
  background: #7BB328;
}

.feature-wrap {
  text-align: center;
  padding-top: 47.4px;
  padding-bottom: 48.6px;
  color: #fff;
}

.feature-img-wrap .side-img img:not(:last-of-type) {
  padding-bottom: 17.9px;
}

.feature-text-wrap p {
  padding: 0 22px;
}

.img-none {
  display: none;
}

@media screen and (min-width:600px) {
  .feature-text-wrap p {
    padding: 0;
  }
}

@media screen and (min-width:1025px) {
  .feature-wrap {
    padding-top: 60px;
    padding-bottom: 61px;
  }
}

/* -------- 機能 -------- */
.function-box {
  background: #F0F0F0;
}

.function-wrap {
  text-align: center;
  padding-top: 48.2px;
  padding-bottom: 48.6px;
}

.function-wrap > p {
  font-size: 22px;
}

.function-text-wrap h3 {
  color: #7BB328;
}

@media screen and (min-width:1025px) {
  .function-wrap {
    padding-top: 61px;
    padding-bottom: 61px;
  }
  
  .function-wrap > p {
    padding: 20px 0 30px;
  }
}

/* -------- Facebook埋め込み -------- */
.example-wrap {
  text-align: center;
  padding-top: 48.2px;
  padding-bottom:120.9px;
}

.example-wrap > p {
  font-size: 22px;
  padding-bottom: 22px;
}
.fb-page {
  margin-bottom: 30px;
}

.safari-msg {
  background: #F0F0F0;
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  padding: 10px;
}

.safari-msg p {
  font-size: 14px;
}

.safari-msg p:first-child {
  font-size: 16px;
  padding-bottom: 10px;
}

.safari-msg p:last-child {
  text-align: left;
} 




@media screen and (min-width:1025px) {
  .example-wrap {
    padding-top: 61px;
    padding-bottom: 140px;
  }
  
  .example-wrap > p {
    padding: 20px 0 30px;
  }
}

/* -------- privacy policy -------- */
@media screen and (min-width:1025px) {
  .privacy-policy header {
    text-align: center;
  }
}

.privacy-policy-wrap {
  padding-top: 48.2px;
  padding-bottom:120.9px;
  line-height: 1.5;
}

.privacy-policy-wrap .top-text {
  margin: 2rem 0 3rem;
}

.privacy-policy-wrap dt {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.75;
  margin-bottom: 0.5rem;
}

.privacy-policy-wrap dd {
  margin-bottom: 1.9rem;
}

.privacy-policy-wrap dd span {
  display: block;
  margin-top: .8rem;
}

ol.number-list-brackets {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 1.1rem 0 0 0;
}

ol.number-list-brackets > li {
  counter-increment: number-list-brackets;
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: .5rem;
}

ol.number-list-brackets > li:before {
  content: "（" counter(number-list-brackets) "）";
  position: absolute;
  top: 0;
  left: 0;
}

ol.number-list-brackets > li span {
  margin-top: 0;
  text-indent: 0;
}

ul.dots-list {
  list-style: circle;
  list-style-type: circle;
  padding-left: 2.5rem;
}

ul.dots-list li {
  margin-bottom: 0.5rem;
}

ul.dots-list:last-of-type li {
  padding-bottom: 0;
}
