@charset "utf-8";
/*###### リセットCSS ######*/
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
body {
  line-height: 1.8;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
*, *::before, *::after {
  box-sizing: border-box;
}
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
/*###### 固定CSS ######*/
html, body{
	height:100%;
	background-color:#fff;
	color: #204C28;
	font-family: sans-serif,"游ゴシック体", "Yu Gothic";
  line-height: 1.8;
  margin:0;
  font-size: 16px;
}
img {
  height: auto;
  vertical-align: bottom;
  max-width: 100%;
}
a {
  color:#333;
  text-decoration: none;
}
a:hover {
  cursor: pointer;
  transition: .3s;
  opacity: .6;
}
button {
  font-family: sans-serif,"游ゴシック体", "Yu Gothic";
  border: none;
}
button:hover {
  cursor: pointer;
}
section {
  width: 100%;
  position: relative;
}
ul {
  list-style: none;
}

/*###### 共通CSS ######*/
.sec__title {
  font-size: clamp(1.563rem, 0.938rem + 2.08vw, 2.5rem);
  line-height: 1.5;
  text-align: center;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: bold;
  position: relative;
  margin-bottom: 50px;
}
.sec__title:after {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  content: '';
  display: inline-block;
  width: 35px;
  height: 5px;
  background-image: url(../img/icon_h2.svg);
  background-size: contain;
}
.label {
  width: fit-content;
  background: #00A99D;
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  line-height: 1.3;
  font-size: clamp(1.125rem, 1.042rem + 0.28vw, 1.25rem);
  font-weight: 600;
  border-radius: 50vh;
  padding: 5px 20px;
  margin: 0 auto -20px;
  position: relative;
  z-index: 100;
}
.inner {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
}
.for-tab {
  display: none;
}
.for-sp {
  display: none!important;
}
.fadein {
    opacity : 0;
    transform : translate(0, 20px);
    transition : all 1000ms;
    }
.fadein.show {
    opacity : 1;
    transform : translate(0, 0);
}
@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

html {
  scroll-behavior: smooth;
}
.header {
  height: 80px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 1000;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
.header-sp__menu,.js-hamburger {
  display: none;
}
.header__menu {
  display: flex;
  align-items: center;
  gap: 40px;
  background: #fff;
  padding: 10px 50px;
  border-radius: 50vh;
  box-shadow: 0 5px 5px rgba(2, 120, 112, 0.2);
}
.header__menu__list {
  display: flex;
  gap: 30px;
  font-weight: bold;
  font-size: 15px;
}
.header__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #E9C600;
  border-radius: 50vh;
  color: #fff;
  font-size: 15px;
  font-weight: bold;
  width: 170px;
  height: 40px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.fv {
  background-image: linear-gradient(90deg,#FBFFFF, #E7F7F6, #FBFFFF);
  padding-top: 80px;
}
.fv__wrap {
  max-width: 1440px;
  margin: 0 auto;
  padding: 10px 0;
  display: flex;
  align-items: center;
}
.fv__text {
  width: 36%;
  padding: 30px;
}
.fv__text__title {
  font-size: clamp(1.875rem, 1.25rem + 2.08vw, 2.813rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
.fv__color {
  color: #00A99D;
}
.fv__text__lead {
  line-height: 2;
  margin-bottom: 30px;
}
.fv__contact {
  background: linear-gradient(90deg,#E9C600, #B8A500);
  color: #fff;
  font-weight: bold;
  border: 2px solid #fff;
  border-radius: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px;
  width: 260px;
  box-shadow: 0 5px 5px rgba(2, 120, 112, 0.2);
}
.fv__img {
  width: 64%;
}
.fv__img img {
  border-radius: 20px;
  box-shadow: 0 5px 5px rgba(2, 120, 112, 0.2);
}
.worry {
  padding: 100px 0 0;
  background-image: linear-gradient(90deg,#FBFFFF, #E7F7F6, #FBFFFF);
  overflow: hidden;
}
.worry__image {
  display: block;
  max-width: 700px;
  width: 100%;
  margin: 0 auto 50px;
}
.worry__arrow {
  display: block;
  margin: 0 auto 50px;
}
.worry__lead {
  text-align: center;
  margin-bottom: 40px;
}
.worry__solution {
  margin-bottom: 20px;
}
.worry__solution__text {
  background: #fff;
  width: fit-content;
  font-family: "M PLUS Rounded 1c", sans-serif;
  padding: 25px 30px 15px;
  margin: 0 auto;
  font-size: clamp(1.125rem, 0.833rem + 0.97vw, 1.563rem);
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(2, 120, 112, 0.2);
}
.worry_solution__wrap {
  position: relative;
  overflow: hidden;
}
.worry_solution__wrap::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3%;
  transform: translateX(-50%);
  width: 140%;
  height: 240px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 100'%3E%3Cpath d='M0,100 A100,100 0 0,1 200,100 Z' fill='white'/%3E%3C/svg%3E") no-repeat center bottom;
  background-size: contain;
}
.worry__solution__img {
  max-width: 460px;
  width: 100%;
  display: block;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
.sv {
  padding: 100px 0;
}
.sv__wrap {
  display: flex;
  align-items: center;
  gap: 50px;
}
.sv__wrap:nth-of-type(1),.sv__wrap:nth-of-type(2) {
  margin-bottom: 50px;
}
.sv__img {
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(2, 120, 112, 0.2);
}
.sv__title {
  position: relative;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #FFF570;
  font-size: clamp(1.125rem, 0.833rem + 0.97vw, 1.563rem);
  font-weight: 600;
  background: #00A99D;
  padding: 0 20px;
  margin-bottom: 30px;
  border-radius: 50vh;
  width: fit-content;
}
.sv__title::before {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -17%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50vh;
  background: #00A99D;
}
.sv__title span {
  position: relative;
  z-index: 10;
}
.sv__lead {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 10px;
}
.works {
  padding: 100px 0;
  background-image: linear-gradient(90deg,#FBFFFF, #E7F7F6, #FBFFFF);
}
.works__wrap {
  display: flex;
  align-items: center;
  gap: 80px;
  margin: 0 auto;
  max-width: 930px;
}
.works__wrap:nth-of-type(1) {
  margin-bottom: 70px;
}
.works__img__wrap {
  width: calc((100% - 80px) * 0.4);
}
.works__img  {
  width: 100%;
  border-radius: 10px;
}
.works__place {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 10px;
}
.works__place__title {
  font-size: clamp(1rem, 0.833rem + 0.56vw, 1.25rem);
  font-family: "M PLUS Rounded 1c", sans-serif;
}
.works__place__name {
  font-size: clamp(1.25rem, 1.042rem + 0.69vw, 1.563rem);
  margin-left: 20px;
}
.works__content {
  width: calc((100% - 80px) * 0.6);
}
.works__content__box {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
}
.works__content__surport {
  margin-bottom: 20px;
}
.works__content__surport .label {
  font-size: 18px;
}
.works__content__surport__list {
  padding: 30px 15px 15px;
  border-radius: 10px;
  border: 1px solid #00A99D;
  font-weight: bold;
}
.works__content__surport__item {
  list-style: disc;
  margin-left: 15px;
}
.works__illust {
  max-width: 135px;
  width: 100%;
}
.works__content__lead {
  background: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(2, 120, 112, 0.2);
}
.works__content__lead-mark {
  font-weight: bold;
  font-size: 18px;
  line-height: 1;
  display: block;
  background: linear-gradient(transparent 55%, #FFF570 45%);
  margin-bottom: 10px;
  width: fit-content;
  display: inline;
}
.works__content__lead p:nth-of-type(2) {
  padding-top: 10px;
}
.flow {
  padding: 100px 0;
}
.flow__wrap {
  display: flex;
  justify-content: center;
  gap: 5px;
}
.flow__item {
  position: relative;
  background: #F7FEFD;
  border-radius: 20px;
  border: 1px solid #00A99D;
  padding: 10px 5px 5px;
  width: 170px;
  height: 170px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flow__number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50vh;
  width: 45px;
  height: 45px;
  font-size: 20px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #fff;
  background: #00A99D;
  display: flex;
  justify-content: center;
  align-items: center;
}
.flow__title {
  font-size: 18px;
  font-family: "M PLUS Rounded 1c", sans-serif;
  margin-bottom: 10px;
}
.flow__img {
  max-width: 80px;
  width: 100%;
}
.company {
  padding: 100px 0;
  background-image: linear-gradient(90deg,#FBFFFF, #E7F7F6, #FBFFFF);
}
.company__wrap {
  max-width: 800px;
  width: 100%;
  background: #fff;
  border: 1px solid #D1D1D1;
  margin: 0 auto;
  border-radius: 15px;
  padding: 20px 30px;
}
.company__table {
  width: 100%;
}
.company__table th,.company__table td {
  padding: 15px 15px 15px 0;
  text-align: left;
  border-bottom: 1px solid #D8D8D8;
}
.company__table th {
  position: relative;
  width: 30%;
  vertical-align: middle;
}
.company__table th:after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -1px;
  height: 1px;
  width: 60px;
  background: #00A99D;
}
.company__table td{
  width: 70%;
}
.company__table tr:last-of-type th,.company__table tr:last-of-type td {
  border-bottom: none;
}
.company__table tr:last-of-type th:after {
  display: none;
}
.contact {
  padding: 100px 0;
}
.contact__lead {
  width: fit-content;
  margin: 0 auto 50px;
}
.contact__form {
  max-width: 950px;
  width: 100%;
  border: solid 1px #00A99D;
  border-radius: 15px;
  padding: 40px 50px;
  margin: 0 auto;
  box-shadow: 0 0 10px rgba(2, 120, 112, 0.2);
}
.form__table {
  width: 100%;
}
.form__table th,.form__table td {
  padding: 15px 0;
}
.form__table th {
  width: 30%;
  text-align: left;
  vertical-align: middle;
}
.form__table td {
  width: 70%;
}
.form__table td .w100 {
  width: 100%;
  background: #F2F9F8;
  padding: 10px 20px;
  border: solid 1px #00A99D;
  border-radius: 3px;
}
.required {
  border: solid 1px #00A99D;
  padding: 3px 10px;
  border-radius: 3px;
  font-weight: bold;
  color: #00A99D;
  font-size: 13px;
  margin-left: 20px;
}
input[type="radio"] {
  margin: 0 5px 5px 0;
}
.privacy__wrap {
  padding: 20px 0 0;
}
.privacy__lead {
  width: fit-content;
  margin: 0 auto 20px;
}
.privacy__text {
  padding: 20px 20px 0;
  background: #F7F7F7;
  height: 150px;
  overflow-y: scroll;
  margin-bottom: 10px;
}
.privacy__text b {
  display: block;
  margin-top: 15px;
}
.agree-check {
  margin: 0 auto;
  width: fit-content;
  display: block;
}
.form__btn {
  width: 300px;
  border-radius: 50vh;
  background: #E9C600;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
  margin: 0 auto;
  display: block;
}
.footer {
  background: #204C28;
  padding: 10px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}
address {
  font-style: normal;
}
