/* CSS Document */
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  font-family: "Hanken Grotesk", "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #333333;
  box-sizing: border-box;
}

.google-map {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.google-map::after {
  content: "";
  width: 24px;
  height: 24px;
  display: inline-block;
  background-image: url(../../images/map_icon.png);
  background-size: contain;
}

h3 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #353B5B;
}
h3 span {
  font-size: 2.8rem;
  font-weight: 400;
}
h3 .left {
  padding-left: 5px;
}
h3 .right {
  padding-right: 5px;
}

.more {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  transition: all 0.5s;
}
.more:hover {
  transform: translateX(15px);
  letter-spacing: 0.1em;
}

.b-btn {
  text-transform: uppercase;
  font-size: 1.8rem;
  font-weight: 800;
  width: -moz-fit-content;
  width: fit-content;
  right: 0;
  margin-top: 20px;
  display: flex;
  align-items: center;
}
.b-btn::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 60px;
  background-image: url("../../images/btn__more.webp");
  background-size: contain;
  margin-left: 15px;
}

.link-mark::after {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  background-image: url("../../images/pagelink_icon.png");
  background-size: contain;
}

a {
  -webkit-tap-highlight-color: transparent;
}

@media screen and (max-width: 1000px) {
  body {
    font-size: 1.4rem;
  }
  main {
    overflow: hidden;
  }
  h3 {
    font-size: max(5vw, 2.8rem);
  }
  h3 span {
    font-size: max(2.6vw, 1.2rem);
  }
  .more {
    transition: unset;
  }
  .more:hover {
    transform: unset;
    letter-spacing: unset;
  }
}
button {
  color: #333333;
}

.pink-circle {
  display: flex !important;
  align-items: center;
  justify-content: center;
  background-color: #F9CED9;
  padding: 0px 20px;
  height: 55px;
  border-radius: 50px;
  font-weight: 700;
  transition: all 0.1s;
}
.pink-circle:hover {
  background-color: #ffe0e7;
}

.pink-border {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 55px;
  background-color: #F8F8FF;
  padding: 0px 20px;
  border-radius: 50px;
  border: solid 2px #F9CED9;
  text-align: center;
  line-height: 1.2;
}
.pink-border span {
  font-size: 1.2rem;
}
.pink-border .more {
  position: static;
}
.pink-border .more:hover {
  transform: unset;
  letter-spacing: unset;
}
.pink-border .b-btn {
  font-size: 1.4rem;
}
.pink-border .b-btn::after {
  width: 30px;
  height: 30px;
}

.fadeUpTrigger {
  opacity: 0;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
header {
  position: fixed;
  top: 0;
  z-index: 2;
  width: 100%;
  height: 100px;
  background-color: rgba(255, 255, 255, 0.9);
}
header .c-name a {
  display: flex;
  align-items: center;
  gap: 10px;
}
header .logo {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
header h1 {
  font-weight: 700;
  font-size: 1.8rem;
}
header .header-wrap {
  display: flex;
  width: 90%;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  margin: 0 auto;
}
header .openbtn {
  display: none;
}
header .nav-wrap {
  display: flex;
  align-items: center;
  gap: 35px;
  font-size: min(1.4vw, 1.6rem);
}
header .nav-wrap li a {
  display: block;
  text-decoration: none;
  color: #333333;
  transition: all 0.2s;
}
header .nav-wrap li a:hover {
  color: #7a7a7a;
}
header .has-child {
  position: relative;
}
header .has-child::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(135deg);
}
header .has-child ul {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  left: -20px;
  top: 35px;
  z-index: 4;
  padding: 20px 0;
  background: #fff;
  width: -moz-max-content;
  width: max-content;
  visibility: hidden;
  opacity: 0;
  transition: all 0.3s;
  font-weight: 700;
}
header .has-child ul li {
  padding: 0 40px;
}
header .has-child:hover > ul {
  visibility: visible;
  opacity: 1;
}
header .link-btn ul {
  display: flex;
  gap: 30px;
}
header .sp-name,
header .sp-menu {
  display: none;
}

@media screen and (max-width: 1000px) {
  header {
    height: 60px;
  }
  header .c-name {
    position: relative;
    z-index: 999;
  }
  header .c-name a {
    gap: 5px;
  }
  header .logo {
    width: 50px;
    height: 50px;
  }
  header h1 {
    font-size: 1.6rem;
  }
  header .header-wrap {
    padding: 0;
  }
  header .openbtn {
    display: block;
    position: fixed;
    right: 10px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    z-index: 999;
  }
  header .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 16px;
    height: 2px;
    border-radius: 5px;
    background: #353B5B;
    width: 40%;
  }
  header .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  header .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  header .openbtn span:nth-of-type(2)::after {
    content: "Menu";
    position: absolute;
    top: 7px;
    left: -4px;
    color: #353B5B;
    font-size: 1rem;
    text-transform: uppercase;
  }
  header .openbtn .close-btn {
    opacity: 1;
    font-size: 2.4rem;
    text-align: center;
    line-height: 0.8;
    height: 25px;
    width: 25px;
    border: solid 1px #333333;
    background: unset;
    border-radius: 50px;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    opacity: 0;
  }
  header .openbtn.active span:nth-of-type(1) {
    opacity: 0;
  }
  header .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  header .openbtn.active span:nth-of-type(2)::after {
    content: unset;
  }
  header .openbtn.active .close-btn {
    opacity: 1;
  }
  header .menu-nav {
    background-color: #fff;
    position: absolute;
    top: 0;
    left: -120%;
    width: 100%;
    height: 100vh;
    overflow-y: auto;
    transition: all 0.6s;
  }
  header .menu-nav.active {
    left: 0;
  }
  header .nav-wrap {
    flex-direction: column;
    gap: 30px;
    align-items: flex-start;
    padding: 80px 0 50px;
    width: 90%;
    max-width: 375px;
    margin: 0 auto;
    font-size: 1.4rem;
  }
  header .nav-wrap li {
    width: 100%;
  }
  header .nav-wrap li a {
    display: block;
    width: -moz-fit-content;
    width: fit-content;
    text-decoration: none;
    color: #333333;
    transition: all 0.2s;
  }
  header .nav-wrap li a:hover {
    color: #7a7a7a;
  }
  header .nav-wrap .border {
    border-bottom: solid 1px #F9CED9;
  }
  header .has-child::before {
    content: none;
  }
  header .has-child ul {
    position: static;
    opacity: 1;
    visibility: unset;
    height: -moz-fit-content;
    height: fit-content;
    font-size: 1.2rem;
    font-weight: 400;
    background-color: unset;
  }
  header .has-child ul li {
    border-bottom: unset;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .has-child ul li::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url(../../images/btn__more.webp);
    background-size: contain;
  }
  header .has-child:hover > ul {
    visibility: unset;
  }
  header .link-btn {
    width: 100%;
  }
  header .link-btn ul {
    position: static;
    flex-direction: row;
    gap: 5px;
    padding: 0;
    justify-content: space-evenly;
  }
  header .link-btn ul a {
    font-size: 1.4rem;
  }
  header .sp-name {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
  }
  header .sp-menu {
    display: block;
  }
  header .google-map {
    margin-top: 10px;
  }
  header .address {
    margin: 20px 0;
  }
}
.contact {
  scroll-margin-top: 100px;
}
.contact .contact-wrap {
  width: 90%;
  max-width: 1060px;
  margin: 0 auto;
}
.contact .top-p {
  padding: 50px 0;
}
.contact h4 {
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 50px;
  justify-content: center;
  padding: 10px 70px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 4rem;
  display: flex;
  align-items: center;
  background-color: #F9CED9;
}
.contact h4::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-right: 10px;
  background-size: contain;
}
.contact .wrap {
  padding: 80px 0;
  background-color: #F8F8FF;
  border-radius: 20px;
}
.contact input[type=text]:focus,
.contact input[type=email]:focus,
.contact input[type=tel]:focus,
.contact textarea:focus {
  outline: 2px solid #F9CED9;
  outline-offset: 1px;
}
.contact .tel-wrap {
  margin-bottom: 80px;
}
.contact .tel-wrap .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
}
.contact .tel-wrap h4::before {
  background-image: url("../../images/telephone.webp");
}
.contact .tel-left p {
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
}
.contact .tel-right .tel-h {
  display: flex;
  align-items: center;
}
.contact .tel-right .tel-h::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #F9CED9;
  border-radius: 50px;
  margin-right: 5px;
}
.contact .tel-right .phone-number {
  font-size: 4.8rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  line-height: 1.2;
}
.contact .tel-right div:first-child {
  margin-bottom: 20px;
}
.contact .form-inner {
  width: 90%;
  max-width: 760px;
  margin: 0 auto;
}
.contact .form-inner h4::before {
  background-image: url("../../images/mail.webp");
}
.contact form .form-wrap {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 40px auto;
}
.contact form label {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact form .wpcf7-form-control {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 20px;
}
.contact form .wpcf7-list-item {
  width: 33.3%;
  margin: unset;
}
.contact form.sent .wpcf7-response-output {
  border-color: #F9CED9;
}
.contact form .form-content {
  display: flex;
  flex-direction: column;
}
.contact form .form-content input {
  width: 100%;
  max-width: 760px;
  height: 40px;
}
.contact form textarea {
  width: 100%;
}
.contact .radio-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  row-gap: 20px;
}
.contact .radio-wrap div {
  width: 33.3%;
  display: flex;
  align-items: center;
  gap: 5px;
}
.contact .radio-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 10px;
}
.contact .radio-content input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 17px;
  height: 17px;
  border: 2px solid #F9CED9;
  border-radius: 50%;
  margin: 3px 3px 5px 0;
}
.contact .radio-content input::before {
  content: "";
  display: block;
  width: 60%;
  height: 60%;
  margin: 20% auto;
  border-radius: 50%;
}
.contact .radio-content input:checked::before {
  background-color: #F9CED9;
}
.contact .message-wrap {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.contact .message-wrap label {
  font-weight: 700;
}
.contact .required {
  color: #F8F8FF;
  background-color: #F9CED9;
  border-radius: 5px;
  padding: 0 5px;
  margin-left: 10px;
}
.contact .b {
  font-weight: 700;
}
.contact label,
.contact input {
  cursor: pointer;
}
.contact .pink-circle {
  border: none;
  width: 220px;
  margin: 0 auto;
  justify-content: center;
  font-size: 2rem;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: unset;
}

@media screen and (max-width: 1000px) {
  .contact .contact-wrap {
    max-width: 500px;
  }
  .contact h4 {
    padding: 7px 25px;
    font-size: 2rem;
  }
  .contact h4::before {
    width: 25px;
    height: 25px;
    margin-right: 5px;
  }
  .contact .wrap {
    padding: 30px 0;
  }
  .contact .tel-wrap .inner {
    flex-direction: column;
    align-items: flex-start;
    width: -moz-fit-content;
    width: fit-content;
    gap: 20px;
  }
  .contact .tel-left p {
    margin: 20px 0 0;
  }
  .contact .tel-right .phone-number {
    font-size: 3.2rem;
  }
  .contact .form-inner {
    max-width: 350px;
  }
  .contact .form-inner h4 {
    width: 100%;
    padding: 10px 0;
  }
  .contact form .wpcf7-form-control {
    flex-wrap: nowrap;
    justify-content: flex-start;
    flex-direction: column;
    row-gap: 20px;
  }
  .contact form .wpcf7-list-item {
    width: 100%;
  }
  .contact .radio-wrap {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact .radio-wrap div {
    width: auto;
  }
  .contact .message-wrap {
    margin-top: 0;
  }
  .contact button {
    font-size: 1.6rem;
    width: 55%;
    max-width: 375px;
  }
}
footer {
  padding-bottom: 50px;
  padding: 100px 0 80px;
  background-image: linear-gradient(#fbecf8, #fadce7 25%, #f9ced9 70%, #fadce7);
  border-radius: 100px 100px 0 0;
}
footer .company-name {
  font-size: 2.6rem;
  font-weight: 700;
}
footer .footer-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 895px;
  margin: 0 auto;
  padding-top: 100px;
}
footer .footer-wrap .logo-wrap {
  display: flex;
  align-items: end;
  gap: 10px;
  margin-bottom: 10px;
}
footer .footer-wrap .logo-wrap img {
  width: 80px;
  height: 80px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footer-left {
  color: #353B5B;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .footer-right {
  color: #353B5B;
}
footer .footer-right .right-ul {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  row-gap: 30px;
  -moz-column-gap: 50px;
       column-gap: 50px;
  height: 190px;
}
footer .footer-right .right-ul .business-ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
footer .footer-right .right-ul .business-ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
footer .footer-right .right-ul .business-ul li::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 1px;
  background-color: #333333;
}
footer .back-btn {
  width: 100%;
  max-width: 1060px;
  margin: 30px auto;
  color: #F8F8FF;
  border-bottom: solid 1px #F8F8FF;
}
footer .back-btn p {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
footer .back-btn p::before {
  content: "";
  position: absolute;
  left: -15px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #F8F8FF;
  border-right: 2px solid #F8F8FF;
  transform: rotate(-45deg);
}
footer small {
  display: block;
  width: 90%;
  max-width: 895px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.2rem;
}

@media screen and (max-width: 1000px) {
  footer {
    border-radius: 30px 30px 0 0;
    padding: 50px 0 30px;
  }
  footer .company-name {
    font-size: 1.8rem;
  }
  footer .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: -moz-fit-content;
    width: fit-content;
    width: 90%;
    max-width: 500px;
  }
  footer .footer-wrap .logo-wrap img {
    width: 50px;
    height: 50px;
  }
  footer .footer-right .right-ul {
    flex-wrap: nowrap;
    height: auto;
    row-gap: 20px;
  }
  footer .footer-right .right-ul .business-ul {
    font-size: 1.2rem;
    padding-left: 5px;
  }
  footer .footer-right .right-ul .business-ul li::before {
    content: unset;
  }
  footer .back-btn {
    width: 90%;
  }
}
.recaptcha {
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-align: center;
}
.recaptcha a {
  color: blue;
}

.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=common.css.map */