@charset "UTF-8";
body {
  font-size: 14px;
  line-height: 1.5;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-text-size-adjust: 100%;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

.pc {
  display: none;
}

.sp {
  display: block;
}

@media screen and (min-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.7;
    min-width: 1000px;
  }
  a {
    -webkit-transition: all 0.2s;
    -moz-transition: all 0.2s;
    -ms-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
  }
  a:hover {
    opacity: 0.6;
  }
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

.josefin-sans {
  font-family: "Josefin Sans", sans-serif;
}

.heading01 {
  font-family: "Josefin Sans", sans-serif;
  font-weight: 700;
  font-size: 8vw;
  margin: 0;
  position: relative;
  line-height: 1.2;
  text-align: center;
}
.heading01 .mini {
  font-size: 4vw;
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (min-width: 768px) {
  .heading01 {
    font-size: 42px;
  }
  .heading01 .mini {
    font-size: 18px;
  }
}
.heading02 {
  text-align: center;
  background: #080058;
  box-shadow: inset 0 0 0 5px #080058, inset 0 0 0 6px #fff;
  color: #fff;
  padding: 20px;
}

@media screen and (min-width: 768px) {
  .heading02 {
    font-size: 24px;
    padding: 20px;
  }
}
.heading03 {
  position: relative;
  padding: 0;
  text-align: center;
  color: #080058;
}
.heading03::before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: #000;
}
.heading03 span {
  position: relative;
  padding: 0 1em;
  background: #f5f5f5;
}

@media screen and (min-width: 768px) {
  .heading03 {
    font-size: 24px;
    padding: 0 65px;
  }
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(220, 220, 220, 0.5);
  z-index: 9998;
}
.header__wrap {
  padding: 10px;
}
.header__wrap__contactbox {
  display: none;
  align-items: center;
  column-gap: 10px;
  text-align: right;
}
.header__wrap__tel {
  display: inline-block;
  text-decoration: none;
  color: #000 !important;
  font-size: 32px;
  font-family: "Oswald", sans-serif;
  font-weight: bold;
}
.header__wrap__tel span {
  position: relative;
}
.header__wrap__tel span::before {
  position: absolute;
  content: "";
  background-image: url(../images/tel_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 30px;
  height: 30px;
  left: -1em;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 2px;
}
.header__wrap__req {
  display: inline-block;
  background: #D70A0A;
  padding: 10px 2em;
  text-decoration: none;
  border-radius: 0;
  color: #fff !important;
  font-weight: bold;
}
.header__wrap__req span {
  position: relative;
}
.header__wrap__req span::after {
  position: absolute;
  content: "";
  background-image: url(../images/blank_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  right: -1.5em;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 14px;
}
.header__wrap__contact {
  display: inline-block;
  background: #000;
  padding: 10px 2em;
  text-decoration: none;
  border-radius: 0;
  color: #fff;
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  .header {
    min-width: 1000px;
  }
  .header__wrap {
    justify-content: space-between;
    align-items: center;
    display: flex;
    padding: 20px 50px;
    margin: 0 auto;
  }
  .header__wrap .menu-btn {
    display: none;
  }
  .header__wrap__menu-sp {
    display: none;
  }
  .header__wrap__contactbox {
    display: flex;
    align-items: center;
    column-gap: 10px;
    text-align: right;
  }
  .header__wrap__req {
    display: inline-block;
    background: #D70A0A;
    padding: 10px 4em 10px 3em;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
  }
  .header__wrap__req span {
    position: relative;
  }
  .header__wrap__contact {
    display: inline-block;
    background: #000;
    padding: 10px 3em;
    text-decoration: none;
    color: #fff;
    border-radius: 30px;
    font-weight: bold;
  }
  .header__menu {
    display: flex;
    justify-content: center;
    list-style: none;
  }
  .header__menu__item {
    margin: 0;
  }
  .header__menu__item a {
    position: relative;
    display: block;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 15px 20px;
  }
  .header__menu__item a::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: #000;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__menu__item a.last::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 50%;
    background-color: #000;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .header__menu__item a:hover {
    background: #000;
    color: #fff;
    opacity: 1;
  }
}
/* PCでは非表示にしておく */
.nav_toggle,
.nav {
  display: none;
}

/* スマホサイズで見た場合のスタイル */
@media screen and (max-width: 768px) {
  /* ハンバーガーのマーク */
  .nav_toggle {
    display: block;
    position: absolute;
    width: 1.75rem;
    height: 1.5rem;
    z-index: 2;
    right: 15px;
    top: 28px;
  }
  .nav_toggle i {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #333;
    position: absolute;
    transition: transform 0.5s, opacity 0.5s;
  }
  .nav_toggle i:nth-child(1) {
    top: 0;
  }
  .nav_toggle i:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .nav_toggle i:nth-child(3) {
    bottom: 0;
  }
  /* クリックされた後のハンバーガーのマーク */
  .nav_toggle.show i:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
  }
  .nav_toggle.show i:nth-child(2) {
    opacity: 0;
  }
  .nav_toggle.show i:nth-child(3) {
    transform: translateY(-12px) rotate(45deg);
  }
  /* クリックで表示されるメニュー：クリックされる前 */
  .nav {
    display: block;
    position: fixed;
    align-items: center;
    justify-content: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    z-index: 1;
    text-align: left;
    list-style: none;
    background-color: #fff;
  }
  .nav_menu_li {
    padding: 0 15px;
    background: #fff;
  }
  .nav_menu_li.nav-contact {
    padding: 0;
  }
  .nav_menu_li.nav-contact a {
    color: #fff;
    width: calc(100% - 30px);
    text-align: center;
    padding: 20px;
    border-radius: 30px;
    margin: 10px auto 0;
  }
  .nav_menu_li.nav-contact a::before {
    content: none;
  }
  .nav_menu_li.nav-contact a.-tel {
    padding-top: 0;
  }
  .nav_menu_li.nav-contact a.-req {
    margin-top: 20px;
  }
  .nav_menu_li a {
    display: block;
    padding: 20px 15px;
    color: #000;
    text-decoration: none;
    position: relative;
  }
  .nav_menu_li a::before {
    position: absolute;
    content: "";
    background: #707070;
    width: 100%;
    height: 1px;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
  }
  /* クリックで表示されるメニュー：クリックされた後 */
  .nav.show {
    opacity: 1;
    visibility: visible;
    height: calc(100vh - 84px);
    height: calc(100dvh - 84px);
    top: 84px;
    overflow-y: auto;
    background: #fff;
  }
}
.menu-content {
  width: 100%;
  height: 30vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  background-color: #3584bb;
}

.menu-content ul {
  padding: 70px 10px 0;
}

.menu-content ul li {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}

.menu-content ul li a {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
  position: relative;
}

.menu-content ul li a::before {
  content: "";
  width: 7px;
  height: 7px;
  border-top: solid 2px #ffffff;
  border-right: solid 2px #ffffff;
  transform: rotate(45deg);
  position: absolute;
  right: 11px;
  top: 16px;
}

#menu-btn-check:checked ~ .menu-content {
  left: 0; /*メニューを画面内へ*/
}

#menu-btn-check {
  display: none;
}

.contact__box__itembox__yoyaku a {
  text-decoration: none;
  background-color: #D70A0A;
  color: #fff;
  padding: 30px 15px;
  display: block;
  position: relative;
}
.contact__box__itembox__yoyaku a::after {
  position: absolute;
  content: "";
  background: url(../images/blank_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
}
.contact__box__itembox__yoyaku span {
  position: relative;
  margin-left: 2em;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.contact__box__itembox__yoyaku span::before {
  content: "";
  position: absolute;
  background: url(../images/visit_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 46px;
  left: -2em;
  margin-top: 3px;
}
.contact__box__itembox__contact a {
  text-decoration: none;
  color: #fff;
  background-color: #000;
  padding: 30px 15px;
  display: block;
  position: relative;
}
.contact__box__itembox__contact a::after {
  position: absolute;
  content: "";
  background: url(../images/next_icon.svg);
  background-size: contain;
  background-repeat: no-repeat;
  right: 2em;
  top: 50%;
  transform: translateY(-50%);
  width: 21px;
  height: 21px;
}
.contact__box__itembox__contact span {
  position: relative;
  margin-left: 2em;
  font-size: 36px;
  color: #fff;
  font-weight: bold;
}
.contact__box__itembox__contact span::before {
  content: "";
  position: absolute;
  background: url(../images/mail_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 50px;
  height: 30px;
  left: -2em;
  margin-top: 10px;
}

@media screen and (min-width: 768px) {
  .contact__box__itembox {
    display: flex;
  }
  .contact__box__itembox__yoyaku {
    width: 50%;
  }
  .contact__box__itembox__yoyaku a {
    position: relative;
    padding: 100px 40px;
    color: #fff;
    padding-left: 80px;
  }
  .contact__box__itembox__contact {
    width: 50%;
  }
  .contact__box__itembox__contact a {
    padding: 100px 40px;
    color: #fff;
    padding-left: 80px;
    position: relative;
  }
}
.top__mv {
  padding-top: 85px;
}
.top__mv img {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .top__mv {
    padding-top: 158px;
  }
}
.sec01 {
  padding: 40px 15px;
}
.sec01 .heading01 {
  max-width: 1200px;
  margin: 0 auto;
}
.sec01__wrap {
  margin-top: 30px;
}
.sec01__wrap__imgbox {
  box-shadow: 15px 15px 0px 0px #000;
}
.sec01__wrap__txtbox {
  margin-top: 50px;
}
.sec01__wrap__txtbox__tit {
  position: relative;
  font-size: 18px;
}
.sec01__wrap__txtbox__tit::before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -20px;
}
.sec01__wrap__txtbox__txt {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .sec01 {
    padding: 120px 0;
  }
  .sec01 .heading01 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .sec01__wrap {
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
  .sec01__wrap__imgbox {
    width: 50%;
    height: max-content;
    box-shadow: 30px 30px 0px 0px #000;
  }
  .sec01__wrap__txtbox {
    width: 45%;
    margin-top: 30px;
  }
  .sec01__wrap__txtbox__tit {
    font-size: 24px;
  }
}
@media screen and (min-width: 1366px) {
  .sec01 {
    padding: 150px 0;
  }
  .sec01 .heading01 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .sec01__wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 100px auto 0;
  }
  .sec01__wrap:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
  }
  .sec01__wrap__imgbox {
    width: 50%;
    height: max-content;
  }
  .sec01__wrap__txtbox {
    width: 45%;
    margin-top: 0;
  }
}
.sec02 {
  background: #EBEBEB;
}
.sec02__wrap {
  padding: 40px 15px;
}
.sec02__wrap__card {
  margin-top: 20px;
}
.sec02__wrap__card__item {
  margin-top: 30px;
}
.sec02__wrap__card__item:first-child {
  margin-top: 0;
}
.sec02__wrap__card__item__img {
  margin: 0 auto;
  text-align: center;
}
.sec02__wrap__card__item__tit {
  margin-top: 20px;
  text-align: center;
  font-size: 18px;
}
.sec02__wrap__card__item__txt {
  margin-top: 20px;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px) {
  .sec02__wrap {
    padding: 100px 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  .sec02__wrap__card {
    margin-top: 50px;
    display: flex;
    align-items: baseline;
    gap: 40px;
  }
  .sec02__wrap__card__item {
    width: calc(25% - 20px);
  }
  .sec02__wrap__card__item__tit {
    text-align: center;
    font-size: 21px;
    line-height: 1.5;
    margin-top: 40px;
  }
}
.sec03 {
  padding: 40px 15px;
}
.sec03 .heading01 {
  max-width: 1200px;
  margin: 0 auto;
}
.sec03__wrap {
  max-width: 1200px;
  margin-top: 30px;
}
.sec03__wrap__imgbox.right {
  box-shadow: 15px 15px 0px 0px #000;
}
.sec03__wrap__imgbox.left {
  box-shadow: -15px 15px 0px 0px #000;
}
.sec03__wrap__txtbox {
  margin-top: 50px;
}
.sec03__wrap__txtbox__tit {
  position: relative;
}
.sec03__wrap__txtbox__tit::before {
  position: absolute;
  content: "";
  background-color: #000;
  width: 20%;
  height: 3px;
  left: 0;
  bottom: -20px;
}
.sec03__wrap__txtbox__txt {
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .sec03 {
    padding: 100px 0;
  }
  .sec03 .heading01 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .sec03__wrap {
    display: flex;
    justify-content: space-between;
    margin-top: 100px;
  }
  .sec03__wrap:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-top: 100px;
  }
  .sec03__wrap__imgbox {
    width: 50%;
    height: max-content;
  }
  .sec03__wrap__imgbox.left {
    box-shadow: 30px 30px 0px 0px #000;
  }
  .sec03__wrap__imgbox.right {
    box-shadow: -30px 30px 0px 0px #000;
  }
  .sec03__wrap__txtbox {
    width: 45%;
    margin-top: 30px;
  }
  .sec03__wrap__txtbox__tit {
    position: relative;
    font-size: 24px;
  }
  .sec03__wrap__txtbox__txt {
    margin-top: 40px;
  }
}
@media screen and (min-width: 1366px) {
  .sec03 .heading01 {
    max-width: 1200px;
    margin: 0 auto;
  }
  .sec03__wrap {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    margin: 100px auto 0;
  }
  .sec03__wrap:nth-of-type(even) {
    flex-direction: row-reverse;
    margin-left: auto;
    margin-right: auto;
  }
  .sec03__wrap__imgbox {
    width: 50%;
    height: max-content;
  }
  .sec03__wrap__imgbox.left {
    box-shadow: 30px 30px 0px 0px #000;
  }
  .sec03__wrap__imgbox.right {
    box-shadow: -30px 30px 0px 0px #000;
  }
  .sec03__wrap__txtbox {
    width: 45%;
  }
}
.sec04 {
  background: #EBEBEB;
}
.sec04__wrap {
  padding: 40px 15px;
  text-align: center;
}
.sec04__wrap__box {
  margin-top: 30px;
  text-align: left;
}
.sec04__wrap__box.top {
  margin-top: 30px;
}
.sec04__wrap__box__img {
  text-align: center;
}
.sec04__wrap__box__txtbox {
  background: #fff;
  padding: 20px 15px;
}
.sec04__wrap__box__txtbox__tit {
  color: #000;
  font-size: 18px;
  margin: 0 0 10px;
}
.sec04__wrap__box__txtbox__price {
  font-size: 21px;
  font-weight: bold;
  margin-bottom: 10px;
}
.sec04__wrap__box__txtbox__price .min {
  font-size: 80%;
}

@media screen and (min-width: 768px) {
  .sec04__wrap {
    padding: 100px 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  .sec04__wrap__box {
    display: flex;
    align-items: stretch;
    margin-top: 50px;
  }
  .sec04__wrap__box.top {
    margin-top: 80px;
  }
  .sec04__wrap__box__txtbox {
    padding: 40px;
  }
  .sec04__wrap__box__txtbox__tit {
    font-size: 24px;
    margin: 0;
    margin-top: 0;
  }
  .sec04__wrap__box__txtbox__price {
    font-size: 48px;
    font-weight: bold;
  }
  .sec04__wrap__box__txtbox__price .min {
    font-size: 50%;
  }
}
.sec05 {
  background: url(../images/sec05_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.sec05__wrap {
  padding: 40px 15px;
  text-align: center;
}
.sec05__wrap__box {
  background: #fff;
  margin-top: 30px;
  padding: 20px;
  text-align: left;
}
.sec05__wrap__box.top {
  margin-top: 30px;
}
.sec05__wrap__box__img {
  text-align: center;
}
.sec05__wrap__box__img img {
  width: 200px;
}
.sec05__wrap__box__txtbox__tit {
  color: #080058;
  font-size: 18px;
  margin: 30px 0 20px;
}

@media screen and (min-width: 768px) {
  .sec05__wrap {
    padding: 100px 0;
    margin: 0 auto;
    max-width: 1200px;
  }
  .sec05__wrap__box {
    position: relative;
    display: flex;
    column-gap: 30px;
    background: #fff;
    margin-top: 50px;
    padding: 40px;
  }
  .sec05__wrap__box.top {
    margin-top: 80px;
  }
  .sec05__wrap__box__txtbox__tit {
    color: #080058;
    font-size: 24px;
    margin: 0 0 20px;
  }
}
.sec07__wrap {
  padding: 0;
  text-align: center;
}
.sec07__wrap__left {
  background: #000;
  color: #fff;
  width: 100%;
  text-align: left;
  padding: 30px 15px;
}
.sec07__wrap__left p {
  margin-top: 20px;
}
.sec07__wrap__right {
  width: 100%;
}
.sec07__wrap__right__gmap {
  height: 0;
  overflow: hidden;
  padding-bottom: 75%;
  position: relative;
}
.sec07__wrap__right__gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .sec07__wrap {
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: initial;
  }
  .sec07__wrap__left {
    background: #000;
    color: #fff;
    width: 50%;
    text-align: left;
    padding: 60px 4%;
  }
  .sec07__wrap__left .heading01 {
    text-align: left;
    line-height: 1;
  }
  .sec07__wrap__left p {
    margin-top: 50px;
    font-size: 16px;
  }
  .sec07__wrap__left p span {
    font-weight: bold;
  }
  .sec07__wrap__right {
    width: 50%;
  }
  .sec07__wrap__right__gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 75%;
    position: relative;
  }
  .sec07__wrap__right__gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
}
.faq__wrap {
  padding: 40px 15px;
  text-align: center;
}
.faq__wrap .accordion-container {
  margin: 10px auto 0;
  max-width: 1000px;
  text-align: left;
}
.faq__wrap .accordion-list:not(:first-child) {
  margin-top: 10px;
}
.faq__wrap .accordion-title {
  border-bottom: solid 2px #000;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  padding: 20px 0;
  position: relative;
}
.faq__wrap .accordion-text {
  padding: 20px 0 0;
}

@media screen and (min-width: 768px) {
  .faq__wrap {
    padding: 100px 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .faq__wrap .accordion-container {
    margin: 80px auto 0;
    max-width: 1200px;
    text-align: left;
  }
  .faq__wrap .accordion-title {
    border-bottom: solid 2px #000;
    color: #000;
    font-size: 18px;
    font-weight: bold;
    padding: 20px 0;
    position: relative;
  }
  .faq__wrap .accordion-text {
    padding: 20px 0;
  }
}
.form {
  padding: 40px 15px;
  background-color: #EBEBEB;
}
.form .form_wrap {
  height: 0;
  overflow: auto;
  padding-bottom: 100vh;
  position: relative;
}
.form .form_wrap iframe {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
}

@media screen and (min-width: 768px) {
  .form {
    padding: 100px 0;
  }
}
.footer {
  padding: 30px 15px 10px;
}
.footer__wrap {
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.footer__wrap__right {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 20px;
}
.footer p {
  margin-top: 20px;
  text-align: center;
}

@media screen and (min-width: 768px) {
  .footer {
    padding: 30px;
  }
  .footer__wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: inherit;
    max-width: 1200px;
    margin: 0 auto;
  }
  .footer__wrap__right {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer p {
    max-width: 1200px;
    margin-top: 30px;
    text-align: left;
    margin: 30px auto 0;
  }
}/*# sourceMappingURL=style.css.map */