@charset "utf-8";

:root {
  --color-main: #333333;
  --color-green: #3AA18A;
  --color-orange: #F69F09;
  --font-sans: "Noto Sans JP", sans-serif;
}

* {
  box-sizing: border-box;
  font-feature-settings: "palt";
  line-height: 1;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: min(6rem, 60px);
  scrollbar-width: none;
  -ms-overflow-style: none;
  font-size: calc(100vw / 114);
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

html::-webkit-scrollbar {
}

body, h1, h2, h3, h4, h5, p {
  margin: 0;
}

body {
  font-family: var(--font-sans);
  color: var(--color-main);
  letter-spacing: .1em;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.active {
  height: 100%;
  overflow: hidden;
}

p {
  text-align: justify;
}

img {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  vertical-align: bottom;
}

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

a {
  text-decoration: none;
  transition: opacity .8s;
  color: inherit;
}

@media (hover: hover) {
  a:hover {
    opacity: 0.6;
  }
}

a[href^="#!"] {
  pointer-events: none;
}

span {
  display: inline-block;
}

dl, dt, dd {
  all: unset;
  display: block;
}

button {
  all: unset;
  display: block;
}

table {
  border-collapse: collapse;
}

.sp_obj {
  display: none !important;
}

@media (max-width: 799px) {

  html {
    scroll-padding-top: 5rem;
    font-size: calc(100vw / 37.5);
  }

  .sp_obj {
    display: block !important;
  }
  
  .pc_obj {
    display: none !important;
  }
}

/* ----- common ----- */

.bg {
}

.no_mt {
  margin-top: 0 !important;
}

.container {
  max-width: 1040px;
  margin: 0 auto;
  padding: min(5rem, 50px) 20px;
}

div.h2_sub {
  margin: 0 auto;
  width: min(20rem, 200px);
  height: min(4.2rem, 42px);
  background-color: #fff;
  border: min(0.2rem, 2px) solid var(--color-green);
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: min(2rem, 20px);
  font-weight: 700;
  color: var(--color-green);
  position: relative;
}

div.h2_sub::before {
  content: "";
  display: block;
  position: absolute;
  width: min(0.2rem, 2px);
  height: min(2rem, 20px);
  background-color: var(--color-green);
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  transform: translateY(100%);
}

h2.index_ttl {
  margin-top: min(2rem, 20px);
  font-size: min(4rem, 40px);
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

h2.index_ttl span {
  color: var(--color-green);
}

@media (max-width: 799px) {
  .container {
    padding: 6rem 2rem;
  }

  div.h2_sub {
    width: 16rem;
    height: 3.6rem;
    border: .2rem solid var(--color-green);
    font-size: 1.6rem;
  }
  
  div.h2_sub::before {
    width: .2rem;
    height: 1.5rem;
  }
  
  h2.index_ttl {
    margin-top: 2rem;
    font-size: 2.4rem;
  }
}

/* ----- header ----- */

header {
  position: fixed;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 99;
  transition: all .8s;
}

header div.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: min(1rem, 10px) 20px;
}

header h1 a {
  display: block;
  width: min(16.5rem, 165px);
}

header nav.grand_nav ul.grand_nav_list {
  display: flex;
  gap: min(1.5rem, 15px);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item a {
  width: min(24rem, 240px);
  height: min(5.4rem, 54px);
  border-radius: min(0.5rem, 5px);
  padding: min(1.5rem, 15px);
  padding-right: min(6rem, 60px);
  display: flex;
  align-items: center;
  gap: min(0.4rem, 4px);
  background-color: var(--color-orange);
  color: #fff;
  position: relative;
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a {
  background-color: #fff;
  border: min(0.2rem, 2px) solid  var(--color-green);
  color: var(--color-green);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item a::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_square_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(3rem, 30px);
  height: min(2.8rem, 28px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-50%);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a::after {
  background-image: url(../img/icon_arrow_square_green.png);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item a div.icon_area {
  width: min(2.8rem, 28px);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item a div.link_txt {
  flex: 1;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: min(0.2rem, 2px);
  justify-content: center;
  font-size: min(1.6rem, 16px);
  font-weight: 700;
  border-right: min(0.1rem, 1px) solid #fff;
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a div.link_txt {
  border-right: min(0.1rem, 1px) solid var(--color-green);
}

header nav.grand_nav ul.grand_nav_list li.grand_nav_item a div.link_txt span {
  font-size: min(1.2rem, 12px);
}

@media (max-width: 799px) {
  header div.container {
    padding: .5rem 1rem;
  }
  
  header h1 a {
    width: 12rem;
  }
  
  header nav.grand_nav ul.grand_nav_list {
    display: flex;
    gap: 0.4rem;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item a {
    width: 10rem;
    height: 4rem;
    border-radius: 0.5rem;
    padding: 0.4rem;
    padding-right: 0.4rem;
    gap: 0;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a {
    border: .2rem solid  var(--color-green);
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item a::after {
    display: none;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a::after {
    content: none;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item a div.link_txt {
    flex: auto;
    width: 100%;
    gap: 0.2rem;
    font-size: 1.4rem;
    border-right: none;
    align-items: center;
    letter-spacing: 0;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item:last-child a div.link_txt {
    border-right: none;
  }
  
  header nav.grand_nav ul.grand_nav_list li.grand_nav_item a div.link_txt span {
    font-size: 0.8rem;
  }
}

/* ----- mv ----- */

main.index section.mv {
  background-image: url(../img/bg_mv.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.mv div.container {
  padding-top: min(5rem, 50px);
  display: flex;
  align-items: start;
  gap: min(2.0rem, 20px);
  max-width: 1240px;
  margin: 0 auto;
}

main.index section.mv div.mv_contents {
  width: min(66rem, 660px);
}

main.index section.mv div.mv_contents div.mv_sub_ttl {
  font-size: min(4.5rem, 45px);
  font-weight: 600;
  line-height: 1.4;
}

main.index section.mv div.mv_contents div.mv_sub_ttl span {
  color: var(--color-green);
}

main.index section.mv div.mv_contents h2.mv_ttl {
  margin-top: min(2rem, 20px);
  width: fit-content;
  font-size: min(5.5rem, 55px);
  font-weight: 700;
  padding: min(1.0rem, 10px);
  background: linear-gradient(to right, #226581, #3AA18A);
  color: #fff;
}

main.index section.mv div.mv_contents ul.mv_list {
  margin-top: min(4rem, 40px);
  width: min(56rem, 560px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

main.index section.mv div.mv_contents ul.mv_list li.mv_item {
  font-size: min(2rem, 20px);
  font-weight: 500;
  line-height: 1.6;
  display: flex;
  align-items: start;
  gap: min(1.4rem, 14px);
  padding: min(1rem, 10px) 0;
  border-bottom: min(0.2rem, 2px) dashed #3AA18A;
  letter-spacing: 0em;
}

main.index section.mv div.mv_contents ul.mv_list li.mv_item:first-child {
  padding-top: 0;
}

main.index section.mv div.mv_contents ul.mv_list li.mv_item::before {
  content: "";
  background-image: url(../img/icon_checkmark.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  flex-shrink: 0;
  transform: translateY(10%);
}

main.index section.mv div.mv_contents div.mv_btn_area {
  margin-top: min(6rem, 60px);
  width: fit-content;
  display: flex;
  gap: min(1.5rem, 15px);
}

main.index section.mv form.pc_obj {
  width: min(60rem, 600px);
  background-color: #fff;
  padding: 0 0 min(3rem, 30px);
  border-radius: 20px;
}

main.index section.mv form.pc_obj h2.form_ttl {
  width: 100%;
  height: min(7.4rem, 74px);
  background-color: var(--color-green);
  color: #fff;
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 20px 20px 0 0;
}

main.index section.mv form.pc_obj iframe {
  background-color: #fff;
  padding: min(2rem, 20px);
}

@media (max-width: 799px) {
  main.index section.mv {
    background-image: url(../img/bg_mv.png);
    background-size: cover;
    background-position: left center;
    background-repeat: no-repeat;
  }
  
  main.index section.mv div.container {
    padding-top: 6rem;
  }
  
  main.index section.mv div.mv_contents {
    width: 100%;
  }
  
  main.index section.mv div.mv_contents div.mv_sub_ttl {
    font-size: 2.8rem;
    line-height: 1.4;
  }
  
  main.index section.mv div.mv_contents h2.mv_ttl {
    margin-top: 2rem;
    font-size: 3.0rem;
    padding: 1rem;
  }
  
  main.index section.mv div.mv_contents ul.mv_list {
    margin-top: 2rem;
    width: 100%;
  }
  
  main.index section.mv div.mv_contents ul.mv_list li.mv_item {
    font-size: 1.6rem;
    line-height: 1.6;
    gap: 0.4rem;
    padding: 1rem 0;
    border-bottom: 0.2rem dashed #3AA18A;
    letter-spacing: 0em;
  }
  
  main.index section.mv div.mv_contents ul.mv_list li.mv_item::before {
    width: 2rem;
    height: 2rem;
    transform: translateY(15%);
  }
  
  main.index section.mv div.mv_contents div.mv_btn_area {
    margin-top: 4rem;
    width: 100%;
    flex-direction: column;
    gap: 1rem;
  }
}


/* ----- */

a.common_btn {
  width: min(30rem, 300px);
  height: min(6rem, 60px);
  border-radius: min(0.5rem, 5px);
  padding: min(1.5rem, 15px);
  padding-right: min(6rem, 60px);
  display: flex;
  align-items: center;
  gap: min(0.4rem, 4px);
  position: relative;
}

a.common_btn.orange {
  background-color: var(--color-orange);
  color: #fff;
}

a.common_btn.orange::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_square_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-50%);
}

a.common_btn.white {
  background-color: #fff;
  border: min(0.2rem, 2px) solid  var(--color-green);
  color: var(--color-green);
}

a.common_btn.white::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_square_green.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-50%);
}

a.common_btn div.btn_icon {
  width: min(2.8rem, 28px);
  flex-shrink: 0;
}

a.common_btn div.btn_txt {
  flex: 1;
  height: 100%;
  font-size: min(2rem, 20px);
  font-weight: 700;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: min(0.2rem, 2px);
  border-right: min(0.1rem, 1px) solid #fff;
}

a.common_btn.white div.btn_txt {
  border-right: min(0.1rem, 1px) solid var(--color-green);
}

a.common_btn div.btn_txt span {
  font-size: min(1.2rem, 12px);
}

@media (max-width: 799px) {
  a.common_btn {
    margin: 0 auto;
    width: 30rem;
    height: 6rem;
    border-radius: 0.5rem;
    padding: 1.5rem;
    padding-right: 6rem;
    gap: 0.4rem;
  }
  
  a.common_btn.orange::after {
    width: 3rem;
    height: 3rem;
  }
  
  a.common_btn.white {
    border: 0.2rem solid  var(--color-green);
  }
  
  a.common_btn.white::after {
    width: 3rem;
    height: 3rem;
  }
  
  a.common_btn div.btn_icon {
    width: 2.8rem;
  }
  
  a.common_btn div.btn_txt {
    font-size: 2rem;
    gap: 0.2rem;
    border-right: 0.1rem solid #fff;
  }
  
  a.common_btn.white div.btn_txt {
    border-right: 0.1rem solid var(--color-green);
  }
  
  a.common_btn.white div.btn_txt span {
    font-size: 1.2rem;
  }
}

/* ----- worries ----- */

main.index section.worries {
  background-image: url(../img/bg_worries.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.worries p.worries_lead {
  margin-top: min(2rem, 20px);
  font-size: min(2.3rem, 23px);
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

main.index section.worries p.worries_lead span {
  color: var(--color-green);
}

main.index section.worries p.worries_lead small {
  font-size: min(1.2rem, 12px);
  font-weight: 400;
}

main.index section.worries div.worries_note_wrap {
  margin-top: min(4rem, 40px);
  display: flex;
  flex-direction: column;
  gap: min(2rem, 20px);
}

main.index section.worries p.worries_note {
  font-size: min(1.2rem, 12px);
  font-weight: 400;
  text-align: center;
}

main.index section.worries p.worries_note a {
  display: inline;
  margin-top: min(2rem, 20px);
  overflow-wrap: break-word;
  word-break: break-all;
  word-wrap: break-word;
}

main.index section.worries div.worries_image {
  margin: min(4rem, 40px) auto 0;
  width: min(50rem, 500px);
}

@media (max-width: 799px) {
  main.index section.worries {
    background-image: url(../img/bg_worries.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  main.index section.worries p.worries_lead {
    margin-top: 1rem;
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: left;
  }
  
  main.index section.worries p.worries_lead small {
    font-size: 1.1rem;
  }
  
  main.index section.worries div.worries_note_wrap {
    margin-top: 2rem;
    gap: 1rem;
  }
  
  main.index section.worries p.worries_note {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: left;
  }
  
  main.index section.worries p.worries_note a {
    margin-top: .4rem;
    font-size: 1.1rem;
    line-height: 1.6rem;
  }

  main.index section.worries div.worries_image {
    margin: 4rem -2rem 0;
    width: calc(100% + 4rem);
  }
}

/* ----- */

main.index section.worries div.h2_sub {
  margin-top: min(8rem, 80px);
}

@media (max-width: 799px) {
  main.index section.solution div.h2_sub {
    margin-top: 4rem;
  }
}

/* ----- */

main.index section.worries div.worries_box {
  margin-top: min(8rem, 80px);
  display: flex;
  flex-direction: column;
  gap: min(20rem, 200px);
  position: relative;
  z-index: auto;
}

main.index section.worries div.worries_box p.solution_txt {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
  right: 0;
  width: 100%;
  height: min(5rem, 50px);
  background-color: var(--color-orange);
  border-radius: 99px;
  border: min(0.2rem, 2px) solid #fff;
  font-size: min(2rem, 20px);
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

main.index section.worries div.worries_box div.worries_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1rem, 10px);
  position: relative;
  z-index: 1;
}

main.index section.worries div.worries_box div.worries_wrap:not(.solution_wrap)::after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrows_down_green.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: min(20rem, 200px);
  left: 0;
  bottom: 0;
  transform: translateY(90%);
  z-index: -1;
}

main.index section.worries div.worries_box div.worries_wrap div.worries_item {
  padding: min(8rem, 80px) min(1rem, 10px) min(3rem, 30px);
  background-color: #fff;
  position: relative;
}

main.index section.worries div.worries_box div.worries_wrap.solution_wrap div.worries_item {
  padding: min(2rem, 20px);
}

main.index section.worries div.worries_box div.worries_wrap div.worries_item div.icon_area {
  position: absolute;
  width: min(10rem, 100px);
  left: 0;
  right: 0;
  margin: auto;
  top: 0;
  transform: translateY(-50%);
}

main.index section.worries div.worries_box div.worries_wrap div.worries_item div.worries_item_txt {
  font-size: min(1.6rem, 16px);
  font-weight: 600;
  text-align: center;
  line-height: 1.6;
}

main.index section.worries div.worries_box div.worries_wrap.solution_wrap div.worries_item div.worries_item_txt {
  text-align: left;
}

main.index section.worries div.worries_box div.worries_wrap div.worries_item div.worries_item_txt span {
  color: var(--color-green);
  display: inline;
}

@media (max-width: 799px) {
  main.index section.worries div.worries_box {
    margin-top: 4rem;
    display: block;
  }
  
  main.index section.worries div.worries_box p.solution_txt {
    position: relative;
    margin-top: 2rem;
    width: 100%;
    height: auto;
    border-radius: 1.2rem;
    border: .2rem solid #fff;
    font-size: 1.6rem;
    display: block;
    padding: 1rem;
    text-align: left;
  }

  main.index section.worries div.worries_box div.worries_wrap {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }

  main.index section.worries div.worries_box div.worries_wrap.solution_wrap {
    margin-top: 2rem;
  }
  
  main.index section.worries div.worries_box div.worries_wrap:not(.solution_wrap)::after {
    content: none;
  }
  
  main.index section.worries div.worries_box div.worries_wrap:not(.solution_wrap) div.worries_item {
    padding: 1rem 0.5rem;
    display: grid;
    grid-template-columns: 6rem 1fr;
    align-items: center;
    gap: 2rem;
    position: relative;
  }


  main.index section.worries div.worries_box div.worries_wrap:not(.solution_wrap) div.worries_item:last-of-type::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/icon_arrow_down_green.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 2rem;
    height: 8rem;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 0;
    transform: translateY(100%);
    z-index: -1;
  }
  
  main.index section.worries div.worries_box div.worries_wrap.solution_wrap div.worries_item {
    padding: 1rem;
  }
  
  main.index section.worries div.worries_box div.worries_wrap div.worries_item div.icon_area {
    position: static;
    width: 100%;
    transform: none;
  }
  
  main.index section.worries div.worries_box div.worries_wrap div.worries_item div.worries_item_txt {
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.4;
  }
}

/* ----- price ----- */

main.index section.price {
  background-image: url(../img/bg_price.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.price p.price_lead {
  margin-top: min(4rem, 40px);
  font-size: min(2rem, 20px);
  font-weight: 600;
  text-align: center;
  line-height: 1.8;
}

@media (max-width: 799px) {
  main.index section.price {
    background-image: url(../img/bg_price.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }

  main.index section.price p.price_lead {
    margin-top: 2rem;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
  }
}

/* ----- */

main.index section.price table.price_table {
  margin-top: min(4rem, 40px);
  width: 100%;
  border: min(0.1rem, 1px) solid var(--color-green);
}

main.index section.price table.price_table thead tr th {
  width: 35%;
  height: min(5rem, 50px);
  background-color: #eee;
  font-size: min(2rem, 20px);
  font-weight: 500;
  border-bottom: min(0.1rem, 1px) solid var(--color-green);
  border-right: min(0.1rem, 1px) solid var(--color-green);
}

main.index section.price table.price_table thead tr th:last-of-type {
  border-right: none;
}

main.index section.price table.price_table thead tr th.second, 
main.index section.price table.price_table thead tr th.third {
  width: 15%;
}

main.index section.price table.price_table tbody tr {
  border-bottom: min(0.1rem, 1px) solid var(--color-green);
}

main.index section.price table.price_table tbody tr th, 
main.index section.price table.price_table tbody tr td {
  background-color: #fff;
  height: min(7rem, 70px);
  padding: min(1rem, 10px);
  font-size: min(2rem, 20px);
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 0.04em;
}

main.index section.price table.price_table tbody tr th {
  background-color: var(--color-orange);
  color: #fff;
}

main.index section.price table.price_table tbody tr td {
  border-left: min(0.1rem, 1px) solid var(--color-green);
}

main.index section.price table.price_table tbody tr td.price {
  text-align: right;
}

main.index section.price p.price_note {
  margin-top: min(1rem, 10px);
  font-size: min(1.6rem, 16px);
  color: #fff;
}

main.index section.price a.common_btn {
  margin: min(4rem, 40px) auto 0;
}

@media (max-width: 799px) {
  main.index section.price table.price_table {
    margin-top: 2rem;
    margin-left: -1.5rem;
    margin-right: -1.5rem;
    width: calc(100% + 3rem);
    border: .1rem solid var(--color-green);
  }
  
  main.index section.price table.price_table thead tr th {
    width: 35%;
    height: 4rem;
    font-size: 1.2rem;
    border-bottom: .1rem solid var(--color-green);
    border-right: .1rem solid var(--color-green);
  }
  
  main.index section.price table.price_table thead tr th.second, 
  main.index section.price table.price_table thead tr th.third {
    width: 15%;
  }
  
  main.index section.price table.price_table tbody tr {
    border-bottom: .1rem solid var(--color-green);
  }
  
  main.index section.price table.price_table tbody tr th, 
  main.index section.price table.price_table tbody tr td {
    height: 6rem;
    padding: 1rem 0.4rem;
    font-size: 1.2rem;
  }
  
  main.index section.price table.price_table tbody tr td {
    border-left: .1rem solid var(--color-green);
  }
  
  main.index section.price p.price_note {
    margin-top: 1rem;
    font-size: 1.3rem;
  }
  
  main.index section.price a.common_btn {
    margin: 4rem auto 0;
  }
}


/* ----- target ----- */

main.index section.target {
  background-color: #F0FAF8;
}

main.index section.target div.target_wrap {
  margin: min(4rem, 40px) auto 0;
  width: fit-content;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2rem, 20px) min(1rem, 10px);
}

main.index section.target div.target_wrap div.target_item {
  margin: 0 auto;
  width: min(18rem, 180px);
  height: min(18rem, 180px);
  border-radius: 50%;
  background-color: #fff;
  border: min(0.2rem, 2px) solid var(--color-green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: min(1rem, 10px);
}

main.index section.target div.target_wrap div.target_item div.icon_area {
  margin: 0 auto;
  width: min(6.5rem, 65px);
}

main.index section.target div.target_wrap div.target_item h3.target_ttl {
  font-size: min(1.6rem, 16px);
  font-weight: 600;
  text-align: center;
  color: var(--color-green);
}

@media (max-width: 799px) {
  main.index section.target div.target_wrap {
    margin-top: 4rem;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 0;
  }
  
  main.index section.target div.target_wrap div.target_item {
    width: 15rem;
    height: 15rem;
    border: .2rem solid var(--color-green);
    gap: 0.5rem;
  }
  
  main.index section.target div.target_wrap div.target_item div.icon_area {
    width: 5rem;
  }
  
  main.index section.target div.target_wrap div.target_item h3.target_ttl {
    font-size: 1.4rem;
  }
}

/* ----- flow ----- */

main.index section.flow {
  background-image: url(../img/bg_flow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.flow div.flow_wrap {
  margin-top: min(4rem, 40px);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: min(2rem, 20px);
}

main.index section.flow div.flow_wrap div.flow_item {
  width: 100%;
  height: min(17rem, 170px);
  background-color: #F0FAF8;
  padding: min(2rem, 20px);
  padding-left: 0;
  display: grid;
  grid-template-columns: min(10rem, 100px) 1fr;
  align-items: center;
  gap: 0;
  position: relative;
  z-index: auto;
  border-radius: min(1rem, 10px);
}

main.index section.flow div.flow_wrap div.flow_item::after {
  content: "";
  display: block;
  position: absolute;
  width: min(0.9rem, 9px);
  height: min(13rem, 130px);
  background-color: #C7DFE1;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: translate(500%, 50%);
  z-index: 1;
}

main.index section.flow div.flow_wrap div.flow_item:last-of-type::after {
  content: none;
}

main.index section.flow div.flow_wrap div.flow_item div.num {
  width: 100%;
  height: 100%;
  padding-top: min(2rem, 20px);
  text-align: center;
  border-right: min(0.1rem, 1px) solid var(--color-green);
  font-size: min(3.0rem, 30px);
  font-weight: 600;
  color: var(--color-green);
}

main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area {
  padding-left: min(2rem, 20px);
  display: flex;
  flex-direction: column;
  gap: min(1rem, 10px);
  position: relative;
}

main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area h3.flow_ttl {
  font-size: min(2.0rem, 20px);
  font-weight: 600;
  color: var(--color-green);
}

main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area p.flow_txt {
  font-size: min(1.6rem, 16px);
  line-height: 1.8;
}

main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area div.icon_area {
  position: absolute;
  width: min(12.4rem, 124px);
  height: min(12.4rem, 124px);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 799px) {
  main.index section.flow {
    background-image: url(../img/bg_flow.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  main.index section.flow div.flow_wrap {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  
  main.index section.flow div.flow_wrap div.flow_item {
    height: 15rem;
    padding: 1rem;
    grid-template-columns: 4rem 1fr;
    gap: 0.5rem;
  }
  
  main.index section.flow div.flow_wrap div.flow_item::after {
    width: 0.8rem;
    height: 11rem;
    transform: translate(300%, 35%);
  }
  
  main.index section.flow div.flow_wrap div.flow_item div.num {
    padding-top: 1rem;
    border-right: .1rem solid var(--color-green);
    font-size: 2.4rem;
  }
  
  main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area {
    padding-left: 1rem;
    gap: 0.5rem;
  }
  
  main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area h3.flow_ttl {
    font-size: 1.6rem;
  }
  
  main.index section.flow div.flow_wrap div.flow_item div.flow_txt_area p.flow_txt {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/* ----- download ----- */

main.index section.download {
  background-color: #3AA18A;
}

main.index section.download div.download_box {
  padding: min(8rem, 80px) min(2rem, 20px);
  background-color: #fff;
}

main.index section.download div.download_box ul.download_list {
  margin: min(4rem, 40px) auto 0;
  width: min(58rem, 580px);
  display: flex;
  flex-direction: column;
  gap: 0;
}

main.index section.download div.download_box ul.download_list li.download_item {
  font-size: min(2.0rem, 20px);
  font-weight: 600;
  padding: min(2rem, 20px) 0;
  border-top: min(0.2rem, 2px) dashed var(--color-green);
  display: flex;
  align-items: start;
  gap: min(1rem, 10px);
}

main.index section.download div.download_box ul.download_list li.download_item:before {
  content: "";
  background-image: url(../img/icon_checkmark.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  transform: translateY(20%);
}

main.index section.download div.download_box ul.download_list li.download_item:last-of-type {
  border-bottom: min(0.2rem, 2px) dashed var(--color-green);
}

main.index section.download div.download_box ul.download_list li.download_item span {
  line-height: 1.6;
}

main.index section.download div.download_box ul.download_list li.download_item span span {
  color: var(--color-green);
  display: inline;
}

main.index section.download div.download_box div.download_image {
  margin-top: min(4rem, 40px);
}

main.index section.download div.download_box a.common_btn {
  margin: min(2rem, 20px) auto 0;
}

@media (max-width: 799px) {
  main.index section.download div.download_box {
    padding: 4rem 2rem;
  }
  
  main.index section.download div.download_box ul.download_list {
    margin: 4rem auto 0;
    width: 100%;
  }
  
  main.index section.download div.download_box ul.download_list li.download_item {
    font-size: 1.6rem;
    padding: 1.5rem 0;
    border-top: 0.2rem dashed var(--color-green);
    gap: 0.5rem;
  }
  
  main.index section.download div.download_box ul.download_list li.download_item:before {
    width: 2.5rem;
    height: 2.5rem;
    transform: translateY(20%);
    flex-shrink: 0;
  }
  
  main.index section.download div.download_box ul.download_list li.download_item:last-of-type {
    border-bottom: .2rem dashed var(--color-green);
  }
  
  main.index section.download div.download_box div.download_image {
    margin-top: 2rem;
  }
  
  main.index section.download div.download_box a.common_btn {
    margin: 2rem auto 0;
  }
}

/* ----- test ----- */

main.index section.test {
  background-image: url(../img/bg_test.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.test p.test_lead {
  margin-top: min(2rem, 20px);
  font-size: min(2.0rem, 20px);
  font-weight: 700;
  text-align: center;
}

main.index section.test div.test_wrap {
  margin-top: min(4rem, 40px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(1rem, 10px);
}

main.index section.test div.test_wrap div.test_item {
  border-radius: min(1rem, 10px);
  background-image: url(../img/bg_test_item01.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: min(6.5rem, 65px) min(2rem, 20px);
  overflow: hidden;
  color: #fff;
}

main.index section.test div.test_wrap div.test_item:nth-of-type(2) {
  background-image: url(../img/bg_test_item02.png);
}

main.index section.test div.test_wrap div.test_item:nth-of-type(3) {
  background-image: url(../img/bg_test_item03.png);
}

main.index section.test div.test_wrap div.test_item h3.test_ttl {
  margin: 0 auto;
  width: fit-content;
  font-size: min(3.0rem, 30px);
  font-weight: 700;
  padding-bottom: min(1rem, 10px);
  border-bottom: min(0.1rem, 1px) solid #fff;
}

main.index section.test div.test_wrap div.test_item p.test_txt {
  margin-top: min(2rem, 20px);
  font-size: min(1.6rem, 16px);
  line-height: 1.8;
  text-align: center;
}

@media (max-width: 799px) {
  main.index section.test {
    background-image: url(../img/bg_test.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  main.index section.test p.test_lead {
    margin-top: 2rem;
    font-size: 1.6rem;
    font-weight: 700;
    line-height: 1.4;
    text-align: left;
  }
  
  main.index section.test div.test_wrap {
    margin-top: 4rem;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  
  main.index section.test div.test_wrap div.test_item {
    border-radius: .5rem;
    padding: 2rem;
  }

  main.index section.test div.test_wrap div.test_item h3.test_ttl {
    margin: 0 auto;
    width: fit-content;
    font-size: 2rem;
    padding-bottom: 1rem;
    border-bottom: .1rem solid #fff;
  }
  
  main.index section.test div.test_wrap div.test_item p.test_txt {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}

/* ----- engineer ----- */

main.index section.engineer {
  background: linear-gradient(135deg, #226581, #3AA18A);
}

main.index section.engineer div.container {
  position: relative;
}

main.index section.engineer h2.index_ttl {
  color: #fff;
}

main.index section.engineer h2.index_ttl span {
  color: #C8EDE9;
}

main.index section.engineer p.engineer_lead {
  margin-top: min(2rem, 20px);
  font-size: min(1.6rem, 16px);
  text-align: center;
  color: #fff;
}

main.index section.engineer div.engineer_contents {
  width: 50%;
  margin-top: min(8rem, 80px);
  margin-left: auto;
  color: #fff;
}

main.index section.engineer div.engineer_contents h3.engineer_ttl {
  font-size: min(2.0rem, 20px);
  font-weight: 700;
}

main.index section.engineer div.engineer_contents div.engineer_item_wrap {
  margin-top: min(2rem, 20px);
  display: flex;
  flex-direction: column;
  gap: min(2rem, 20px);
}

main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item {
  display: flex;
  flex-direction: column;
  gap: min(1rem, 10px);
}

main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item h4.engineer_ttl {
  font-size: min(1.6rem, 16px);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: min(1rem, 10px);
}

main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item h4.engineer_ttl::before {
  content: "";
  background-image: url(../img/icon_arrow_enginner_green.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: min(1rem, 10px);
  height: min(1rem, 10px);
}

main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item p.engineer_txt {
  margin-left: 1em;
  font-size: min(1.6rem, 16px);
  line-height: 1.6;
}

main.index section.engineer div.engineer_image {
  position: absolute;
  width: min(50rem, 500px);
  left: 0;
  bottom: 0;
  transform: translateY(20%);
}

@media (max-width: 799px) {
  main.index section.engineer div.container {
    padding-bottom: 6rem;
  }
  
  main.index section.engineer p.engineer_lead {
    margin-top: 2rem;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.6;
  }
  
  main.index section.engineer div.engineer_contents {
    width: 100%;
    margin-top: 4rem;
    margin-left: 0;
  }
  
  main.index section.engineer div.engineer_contents h3.engineer_ttl {
    font-size: 2rem;
  }
  
  main.index section.engineer div.engineer_contents div.engineer_item_wrap {
    margin-top: 2rem;
    gap: 2rem;
  }
  
  main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item {
    gap: 1rem;
  }
  
  main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item h4.engineer_ttl {
    font-size: 1.4rem;
    gap: 0.5rem;
  }
  
  main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item h4.engineer_ttl::before {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
  }
  
  main.index section.engineer div.engineer_contents div.engineer_item_wrap div.engineer_item p.engineer_txt {
    margin-left: 1em;
    font-size: 1.4rem;
    line-height: 1.4;
  }
  
  main.index section.engineer div.engineer_image {
    position: static;
    margin-top: 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    width: calc(100% + 4rem);
    height: 20rem;
    transform: none;
  }

  main.index section.engineer div.engineer_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}

/* ----- cta ----- */

main.index section.cta {
  background-image: url(../img/bg_cta.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.cta div.container {
  padding-top: min(30rem, 300px);
  /* height: min(100rem, 1000px); */
  height: auto;
}

main.index section.cta h2.cta_ttl {
  font-size: min(4rem, 40px);
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
}

main.index section.cta h2.cta_ttl span {
  color: #FFEB00;
}

main.index section.cta p.cta_txt {
  margin-top: min(2rem, 20px);
  font-size: min(1.6rem, 16px);
  line-height: 1.6;
  color: #fff;
}

@media (max-width: 799px) {
  main.index section.cta {
    background-image: url(../img/bg_cta_sp.png);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
  }
  
  main.index section.cta div.container {
    padding-top: 6rem;
    height: auto;
  }
  
  main.index section.cta h2.cta_ttl {
    font-size: 2.4rem;
    line-height: 1.4;
  }
  
  main.index section.cta p.cta_txt {
    margin-top: 2rem;
    font-size: 1.4rem;
    line-height: 1.6;
  }
}

/* ----- */

main.index section.cta div.cta_link_area {
  margin: min(23rem, 230px) auto 0;
  width: min(62.5rem, 625px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: min(3rem, 30px) min(2rem, 20px);
}

main.index section.cta div.cta_link_area a.common_btn {
  position: relative;
}

main.index section.cta div.cta_link_area a.common_btn.green {
  background-color: var(--color-green);
  color: #fff;
}

main.index section.cta div.cta_link_area a.common_btn.green:after {
  content: "";
  display: block;
  position: absolute;
  background-image: url(../img/icon_arrow_square_orange.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  width: min(3rem, 30px);
  height: min(3rem, 30px);
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
  transform: translateX(-50%);
}

main.index section.cta div.cta_link_area a.common_btn span {
  position: absolute;
  width: min(13rem, 130px);
  height: min(2.6rem, 26px);
  background-color: #fff;
  border: min(0.1rem, 1px) solid var(--color-orange);
  font-size: min(1.2rem, 12px);
  font-weight: 700;
  color: var(--color-orange);
  border-radius: 99px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(-50%);
}

main.index section.cta div.cta_link_area a.common_btn.green span {
  background-color: #fff;
  color: var(--color-green);
  border: min(0.1rem, 1px) solid var(--color-green);
}

@media (max-width: 799px) {
  main.index section.cta div.cta_link_area {
    margin: 8rem auto 0;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem;
  }
  
  main.index section.cta div.cta_link_area a.common_btn.green {
    background-color: var(--color-green);
    color: #fff;
    border: min(0.2rem, 2px) solid #fff;
  }
  
  main.index section.cta div.cta_link_area a.common_btn.green:after {
    width: 3rem;
    height: 3rem;
    transform: translateX(-50%);
  }
  
  main.index section.cta div.cta_link_area a.common_btn span {
    width: 13rem;
    height: 2.6rem;
    border: 1px solid var(--color-orange);
    font-size: 1.2rem;
  }
  
  main.index section.cta div.cta_link_area a.common_btn.green span {
    border: 1px solid var(--color-green);
  }
}

/* ----- contact_form ----- */

main.index section.contact_form div.container {
  padding-bottom: 0;
}

main.index div.contact_area {
  margin: 0 auto;
}

/* ----- support ----- */

main.index section.support {
  background-image: url(../img/bg_flow.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

main.index section.support p.support_lead {
  margin-top: min(4rem, 40px);
  font-size: min(2rem, 20px);
  font-weight: 600;
  line-height: 2.2;
}

main.index section.support div.support_image {
  margin: min(4rem, 40px) auto 0;
  width: 85%;
}

main.index section.support dl.company_dl {
    margin: min(6rem, 60px) auto 0;
    width: min(76rem, 760px);
    display: flex;
    flex-direction: column;
    gap: min(2.8rem, 28px);
    color: #000;
}

main.index section.support dl.company_dl div.company_wrap {
    display: flex;
    align-items: start;
    gap: min(3rem, 30px);
}

main.index section.support dl.company_dl div.company_wrap dt.company_dt {
    width: min(20rem, 200px);
    font-size: min(1.6rem, 16px);
    font-weight: 400;
    text-align: right;
    line-height: 1.8;
}

main.index section.support dl.company_dl div.company_wrap dd.company_dd {
    flex: 1;
    font-size: min(1.6rem, 16px);
    font-weight: 400;
    line-height: 1.8;
}

main.index section.support dl.company_dl div.company_wrap dd.company_dd div.logo {
    width: min(13rem, 130px);
}

@media (max-width: 799px) {
  main.index section.support {
    background-image: url(../img/bg_flow.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
  
  main.index section.support h2.index_ttl {
    font-size: 2.2rem;
    letter-spacing: 0em;
    line-height: 1.8;
  }
  
  main.index section.support h2.index_ttl span {
    display: block;
  }

  main.index section.support p.support_lead {
    margin-top: 2rem;
    font-size: 1.6rem;
    line-height: 1.6;
  }
  
  main.index section.support div.support_image {
    margin: 2rem auto 0;
    width: 100%;
  }

  main.index section.support dl.company_dl {
    margin: 4rem auto 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 4rem;
  }

  main.index section.support dl.company_dl div.company_wrap {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }

  main.index section.support dl.company_dl div.company_wrap dt.company_dt {
    width: 100%;
    font-size: 1.6rem;
    text-align: center;
    line-height: 1.4;
    font-weight: 500;
  }

  main.index section.support dl.company_dl div.company_wrap dd.company_dd {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 500;
  }

  main.index section.support dl.company_dl div.company_wrap dd.company_dd div.logo {
      width: 40%;
      margin: 0 auto;
  }

}

/* ----- contact_thanks ----- */

main.contact_thanks {
  padding-top: min(7.4rem, 74px);
}

main.contact_thanks section.contact_thanks h2.contact_thanks_ttl {
  font-size: min(3rem, 30px);
  font-weight: 600;
  text-align: center;
  color: var(--color-green);
}

main.contact_thanks section.contact_thanks p.contact_thanks_txt {
  margin-top: min(4rem, 40px);
  font-size: min(2rem, 20px);
  font-weight: 600;
  line-height: 1.8;
  text-align: center;
}

main.contact_thanks section.contact_thanks p.contact_thanks_note {
  margin-top: min(4rem, 40px);
  display: flex;
  flex-direction: column;
  gap: min(1rem, 10px);
  text-align: center;
}

main.contact_thanks section.contact_thanks p.contact_thanks_note span.contact_thanks_note_item {
  font-size: min(1.6rem, 16px);
  line-height: 1.8;
}

main.contact_thanks section.contact_thanks a.common_btn {
  margin: min(8rem, 80px) auto 0;
}

@media (max-width: 799px) {
  main.contact_thanks {
    padding-top: 5rem;
  }
  
  main.contact_thanks section.contact_thanks h2.contact_thanks_ttl {
    font-size: 2.4rem;
  }
  
  main.contact_thanks section.contact_thanks p.contact_thanks_txt {
    margin-top: 4rem;
    font-size: 1.6rem;
    line-height: 1.8;
    text-align: center;
  }
  
  main.contact_thanks section.contact_thanks p.contact_thanks_note {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
  
  main.contact_thanks section.contact_thanks p.contact_thanks_note span.contact_thanks_note_item {
    font-size: 1.3rem;
    line-height: 1.6;
    text-align: justify;
    padding-left: 1em;
    text-indent: -1em;
  }
  
  main.contact_thanks section.contact_thanks a.common_btn {
    margin: 4rem auto 0;
  }  
}

/* ----- footer ----- */
footer {
  width: 100%;
  background-color: #fff;
}

footer div.container {
    padding: min(6rem, 60px) 20px;
}

footer div.footer_logo {
    width: min(20rem, 200px);
    margin: 0 auto;
}

footer p.copyright {
    margin: min(4rem, 40px) auto 0;
    font-size: min(1.4rem, 14px);
    font-weight: 400;
    text-align: center;
    color: #000;
}

@media (max-width: 799px) {

}
