body {
  padding-inline: auto;
  margin-inline: auto;
  text-align: center;
  font-family: "Noto Sans JP";
  color: #333131;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

.container {
  max-width: 1120px;
  width: 100%;
  margin-inline: auto;
}

header {
  width: 100%;
  position: fixed;
  margin: 0;
  top: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  background-color: white;
}
header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 880px) {
  header {
    padding: 10px;
    opacity: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: white;
  }
}
header.open {
  background-color: rgb(255, 255, 255);
}
header .logo {
  width: 120px;
  max-height: 50px;
}
header .button-menu {
  cursor: pointer;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  position: relative;
  z-index: 1000;
}
header .button-menu span {
  display: block;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}
header .button-menu span:nth-child(1) {
  transform-origin: top left;
}
header .button-menu span:nth-child(3) {
  transform-origin: bottom left;
}
header .button-menu .text {
  display: none;
}
@media screen and (max-width: 880px) {
  header .button-menu {
    position: fixed;
    right: 20px;
  }
}
header .menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: left 0.3s ease;
}
header .menu ul {
  list-style: none;
  padding: 0;
}
header .menu ul li {
  margin-bottom: 1.5rem;
}
header .menu ul li a {
  text-decoration: none;
  font-size: 20px;
  color: #333;
}
header .menu .contact-btn {
  background-color: #bc2d33;
  color: #fff;
  padding: 20px 30px;
  display: block;
  text-decoration: none;
  font-size: 20px;
  border-radius: 5px;
  display: inline-block;
  margin-left: 15px;
}
@media screen and (max-width: 880px) {
  header .menu .contact-btn {
    padding-inline: 10px;
    padding-block: 15px;
    width: 100%;
    position: fixed;
    bottom: 10px;
    margin-left: 0px;
  }
}
header .menu.open {
  left: 0;
}
@media (max-width: 880px) {
  header .button-menu {
    display: flex;
  }
  header .menu {
    display: none;
  }
  header .menu.open {
    display: flex;
    background-color: #fff;
  }
}
@media (min-width: 881px) {
  header .menu {
    display: flex;
    position: relative;
    top: auto;
    left: auto;
    height: auto;
    font-size: 20px;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
  }
  header .menu ul {
    display: flex;
    flex-direction: row;
    margin: 0;
  }
  header .menu ul li {
    margin: 0 15px;
  }
  header .button-menu {
    display: none;
  }
}

.follow-btn {
  width: 200px;
  padding-inline: 10px;
  padding-block: 15px;
  background-color: #BC2D33;
  color: white;
  display: none;
  text-decoration: none;
}
@media screen and (max-width: 880px) {
  .follow-btn {
    display: block;
    position: fixed;
    z-index: 99999;
    bottom: 10px;
    right: 0;
    width: 100%;
  }
}

.fv-sp img {
  display: none;
}
@media screen and (max-width: 880px) {
  .fv-sp img {
    display: block;
  }
}

.fv-pc {
  margin-top: 69px;
}

.fv-pc img {
  width: 1180px;
}
@media screen and (max-width: 880px) {
  .fv-pc img {
    display: none;
  }
}

#concept {
  margin-top: 20px;
}
#concept .about-wb {
  display: inline-flex;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 880px) {
  #concept .about-wb {
    display: block;
    margin-bottom: 20px;
  }
}
#concept .about-wb img {
  width: 45%;
}
@media screen and (max-width: 880px) {
  #concept .about-wb img {
    width: 80%;
  }
}
#concept .about-wb .text1 {
  width: 60%;
  padding-block: 20px;
  padding-left: 40px;
  padding-right: 15px;
  text-align: left;
}
@media screen and (max-width: 880px) {
  #concept .about-wb .text1 {
    width: 100%;
    padding: 15px;
    text-align: left;
  }
}
#concept .about-wb .text1 .title {
  color: #A59D9D;
  font-size: 24px;
}
@media screen and (max-width: 880px) {
  #concept .about-wb .text1 .title {
    font-size: 16px;
  }
}
#concept .about-wb .text1 h2 {
  font-size: 32px;
  margin-bottom: 20px;
}
@media screen and (max-width: 880px) {
  #concept .about-wb .text1 h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
}
#concept .about-wb .text1 p {
  font-size: 20px;
}
@media screen and (max-width: 880px) {
  #concept .about-wb .text1 p {
    font-size: 14px;
  }
}

#wb h2 {
  font-size: 32px;
  margin-top: 25px;
  font-weight: 500;
  margin-bottom: 60px;
}
@media screen and (max-width: 880px) {
  #wb h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
#wb img {
  margin-top: 60px;
}
#wb .wb-item {
  display: flex;
  border: 1px solid #BC2D33;
  align-items: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 880px) {
  #wb .wb-item {
    display: block;
    width: 95%;
    padding: 20px;
    margin-bottom: 20px;
  }
}
#wb .wb-item .wb-left {
  padding: 35px;
  width: 50%;
}
#wb .wb-item .wb-left p {
  font-size: 24px;
  text-align: left;
  padding: 15px;
}
@media screen and (max-width: 880px) {
  #wb .wb-item .wb-left p {
    text-align: center;
    font-size: 18px;
  }
}
#wb .wb-item .wb-left img {
  margin-top: 20px;
}
@media screen and (max-width: 880px) {
  #wb .wb-item .wb-left img {
    width: 80%;
  }
}
@media screen and (max-width: 880px) {
  #wb .wb-item .wb-left {
    width: 100%;
    padding-bottom: 20px;
    padding-top: 0;
  }
}
#wb .wb-item .message {
  width: 50%;
  text-align: left;
  padding-right: 35px;
  font-size: 20px;
}
@media screen and (max-width: 880px) {
  #wb .wb-item .message {
    width: 100%;
    font-size: 14px;
    padding-right: 0;
  }
}

#area h2 {
  font-size: 32px;
  margin-top: 25px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 880px) {
  #area h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}

#contact h2 {
  font-size: 32px;
  margin-top: 25px;
  font-weight: 500;
  margin-bottom: 40px;
  margin-top: 80px;
}
@media screen and (max-width: 880px) {
  #contact h2 {
    font-size: 24px;
    margin-bottom: 20px;
    margin-top: 40px;
  }
}
#contact .contact-form {
  width: 980px;
  padding-inline: 2%;
  margin-inline: auto;
}
@media screen and (max-width: 880px) {
  #contact .contact-form {
    width: 95%;
    padding-inline: 0;
  }
}
#contact .contact-form p {
  width: 100%;
  font-size: 14px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
#contact .contact-form dl {
  display: flex;
  flex-wrap: wrap;
  margin-top: 20px;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl {
    display: block;
  }
}
#contact .contact-form dl dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 20%;
}
#contact .contact-form dl dt p {
  width: 100%;
  font-size: 16px;
}
#contact .contact-form dl dt span {
  color: white;
  background-color: #AA0404;
  font-size: 12px;
  height: 20px;
  margin-left: 5px;
  padding: 0 5px 5px 5px;
  align-items: center;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl dt {
    width: 100%;
    margin-bottom: 10px;
  }
}
#contact .contact-form dl dd {
  width: 80%;
  padding-bottom: 15px;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl dd {
    width: 100%;
  }
}
#contact .contact-form dl .check-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#contact .contact-form dl .check-box p .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#contact .contact-form dl .check-box .list {
  padding-bottom: 10px;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl .check-box {
    font-size: 12px;
  }
}
#contact .contact-form dl .check-box label {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-right: 20px;
}
#contact .contact-form dl .check-box .visually-hidden {
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-form dl .check-box2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
#contact .contact-form dl .check-box2 .list {
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl .check-box2 .list {
    font-size: 12px;
  }
}
#contact .contact-form dl .check-box2 .list label {
  width: -moz-fit-content;
  width: fit-content;
  min-width: 110px;
  margin-right: 20px;
  text-align: left;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl .check-box2 .list label {
    min-width: 105px;
  }
}
#contact .contact-form dl .check-box2 .list .visually-hidden {
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-form dl .checkbox {
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  padding-left: 5px;
  position: relative;
}
#contact .contact-form dl .checkbox::before,
#contact .contact-form dl .checkboxl::after {
  content: "";
  display: block;
  position: absolute;
}
#contact .contact-form dl .checkbox::after {
  border-bottom: 2px solid #ddd;
  border-left: 2px solid #ddd;
  opacity: 0;
  height: 5px;
  width: 10px;
  transform: rotate(-45deg);
  top: 2px;
  left: 10px;
}
#contact .contact-form dl input:checked + .checkbox::after {
  opacity: 1;
}
@media screen and (max-width: 880px) {
  #contact .contact-form dl {
    display: block;
  }
}
#contact .contact-form input {
  border: 1px solid hwb(0 63% 36%);
  width: 100%;
  height: 40px;
  padding: 10px;
  padding-left: 15px;
}
#contact .contact-form input[type=checkbox] {
  width: -moz-fit-content;
  width: fit-content;
  transform: scale(1);
}
#contact .contact-form .gender-form {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#contact .contact-form .gender-form p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
#contact .contact-form .gender-form p .wpcf7-form-control-wrap {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
#contact .contact-form .gender-form #gender1 {
  width: -moz-fit-content;
  width: fit-content;
}
#contact .contact-form .gender-form #gender2 {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 20px;
}
#contact .contact-form .gender-form label {
  margin-left: 5px;
}
#contact .contact-form textarea {
  border: 1px solid hwb(0 63% 36%);
  width: 100%;
  height: 160px;
  margin-bottom: 25px;
  padding: 15px;
  padding-top: 10px;
}
#contact .privacy {
  font-size: 16px;
}
#contact .privacy p {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
#contact .privacy p label {
  margin-left: 7px;
}
#contact .privacy a {
  color: #000;
}
#contact .wpcf7-list-item {
  margin: 0;
}
#contact .wpcf7-list-item label {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#contact .wpcf7-list-item label span {
  padding-left: 7px;
}
#contact .wpcf7-form-control-wrap {
  width: 100%;
  position: relative;
}
#contact .send-btn {
  margin: 30px auto;
  width: 300px;
  padding-left: 60px;
}
#contact #submit-btn:disabled {
  pointer-events: none;
}
#contact .submit-btn {
  border: 1px solid #AA0404;
  background-color: #AA0404;
  color: white;
  font-size: 14px;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 200px;
  margin-bottom: 60px;
}
#contact .submit-btn:hover {
  background-color: white;
  color: #333;
}/*# sourceMappingURL=style.css.map */