@charset "UTF-8";
/* common */
body {
  font-family: "Hiragino Mincho ProN", serif;
  background-image: radial-gradient(#fff1cb 2px, transparent 2px), radial-gradient(#fff1cb 2px, #FFF9F1 2px);
  background-size: 40px 40px;
  background-position: 0 0, 20px 20px;
  overflow-x: hidden;
  line-height: 1.5;
  padding-top: 70px;
}

.sp {
  display: none;
}
@media not all and (min-width: 568px) {
  .sp {
    display: block;
  }
}

.txt_h1 {
  margin-bottom: 30px;
  font-weight: bold;
}

.txt_h2 {
  line-height: 2;
}

.title {
  width: auto;
  margin: 30px auto;
  text-align: center;
}
.title .title_orange {
  color: #F19000;
}
.title .title_white {
  color: white;
}
.title .title_h3 {
  font-size: 1rem;
}
.title .title_h3 span {
  font-size: 1.5rem;
}
.title span {
  font-size: large;
  color: white;
}
.title .title_hr {
  color: #000000;
  width: 100px;
}

.adj {
  max-width: 800px;
  margin: 0 auto;
  padding: 30px 0;
}

/* humbuger */
header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4em;
  background: #000000;
  border-bottom: 1px solid #F19000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
header .logotype {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
header .logotype a {
  color: #e5e7eb;
  text-decoration: none;
}
header .logotype a:hover {
  color: #F19000;
}
header .logotype img {
  height: 30px;
  mix-blend-mode: multiply;
}
header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 48em) {
  header nav {
    gap: 15px;
  }
}
header nav .tel_btn {
  margin-right: auto;
}
@media screen and (max-width: 48em) {
  header nav .tel_btn {
    margin-right: 0;
  }
}
header nav .tel_btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav .tel_btn img {
  width: 24px;
  height: 24px;
}
header nav .menu__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 48em) {
  header nav .menu__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    position: fixed;
    visibility: hidden;
    top: 0;
    right: -100%;
    visibility: visible;
    -webkit-transition: right 0.5s ease;
    transition: right 0.5s ease;
    width: 100%;
    height: 100vh;
    margin: 0;
    padding: 70px 0 0;
    text-align: center;
    background-color: #2d303a;
    -webkit-box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
            box-shadow: 1px 0 6px rgba(0, 0, 0, 0.2);
    z-index: 999;
    transition: right 0.5s ease;
  }
}
header nav .menu__box .menu__item {
  padding: 0 1em;
  color: #e5e7eb;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}
@media screen and (max-width: 48em) {
  header nav .menu__box .menu__item {
    display: block;
    padding: 12px 24px;
    font-size: 18px;
  }
  header nav .menu__box .menu__item:hover {
    background-color: #4f5464;
  }
}
header nav #menu__toggle {
  display: none;
}
header nav #menu__toggle:checked ~ .menu__box {
  right: 0;
}
header nav .menu__btn {
  display: none;
}
@media screen and (max-width: 48em) {
  header nav .menu__btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    width: 26px;
    height: 26px;
    cursor: pointer;
    z-index: 1001;
  }
  header nav .menu__btn span {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e5e7eb;
  }
  header nav .menu__btn span::before, header nav .menu__btn span::after {
    display: inline-block;
    position: absolute;
    width: 100%;
    height: 3px;
    background-color: #e5e7eb;
    content: "";
    position: absolute;
    left: 0;
  }
  header nav .menu__btn span::before {
    top: -8px;
  }
  header nav .menu__btn span::after {
    top: 8px;
  }
}

/*  slide */
.slide-container {
  text-align: center;
  position: relative;
  width: 100%;
  height: 70vh;
  overflow: hidden;
}
.slide-container .slide {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 90%;
  display: block;
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  will-change: opacity;
}
.slide-container .slide.active {
  opacity: 1;
  z-index: 1;
}
.slide-container .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slide-container .slide .slide-text {
  white-space: nowrap;
  position: absolute;
  top: 70%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: white;
  font-size: 0.8rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  text-align: center;
  line-height: 1.5;
}
.slide-container .slide .slide-text span {
  font-size: 1.8rem;
}
.slide-container .slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%; /* 画像の下端の透過の高さを調整 */
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 249, 241, 0)), to(rgb(255, 249, 241)));
  background: linear-gradient(to bottom, rgba(255, 249, 241, 0), rgb(255, 249, 241)); /* グラデーションを定義 */
}

/* Footer */
.footer {
  padding: 2rem;
  font-size: small;
  color: #000000;
  background: #e5e7eb;
}
.footer .footer_wrap {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 800px) {
  .footer .footer_wrap {
    width: 700px;
  }
}
.footer a {
  color: #000000;
  text-decoration: none;
}
.footer a:hover {
  color: #F19000;
}
.footer .corp_img img {
  width: 100%;
  max-width: 15.5rem;
}
.footer .footer__logo {
  display: inline-block;
  margin-bottom: 1.5rem;
  mix-blend-mode: multiply;
}
.footer hr {
  height: 1px;
  border: 0;
  border-top: 1px solid #a2a2a2;
}
.footer .footer__address {
  font-style: normal;
  margin-bottom: 2rem;
}
.footer .footer__address a {
  text-decoration: underline;
}
.footer .grid {
  white-space: normal;
  display: grid;
  gap: 0.25rem;
  margin-right: 0;
}
@media (min-width: 800px) {
  .footer .grid {
    margin-right: 30px;
  }
}
.footer .grid .footer__navi-heading {
  font-weight: 600;
}
.footer .grid ul {
  padding: 0;
  list-style: none;
}
.footer .grid .footer__navi li {
  margin-bottom: 0.75rem;
}

@media (min-width: 800px) {
  .footer {
    font-size: 1rem;
  }
  .lg-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .md-justify-between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .footer__address a {
    text-decoration: none;
  }
}/*# sourceMappingURL=common-style.css.map */