@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}
img {
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
a:hover {
  opacity: 0.8;
}
body {
  background-color: bisque;
  width: 100vw;
  font-family: sans-serif;
}
.center {
  text-align: center;
}
.wrap {
  width: 60vw;
  max-width: 1200px;
  background-color: #fff;
  margin: 0 auto;
  padding: 1vw 5vw;
  padding-bottom: 100px;
  margin-bottom: 100px;
}
.logo {
  width: 10vw;
  min-width: 100px;
  min-width: 100px;
  margin-bottom: 30px;
}
h1 {
  margin-bottom: 30px;
}
.nowrap {
  white-space: nowrap;
}
.figure {
  margin-bottom: 30px;
}
.tag {
  display: flex;
  justify-content: center;
  padding-top: 10%;
  margin-bottom: 50px;
}
.tag div {
  margin: 10px;
  padding: 5px;
  color: #fff;
  font-size: 0.8em;
}
.red {
  background-color: rgb(255, 109, 109);
}
.orange {
  background-color: rgb(239, 132, 84);
}
.green {
  background-color: rgb(41, 164, 125);
}
.blue {
  background-color: rgb(97, 125, 214);
}
.cta_area {
  width: 80%;
  background-color: rgb(23, 62, 147);
  margin: 0 auto;
  margin-top: 30px;
  position: relative;
  padding-bottom: 50px;
  color: #fff;
  text-align: center;
}
.contact_icon {
  position: absolute;
  right: 5%;
  width: 20%;
  top: 3%;
}
.contact-area {
  display: flex;
  justify-content: space-around;
}
.apeal {
  margin-bottom: 10px;
}
footer {
  background-color: #f0f2f7;
}
.copy {
  background-color: #162e5f;
  color: #fff;
  text-align: center;
}
.footer_content {
  width: 60vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0;
}
.company {
  font-size: 2em;
}
.contact-area a {
  position: relative;
  display: block;
  height: 100px;
  background-color: #fff;
  color: #000;
  line-height: 100px;
  border-radius: 10px;
  width: 45%;
  margin-bottom: 30px;
}
.button::after {
  content: "";
  border: 0;
  border-top: solid 2px rgb(23, 62, 147);
  border-right: solid 2px rgb(23, 62, 147);
  display: inline-block;
  width: 10px;
  height: 10px;
  /* 矢印アイコンの位置を設定 */
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%) rotate(45deg); /* rotate(45deg)で矢印を回転（向きを変更）させる */
}
.contact-area a:hover {
  background-color: #ffee91;
  opacity: 1;
  animation: poyo 0.7s ease 0s 1 normal running none;
}
@keyframes poyo {
  from,
  to {
    transform: none;
  }
  10% {
    transform: scale(1.1);
  }
  40% {
    transform: scale(0.9);
  }
  60% {
    transform: scale(1.04);
  }
  80% {
    transform: scale(0.98);
  }
}
.telnumber {
  font-size: 2.5em;
}
.newpage_btn {
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}
.site_btn {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans Japanese";
  font-weight: bold;
  line-height: 1.5;
  padding: 20px 60px 20px 100px;
  transition: 0.3s;
  text-decoration: none;
  color: #fff;
  border-radius: 0.5rem;
  background: #32b16c;
  box-shadow: 0 5px 0 #2c9d60;
  margin-left: 10px;
}

.site_btn p {
  margin: 0;
}

.site_btn .btn_balloon {
  position: absolute;
  display: inline-block;
  bottom: 0.8em;
  left: -10px;
  width: 5em;
  height: 5em;
  font-family: "Noto Sans Japanese";
  line-height: 5em;
  text-align: center;
  color: #32b16c;
  font-size: 80%;
  font-weight: bold;
  background: #fff;
  border: 3px solid #32b16c;
  border-radius: 50%;
  box-sizing: border-box;
  transform: rotate(-10deg);
}

.site_btn .btn_balloon::before {
  position: absolute;
  content: "";
  bottom: -5px;
  right: -10px;
  border: 9px solid transparent;
  border-left: 15px solid #fff;
  z-index: 0;
  transform: rotate(45deg);
}

.site_btn:hover {
  transform: translate(0, 3px);
  background: #6bc594;
  box-shadow: 0 2px 0 #2c9d60;
}
.newpage_btn a:hover {
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  h1 {
    font-size: 2.2vw;
  }
  .cta_area {
    width: 100%;
  }
  .contact-area {
    display: block;
    width: 80%;
    margin: 0 auto;
  }
  .contact-area a {
    width: 100%;
  }
  .contact-area {
    width: 95%;
  }
  .wrap {
    width: 90%;
  }
  .footer_content {
    width: 90%;
  }
  .telnumber {
    font-size: 1.5em;
  }
  .sp {
    display: none;
  }
}
@media screen and (max-width: 415px) {
  .tag {
    padding-top: 25%;
  }
  .contact_icon {
    right: 75%;
  }
  h1 {
    font-size: 4vw;
  }
  .sp {
    display: block;
  }
}
