/* リセット */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  line-height: 1.6;
  background: #fff;
}

/* header
-----------------------------------------------*/
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 200;
  width: 100vw;
  box-sizing: border-box;
  transition: background .2s cubic-bezier(.210, .60, .350, 1);
}
header.scroll {
  background: #fff;
}
header .logo {
  font-weight: bold;
  position: relative;
  padding-left: 60px;
  line-height: normal;
}
header .logo::before {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 25px;
  background: url("img/img-logo.svg")no-repeat;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
header .logo span {
  font-size: 12px;
  color: #666;
}
header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #111;
  font-size: 14px;
}
header #menuBtn{
	display: none;
}
@media (max-width: 860px) {
  header{
    padding: 20px;
  }
  header nav a{
        margin-left: 10px;
  }
}
@media (max-width: 768px) {
  header{
    padding: 15px;
  }
  header .logo::before{
    width: 35px;
    height: 18px;
  }
  header .logo{
    padding-left: 45px;
    font-size: 14px;
    line-height: 1;
  }
  header .logo span{
    font-size: 10px;
  }
  header #menuBtn {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    width: 60px;
    height: 60px;
    cursor: pointer;
    font-size: 0;
  }
  header #menuBtn span, header #menuBtn::before, header #menuBtn::after {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 22px;
    height: 2px;
    margin: auto;
    background: #333;
  }
  header #menuBtn::before {
    transform: translate(-50%, -8px);
    content: "";
  }
  header #menuBtn::after {
    transform: translate(-50%, 6px);
    content: "";
  }
  header #menuBtn span {
    transform: translate(-50%, -50%);
    transition: opacity 150ms 50ms;
  }
  header #menuBtn::before, header #menuBtn::after {
    transition: transform 200ms;
  }
  header #menuBtn.active span {
    opacity: 0;
    transition: opacity 150ms;
  }
  header #menuBtn.active::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  header #menuBtn.active::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  header #menuBtn.active::before, header #menuBtn.active::after {
    width: 25px;
  }
  header nav {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1;
    width: 100%;
    height: 100vh;
    opacity: 0;
    box-sizing: border-box;
    padding: 70px 20px 120px;
    -webkit-backdrop-filter: blur(73px);
    backdrop-filter: blur(73px);
    transition: all 0.3s;
    
  }
  header nav.active{
    opacity: 1;
  }
  header nav a {
    text-align: center;
    margin-left: 0;
    display: block;
    box-sizing: border-box;
    font-size: 18px;
    padding: 8px 0;
  }
  header nav .btn {
    position: relative;
    left: 50%;
    transform: translateX(-50%);
  }
}

/* 共通
-----------------------------------------------*/
section .inner {
  max-width: 1180px;
  width: 100%;
  margin: auto;
  padding: 0 40px;
  box-sizing: border-box;
}
.contents .inner {
  padding: 120px 40px;
  text-align: center;
}
ul {
  list-style: none;
  padding: 0;
}
h1 {
  font-size: 52px;
  line-height: 1.3;
  margin: 10px 0 20px;
}
h2 {
  font-size: 28px;
  margin: 0;
}
h3 {
  font-size: 18px;
  margin: 0;
}
p {
  font-size: 15px;
  margin: 0;
  word-break: auto-phrase;
  letter-spacing: -0.05em;
}
.center {
  text-align: center;
}
a {
  transition: opacity .2s cubic-bezier(.210, .60, .350, 1);
}
a:hover {
  opacity: .7;
}
.spOnly{
  display: none;
}
.note {
  text-align: center;
  margin-top: 20px;
}
@media (max-width: 768px) {
  section .inner {
    padding: 0 20px;
  }
  .contents .inner {
    padding: 60px 20px;
  }
  .spOnly{
    display: block;
  }
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 22px;
  }
  .grid-4 {
    grid-template-columns: 1fr!important;
  }
.note {
  text-align: left;
}
p {
  word-break: normal;
  letter-spacing: 0;
}
}

/* main
-----------------------------------------------*/
#main {
  background-image: linear-gradient(90deg, #f9fafb, #f7f8fa);
  overflow: hidden;
}
#main .inner {
  max-width: 1280px;
  display: flex;
  align-items: center;
  position: relative;
  right: -40px;
  gap: 40px;
}
#main .txt {
  flex: 1;
      width: 35.75%;
  padding-bottom: 60px;
}
#main .btn {
  border-radius: 50px;
  margin: 40px auto;
}
#main .btn i {
  margin-left: 5px;
}
#main .inner > .img  {
      width: 64.25%;
  position: relative;
}
#main .inner > .img .circle  {
  position: absolute;
  display: flex;
  content: "";
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  width: 133px;
  height: 133px;
  background: linear-gradient(to right, #2e3192, #29abe2);
  color: #fff;
  top: 5px;
  right: 15px;
}
#main .inner > .img .circle span{
  width: 100%;
  display: block;
  font-size: 15px;
  line-height: 1.3;
  letter-spacing: 0;
}
#main .inner > .img .circle span > span{
  font-size: 26px;
}
#main .inner > .img .kv{
  width: 100%;
  text-align: left;
  overflow: hidden;
  position: relative;
}
#main .inner > .img .kv li{
  position: absolute;
  top: 0;
  left: 0;
}

#main .inner > .img img {
  width: 100%;
  max-width: 771px;
}
#main p {
  font-weight: bold;
}
.label {
  color: #3884c6;
  margin-bottom: 0;
}
/* ボタン */
.btn {
  display: inline-block;
  padding: 0 22px;
  border-radius: 8px;
  text-decoration: none;
  margin-top: 10px;
  font-size: 14px;
  line-height: 50px;
  height: 50px;
}
.link-none {
  background: #ccc;
  color: #737373 !important;
  pointer-events: none;
}
.btn-primary {
  background: linear-gradient(to right, #2e3192, #29abe2);
  color: #fff;
}
.btn-outline {
  border: 1px solid #ccc;
  color: #111;
}
.btn-group {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
}
.btn-group a {
  margin-right: 10px;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
}
.feature-icons {
  margin-top: 20px;
  font-size: 13px;
  color: #555;
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr;
  padding: 0;
}
.feature-icons li {
  text-align: center;
  position: relative;
}
.feature-icons li::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 50px;
  background: #D9D9D9;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
.feature-icons li:last-child::before {
  display: none;
}
.feature-icons li .img {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
.feature-icons li .img img {
  max-height: 30px;
  width: auto !important;
  height: auto;
}
.feature-icons li span {
  display: block;
  font-weight: bold;
  font-size: 15px;
}
@media (max-width: 1200px) {
  #main .txt{
    width: 40%;
  }
  #main .inner > .img{
    width: 60%;
  }
}
@media (max-width: 1090px) {
  h1{
        font-size: 46px;
  }
  #main .inner > .img .circle{
    top:-25px;
  }
}
@media (max-width: 990px) {
  #main .inner{
    right: 0;
  }
  h1{
        font-size: 40px;
  }
  #main .txt,
  #main .inner > .img{
    width: 50%;
  }
  #main .btn {
    font-size: 12px;
  }
}
@media (max-width: 850px) {
  #main .inner{
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 20px;
  }
  #main .txt,
  #main .inner > .img{
    width: 100%;
  }
  #main .inner > .img .circle{
    width: 100px;
    height: 100px;
    right: -10px;
  }
  #main .inner > .img .circle span{
    font-size: 12px;
  }
  #main .inner > .img .circle span > span{
    font-size: 20px;
  }
  #main .btn {
    margin: 20px auto;
    font-size: 12px;
  }
  .btn-group {
    gap: 10px;
  }
  .feature-icons li span{
    font-size: 14px;
  }
}
/* section01
-----------------------------------------------*/
#section01 h2 {
  margin-bottom: 40px;
}
#section01 .card {
  box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.08);
}

/* section02
-----------------------------------------------*/
#section02 h2 {
  margin-bottom: 10px;
}
#section02 ul {
  gap: 60px;
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}
#section02 li {
  display: flex;
  gap: 10px;
  width: 33.33%;
}
#section02 li .txt {
  width: 100%;
  text-align: left;
}
#section02 li .txt h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: -0.05em;
}
#section02 li .txt h3 span {
  background: #3884c6;
  border-radius: 50%;
  font-weight: normal;
  color: #fff;
  padding: 0 5px;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  justify-content: center;
}
#section02 li .txt p {
  font-size: 14px;
  padding: 0 0 0 50px;
}
#section02 li .img {
  max-width: 116px;
  width: 100%;
}
#section02 li .img img {
  width: 100%;
  height: auto;
}
@media (max-width: 1120px) {
#section02 ul {
  gap: 20px;
}
}
@media (max-width: 1180px) {
#section02 ul {
  flex-wrap: wrap;
}
  #section02 li{
    width: 45%;
  } 
}
@media (max-width: 768px) {
  #section02 ul {
    flex-direction: column;
}
  #section02 li{
    width: 100%;
  } 
  #section02 li .txt p{
    padding: 10px 0 0;
  }
}
/* section03
-----------------------------------------------*/
#section03 {
  background: #f7f7f7;
}
#section03 h2 {
  margin-bottom: 40px;
}
#section03 .card {
  background: none;
  border: none;
}
#section03 .grid-4 .card {
  position: relative;
  padding: 0 20px;
}
#section03 .grid-4 .card::before {
  position: absolute;
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background: #D9D9D9;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}
#section03 .grid-4 .card:last-child::before {
  display: none;
}
#section03 .card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: #3884c6;
}
#section03 .card h3 span {
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  display: block;
}
@media (max-width: 1120px) {
#section03 .grid-4 .card:nth-child(2)::before {
  display: none;
}
}
@media (max-width: 768px) {
#section03 .grid-4  {
  gap:40px;
}
  #section03 .grid-4 .card {
    padding: 0 10px;
}
#section03 .grid-4 .card::before {
  width: 100%;
  height: 1px;
  right: auto;
  left: 0;
  top: auto;
  bottom: -20px;
  transform: none;
}
#section03 .grid-4 .card:nth-child(2)::before {
  display: block;
}
  #section03 .card h3 {
    justify-content: flex-start;
    text-align: left;
}
  #section03 .card p {
    text-align: left;
        word-break: unset;
}
}

/* section04
-----------------------------------------------*/
#section04 h2 {
  margin-bottom: 40px;
}
#section04 ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  gap: 5px;
}
#section04 li {
  width: 100%;
  text-align: center;
}
#section04 .card {
  text-align: left;
  padding: 20px 20px 10px;
}
/* section05
-----------------------------------------------*/
#section05 {
  background: #f7f7f7;
}
#section05 h2 {
  margin-bottom: 40px;
}
#section05 .price-box {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
}
#section05 .price-box .notice {
  padding-left: 40px;
}
#section05 .price-box .notice h3 {
  text-align: left;
}
#section05 .price-box .notice ul {
  list-style: disc;
  max-width: none;
}
#section05 .price-box .notice li {
  text-indent: 0;
}
#section05 .price-box .col {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
#section05 .price-box .col h3 {
  padding: 10px 20px;
  font-size: 15px;
}
#section05 .price-box .main h3 {
  background: #3884c6;
  color: #fff;
}
#section05 .price-box .sub h3 {
  background: #D6D8DC;
}
#section05 .price-box p {
  font-weight: bold;
}
#section05 .price-box .main p span {
  font-size: 40px;
}
#section05 .price-box .sub p {
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#section05 .price-box .txt {
  padding: 10px 20px 30px;
}
#section05 .price-box ul {
  margin: 20px auto;
  max-width: 220px;
  width: 100%;
}
#section05 .price-box li {
  text-align: left;
  font-size: 15px;
  text-indent: -9px;
}
#section05 .price-box li i {
  margin-right: 5px;
}
#section05 .btn {
  max-width: 200px;
  width: 100%;
  box-sizing: border-box;
}
@media (max-width: 1100px) {
  #section05 .price-box{
    display: flex;
    flex-wrap: wrap;
  }
#section05 .price-box .sub,
#section05 .price-box .main{
  width: 47%;
  }
#section05 .price-box .notice{
  width: 100%;
  }
}
@media (max-width: 768px) {
  #section05 .price-box{
        gap: 20px;
  }
#section05 .price-box .sub,
#section05 .price-box .main{
  width: 100%;
  }
  #section05 .price-box .notice {
    padding-left: 20px;
        padding-top: 10px;
}
}

/* section06
-----------------------------------------------*/
#section06 h2 {
  margin-bottom: 40px;
}
#section06 ul {
  margin: 0 auto;
  max-width: 900px;
}
#section06 li {
  border-top: 1px solid #ccc;
  text-align: left;
  cursor: pointer;
  position: relative;
}
#section06 li:last-child {
  border-bottom: 1px solid #ccc;
}
#section06 li::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000;
  border-right: solid 2px #000;
  position: absolute;
  top: 40px;
  right: 40px;
  transform: translate(0%, 50%) rotate(135deg);
  transition: bottom .5s, transform .5s;
}
#section06 li.active::after {
  transform: translate(0%, 50%) rotate(-45deg);
}
#section06 li h3 {
  font-size: 18px;
  line-height: 1.5;
  padding: 35px 60px;
  transition: padding .5s;
  text-indent: -1.5em;
}
#section06 li h3::before {
  content: "Q.";
  padding-right: 10px;
}
#section06 li p {
  padding: 0 60px 35px;
  transition: padding .5s;
  text-indent: -1.5em;
  display: none;
  transition: none;
  letter-spacing: 0;
}
#section06 li p::before {
  content: "A.";
  padding-right: 10px;
}
@media (max-width: 768px) {
  #section06 li h3{
    padding: 15px 40px;
        font-size: 16px;
  }
  #section06 li p{
    padding: 0 20px 15px 40px;
  }
  #section06 li::after{
    top: 15px;
    right: 20px;
  }
}
/* cta
-----------------------------------------------*/
.cta {
  background: #0a1a3a;
  color: #fff;
  text-align: center;
}
.cta .inner {
  max-width: 980px;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cta h2 {
  font-size: 24px;
}
.cta h2, .cta p {
  text-align: left;
}
.cta .btn {
  max-width: 300px;
  width: 100%;
  box-sizing: border-box;
  margin: 0;
}
.cta .btn-primary {
  color: #000;
  background: #fff;
  font-weight: bold;
  margin-top: 0;
}
@media (max-width: 768px) {
  .cta .inner{
    flex-wrap: wrap;    
    padding: 40px 20px;
  }
  .cta .btn,
  .cta .txt{
    width: 100%;
  }
  .cta h2 {
    font-size: 20px;
    text-align: center;
}
  .cta p {
    text-align: center;
}
  .cta .inner > .btn{
    margin: 20px auto 0;
  }
}
/* grid-4
-----------------------------------------------*/
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.card {
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}
.grid-4 .card h3 {
  margin-bottom: 8px;
}
@media (max-width: 1120px) {
.grid-4 {
  grid-template-columns: repeat(2, 1fr);
}
}
/* footer
-----------------------------------------------*/
footer {
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  font-weight: bold;
  position: relative;
  padding-left: 60px;
  line-height: normal;
}
footer .logo::before {
  position: absolute;
  display: block;
  content: "";
  width: 48px;
  height: 25px;
  background: url("img/img-logo.svg")no-repeat;
  background-size: cover;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
footer .logo span {
  font-size: 12px;
  color: #666;
}
footer .copy ul {
  display: flex;
}
footer .copy p, footer .copy li a {
  font-size: 12px;
  line-height: 1.833;
  color: #333;
  text-decoration: none;
}
@media (max-width: 768px) {
footer {
  padding: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}
footer .logo {
padding-left: 45px;
        font-size: 14px;
        line-height: 1;
  width: 100%;
}
footer .logo::before {
        width: 35px;
        height: 18px;
}
footer .logo span {
        font-size: 10px;
}
footer .copy ul {
  flex-wrap: wrap;
          margin-bottom: 0;
}
}
