@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&family=Zen+Kaku+Gothic+New:wght@400;500&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  position: relative;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.8;
  background-color: #FFF7E5;
  color: #000000;
}

a,
button {
  display: inline-block;
  transition: all 0.3s ease;
}

i {
  display: inline-block;
}

img {
  object-fit: cover;
}

h1 {
  line-height: 1;
}

h2,
h3 {
  font-weight: 500;
  line-height: 1.5;
}

.container {
  width: 90%;
  max-width: 1080px;
  padding: 70px 0;
  margin: 0 auto;
}
.container_long {
  max-width: 1200px;
}
.flex_box {
  display: flex;
}
.flex_box.wrap {
  flex-direction: row;
  flex-wrap: wrap;
}
.flex_box.column {
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .flex_box {
    flex-direction: column;
  }
}

.btn {
  width: 400px;
  border: 4px solid #fff;
  border-radius: 40px;
  padding: 15px 5px;
  background-color: #FF69B4;
  color: #ffffff;
  text-align: center;
  box-shadow: 0 4px 20px rgba(18, 18, 18, 0.2);
  font-weight: 500;
}
.btn:hover {
  background-color: #fff;
  color: #FF69B4;
  border: 4px solid #FF69B4;
}
.btn_box {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn {
    width: 300px;
  }
}

.head_text {
  margin-bottom: 40px;
  font-size: 3.2rem;
  color: #E25E00;
  text-align: center;
}
.head_text span {
  display: block;
  color: #FF69B4;
  font-family: "Poppins", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 1rem;
}
@media screen and (max-width: 767px) {
  .head_text {
    margin-bottom: 20px;
    font-size: 2.4rem;
  }
  .head_text span {
    font-size: 1.2rem;
  }
}

.text_orange {
  color: #E25E00;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .text_orange {
    font-size: 1.8rem;
  }
}

@media screen and (min-width: 768px) {
  .tel_num {
    pointer-events: none;
  }
}

.scroll_top {
  width: 50px;
  aspect-ratio: 1/1;
  position: fixed;
  bottom: 30px;
  right: 30px;
}
.scroll_top:hover {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .only_sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .only_pc {
    display: none;
  }
}
.header {
  width: 100%;
  padding: 15px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.header_logo {
  width: 130px;
}
.header_logo a:hover {
  opacity: 0.7;
}
.header_logo img {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header {
    padding: 10px;
  }
}

.burger_btn {
  width: 60px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding-top: 15px;
  background-image: url(../img/burger_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #FF69B4;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  transition: all 0.3s ease;
  cursor: pointer;
}
.burger_btn:hover {
  opacity: 0.7;
}
@media screen and (min-width: 1555px) {
  .burger_btn {
    display: none;
  }
}

.nav {
  width: 200px;
  padding: 30px 20px;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px #E4C889;
  position: fixed;
  top: 100px;
  right: 50px;
  z-index: 1;
}
.nav_title {
  display: inline-block;
  padding: 0 10px;
  background-color: #FF69B4;
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.5;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}
.nav ul {
  text-align: center;
}
.nav ul a:hover {
  opacity: 0.7;
}
.nav ul.nav_menu {
  margin-bottom: 30px;
  font-size: 1.6rem;
}
.nav ul.nav_menu li:not(:last-child) {
  border-bottom: 2px dashed #E25E00;
}
.nav ul.nav_menu a {
  display: block;
  padding: 5px;
}
.nav ul.flex_box {
  align-items: center;
  gap: 15px;
}
.nav ul.flex_box a {
  display: block;
  width: 105px;
  aspect-ratio: 1/1;
  padding-top: 20px;
  background-image: url(../img/flow_num_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
}
.nav ul.flex_box img {
  margin: 5px auto 0;
}
.nav.show {
  display: block;
  z-index: 3;
}
@media screen and (max-width: 1629px) {
  .nav {
    right: 20px;
  }
}
@media screen and (max-width: 1554px) {
  .nav {
    display: none;
    width: 90%;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .nav ul.flex_box {
    flex-direction: row;
    justify-content: center;
  }
}

.filter {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  display: none;
}
.filter.show {
  display: block;
  pointer-events: all;
  cursor: pointer;
}

.footer {
  width: 100%;
  left: 0;
  top: 100vh;
  position: sticky;
  padding: 30px 0 80px;
  background-image: url(../img/footer_bg.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.footer .container {
  border-radius: 20px;
  padding: 25px 60px 35px;
  overflow: hidden;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  position: relative;
}
.footer .container:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(7px);
  position: absolute;
  top: 0;
  left: 0;
}
.footer img {
  width: 130px;
  position: relative;
}
.footer nav {
  position: relative;
  flex: 1;
  max-width: 700px;
}
.footer nav ul:nth-of-type(1) {
  margin-bottom: 30px;
  gap: 20px 30px;
  justify-content: flex-start;
}
.footer nav ul:nth-of-type(2) {
  margin-top: 40px;
  gap: 10px 20px;
  justify-content: flex-end;
  font-size: 1.2rem;
}
.footer nav a:not(.btn):hover {
  color: #E25E00;
}
.footer nav .btn {
  width: 245px;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0 60px;
  }
  .footer .container {
    padding: 30px 20px;
    align-items: center;
  }
}

.main_visual {
  width: 100%;
  height: 110vh;
  background-image: url(../img/mv_bg.webp);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
}
.main_visual .container {
  height: 100%;
  max-width: none;
  padding-bottom: 0;
}
@media screen and (min-width: 945px) {
  .main_visual .only_944 {
    display: none;
  }
}
.main_visual_msg {
  font-size: 4.8rem;
  line-height: 1.5;
  white-space: nowrap;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
}
.main_visual_msg_area {
  width: 70%;
  height: 80%;
  margin: 0 auto;
  position: relative;
}
.main_visual_msg:nth-of-type(1) {
  color: #ffffff;
  top: 35%;
  left: 0;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.main_visual_msg:nth-of-type(3) {
  color: #ffffff;
  top: -30px;
  right: 0;
  text-shadow: 0 3px 5px rgba(0, 0, 0, 0.4);
}
.main_visual_msg:nth-of-type(3) span {
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
  text-combine-upright: all;
}
.main_visual_msg.text_orange {
  font-size: 3.2rem;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main_visual_msg.text_orange span {
  color: #FF69B4;
}
@media screen and (max-width: 1629px) {
  .main_visual {
    height: 90vh;
  }
  .main_visual_msg {
    font-size: 4rem;
  }
  .main_visual_msg.text_orange {
    top: 60%;
  }
  .main_visual_msg:nth-of-type(1) {
    top: 40%;
  }
  .main_visual_msg:nth-of-type(3) {
    top: -60px;
  }
}
@media screen and (max-width: 1290px) {
  .main_visual_msg {
    font-size: 3.6rem;
  }
  .main_visual_msg_area {
    width: 60%;
    height: 70%;
  }
  .main_visual_msg.text_orange {
    font-size: 2.4rem;
  }
  .main_visual_msg:nth-of-type(1) {
    top: 30%;
  }
}
@media screen and (max-width: 1239px) {
  .main_visual_msg {
    font-size: 3rem;
  }
  .main_visual_msg_area {
    width: 60%;
    height: 70%;
  }
  .main_visual_msg.text_orange {
    font-size: 2.4rem;
  }
  .main_visual_msg:nth-of-type(1) {
    top: 40%;
    left: -10%;
  }
  .main_visual_msg:nth-of-type(3) {
    top: -40px;
    right: -10%;
  }
}
@media screen and (max-width: 1024px) {
  .main_visual {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 944px) {
  .main_visual {
    background-image: url(../img/mv_bg_sp.webp);
    background-size: cover;
  }
  .main_visual_msg {
    font-size: 2rem;
  }
  .main_visual_msg_area {
    width: 90%;
    height: 100%;
  }
  .main_visual_msg.text_orange {
    top: 50%;
    transform: -50%, -50%;
    font-size: 1.8rem;
  }
  .main_visual_msg:nth-of-type(1) {
    top: 50%;
    left: 5%;
  }
  .main_visual_msg:nth-of-type(3) {
    top: 30px;
    right: 0;
  }
  .main_visual_after {
    width: 90%;
    margin: 0 auto;
  }
}

.about .flex_box {
  justify-content: center;
  align-items: flex-start;
  gap: 10px 30px;
}
.about .text_area {
  flex: 1;
}
.about .text_orange {
  margin-bottom: 10px;
}
.about .text_orange + p {
  font-weight: 400;
  line-height: 2;
}
.about img {
  width: 50%;
  max-width: 553px;
}
@media screen and (max-width: 767px) {
  .about .flex_box {
    align-items: center;
  }
  .about .text_orange {
    font-size: 1.6rem;
    line-height: 2;
  }
  .about img {
    width: 100%;
  }
}

.solutions {
  margin: 50px 0;
  background-color: #ffffff;
  position: relative;
}
.solutions:before, .solutions:after {
  content: "";
  width: 100%;
  height: 50px;
  background-size: contain;
  background-repeat: repeat-x;
  position: absolute;
  left: 0;
}
.solutions:before {
  background-image: url(../img/bg-zuuchi02.webp);
  background-position: center bottom;
  top: -50px;
}
.solutions:after {
  background-image: url(../img/bg-zuuchi03.webp);
  background-position: center top;
  bottom: -50px;
}
.solutions ul {
  margin-bottom: 50px;
  justify-content: center;
  gap: 30px 40px;
}
.solutions ul + .text_orange {
  text-align: center;
}
.solutions li {
  text-align: center;
}
.solutions img {
  width: 100%;
  margin: 0 auto 5px;
}
@media screen and (max-width: 767px) {
  .solutions {
    margin: 0;
  }
  .solutions ul + .text_orange {
    text-align: left;
  }
}

.feature .text_orange {
  margin-bottom: 60px;
  text-align: center;
  font-size: 2.4rem;
}
.feature img {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .feature .text_orange {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}

.point {
  background-image: url(../img/point_bg.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.point .head_text {
  margin-bottom: 0;
}
.point li {
  padding: 40px 0;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 30px 8%;
}
.point li:not(:last-child) {
  border-bottom: 2px dashed #E25E00;
}
.point li:nth-of-type(2n + 2) {
  flex-direction: row-reverse;
}
.point .text_area {
  flex: 1;
}
.point span {
  display: block;
  font-family: "Poppins", sans-serif;
}
.point h3 {
  margin: 5px 0;
  font-size: 2.4rem;
  font-weight: 700;
}
.point img {
  width: 40%;
  max-width: 400px;
}
.point a {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .point li {
    padding: 30px 0;
  }
  .point li:nth-of-type(2n + 2) {
    flex-direction: column;
  }
  .point img {
    width: 100%;
  }
  .point h3 {
    font-size: 2rem;
  }
}

.business .flex_box {
  justify-content: center;
  align-items: flex-start;
  gap: 30px 80px;
}
.business img {
  width: 40%;
  max-width: 400px;
}
.business .text_area {
  flex: 1;
}
.business .text_orange {
  margin-bottom: 25px;
}
.business .text_orange + p {
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .business img {
    width: 100%;
  }
  .business .text_orange {
    font-size: 1.6rem;
    line-height: 2;
  }
}

.scene ul {
  margin-bottom: 100px;
  justify-content: center;
  gap: 30px 45px;
}
.scene li {
  width: 330px;
  text-align: center;
}
.scene .image_area {
  width: 100%;
  border-radius: 10px;
  padding: 10px;
  background-color: #ffffff;
}
.scene .image_area img {
  height: 196px;
  margin: 0 auto;
}
.scene .text_orange {
  margin: 5px 0;
}
.scene .text_orange + p {
  font-weight: 400;
}

.border_icon_area {
  border-top: 1px dashed #E25E00;
  border-bottom: 1px dashed #E25E00;
  padding: 20px 35px 35px;
  position: relative;
}
.border_icon_area h2.text_orange {
  margin-bottom: 20px;
  text-align: center;
  font-size: 2.4rem;
}
.border_icon_area .image_area {
  width: 125px;
  height: 60px;
  border-radius: 50%/100% 100% 0 0;
  border: 1px dashed #E25E00;
  border-bottom: none;
  background-color: #FFF7E5;
  position: absolute;
  top: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.border_icon_area .image_area img {
  height: 80%;
  margin: 15px auto 0;
}
.border_icon_area.guide ul {
  padding-left: 20px;
  gap: 10px;
  list-style: disc;
  list-style-position: outside;
  font-size: 1.8rem;
}
.border_icon_area.guide li {
  width: auto;
  text-align: left;
}
.border_icon_area.cake {
  padding: 35px;
}
.border_icon_area.cake .image_area img {
  height: auto;
  margin-top: 20px;
}
.border_icon_area.cake .text_orange {
  text-align: center;
  font-size: 1.6rem;
  line-height: 2;
}
@media screen and (max-width: 1190px) {
  .border_icon_area.cake {
    padding: 35px 0;
  }
}
@media screen and (max-width: 767px) {
  .border_icon_area.cake {
    padding: 20px 0;
  }
  .border_icon_area.cake .text_orange {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  .border_icon_area {
    padding: 20px 0;
  }
  .border_icon_area h2.text_orange {
    font-size: 2rem;
  }
}

.cta {
  background-color: #ffffff;
  position: relative;
}
.cta_illust {
  width: 10%;
  max-width: 170px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.cta_illust:nth-of-type(1) {
  right: 90%;
}
.cta_illust:nth-of-type(2) {
  left: 90%;
}
.cta .flex_box {
  justify-content: center;
  gap: 30px 20%;
  align-items: center;
}
.cta .text_orange {
  font-size: 2.4rem;
}
.cta .text_orange span {
  color: #FF69B4;
}
.cta ul {
  gap: 20px;
}
@media screen and (max-width: 1244px) {
  .cta .flex_box {
    gap: 20px 30px;
  }
  .cta .only_sp {
    display: block;
  }
  .cta .btn {
    width: 320px;
    border-radius: 60px;
  }
}
@media screen and (max-width: 834px) {
  .cta_illust {
    width: 100px;
    top: -30px;
    transform: translateY(0);
  }
  .cta_illust:nth-of-type(1) {
    display: none;
  }
  .cta_illust:nth-of-type(2) {
    left: auto;
    right: 5px;
  }
  .cta .flex_box {
    flex-direction: column;
  }
  .cta .text_orange {
    font-size: 2rem;
  }
}

.voice ul {
  justify-content: center;
  gap: 40px;
}
.voice li {
  width: 45%;
  max-width: 520px;
  border: 2px solid #E25E00;
  border-radius: 10px;
  padding: 30px 25px;
  background-color: #ffffff;
  gap: 10px 25px;
  font-weight: 400;
}
.voice .image_area {
  width: 135px;
}
.voice .image_area p {
  margin-top: 10px;
  font-size: 1.2rem;
  text-align: center;
}
.voice .image_area + p {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .voice li {
    width: 335px;
    padding: 10px 20px 30px;
  }
  .voice .image_area {
    width: 100%;
  }
  .voice .image_area img {
    margin: 0 auto;
  }
}

.flow {
  background-color: #F5F5F5;
}
.flow ul {
  margin-top: 80px;
  justify-content: center;
  gap: 70px 30px;
}
.flow li {
  width: 245px;
  border-radius: 15px;
  padding: 60px 20px 30px;
  background-color: #ffffff;
  position: relative;
}
.flow_num {
  width: 80px;
  aspect-ratio: 1/1;
  padding-top: 15px;
  background-image: url(../img/flow_num_bg.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  line-height: 1.2;
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.flow_num span {
  display: block;
  font-size: 3.6rem;
}
.flow h3 {
  margin-bottom: 10px;
  text-align: center;
  font-size: 2rem;
}
.flow img {
  margin: 0 auto 25px;
}
.flow p {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .flow ul {
    margin-top: 60px;
  }
  .flow li {
    max-width: 335px;
    width: 100%;
  }
}

.faq ul.column {
  margin-bottom: 50px;
  gap: 40px;
}
.faq ul.column li {
  border-radius: 15px;
  padding: 25px 40px;
  background-color: #ffffff;
  cursor: pointer;
}
.faq ul.column .flex_box {
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 25px;
  line-height: 1.5;
}
.faq ul.column span {
  display: block;
  width: 50px;
  aspect-ratio: 1/1;
  padding-top: 3px;
  border-radius: 47% 53% 42% 58%/45% 31% 69% 55%;
  color: #ffffff;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 2.6rem;
}
.faq ul.column p {
  flex: 1;
}
.faq_question {
  position: relative;
}
.faq_question span {
  background-color: #FF69B4;
}
.faq_question p {
  color: #FF69B4;
  font-size: 2.4rem;
  font-weight: 500;
  margin-top: 7px;
}
.faq_question i {
  color: #E25E00;
  font-size: 3rem;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
}
.faq_question.opened i.fa-plus {
  display: none;
}
.faq_answer {
  margin-top: 30px;
  display: none;
}
.faq_answer span {
  background-color: #FCB23B;
}
.faq_answer p {
  font-size: 2rem;
  font-weight: 400;
}
.faq .text_orange {
  margin-bottom: 60px;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8;
}
.faq .text_orange + ul {
  justify-content: center;
  align-items: center;
  gap: 20px 6%;
}
@media screen and (max-width: 1024px) {
  .faq .btn {
    width: 350px;
  }
}
@media screen and (max-width: 767px) {
  .faq .btn {
    width: 300px;
    border-radius: 60px;
  }
  .faq ul.column li {
    padding: 40px 20px;
  }
  .faq ul.column .flex_box {
    gap: 15px;
  }
  .faq ul.column span {
    width: 40px;
    font-size: 2.2rem;
  }
  .faq_question p {
    font-size: 1.8rem;
  }
  .faq_question i {
    font-size: 2.6rem;
    top: -15px;
    transform: 0;
  }
  .faq_answer p {
    font-size: 1.8rem;
  }
  .faq .text_orange {
    margin-bottom: 40px;
    font-size: 2rem;
    text-align: left;
  }
}

form a {
  text-decoration: underline;
}
form a:hover {
  color: #E25E00;
}
form dl {
  display: flex;
  flex-wrap: wrap;
  border-top: none;
  border-radius: 30px;
  padding: 40px 30px;
  text-align: left;
  margin-bottom: 60px;
  background-color: #ffffff;
}
form dt {
  width: 25%;
  padding: 25px 15px;
  box-sizing: border-box;
  border-bottom: solid 1px #E25E00;
}
form dd {
  padding: 25px 15px;
  margin: 0;
  width: 75%;
  box-sizing: border-box;
  border-bottom: solid 1px #E25E00;
}
form input[type=tel], form input[type=text], form input[type=email], form input[type=date], form select {
  height: 45px;
  font-size: 16px;
  border: 1px solid #E25E00;
  padding: 3px 10px;
  background-color: #FFFFFF;
}
form textarea {
  font-size: 16px;
  border-radius: 5px;
  border: 1px solid #E25E00;
  padding: 3px 10px;
  width: 100%;
  background-color: #FFFFFF;
  color: #000;
}
form input, form select {
  vertical-align: middle;
  border-radius: 5px;
}
form .boxW100 input, form .boxW100 textarea {
  width: 100%;
  box-sizing: border-box;
}
form .boxW49 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
form .boxW49 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW50 input {
  width: 49%;
  box-sizing: border-box;
}
form .boxW20 input {
  width: 20%;
  box-sizing: border-box;
}
form .boxW20 span {
  padding-left: 10px;
}
form .radio input {
  height: auto;
  transform: scale(1.7);
  vertical-align: inherit;
}
form .must {
  display: inline-block;
  background-color: red;
  font-size: 10px;
  line-height: 1.5em;
  color: #F5F5F5;
  margin: 0 0 0 10px;
  padding: 2px 5px;
}
form #image-btn {
  margin-top: 10px;
  text-align: center;
}
form #image-btn .btn {
  width: 250px;
  transition: 0.3s ease;
}
form .dateSelect span {
  display: block;
}
form .radioArea {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}
form .formBtn {
  display: flex;
  justify-content: center;
  column-gap: 20px;
  margin-top: 20px;
}
form #image-btn.topBtn {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  form dl {
    display: block;
    padding: 30px 20px;
    margin: 0 auto 25px;
  }
  form dt {
    width: 100%;
    padding: 15px 0 10px;
    border-bottom: none;
  }
  form dd {
    padding: 0 0 15px;
    width: 100%;
  }
  form dd img {
    width: 250px;
    margin: 0 0 10px 10px;
  }
  form .formBtn {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}

/*チェックボックス*/
.checkBox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.inputGroup {
  width: 49.5%;
  display: inline-block;
  margin: 0 0 5px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .inputGroup {
    width: 100%;
  }
}

.inputGroup label {
  padding: 12px 15px;
  width: 100%;
  box-sizing: border-box;
  display: block;
  text-align: left;
  color: #3C454C;
  cursor: pointer;
  position: relative;
  z-index: 2;
  transition: color 200ms ease-in;
  overflow: hidden;
  background-color: #FFFFFF;
}

.inputGroup label:before {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale3d(1, 1, 1);
  transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  z-index: -1;
}

.inputGroup label:after {
  width: 26px;
  height: 26px;
  content: "";
  border: 2px solid #D1D7DC;
  background-color: #FFFFFF;
  background-image: url("data:image/svg+xml,%3Csvg width='26' height='26' viewBox='0 0 26 26' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.414 11L4 12.414l5.414 5.414L20.828 6.414 19.414 5l-10 10z' fill='%23fff' fill-rule='nonzero'/%3E%3C/svg%3E ");
  background-repeat: no-repeat;
  background-position: -1px 0px;
  border-radius: 50%;
  z-index: 2;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  transition: all 200ms ease-in;
}

.inputGroup input:checked ~ label:before {
  transform: translate(-50%, -50%) scale3d(56, 56, 1);
  opacity: 1;
}

.inputGroup input:checked ~ label:after {
  background-color: #333;
  border-color: #333;
}

.inputGroup input {
  width: 26px;
  height: 26px;
  order: 1;
  z-index: 2;
  position: absolute;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  visibility: hidden;
}

.contact_area_item {
  margin-bottom: 50px;
  text-align: center;
}
.contact_area_item p {
  margin-bottom: 20px;
}
.contact_area_item .btn {
  width: 300px;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .contact_area_item {
    margin-bottom: 30px;
    text-align: left;
  }
}

.privacy p {
  margin-bottom: 50px;
}
.privacy dt {
  margin-bottom: 10px;
  color: #E25E00;
  font-size: 2rem;
  font-weight: 500;
}
.privacy dd {
  padding-left: 20px;
  margin-bottom: 50px;
}
.privacy ol {
  margin-top: 10px;
  list-style-type: decimal;
  list-style-position: inside;
}
@media screen and (max-width: 767px) {
  .privacy p {
    margin-bottom: 30px;
  }
  .privacy dt {
    font-size: 1.8rem;
  }
  .privacy dd {
    padding-left: 0;
    margin-bottom: 25px;
  }
}

.sitemap .container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  column-gap: 30px;
}
.sitemap ul {
  width: 48%;
  border-bottom: 1px solid rgba(68, 68, 68, 0.4);
}
.sitemap a {
  display: block;
  width: 100%;
  height: 100%;
  border-top: 1px solid rgba(68, 68, 68, 0.4);
  padding: 20px 10px;
  position: relative;
}
.sitemap a i {
  color: #0071BC;
  position: absolute;
  top: 27px;
  right: 50px;
  transition: 0.3s ease;
}
.sitemap a:hover {
  color: #0071BC;
}
.sitemap a:hover i {
  right: 40px;
}
.sitemap .sub_menu {
  width: 85%;
  border-bottom: none;
  margin: 0 0 0 auto;
}
.sitemap .sub_menu a i {
  position: inherit;
  top: 0;
  left: 0;
  margin-right: 5px;
  color: #37C2D2;
}
.sitemap .sub_menu .sub_menu a i {
  color: #86ebf6;
}
@media screen and (max-width: 767px) {
  .sitemap .container {
    flex-direction: column;
    align-items: center;
  }
  .sitemap ul {
    width: 100%;
    max-width: 500px;
  }
  .sitemap ul:nth-of-type(1) {
    border-bottom: none;
  }
  .sitemap a {
    padding: 10px 5px;
  }
  .sitemap a i {
    top: 17px;
    right: 30px;
  }
  .sitemap a:hover i {
    right: 20px;
  }
  .sitemap .sub_menu {
    width: 90%;
  }
}/*# sourceMappingURL=style.css.map */