@charset "UTF-8";

/* CSS Document */
/*------------------------------

  標準レイアウト・基本カラー

------------------------------*/
:root {
  --main_color: #035cb3;
}

body {
  font-family: 'Noto Sans JP', sans-serif, 游ゴシック体, 游ゴシック, YuGothic, メイリオ, Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", Osaka, sans-serif;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 480px) {}

/*---------------------------------

	フッター

---------------------------------*/

footer .wrap {
  max-width: 100rem;
  margin: auto;
}

footer .wrap .footer_inner {
  display: flex;
  justify-content: space-between;
  width: 80%;
  margin: auto;
  padding: 70px 0 50px;
}

footer .wrap .copylight {
  text-align: center;
  padding-bottom: 1.5rem;
}

@media screen and (max-width: 1024px) {}

@media screen and (max-width: 896px) {
  footer .wrap .footer_inner {
    flex-direction: column;
  }

  footer .wrap .footer_inner figure {
    width: 50%;
    padding-bottom: 10px;
  }

}

@media screen and (max-width: 480px) {}

/*------------------------------

	pagetop

------------------------------*/
.page_top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

.page_top a {
  background: #ec8338;
  border-radius: 50%;
  color: #fff;
  display: block;
  position: relative;
  text-decoration: none;
  text-align: center;
  width: 50px;
  height: 50px;
}

.page_top a .arrow {
  display: block;
}

.page_top a .arrow::before {
  background: url("../images/arrow_pagetop.svg") no-repeat;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transition: all .3s;
  width: 26px;
  height: 26px;
  margin: auto;
}

.page_top a:hover {
  background: #ffffff;
  border: solid 3px #ec8338;
  opacity: 1;
  text-decoration: none;
}

.page_top a:hover .arrow::before {
  background: url("../images/arrow_pagetop_blue.svg") no-repeat;
  top: -10px;
}

/*---------------------------------

  メインビジュアル

---------------------------------*/
.key_visual {
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.key_visual .pc {
  background-image: url(../images/mainvisual_bg.png);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: auto;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
}

.key_visual .pc,
.key_visual .bg_img {
  opacity: 0;
  animation: fadeIn 1s ease-out forwards;
}

.key_visual .bg_img {
  background-image: url(../images/mainvisual01.png);
  position: absolute;
  top: -25%;
  left: 20%;
  width: 100%;
  height: 100%;
  background-size: 80%;
  background-position: center;
  background-repeat: no-repeat;
  z-index: -1;

}

.key_visual .catch_wrap {
  position: absolute;
  bottom: 5%;
  left: 5%;
  display: flex;
  width: 92%;
  max-width: 1700px;
  margin: auto;
  justify-content: space-between;
}

.key_visual .catch_wrap figure {
  width: 50%;
  max-width: 800px;
  animation: zoomIn 0.8s ease-out forwards;
  animation-delay: 1.2s;
  opacity: 0;
}

.key_visual .catch {
  z-index: 1;
  padding-bottom: 20px;
}

.key_visual .catch p {
  color: #666666;
  font-size: 20px;
  width: 100%;
  max-width: 630px;
  padding-top: 20px;
  text-align: justify;
  animation: slideUp 0.7s ease-out forwards;
  animation-delay: 1s;
  opacity: 0;
}

.key_visual .catch h1 {
  color: #ec8338;
  font-size: 72px;
  font-weight: 1000;
  animation: slideUp 0.7s ease-out forwards;
  animation-delay: 0.6s;
  opacity: 0;
}

@media screen and (max-width: 1600px) {
  .key_visual .bg_img {
    background-size: 100%;

  }

  .key_visual .catch_wrap figure {
    width: 48%;
    max-width: 800px;
  }

  .key_visual .catch_wrap {
    align-items: end;
    width: 90%;
  }

  .key_visual .catch p {
    bottom: 20%;
    left: 5%;
    font-size: 18px;
    max-width: 500px;
  }

  .key_visual .catch h1 {
    bottom: 80%;
    left: 5%;
    font-size: 62px;
  }
}

@media screen and (max-width: 1100px) {

  .key_visual .catch p {
    font-size: 20px;
  }

  .key_visual .catch h1 {
    font-size: 50px;
  }
  .key_visual .bg_img {
    top: -25%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-size: 100%;

  }


  .key_visual .catch_wrap {
    flex-direction: column-reverse;
    /* 画像を上に、テキストを下に */
    align-items: center;
  }

  .key_visual .catch_wrap figure {
    width: 70%;
    max-width: 100%;
    margin-bottom: 50px;
  }

  .key_visual .catch h1 {
    font-size: 48px;
  }

  .key_visual .catch p {
    font-size: 16px;
  }

}

@media screen and (max-width: 768px) {

  .key_visual .pc {
  background-size: 180%;
}

  .key_visual .bg_img {
    top: -30%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-size: 120%;

  }

  .key_visual .catch h1 {
    font-size: 32px;
  }

   .key_visual .catch_wrap figure {
    width: 80%;
    margin-bottom: 80px;
  }


}

/*---------------------------------

  共通

---------------------------------*/

.button a {
  background: #1f5f99;
  border: solid 2px #1f5f99;
  border-radius: 50px;
  color: #ffffff;
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: .3s;
  max-width: 300px;
  padding: 20px 30px;
  margin: auto;
}

.button a:hover {
  background: #ffffff;
  color: #1f5f99;
}

img {
  vertical-align: bottom;
  width: 100%;
}

p {
  color: #333333;
}

section p.appear {
  opacity: 0;
  animation: fadeIn 1s ease-in-out;
  animation-fill-mode: forwards;
  animation-play-state: paused;
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(1.05);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes wipeInRight {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes wipeInLeft {
  0% {
    clip-path: inset(0 0 0 100%);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes wipeInUp {
  0% {
    clip-path: inset(100% 0 0 0);
    opacity: 0;
  }

  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@media screen and (max-width: 896px) {

  .button a:hover {
    background: #035cb3;
    border: none;
    color: #ffffff;
  }

}

/*---------------------------------

  悩み・メリット

---------------------------------*/

section.about_block .about_bglayer {
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/merit_bg.svg);
  background-size: cover;
  background-position: top right;
  background-repeat: no-repeat;
  z-index: -1;
}

.about_wrap h2 {
  text-align: center;
  font-size: 36px;
  margin-top: 100px;
  opacity: 0;
  transform: translateY(20px);
  width: 90%;
  margin: 80px auto;
}

.about_wrap h2.active {
  animation: fadeUp 0.5s ease-in-out forwards;
}

.about_wrap h2 span {
  color: #ec8338;
  font-size: 48px;
  font-weight: 700;
  padding-right: 10px;
}

.about_wrap .trouble_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px 20px;
  width: 90%;
  max-width: 1300px;
  margin: 100px auto;
  z-index: 1;
}

.about_wrap .trouble_inner .trouble_box {
  max-width: 352px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: translateY(0);
}

.about_wrap .trouble_inner .trouble_box.active {
  animation: fadeUp 0.8s ease-out forwards;
}

.about_wrap .trouble_inner .trouble_box h3 {
  color: #ec8338;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0 10px;
}

.about_wrap .solution {
  background-color: #ec8338;
  position: relative;
}

.about_wrap .solution::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 30px solid transparent;
  border-right: 30px solid transparent;
  border-top: 30px solid #ec8338;
}

.about_wrap .solution p {
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  text-align: center;
  padding: 30px 0px;
}

.about_wrap .solution span {
  font-size: 60px
}

.about_wrap .merit_wrap {
  position: relative;
  z-index: 1;
  padding-bottom: 1px;
}

.about_wrap .merit_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 50px 20px;
  width: 90%;
  max-width: 1300px;
  margin: 100px auto;
}

.about_wrap .about_text {
  text-align: center;
}

.about_wrap .about_text p {
  margin: 10px 0;
  opacity: 0;
  clip-path: inset(0 0 0 100%);
}

.about_wrap .about_text p.active {
  animation: wipeInRight 0.8s ease-out forwards;
}

.about_wrap .about_text p span {
  display: inline-block;
  font-weight: 600;
  font-size: 30px;
  padding: 20px;
  background: #fff;

}


.about_wrap .about_text .highlight {
  color: #ec8338;
  padding: 0px;
}


.about_wrap .merit_inner .merit_box {
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transform: fadeUp 0.8s ease-out forwards;
}

.about_wrap .merit_inner .merit_box.active {
  animation: fadeUp 0.8s ease-out forwards;
}

.about_wrap .merit_inner .merit_box .circle {
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border: #ec8338 5px solid;
  border-radius: 50%;
  padding: 80px 10px;

}

.about_wrap .merit_inner .merit_box .circle p {
  color: #ec8338;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  padding-bottom: 10px;
}

.about_wrap .merit_inner .merit_box .circle h3 {
  text-align: center;
  font-size: 32px;
}

.about_wrap .merit_inner .merit_box .detail h3 {
  color: #ec8338;
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin: 20px 0 10px;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about_wrap .merit_inner .merit_box .detail p {
  text-align: justify;
}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 768px) {
  .about_wrap h2 {
    font-size: 30px;
  }

  .about_wrap h2 span {
    font-size: 42px;
  }

  .about_wrap .trouble_inner {
    margin: 60px auto;
  }

  .about_wrap .solution {
    padding: 0px 10px;
  }

  .about_wrap .solution p {
    font-size: 19px;
  }

  .about_wrap .solution span {
    font-size: 35px
  }

  .about_wrap .merit_inner {
    margin: 60px auto;
  }

  .about_wrap .about_text p span {
    font-size: 20px;

  }
}

/*---------------------------------

  機能紹介

---------------------------------*/
section.feature_block {
  background: #fff3e3;
  padding-bottom: 100px;
}

.feature_wrap {
  padding-top: 10px;
}

.feature_wrap .feature_bg {
  position: relative;
  overflow: hidden;
  margin: 60px 0;
  opacity: 0;
  transform: translateY(20px);
}

.feature_wrap .feature_bg.active {
  animation: fadeUp 0.8s ease-out forwards;
}

.feature_wrap .feature_bg::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  z-index: 0;
}

.feature_bg.right::before {
  left: 5%;
}

.feature_bg.left::before {
  left: -5%;
}


.feature_wrap .feature_inner {
  width: 85%;
  max-width: 1400px;
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  padding-top: 50px;
  position: relative;
  z-index: 1;
}

.feature_wrap .feature_inner .feature_box {
  max-width: 570px;
}

.feature_wrap .feature_inner figure {
  max-width: 650px;
}

.feature_wrap .feature_inner .feature_box h3 {
  color: #ec8338;
  font-size: 30px;
  font-weight: 800;
}

.feature_wrap .feature_inner .feature_box ul {
  max-width: 570px;
}

.feature_wrap .feature_inner .feature_box ul li {
  font-size: 20px;
  font-weight: 600;
  list-style-position: outside;
  margin: 1.2em;
  text-align: justify;
}

.feature_wrap .feature_inner .feature_box ul li::marker {
  color: #ec8338;
}

@media screen and (max-width: 1024px) {
  .feature_wrap .feature_inner {
    display: flex;
    flex-direction: column;

  }

  .feature_wrap .feature_inner figure {
    order: 2;
    margin-top: 20px;
  }

  .feature_wrap .footer_inner .feature_box {
    order: 1;
  }

  .feature_wrap .feature_inner .feature_box h3 {
    font-size: 24px;
  }

}

@media screen and (max-width: 560px) {}

@media screen and (max-width: 768px) {

  .feature_wrap .feature_inner {
    display: flex;
    flex-direction: column;
    width: 80%;

  }

  .feature_wrap .feature_inner .feature_box ul li {
    font-size: 16px;
    font-weight: 400;
  }

  section.feature_block {
    padding-bottom: 10px;
  }
}

/*---------------------------------

  お問い合わせ

---------------------------------*/
section.price_block {
  position: relative;
  padding-top: 150px;
  z-index: 1;
}

section.price_block .background_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff3e3;
  background-image: url(../images/contact_bg.svg);
  background-size: cover;
  background-position: top left;
  background-repeat: no-repeat;
  z-index: -1;
}

section.price_block .price_wrap {
  width: 90%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 50px 0 100px;
}

.price_wrap .title,
.price_wrap .price_box {
  opacity: 0;
  transform: translateY(20px);
}

.price_wrap .title.active,
.price_wrap .price_box.active {
  animation: fadeUp 0.5s ease-out forwards;
}

section.price_block .price_wrap .title h2 {
  text-align: center;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
}

section.price_block .price_wrap .title p {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-top: 20px;
  color: #fff;
}

section.price_block .price_wrap .price_inner {
  width: 90%;
  max-width: 1400px;
  margin: 50px auto;
  display: flex;
  background: #fff;
  border-radius: 25px;
  padding: 50px 0;
}

section.price_block .price_wrap .price_inner .price_box {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}

section.price_block .price_wrap .price_inner .price_box:first-of-type {
  border-right: #999999 1px solid;

}

section.price_block .price_wrap .price_inner .price_box .button a {
  margin-top: 20px;
}

section.price_block .price_wrap .price_inner .price_box .tel a {
  color: #1f5f99;
  font-size: 48px;
  font-weight: 800;
  text-decoration: none;

}

section.price_block .price_wrap .price_inner figure {
  width: 60px;
  margin: 0 auto 20px;
}

section.price_block .price_wrap .price_inner h3 {
  font-size: 21px;
  font-weight: 600;
}

@media screen and (max-width: 896px) {


  section.price_block .price_wrap .price_inner {
    flex-direction: column;
    gap: 30px;
  }

  section.price_block .price_wrap .price_inner .price_box {
    width: 90%;
    text-align: center;
    margin: 0 auto;
  }

  section.price_block .price_wrap .price_inner .price_box:first-of-type {
    border-right: none;
    padding-bottom: 30px;
    border-bottom: #999999 1px solid;
  }

  section.price_block .price_wrap .title p {
    font-size: 22px;
  }

}

@media screen and (max-width: 480px) {
  section.price_block .price_wrap .title h2 {
    font-size: 30px;
  }

  section.price_block .price_wrap .title p {
    font-size: 16px;
  }

  section.price_block .price_wrap .price_inner .price_box .tel a {
    font-size: 32px;
  }

}