@import url(https://fonts.googleapis.com/icon?family=Material+Icons);

/*------------------------------------------------------------------------
 reset
-------------------------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin:0;
  padding:0;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;

}

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

ul,ol {
  list-style: none;
}

body {
  min-height: 100vh;
}

h1,h2,h3,h4{
  line-height: 1.4;
}

button,input,label {
  line-height: 1;
}

h1,h2,h3,h4 {
  text-wrap: balance;
}

a{
  text-decoration: none;
}

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

input,button,
textarea,select {
  appearance: none;
  background: #FAFAFA;
  font: inherit;
  outline: none;
}

input[type=checkbox],
input[type=radio] {
  /* display: none; */
  appearance:auto;
}

button{
  border: none;
  cursor: pointer;
}

:target {
  scroll-margin-block: 5ex;
}

::placeholder {
  color: #ccc;
}

/*------------------------------------------------------------------------
 default
-------------------------------------------------------------------------*/
:root {
  --main-black:#242535;
  --main-blue:#00BFEF;
  --main-orange:#ED3911;
  --main-gradient:linear-gradient(to right,#0371DE,#08D575);
  --light-blue:#EEFAFF;
}

html {
  font-family: "游ゴシック体", "YuGothic", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-overflow-style: scrollbar;
}

body {
  background: #FBFEFF;
  color: #222;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  height: 100%;
  word-break: break-word;
}

h1{font-size: 6.4rem}
h2{font-size: 4rem}
h3{font-size: 3.2rem}
h4{font-size: 2.4rem}
h5{font-size: 2rem}
a,button{
  transition: all 0.3s;
  color: var(--main-black);

}

input,select,textarea{
  border: 1px solid var(--light-gray);
  border-radius: 5px;
  font-size: 1.6rem;
  padding: 0 10px;
  height: 32px;
}
input:disabled,
select:disabled,
textarea:disabled {
  background: #eee;
}
input:focus,
input:focus-visible{
  border-color: #222;
}
select{
  padding-right: 30px;
}
select:invalid {
  color: var(--light-gray);
}
textarea{
  padding: 10px;
  height: 140px;
  width: 600px;
}

table{
  border-collapse: collapse;
  width: 100%;
}
th{
  background: #F2F2F2;
  border-bottom: 1px solid #888;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  padding: 0 15px;
  height: 40px;
}
td{
  background: #fff;
  border-bottom: 1px solid var(--light-gray);
  padding: 6px 15px;
  vertical-align: middle;
}

@media screen and (max-width:1160px) {
  body{
    font-size: 1.4rem;
  }
  h1{font-size: 2.4rem}
  h2{font-size: 2rem}
  h3{font-size: 1.8rem}
  h4{font-size: 1.6rem}
  h5{font-size: 1.4rem}

}
.error-text {
  color: #C40000;
  font-size: 1.4rem;
}
.button {
  padding: 16px 56px ;
  font-size: 2rem;
  font-weight: bold;
  color: white;
  display: inline-flex;
  align-items: center;
  gap:8px;
  border-radius: 40px;
  transition: all 0.2s;
  box-shadow: 0 0 4px rgba(0,0,0,0.16);
  background: var(--main-gradient);
  width: max-content;

}
.button:hover {
  box-shadow: 0 0 8px rgba(0,0,0,0.24);
  transform: scale(1.02);
}
.button.small {
  height: 48px;
  padding: 8px 24px;
  font-size: 1.4rem;
}
.button span {
  font-size: 1.5em;
}

.button.sub {
  border: solid 2px var(--main-black);
  background: white;
  color: var(--main-black);
  font-size: 1.6rem;
  box-shadow: none;
}
section {
  padding: 40px 0;
}
.container {
  width: 1160px;
  margin: auto;
  padding: 40px 0;
  position: relative;
}
.content {
  margin-top: 40px;
}
.font-eng {
  font-family: "Roboto", serif;
}
.section-title {
  text-align: center;
}
.section-eng {
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--main-blue);
  font-weight: 500;
}
.section-eng.white {
  color: white;
}
.section-title span{
  position: relative;
  z-index: 1;
}
.section-title.white {
  color: white;
}
.section-title span::before {
  content: "";
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: -5px;
  left: 0;
  background: #E3D2A0;
  z-index: -1;
}
span.gold {
  color: var(--main-gold);
}
.section-lead {
  font-weight: bold;
  margin-top: 24px;
}
.medium-text {
  font-size: 2rem;
}
.text-center{
  text-align: center;
}
.text-small {
  font-size: 1.2rem;
}
.text-blue {
  color: var(--main-blue);
}
.weight-bold {
  font-weight: bold;
}
.annotation {
  font-size: 1.2rem;
  color: #888888;
}
@media screen and (min-width:1161px) {
  .sp-only {
    display: none;
  }
}
@media screen and (max-width:1160px) {
  .pc-only {
    display: none !important;
  }
  section {
    padding: 24px 0;
  }
  .container {
    width: 90%;
    padding: 24px 0;
  }
  .content {
    margin-top: 24px;
  }
  .section-eng {
    font-size: 1.2rem;
  }
  .button {
    font-size: 1.6rem
  }
  .button.gold {
    padding: 16px 0;
    justify-content: center;
    width: 100%;
    font-size: 1.4rem;
  }
}
/*------------------------------------------------------------------------
 header
-------------------------------------------------------------------------*/
.header {
  position: fixed;
  width: 100%;
  padding: 8px 24px;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  z-index: 100;
  background: white;
  align-items: center
}
.header-logo {
  height: 40px;
  display: block;
  position: relative;
  z-index: 100;
}
.header-logo img {
  height: 100%;
}
.header-content {
  padding: 8px;
  padding-left: 16px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  gap:24px;
}
.header-link {
  display: flex;
  gap:40px;
  padding: 0 16px;
  font-size: 1.6rem;
  font-weight: bold;
  transition: all 0.1s;
}
.header-link a:hover {
  color: var(--main-blue);
}
@media screen and (max-width:1160px) {
  .header {
  }
  .header-logo  {
    height: 30px;
  }
  .header-content {
    position: absolute;
    left: 0;
    top: 0;
    transform: translateY(-100%);
    z-index: 99;
    flex-direction: column;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 40px;
    border-radius: 0 0 10px 10px;
    transition: all 0.2s;
    background: white;
  }
  .header-content.open {
    transform: translateY(0);
  }
  .header-link {
    flex-direction: column;
    text-align: center;
    font-size: 2rem;
    gap:24px;
  }
  .header .button {
    width: 100%;
    font-size: 2rem;
    justify-content: center;
    padding: 32px;
  }
  .header-hamburger {
    width: 28px;
    height: 16px;
    position: fixed;
    right: 16px;
    top: 24px;
    z-index: 100;
  }
  .hamburger-stripe {
    width: 100%;
    height: 2px;
    background: var(--main-black);
    position: absolute;
    transition: all  0.2s;
  }

  .hamburger-top {
    top: 0;
  }
  .hamburger-mid {
    top: 7px;
  }
  .hamburger-btm {
    bottom: 0;
  }
  .open .hamburger-top {
    top: 50%;
    left: 0%;
    transform: translateY(-50%) rotate(45deg);
  }
  .open .hamburger-mid {
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%,-50%) rotate(90deg);
  }
  .open .hamburger-btm {
    top: 50%;
    left: 0%;
    transform: translateY(-50%) rotate(-45deg);
  }
  .bg-back {
    position: fixed;
    z-index: 90;
    background: rgba(0,0,0,0.16);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: none;
  }
}
/*------------------------------------------------------------------------
 fv
-------------------------------------------------------------------------*/
#fv {
  background: white;
  overflow: hidden;
  position: relative;
}
#fv .container {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1560px;
}
.fv-content {
  padding-top: 40px;
  display: flex;
  flex-direction: column;
  gap:40px;
  position: relative;
  z-index: 1;
}
.fv-content h1 {
  font-size: min(4vw, 7rem);
}
.fv-content h4 {
  font-size: min(1.3vw, 3rem);
}
.fv-image {
  width: 35vw;
  max-width: 630px;
}

.fv-bg {
  position: absolute;
  top: 0;
  display: flex;
  width: 100vw;
  left: 0;
  justify-content:  space-between;
}
.fv-bg img {
  width: 100%;
}
@media screen and (max-width:1160px) {
  #fv .container {
    flex-direction: column;
  }
  .fv-content {
    gap:24px;
    order: 2;
    align-items: center;
  }
  .fv-image {
    width: 80vw;
  }
  .fv-content h1 {
    font-size: 2.4rem;
    text-align: center;
  }
  .fv-content h3 {
    text-align: center;
  }
}

/*------------------------------------------------------------------------
 probrem
-------------------------------------------------------------------------*/
.probrem-content {
  display: flex;
  justify-content: space-between;
  gap:24px;
  padding-top: 30px;
}
.probrem-block {
 background: white;
 padding: 24px;
 box-shadow: 0 0 10px rgba(0,0,0,0.16);
 border-radius: 10px;
 flex:1;
 position: relative;
 display: flex;
 gap:24px;
}
.probrem-icon {
  width: 80px;
}
.probrem-icon img {
  width: 100%;
}
.probrem-block p {
  flex:1;
  font-weight: bold;
}
.probrem-top h4 {
  color: var(--main-gold)
}

@media screen and (max-width:1160px) {
  .probrem-content {
    flex-direction: column;
    padding-top: 0;
  }
  .probrem-block {
    align-items: center;
  }
}
/*------------------------------------------------------------------------
 reason
-------------------------------------------------------------------------*/
.reason-content {
  display: flex;
  justify-content: space-between;

}
.reason-image {
  width: 340px;
}
.reason-list {
  width: 720px;
  padding: 24px;
  background: #EFF9FF;
  border-radius: 10px;
}
.reason-list h4 {
  text-align: center;
}
.reason-arrow {
  width: 100%;
  text-align: center;
}
.reason-arrow span {
  font-size: 5rem;

}
.reason-list li {
  display: flex;
  background: white;
  padding: 16px;
  border-radius: 5px;
}
.reason-list li:not(:first-child) {
  margin-top: 16px;

}
.reason-list li .text-blue {
  width: 150px;.
}
@media screen and (max-width:1160px) {
  .reason-content {
    flex-direction: column;
    align-items: center;
    gap:24px;
  }
  .reason-list {
    width: auto;
  }
  .reason-image {
    width: 60%;
  }
  .reason-list li {
    flex-direction: column;
  }
}
/*------------------------------------------------------------------------
 catch
-------------------------------------------------------------------------*/
#catch {
  background: var(--main-gradient);
}
#catch h3 {
  color: white;
  text-shadow: 0 0 4px rgba(0,0,0,0.16);
  text-align: center;
}

/*------------------------------------------------------------------------
 merit
-------------------------------------------------------------------------*/
#merit {
  background:var(--light-blue);
}
.merit-content {
  display: flex;
  flex-direction: column;
  gap:40px;
}
.merit-block {
  width: 100%;
  padding:40px;
  background: white;
  display: flex;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  border-radius: 20px;
}
.merit-block .font-eng {
  font-weight: bold;
}
.merit-block h4 {
  padding: 16px 0;
  display: flex;
  align-items: center;
  border-bottom: solid 2px var(--main-blue);
  margin-bottom: 24px;
  width: 600px;
}
.merit-right {
  display: flex;
  justify-content:  center;
  flex:1;
}
.merit-right img {
  width: 300px;
}
@media screen and (max-width:1160px) {
  .merit-block {
    flex-direction: column;
    padding: 24px;
  }
  .merit-block h4 {
    width: 100%;
  }
}
/*------------------------------------------------------------------------
 feature
-------------------------------------------------------------------------*/

#feature {
  background:var(--light-blue);
}
.feature-content {
  display: flex;
  gap:24px;
  justify-content: space-between;
}
.feature-block {
  padding: 40px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  border-radius: 10px;
  flex:1;
}
.feature-block h4 {
  padding: 16px 0;
}
@media screen and (max-width:1160px) {
  .feature-content {
    flex-direction: column;
  }
  .feature-block {
    padding: 24px;
  }
}
/*------------------------------------------------------------------------
 price
-------------------------------------------------------------------------*/
.price-content {
  display: flex;
  justify-content: space-between;
}
.price-block {
  width: 490px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  padding: 40px;
}
.price-block.free {
  background: white;
}
.price-block.option {
  background: var(--main-blue);
}
.price-block.option h3 {
  color: white;
}
.price-free-item {
  display: flex;
  justify-content: space-around;
  margin-top: 32px;
}
.price-free-item li {
  width: 156px;
  text-align: center;
  font-weight: bold;
}
.price-free-item .font-eng {
  font-size: 7rem;
  line-height: 1em;
}
.price-free-detail li{
  width: 100%;
  background: var(--light-blue);
  color: var(--main-blue);
  font-weight: bold;
  text-align: center;
  margin-top: 16px;
  font-size: 2.4rem;
  border-radius: 5px;
}
.price-plus {
  display: flex;
  align-items: center;
}
.price-plus span {
  font-size: 6rem;
  font-weight: bold;
}
.price-block.option h3 {
  color: white;
}
.price-option-item li {
  background: white;
  padding: 16px;
  display: flex;
  justify-content: space-between;
  border-radius: 5px;
  margin-top: 16px;
  align-items: center;
}
.price-option-item li p {
  text-align: right;
  line-height: 1.2em;
}
.price-option-item li .font-eng {
  font-size: 2.4rem;
  font-weight: bold;
}
@media screen and (max-width:1160px) {
  .price-content {
    flex-direction: column;
    align-items: center;
    gap:24px;
  }
  .price-block {
    width: 100%;
    padding: 16px;
  }
  .price-free-detail li {
    font-size: 1.8rem;
  }
}
/*------------------------------------------------------------------------
 cta
-------------------------------------------------------------------------*/
#cta {
  background: var(--main-gradient);
}
.cta-container {
  background: white;
  border-radius: 20px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta-left {
  display: flex;
  flex-direction: column;
  gap:24px;
}
.cta-image img{
  width: 440px;
}
@media screen and (max-width:1160px) {
  .cta-container {
    flex-direction: column;
    gap:24px;
  }
}
/*------------------------------------------------------------------------
 step
-------------------------------------------------------------------------*/

#step {
  /* background:var(--light-blue); */
}
.step-content {
  display: flex;
  justify-content: space-between;
}
.step-block {
  padding: 40px;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  border-radius: 10px;
  flex:1;
}
.step-block h4 {
  padding: 16px 0;
}
.step-arrow {
  display: flex;
  align-items: center;
}
.step-arrow span {
  font-size: 6rem;

}
@media screen and (max-width:1160px) {
  .step-content {
    flex-direction: column;
    align-items: center;
  }
  .step-block {
    padding: 24px;
  }
  .step-arrow span {
    transform: rotate(90deg);
  }
}
/*------------------------------------------------------------------------
 about
-------------------------------------------------------------------------*/
#about {
  background: var(--light-blue);
  text-align: center;
}
#about .container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:32px;
}
.about-item  {
  display: flex;
  justify-content: space-between;
  gap:24px;
  width: 100%;
}
.about-item li {
  flex:1;
  background: var(--light-blue);
  padding: 16px;
}
.about-item .text-blue {
  font-size: 4rem;

}
@media screen and (max-width:1160px) {
  #about .container {
    padding: 24px;
  }
  .about-item {
    flex-direction: column;
  }
}
/*------------------------------------------------------------------------
 footer
-------------------------------------------------------------------------*/
footer {
  background: var(--main-black);
  color: white;
}
footer .container {
  display: flex;
  justify-content: space-between;
}
.foot-logo img {
  height: 60px;
}
.foot-link  {
  display: flex;
  gap:24px;
}
.foot-link a {
  color: white;
}
.foot-place {
  height: 20px;
  margin-bottom: 16px;
}
@media screen and (max-width:1160px) {
  footer .container {
    flex-direction: column;
    align-items: center;
    gap:16px;
    text-align: center;
  }
}
