@charset "UTF-8";
/* common
==================================== */
:root {
  --main-color: #007FC6;
  --text-color: #333;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

main {
  padding-top: 96px;
}

body {
  color: var(--text-color);
  font-family: "Noto Sans JP", serif;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

li {
  list-style: none;
}

a {
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

.fadein {
  opacity: 0;
  transform: translateY(80px);
  transition: all 1s;
}

.fadein.inview {
  opacity: 1;
  transform: translateY(0);
}

.btn {
  display: inline-block;
  background-color: var(--main-color);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  /* padding: 16px 40px; */
  border-radius: 25px;
  width: 320px;
  height: 52px;
  line-height: 46px;
  text-align: center;
  transition: all 0.5s;
  -webkit-animation: scale 1.8s ease infinite;
          animation: scale 1.8s ease infinite;
}

.btn:hover {
  opacity: 0.7;
}

@-webkit-keyframes scale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}

@keyframes scale {
  0% {
    scale: 1;
  }
  50% {
    scale: 1.1;
  }
  100% {
    scale: 1;
  }
}
.wrapper {
  max-width: 1024px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrapper1064 {
  max-width: 1064px;
  padding: 0 16px;
  margin: 0 auto;
}

.section-title {
  font-size: clamp(1.5rem, 1.318rem + 0.91vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

@media screen and (max-width: 843px) {
  main {
    padding-top: 64px;
  }
}
@media screen and (max-width: 767px) {
  html {
    scroll-padding-top: 64px;
  }
  .sp {
    display: block;
  }
  .tab {
    display: none;
  }
  form .btn {
    font-size: 1rem;
    width: 246px;
    height: 42px;
    line-height: 35px;
  }
}
/* 共通フォーム */
.form {
  width: 400px;
  background-color: #fff;
  border-radius: 5px;
  padding: 8px;
}

.form__appeal {
  font-size: 1.25rem;
  font-weight: 700;
  background-color: var(--main-color);
  color: #fff;
  padding: 16px 14px;
  border-radius: 5px;
  margin-bottom: 20px;
  position: relative;
}

.form__appeal::after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  height: 0;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 15px solid var(--main-color);
  bottom: -12px;
  right: 48%;
}

.form__title {
  position: relative;
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.875rem;
}

.form__title::after {
  content: "*";
  position: absolute;
  font-size: 0.875rem;
  color: #F90000;
  top: 0;
  right: -8px;
}

.form__inner {
  padding: 0 8px;
}

input[type=text],
input[type=email],
input[type=tell] {
  padding: 14px 8px;
  border: 1px solid #CED4DA;
  border-radius: 5px;
  background-color: #F5F8FA;
  width: 100%;
  margin-bottom: 10px;
}

.form__name-group {
  display: flex;
  gap: 18px;
}

.form__input-name {
  width: 175px;
}

.form__txt {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 17px;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #AAAAAA;
  font-weight: 400;
}

input::placeholder,
textarea::placeholder {
  color: #AAAAAA;
  font-weight: 400;
}

.form__btn {
  text-align: center;
  margin-top: 31px;
  margin-bottom: 20px;
  display: block;
}

.form__btn .btn.disabled,
.form__btn .btn:disabled {
  background-color: #ccc;
  opacity: 0.8;
  -webkit-animation: none;
          animation: none;
}

.end-message {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 30px;
  margin-top: 30px;
  display: none;
  color: var(--main-color);
}

@media screen and (max-width: 767px) {
  .form {
    min-width: 343px;
    width: 100%;
    padding: 8px;
  }
  .form__inner {
    padding: 0;
  }
  .form__appeal {
    font-size: 1rem;
    text-align: center;
    padding: 18px 18px;
    margin-bottom: 20px;
  }
  .form__appeal::after {
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-top: 15px solid var(--main-color);
    bottom: -12px;
    right: 48%;
  }
  .form__title {
    margin-bottom: 8px;
  }
  .form__title::after {
    top: 0;
    right: -8px;
  }
  input[type=text],
input[type=email],
input[type=tell] {
    margin-bottom: 10px;
  }
  .form__name-group {
    gap: 18px;
  }
  .form__input-name {
    width: 100%;
  }
  .form__txt {
    font-size: 0.75rem;
    margin-top: 17px;
  }
  .form__btn {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 10px;
  }
}
/* header
==================================== */
.header {
  background-color: #fff;
  position: fixed;
  width: 100%;
  z-index: 900;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  padding-left: 20px;
  display: block;
}

.header__logo a {
  display: block;
  font-size: 0;
}

.header__menus {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-right: 60px;
}

.header_menu {
  font-weight: 700;
}

.header__link {
  color: var(--main-color);
}

.info-request {
  background-color: var(--main-color);
  height: 96px;
  display: flex;
  align-items: center;
  padding: 0 42px 0 43px;
  color: #fff;
  gap: 7px;
  font-weight: 700;
}

.info-request img {
  display: inline-block;
}

.hamburger {
  display: none;
}

@media screen and (max-width: 1024px) {
  .header__logo {
    max-width: 200px;
  }
  .header__menus {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .info-request {
    padding: 0 15px 0 15px;
    gap: 7px;
    font-size: 0.875rem;
  }
  .info-request img {
    width: 25px;
  }
  .header__link {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 843px) {
  .header {
    height: 64px;
  }
  .header__logo {
    padding-left: 16px;
    max-width: 156px;
  }
  .header__menus {
    flex-direction: column;
    gap: 0;
    background-color: var(--main-color);
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    translate: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s;
  }
  .header__menus.open {
    translate: 0;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
  }
  .header_menu {
    height: 64px;
    width: 100%;
    border-bottom: 1px solid #fff;
    padding: 24px 16px;
  }
  .header__link {
    display: block;
    height: inherit;
    color: #fff;
  }
  .info-request {
    background-color: var(--main-color);
    height: 64px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 13px 12px;
    color: #fff;
    gap: 4px;
    font-weight: 400;
    font-size: 0.625rem;
  }
  .info-request img {
    width: 24px;
    height: 24px;
  }
  .btn-goup {
    display: flex;
  }
}
/* fv  */
.fv {
  min-height: 755px;
  background: linear-gradient(90deg, var(--main-color) 5%, #02d1ff);
  padding: 0 20px;
  margin: 0 auto;
}

.fv__inner {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: space-between;
}

.fv__txt-container {
  margin-top: 84px;
  position: relative;
  padding: 0 20px;
}

.fv__txt-box {
  line-height: 1.5;
  color: #fff;
  max-width: 615px;
  flex: 1;
}

.fv__txt {
  font-size: clamp(0.785rem, 0.616rem + 0.85vw, 1.25rem);
}

.fv__title {
  font-size: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem);
  font-weight: 700;
  margin-top: 11px;
  margin-bottom: 15px;
}

.fv__items {
  padding-left: 10px;
  max-width: 545px;
  margin-top: 37px;
  display: flex;
  flex-wrap: nowrap;
  grid-auto-flow: column;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

@media (max-width: 1024px) {
  .fv__items {
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 5px;
  }
  .tab {
    display: block;
  }
}
.fv__item {
  display: block;
  color: var(--main-color);
  font-weight: 700;
  background-color: #fff;
  border-radius: 50%;
  width: 164px;
  height: 164px;
  flex-shrink: 0;
  text-align: center;
}

.fv__item-top {
  margin-top: 41px;
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
}

.fv__item-botom {
  margin-top: 23px;
  font-size: clamp(1.125rem, 0.807rem + 1.59vw, 2rem);
  padding-right: 10px;
  position: relative;
}

.fv__item-botom .small {
  font-size: clamp(1.125rem, 1.007rem + 0.59vw, 1.45rem);
}

.annotation-small {
  color: #333;
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 0.75rem;
  font-weight: 700;
}

.annotation-small.right {
  right: 25px;
}

.fv__annotation {
  margin-top: 27px;
}

.annotation {
  display: block;
  font-size: 0.75rem;
  color: #fff;
  font-weight: 400;
  margin-bottom: 7px;
}

.fv__box {
  display: flex;
  justify-content: space-between;
}

.fv__img {
  margin-top: -20px;
  margin-right: -150px;
}

/* form  */
.fv__form {
  margin-right: -20px;
  padding: 0 20px;
  margin-top: 84px;
}

@media screen and (max-width: 843px) {
  /* fv  */
  .tab {
    display: none;
  }
  .fv {
    min-height: auto;
  }
  .fv__inner {
    flex-direction: column;
    max-width: 100%;
  }
  .fv__txt-container {
    text-align: center;
    margin-top: 40px;
    position: relative;
    padding: 0 20px;
  }
  .fv__txt-box {
    max-width: 100%;
    line-height: 1.8;
  }
  .fv__title {
    margin-top: 18px;
    margin-bottom: 16px;
  }
  .fv__items {
    padding-left: 0;
    max-width: 100%;
    justify-content: center;
    gap: 7px;
    margin-top: 20px;
    flex-wrap: nowrap;
  }
  .fv__item {
    width: 150px;
    height: 150px;
  }
  .fv__item-top {
    margin-top: 29px;
  }
  .fv__item-botom {
    margin-top: 18px;
    padding-right: 10px;
  }
  .fv__annotation {
    margin-top: 20px;
  }
  .annotation {
    margin-bottom: 7px;
    text-align: left;
    margin-left: -23px;
  }
  .fv__box {
    flex-direction: column;
    align-items: center;
  }
  .fv__img {
    margin-top: -20px;
    margin-right: 0;
    display: flex;
    justify-content: center;
    width: 100%;
    min-width: 360px;
  }
  /* form  */
  .fv__form {
    display: flex;
    justify-content: center;
    margin-right: 0;
    margin-top: 40px;
    padding-bottom: 26px;
  }
}
@media screen and (max-width: 767px) {
  .fv__item {
    width: 112px;
    height: 112px;
  }
}
/* .achievements  */
.achievements {
  margin-top: 77px;
}

.achievements__txt {
  text-align: center;
  font-size: clamp(1.25rem, 0.977rem + 1.36vw, 2rem);
  font-weight: 700;
}

.achievements__items {
  padding: 0 20px;
  margin-top: 38px;
  margin-bottom: 64px;
  display: flex;
  justify-content: center;
  align-content: center;
  gap: 84px;
}

.achievements__item img {
  max-width: 100%;
}

.achievements .swiper {
  width: 100%;
  height: auto;
}

.achievements .swiper-wrapper {
  display: flex;
}

.achievements .swiper-slide {
  width: 248px;
}

.achievements .swiper__img img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  /* .achievements  */
  .achievements {
    margin-top: 40px;
  }
  .achievements__items {
    margin-top: 27px;
    margin-bottom: 40px;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  .achievements__item {
    max-width: 280px;
  }
  .achievements__item img {
    max-width: 100%;
  }
  .achievements .swiper__img {
    width: 160px;
    height: auto;
  }
}
/* about  */
.about {
  margin-top: 85px;
}

.about__txt {
  text-align: center;
  margin-top: 51px;
  font-size: clamp(1.3rem, 1.227rem + 0.36vw, 1.5rem);
  font-weight: 700;
  line-height: 1.8;
}

.emphasis {
  font-size: clamp(1.5rem, 1.045rem + 1.27vw, 2rem);
  color: var(--main-color);
}

.about__img {
  margin-top: 25px;
  display: flex;
  justify-content: center;
  position: relative;
}

.about__img::before {
  content: "";
  position: absolute;
  width: 808px;
  height: 276px;
  background-color: #F9F9F9;
  z-index: -1;
  top: 20px;
  left: 50%;
  translate: -50%;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  /* about  */
  .about {
    margin-top: 65px;
  }
  .about__txt {
    margin-top: 60px;
  }
  .about__img {
    margin-top: 48px;
  }
  .about__img::before {
    width: 341px;
    height: 648px;
  }
}
/* features  */
.features {
  margin-top: 96px;
}

.features__items {
  margin-top: 51px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}

.features__item {
  border: 1px solid var(--main-color);
  max-width: 480px;
  min-height: 325px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 32px;
}

.features__title {
  margin-top: 18px;
  font-weight: 700;
  font-size: 1.25rem;
  color: #F47500;
  line-height: 1.5;
}

.features__txt {
  margin-top: 18px;
  text-align: left;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  /* features  */
  .features {
    margin-top: 72px;
  }
  .features__items {
    margin-top: 51px;
    grid-template-columns: repeat(1, 1fr);
    gap: 26px;
    margin-left: -3px;
  }
  .features__item {
    max-width: 100%;
    min-width: 341px;
    min-height: auto;
    padding: 14px 28px 22px;
  }
}
/* .material-dawnloads */
.material-download {
  margin-top: 31px;
  height: 240px;
  background: url(../img/bg.png) center/cover no-repeat;
  padding-top: 60px;
}

.material-download__txt {
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 1.5em;
  line-height: 1.8;
}

.material-download__btn {
  text-align: center;
  margin-top: 25px;
}

.material__btn {
  background-color: #fff;
  color: var(--main-color);
  border: none;
}

.material__btn:hover {
  opacity: 1;
  background-color: var(--main-color);
  color: #fff;
}

@media screen and (max-width: 767px) {
  /* .material-dawnloads */
  .material-download {
    margin-top: 31px;
    height: 257px;
    background: url(../img/bg-sp.png) center/cover no-repeat;
    padding-top: 40px;
  }
  .material-download__btn {
    margin-top: 40px;
  }
}
/* case  */
.case {
  margin-top: 96px;
  margin-bottom: 55px;
  max-width: 1045px;
}

.swiper__container {
  position: relative;
}

.case .swiper {
  margin-top: 73px;
}

.swiper2 {
  width: 100%;
  height: 100%;
}

.case .swiper-wrapper {
  display: flex;
}

.case .swiper-slide {
  width: auto;
  padding-bottom: 8px;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  background-color: var(--main-color);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  top: 50%;
}

.swiper-button-prev {
  left: 10px;
}

.swiper-button-next {
  right: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #fff;
  font-size: 1.2rem;
}

.swiper-button-next::after {
  content: "\f054";
}

.swiper-button-prev::after {
  content: "\f053";
}

.case__item {
  width: 405px;
  height: 488px;
  margin: 0 auto;
  box-shadow: 0 5px 8px 3px rgba(51, 51, 51, 0.2);
  border-radius: 30px 0 30px 0;
  padding: 20px;
  text-align: left;
}

.case__box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 350px;
}

.case__title {
  margin-top: 12px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.8;
}

.case__emphasis {
  color: var(--main-color);
}

.case__txt {
  margin-top: 24px;
  font-size: 0.875rem;
  line-height: 1.8;
}

.case__img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  /* case  */
  .case {
    margin-top: 72px;
    margin-bottom: 55px;
    max-width: 100%;
    /* min-width: 375px; */
  }
  .case .swiper {
    margin-top: 58px;
  }
  .swiper-button-next,
.swiper-button-prev {
    width: 20px;
    height: 20px;
    top: 51%;
  }
  .swiper-button-prev {
    left: -13px;
  }
  .swiper-button-next {
    right: -13px;
  }
  .swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 0.75rem;
  }
  .case__item {
    width: 311px;
    height: 471px;
    padding: 18px 10px;
  }
  .case__box {
    min-height: 350px;
  }
  .case__title {
    margin-top: 12px;
    font-size: 1.125rem;
  }
  .case__txt {
    margin-top: 24px;
    font-size: 0.75rem;
  }
}
/* price  */
.price {
  padding-top: 80px;
  padding-bottom: 47px;
  background-color: #F9F9F9;
  text-align: center;
}

.price__items {
  margin-top: 62px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.price__item {
  width: 100%;
  max-width: 296px;
  max-height: 277px;
  aspect-ratio: 296/277;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 4px 4px 0 rgba(51, 51, 51, 0.2);
  border-top: 12px solid var(--main-color);
}

.price__title {
  margin-top: 29px;
  font-weight: 700;
  font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
}

.price__txt {
  margin-top: 16px;
  font-size: clamp(0.75rem, 0.295rem + 2.27vw, 2rem);
  font-weight: 700;
}

.price__emphasis {
  font-size: clamp(2.1rem, 0.955rem + 6.73vw, 6rem);
  font-weight: 700;
  color: var(--main-color);
}

.price__precautions {
  margin-top: 48px;
  margin-left: 36px;
  text-align: left;
  font-size: clamp(0.75rem, 0.705rem + 0.23vw, 0.875rem);
  font-weight: 400;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  /* price  */
  .price {
    padding-top: 47px;
    padding-bottom: 47px;
  }
  .price__items {
    margin-top: 23px;
  }
  .price__item {
    border-top: 6px solid var(--main-color);
    max-width: 96px;
    min-height: auto;
  }
  .price__title {
    margin-top: 10px;
  }
  .price__txt {
    margin-top: 5px;
  }
  .price__precautions {
    padding: 0 11px;
    margin-top: 50px;
    margin-left: 0;
  }
}
/* faq  */
.faq {
  padding-top: 96px;
  padding-bottom: 46px;
  background-color: #F9F9F9;
}

.faq__items {
  margin-top: 61px;
  padding: 0 3px;
}

.faq__item {
  margin-bottom: 23px;
  overflow: hidden;
}

.faq__q {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  padding: 20px 40px 18px 36px;
  font-weight: 700;
  position: relative;
  transition: 0.5s ease;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

.faq__q:hover .faq__icon,
.faq__q:hover .faq__plus-icon::before,
.faq__q:hover .faq__plus-icon::after {
  background-color: #fff;
  color: var(--main-color);
}

.faq__q:hover {
  background-color: var(--main-color);
  color: #fff;
}

details[open] .faq__q {
  background-color: var(--main-color);
  color: #fff;
  border-radius: 10px 10px 0 0;
}

.faq__q__box {
  display: flex;
  align-items: center;
  gap: 24px;
}

.faq__icon {
  display: block;
  font-family: "Goldman", serif;
  background-color: var(--main-color);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 400;
  transition: 0.5s ease;
  flex-shrink: 0;
}

details[open] .faq__icon {
  background-color: #fff;
  color: var(--main-color);
}

.faq__plus-icon {
  width: 32px;
  height: 32px;
}

.faq__plus-icon::before,
.faq__plus-icon::after {
  content: "";
  position: absolute;
  background-color: #333;
  transition: 0.3s ease;
  top: 50%;
  translate: 0 -50%;
}

.faq__plus-icon::before {
  width: 2px;
  height: 32px;
  right: 38px;
  transform-origin: center;
}

.faq__plus-icon::after {
  width: 32px;
  height: 2px;
  right: 24px;
}

details[open] .faq__plus-icon::before {
  height: 0;
  background-color: #fff;
}

details[open] .faq__plus-icon::after {
  background-color: #fff;
}

.faq__a {
  background-color: #fff;
  padding: 24px 36px;
  line-height: 1.8;
  border-radius: 0 0 10px 10px;
}

details[open] .faq__a {
  -webkit-animation: fadeIn 0.5s ease-out;
          animation: fadeIn 0.5s ease-out;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
.faq__a ol {
  margin-left: 15px;
}

.faq__a li {
  list-style: decimal;
}

@media screen and (max-width: 767px) {
  /* faq  */
  .faq {
    padding-top: 37px;
    padding-bottom: 53px;
  }
  .faq__items {
    margin-top: 45px;
    padding: 0;
  }
  .faq__item:first-child {
    margin-bottom: 27px;
  }
  .faq__item {
    margin-bottom: 15px;
  }
  .faq__q {
    width: 100%;
    padding: 10px 5px 12px 10px;
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .faq__q__box {
    gap: 13px;
  }
  .faq__icon {
    width: 32px;
    height: 32px;
    font-size: 1rem;
  }
  .faq__plus-icon {
    width: 16px;
    height: 16px;
  }
  .faq__plus-icon::before,
.faq__plus-icon::after {
    content: "";
    position: absolute;
    background-color: #333;
    transition: 0.3s ease;
    top: 50%;
    translate: 0 -50%;
  }
  .faq__plus-icon::before {
    height: 16px;
    right: 18px;
    transform-origin: center;
  }
  .faq__plus-icon::after {
    width: 16px;
    right: 11px;
  }
  .faq__a {
    background-color: #fff;
    padding: 10px;
    line-height: 1.8;
    border-radius: 0 0 10px 10px;
    font-size: 0.875rem;
  }
}
/* form  */
.form__area {
  padding-top: 86px;
  padding-bottom: 57px;
  height: 850px;
  background: linear-gradient(90deg, var(--main-color) 10%, #02d1ff);
}

.form__area-title {
  color: #fff;
  margin-bottom: 64px;
}

.form__area-inner {
  display: flex;
  justify-content: center;
  gap: 38px;
}

.form__area-text-box {
  margin-top: 40px;
  max-width: 425px;
  color: #fff;
  line-height: 1.8;
  font-size: clamp(0.75rem, 0.659rem + 0.45vw, 1rem);
  width: 100%;
}

.form__area-text {
  max-width: 413px;
}

.form__area-img {
  margin-top: 48px;
  max-width: 425px;
  margin-left: -5px;
}

.form__area-img img {
  width: 100%;
}

.form__area-form {
  margin-top: 8px;
  margin-left: -10px;
}

@media screen and (max-width: 767px) {
  /* form  */
  .form__area {
    padding-top: 72px;
    padding-bottom: 46px;
    height: auto;
  }
  .form__area-title {
    margin-bottom: 26px;
  }
  .form__area-inner {
    flex-direction: column;
    gap: 35px;
  }
  .form__area-text-box {
    text-align: center;
    margin-top: 0;
    max-width: 100%;
  }
  .form__area-img {
    margin-top: 16px;
    margin-left: auto;
    margin-right: auto;
    width: 240px;
    height: 149px;
  }
  .form__area-img img {
    width: 100%;
  }
  .form__area-form {
    margin-top: 5px;
    margin-left: -5px;
  }
}
/* main
==================================== */
@media screen and (max-width: 843px) {
  /* .hamburger  */
  .hamburger {
    display: block;
    padding: 0;
    outline: none;
    border: none;
    background: transparent;
    cursor: pointer;
    color: #fff;
    font-size: 0.625rem;
    background-color: #333;
    width: 64px;
    height: 64px;
    text-align: center;
    position: relative;
    transition: all 0.5s;
  }
  .hamburger__line {
    position: absolute;
    display: block;
    width: 32px;
    height: 1px;
    background-color: #fff;
    left: 17px;
    transition: all 0.5s;
  }
  .hamburger__line:nth-child(1) {
    top: 14px;
  }
  .hamburger__line:nth-child(2) {
    top: 23px;
  }
  .hamburger__line:nth-child(3) {
    top: 32px;
  }
  .hamburger.open .hamburger__line:nth-child(1) {
    top: 25px;
    rotate: 45deg;
  }
  .hamburger.open .hamburger__line:nth-child(2) {
    background-color: transparent;
  }
  .hamburger.open .hamburger__line:nth-child(3) {
    top: 25px;
    rotate: -45deg;
  }
  .hamburger__text {
    position: absolute;
    bottom: 10px;
    left: 14px;
  }
}
/* footer
==================================== */
.footer {
  text-align: center;
}

.footer__logo {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}

.copyright {
  margin-top: 37px;
  font-family: "Goldman", serif;
  font-size: 0.75rem;
  margin-bottom: 18px;
}
/*# sourceMappingURL=style.css.map */