@charset "UTF-8";
/* フォント設定 */
@font-face {
  font-family: "MFW-PA1GothicStdN-Bold";
}
@font-face {
  font-family: "MFW-PA1GothicStdN-Bold";
}
@font-face {
  font-family: "MFW-PA1GothicStdN-Medium";
}
@font-face {
  font-family: "MFW-PA1GothicStdN-Regular";
}
@font-face {
  font-family: "MFW-PA1GothicStdN-Light";
}
/* タグ・汎用クラス設定 */
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

img {
  image-rendering: -webkit-optimize-contrast;
}

html {
  font-size: 62.5%;
}

body {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
  color: #000;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
}

.content_wrap {
  /*
    max-width: 1920px;
    */
  margin: 0 auto;
  overflow: hidden;
}

section {
  position: relative;
}

p {
  color: #3e3a39;
  font-size: 1.9rem;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  p {
    font-size: 1.6rem;
  }
}

h2 {
  font-family: "MFW-PA1GothicStdN-Bold", sans-serif;
  color: #231815;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 2.8rem;
  }
}

h3 {
  font-family: "MFW-PA1GothicStdN-Bold", sans-serif;
  color: #eb6d73;
  font-size: 3.4rem;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2.4rem;
  }
}

li {
  list-style: none;
}

h2.deco_title {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 100px;
  background-color: #fff;
  border: 4px solid #eb6d73;
  border-radius: 40px;
  margin: 0 auto;
  color: #eb6d73;
  font-size: 3.5rem;
  line-height: 60px;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  h2.deco_title {
    font-size: 2.8rem;
    padding: 0 50px;
  }
}
h2.deco_title::before {
  content: "";
  display: block;
  width: 154px;
  height: 106px;
  background-image: url(../img/title_deco01.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  h2.deco_title::before {
    width: 77px;
    height: 53px;
  }
}
h2.deco_title::after {
  content: "";
  display: block;
  width: 68px;
  height: 88px;
  background-image: url(../img/title_deco02.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50%, -50%);
}
@media screen and (max-width: 768px) {
  h2.deco_title::after {
    width: 34px;
    height: 44px;
  }
}

a {
  text-decoration: none;
}

figure {
  width: 100%;
}
figure img {
  width: 100%;
}

.inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.flex {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 1100px) {
  .flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.flex.rev {
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .flex.rev {
    flex-direction: column;
  }
}

.text_box_blue {
  max-width: 1100px;
  padding: 48px 95px 55px 95px;
  background-color: #d2eeff;
  margin: 0 auto;
  border-radius: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .text_box_blue {
    padding: 40px;
  }
}
.text_box_blue h3 {
  margin-bottom: 1em;
}

.text_box_grey {
  max-width: 866px;
  padding: 32px 55px 40px 55px;
  background-color: #f2f2f2;
  margin: 0 auto;
  border-radius: 40px;
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .text_box_grey {
    padding: 40px;
  }
}
.text_box_grey::before {
  content: "";
  display: block;
  width: 50px;
  height: 35px;
  background-color: #f2f2f2;
  clip-path: polygon(100% 0, 0 0, 50% 100%);
  position: absolute;
  left: 50%;
  bottom: 1px;
  transform: translate(-50%, 100%);
}
.text_box_grey h3 {
  margin-bottom: 0.5em;
}

.text_box_yellow {
  width: 428px;
  padding: 56px 40px 40px 40px;
  background-color: #fff3c2;
  border-radius: 32px;
}
@media screen and (max-width: 1100px) {
  .text_box_yellow {
    max-width: 428px !important;
    width: 100% !important;
    position: static !important;
    margin: 0 auto !important;
    margin-bottom: 20px !important;
  }
}
@media screen and (max-width: 768px) {
  .text_box_yellow {
    padding: 80px 40px 40px 40px;
  }
}
.text_box_yellow h3 {
  color: #292929;
  font-size: 3rem;
  text-align: left;
  position: relative;
  left: -1em;
  top: -1em;
  white-space: nowrap;
  padding-left: 1rem;
}
@media screen and (max-width: 768px) {
  .text_box_yellow h3 {
    font-size: 2.4rem;
    top: -1.5em;
  }
}
.text_box_yellow h3::before {
  content: "";
  width: 95px;
  height: 95px;
  background-color: #fcd005;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  bottom: -14px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .text_box_yellow h3::before {
    width: 80px;
    height: 80px;
  }
}
.text_box_yellow h3::after {
  content: "";
  width: 72px;
  height: 72px;
  background-color: #fcd005;
  border-radius: 50%;
  position: absolute;
  left: -16px;
  bottom: -14px;
  transform: translate(100%, 0);
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .text_box_yellow h3::after {
    width: 60px;
    height: 60px;
  }
}
.text_box_yellow h3 span {
  color: #fff;
  margin-right: 1em;
  position: relative;
  z-index: 2;
}
.text_box_yellow p {
  font-size: 1.8rem;
}

.overflow_outer {
  width: 100%;
  margin-bottom: 8px;
}
@media screen and (max-width: 600px) {
  .overflow_outer::after {
    content: "横にスクロール →";
    font-size: 12px;
    font-weight: 300;
  }
}
.overflow_outer .overflow {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .overflow_outer .overflow {
    overflow-x: scroll;
  }
}
.overflow_outer .overflow figure {
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 600px) {
  .overflow_outer .overflow figure {
    width: auto;
    height: 210px;
  }
}
.overflow_outer .overflow figure img {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .overflow_outer .overflow figure img {
    width: auto;
    height: 100%;
  }
}

/* cta_btn */
.cta_btn {
  width: 68px;
  position: fixed;
  right: 0;
  top: 20%;
  z-index: 999;
}
@media screen and (max-width: 1100px) {
  .cta_btn {
    right: 0;
    top: 50%;
  }
}
@media screen and (max-width: 600px) {
  .cta_btn {
    width: 70px;
    right: 0;
    top: initial;
    bottom: 10%;
  }
}
.cta_btn img {
  width: 100%;
  margin-top: 30px;
}

/* header */
header {
  width: 100%;
  background-color: #0081c8;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
header .header_inner {
  max-width: 1550px;
  padding: 16px 32px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
header .header_inner .header_logo {
  width: 300px;
}
@media screen and (max-width: 600px) {
  header .header_inner .header_logo {
    width: 240px;
  }
}
header .header_inner .header_logo img {
  width: 100%;
}
header .header_inner .header_nav {
  width: calc(100% - 300px);
  background-color: #0081c8;
  padding-left: 40px;
}
@media screen and (max-width: 1380px) {
  header .header_inner .header_nav {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: 0.4s;
    z-index: 1;
  }
}
header .header_inner .header_nav ul {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: row;
}
@media screen and (max-width: 1380px) {
  header .header_inner .header_nav ul {
    flex-direction: column;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}
header .header_inner .header_nav ul li {
  margin-right: 16px;
}
@media screen and (max-width: 1380px) {
  header .header_inner .header_nav ul li {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 24px;
  }
}
header .header_inner .header_nav ul li a {
  font-size: 1.6rem;
  color: #fff;
}
header .header_inner .header_nav.active {
  pointer-events: all;
  opacity: 1;
}

.header_triggers {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 2;
  display: none;
}
@media screen and (max-width: 1380px) {
  .header_triggers {
    display: flex;
  }
}
.header_triggers .header_btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.header_triggers .header_btn .bars {
  width: 72px;
  height: 32px;
  position: relative;
}
@media screen and (max-width: 1380px) {
  .header_triggers .header_btn .bars {
    width: 40px;
    height: 24px;
  }
}
.header_triggers .header_btn .bars span {
  width: 100%;
  height: 4px;
  background-color: #fff;
  position: absolute;
  transition: 0.4s;
}
.header_triggers .header_btn .bars span:nth-child(1) {
  top: 0;
  left: 0;
  transform: translate(0, 0);
}
.header_triggers .header_btn .bars span:nth-child(2) {
  top: 50%;
  left: 0;
  transform: translate(0, 0);
}
.header_triggers .header_btn .bars span:nth-child(3) {
  top: 100%;
  left: 0;
  transform: translate(0, 0);
}
.header_triggers .header_btn.active .bars span:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.header_triggers .header_btn.active .bars span:nth-child(2) {
  opacity: 0;
}
.header_triggers .header_btn.active .bars span:nth-child(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* mv */
#mv {
  margin-top: 78px;
}
@media screen and (max-width: 600px) {
  #mv {
    margin-top: 76px;
  }
}
#mv figure {
  width: 100%;
  height: 100%;
}

/* service */
#service .point {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 600px) {
  #service .point {
    flex-direction: column;
  }
}
#service .point article {
  width: 292px;
  height: 292px;
  background-color: #0081c8;
  border-radius: 50%;
  position: relative;
  margin: 24px;
}
@media screen and (max-width: 1100px) {
  #service .point article {
    width: 200px;
    height: 200px;
    margin: 16px;
  }
}
@media screen and (max-width: 600px) {
  #service .point article {
    width: 245px;
    height: 245px;
  }
}
#service .point article p {
  font-family: "MFW-PA1GothicStdN-Bold", sans-serif;
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1100px) {
  #service .point article p {
    font-size: 2rem;
  }
}
@media screen and (max-width: 600px) {
  #service .point article p {
    font-size: 2.3rem;
  }
}
#service .point article p span {
  color: #fcd005;
}
#service .point article p span:last-child {
  padding-left: 0.5em;
}
#service .service_illust {
  margin: 0 auto;
  position: relative;
  margin-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  #service .service_illust {
    width: 90% !important;
    position: static !important;
  }
}
#service .service_illust img {
  width: 100%;
}

/* howto */
#howto {
  background-color: #f2f2f2;
}
#howto .inner .flex {
  align-items: center;
}
@media screen and (max-width: 1100px) {
  #howto .inner .flex figure {
    width: 90% !important;
    position: static !important;
    margin: 0 auto !important;
  }
}
#howto .inner .flex figure img {
  width: 100%;
}
#howto .inner::after {
  content: "";
  display: block;
  width: 48px;
  height: 95px;
  background-image: url(../img/howto_arrow.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: 56px auto;
}
@media screen and (max-width: 1100px) {
  #howto .inner {
    margin: 40px auto;
  }
}
#howto .inner:last-child::after {
  display: none;
}

/* contact */
#contact {
  background-color: #fff3c2;
}
#contact .inner {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  align-items: center;
}
#contact .inner .flex.confirm_btn {
  width: 33%;
  background-color: #eb6d73;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  line-height: 88px;
  display: block;
}
@media screen and (max-width: 1100px) {
  #contact .inner .flex.confirm_btn {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .inner .flex.confirm_btn {
    font-size: 2rem;
  }
}
#contact .inner .flex.tel_link_box {
  width: 100%;
}
#contact .inner .flex.tel_link_box p {
  height: 88px;
  margin: 0;
}
#contact .inner .flex.tel_link_box p:nth-child(1) {
  width: 33%;
  background-color: #fff;
  color: #eb6d73;
  font-size: 2.4rem;
  text-align: center;
  line-height: 88px;
}
@media screen and (max-width: 1100px) {
  #contact .inner .flex.tel_link_box p:nth-child(1) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .inner .flex.tel_link_box p:nth-child(1) {
    font-size: 2rem;
  }
}
#contact .inner .flex.tel_link_box p:nth-child(2) {
  width: 44%;
  background-color: #fff;
  color: #231815;
  font-size: 4rem;
  text-align: center;
  line-height: 88px;
}
@media screen and (max-width: 1100px) {
  #contact .inner .flex.tel_link_box p:nth-child(2) {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #contact .inner .flex.tel_link_box p:nth-child(2) {
    font-size: 3rem;
  }
}
#contact .inner .flex.tel_link_box p:nth-child(3) {
  width: 23%;
  background-color: #fff;
  color: #231815;
  font-size: 1.9rem;
  text-align: left;
  line-height: 1.3;
  padding-top: 20px;
}
@media screen and (max-width: 1100px) {
  #contact .inner .flex.tel_link_box p:nth-child(3) {
    width: 100%;
    text-align: center;
    padding-top: 0;
  }
}

/* about */
#about .inner {
  max-width: 864px;
  border: 1px solid #555;
}
#about .inner .flex h3 {
  display: block;
  width: 23.6%;
  background-color: #0081c8;
  border-top: 1px solid #fff;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 26px;
}
@media screen and (max-width: 1100px) {
  #about .inner .flex h3 {
    width: 100%;
    border: none;
  }
}
#about .inner .flex:nth-of-type(1) h3 {
  border-top: none;
}
#about .inner .flex p {
  width: 76.4%;
  color: #231815;
  font-size: 1.7rem;
  border-top: 1px solid #9e9e9f;
  padding: 24px;
}
@media screen and (max-width: 1100px) {
  #about .inner .flex p {
    width: 100%;
    border: none;
  }
}
#about .inner .flex .flex {
  width: 76.4%;
}
@media screen and (max-width: 1100px) {
  #about .inner .flex .flex {
    width: 100%;
  }
}
#about .inner .flex .flex p {
  width: 50%;
}
@media screen and (max-width: 1100px) {
  #about .inner .flex .flex p {
    width: 100%;
  }
  #about .inner .flex .flex p:first-child {
    padding-bottom: 0;
  }
  #about .inner .flex .flex p:last-child {
    padding-top: 0;
  }
}
#about .inner:last-child p {
  border-bottom: 1px solid #9e9e9f;
}
@media screen and (max-width: 1100px) {
  #about .inner:last-child p {
    border: none;
  }
}

/* footer */
footer {
  background-color: #71b0dd;
}
footer .inner .flex {
  flex-flow: column;
  margin: 0 auto;
  max-width: 500px;
  width: 90%;
}
footer .inner .flex .footer_logo {
  width: 498px;
}
@media screen and (max-width: 768px) {
  footer .inner .flex .footer_logo {
    width: 320px;
    margin-bottom: 40px;
  }
}
footer .inner .flex .footer_logo img {
  width: 100%;
}
footer .inner .flex nav {
  display: flex;
}
@media screen and (max-width: 768px) {
  footer .inner .flex nav {
    flex-direction: column;
  }
}
footer .inner .flex nav ul {
  margin-left: 85px;
}
@media screen and (max-width: 1100px) {
  footer .inner .flex nav ul {
    margin: 40px;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex nav ul {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  footer .inner .flex nav ul li {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    margin-bottom: 16px;
  }
}
footer .inner .flex nav ul li a {
  color: #fff;
  font-size: 1.6rem;
}

.del_sp {
  display: block;
}
@media screen and (max-width: 768px) {
  .del_sp {
    display: none;
  }
}

.add_sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .add_sp {
    display: block;
  }
}

.tel_link {
  color: initial;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .tel_link {
    pointer-events: all;
  }
}

form button,
form input,
form optgroup,
form select,
form textarea {
  padding: 1rem;
}
form h3 {
  text-align: center;
  font-size: 2.2rem;
}
form .privacypolicy {
  max-width: 600px;
  height: 300px;
  margin: 3rem auto;
  overflow: scroll;
  font-size: 1.2rem;
  border: 0.5px #ddd solid;
  padding: 1rem 2rem;
}
form .privacypolicy u {
  text-decoration: none;
  display: block;
  margin: 1rem 0 0.5rem;
}
form .privacypolicy h4 {
  font-weight: bold;
  font-size: 1.4rem;
  margin: 2rem 0;
  color: #0081c8;
}
form .privacypolicy u {
  font-weight: bold;
}
form .privacypolicy .num {
  display: block;
  margin: 1rem 0;
}
form .privacypolicy .detail {
  font-size: 1rem;
  display: block;
  color: #555;
  line-height: 1.5;
}
form .formbox {
  margin: 5rem auto;
  max-width: 800px;
}
form .formbox dt {
  font-size: 1.4rem;
  color: #333;
  margin: 3rem 0 1rem;
  font-weight: normal;
}
form .formbox dd {
  background-color: #fff;
  padding: 0 1rem;
  border: 2px #ddd solid;
  filter: drop-shadow(2px 2px 2px #eee);
  font-size: 1.5rem;
  border-radius: 10px;
}
form .formbox dd.radio_input {
  border: none;
  filter: none;
  padding: 1rem 0;
  background-color: transparent;
}
form .formbox dd.radio_input input {
  margin-bottom: 5px;
}
form .formbox dd input.hasDatepicker {
  width: 100% !important;
}
form .formbox dd.select_input {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-right: 15px;
}
form .formbox dd.select_input:before {
  content: "▼";
  position: absolute;
  width: 10px;
  height: 10px;
  color: #ddd;
  top: 11px;
  right: 10px;
}
form .formbox dd.fit_content {
  width: -moz-fit-content;
  width: fit-content;
}
form .check {
  text-align: center;
}
form .submit input {
  background-color: #0081c8;
  color: #fff;
  font-size: 1.4rem;
  padding: 1rem 4rem;
  margin: 5rem auto;
  display: block;
}
form p {
  text-align: center;
  font-size: 1.5rem;
}

.w_100 {
  width: 100%;
}

.mw_wp_form_complete {
  min-height: 500px;
  padding-top: 5rem;
  text-align: center;
}

.page #main-contents {
  padding-top: 10rem;
}
.page .inner {
  width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .mwform-tel-field input[type=text] {
    width: 60px !important;
  }
}/*# sourceMappingURL=style.css.map */