@charset "UTF-8";
@font-face {
  font-family: chihayakaku;
  src: url(../font/ちはや角.ttf) format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 60px 0;
  }
}

.section_inner {
  width: 90%;
  max-width: 1024px;
  margin: 0 auto;
}

.container {
  width: 90%;
  max-width: 850px;
  margin: 0 auto;
}

.section_title {
  position: relative;
  width: fit-content;
  font-size: 2rem;
  font-family: "chihayakaku";
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .section_title {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .section_title {
    font-size: 1.25rem;
  }
}
.section_title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background-color: #5e3010;
}

.breadcrumb {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .breadcrumb li {
    font-size: 0.875rem;
  }
}
.breadcrumb li a {
  text-decoration: underline;
  color: #5e3010;
}

.header-wrap {
  width: 100%;
  height: 80px;
  background-color: #5e3010;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: 0.25s;
}
@media screen and (max-width: 767px) {
  .header-wrap {
    height: 65px;
  }
}
.header-wrap.scroll {
  background-color: rgba(94, 48, 16, 0.7);
  transition: 0.25s;
}
.header-wrap .header_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 25px;
}
@media screen and (max-width: 767px) {
  .header-wrap .header_inner {
    padding: 5px 15px;
  }
}
.header-wrap .header_inner .company_logo {
  position: relative;
  width: clamp(50px, 6%, 75px);
  padding-top: clamp(50px, 6%, 75px);
}
.header-wrap .header_inner .company_logo img {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .header-wrap .header_inner .header_menu .gnav {
    display: none;
  }
}
.header-wrap .header_inner .header_menu .gnav ul {
  display: flex;
  align-items: center;
}
.header-wrap .header_inner .header_menu .gnav ul li {
  margin-right: 30px;
}
.header-wrap .header_inner .header_menu .gnav ul li:last-child {
  margin-right: 0;
}
.header-wrap .header_inner .header_menu .gnav ul li a {
  color: #ffffff;
  font-family: "chihayakaku";
}
.header-wrap .header_inner .header_menu .hamburger-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .header-wrap .header_inner .header_menu .hamburger-menu {
    position: relative;
    display: block;
    width: 30px;
    height: 30px;
    margin-left: auto;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
    transform: translate(-50%, -50%);
    transition: all 0.25s;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu span::before {
    position: absolute;
    content: "";
    top: -10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu span::after {
    position: absolute;
    content: "";
    top: 10px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #ffffff;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu.active span {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: translate(-50%, -50%) rotate(45deg);
    transition: all 0.25s;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu.active span::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
  }
  .header-wrap .header_inner .header_menu .hamburger-menu.active span::after {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    transform: rotate(-90deg);
  }
}
.header-wrap .header_inner .header_menu .sp-menu {
  display: none;
}
.header-wrap .header_inner .header_menu .sp-menu nav {
  width: 60%;
  margin-left: auto;
  height: 100vh;
  background: #f9f9f9;
  transform: translateX(800px);
}
.header-wrap .header_inner .header_menu .sp-menu nav ul {
  display: block;
}
.header-wrap .header_inner .header_menu .sp-menu nav ul li {
  border-bottom: 1px solid #5e3010;
  line-height: 50px;
}
.header-wrap .header_inner .header_menu .sp-menu nav ul li a {
  display: block;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  font-family: "chihayakaku";
}
.header-wrap .header_inner .header_menu .sp-menu nav .top-logo-sp {
  margin-top: 30px;
  width: 90%;
  margin-inline: auto;
}
.header-wrap .header_inner .header_menu .sp-menu nav .top-logo-sp img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.header-wrap .header_inner .header_menu .sp-menu.active {
  display: block;
  position: fixed;
  top: 80px;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(94, 48, 16, 0.8);
}
@media screen and (max-width: 767px) {
  .header-wrap .header_inner .header_menu .sp-menu.active {
    top: 65px;
  }
}
.header-wrap .header_inner .header_menu .sp-menu.active nav.active {
  transform: translateX(0);
  transition: all 0.25s ease;
}

.footer_contact {
  border-top: 1px solid #e6e6e6;
  padding-bottom: 0;
}
.footer_contact .footer_contact_inner {
  background-image: url(../img/top/footer_contact_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: bottom -75px center;
  margin-top: 160px;
}
.footer_contact .footer_contact_inner .footer_contact_wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  transform: translateY(-95px);
}
@media screen and (max-width: 767px) {
  .footer_contact .footer_contact_inner .footer_contact_wrap {
    display: block;
  }
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block {
  width: 45%;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px #cccccc;
  padding: 30px 20px;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .footer_contact
    .footer_contact_inner
    .footer_contact_wrap
    .footer_contact_block {
    width: 80%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 500px) {
  .footer_contact
    .footer_contact_inner
    .footer_contact_wrap
    .footer_contact_block {
    width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .footer_contact
    .footer_contact_inner
    .footer_contact_wrap
    .footer_contact_block:first-child {
    margin-bottom: 20px;
  }
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  .contact_icon {
  width: 12%;
  max-width: 40px;
  margin: 0 auto;
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  .contact_title {
  position: relative;
  width: fit-content;
  font-size: 1.375rem;
  font-family: "chihayakaku";
  margin: 20px auto 0;
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  .contact_title::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 2px;
  background-color: #cccccc;
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  > dl {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  > dl
  dd {
  font-size: 2rem;
  font-weight: bold;
}
.footer_contact
  .footer_contact_inner
  .footer_contact_wrap
  .footer_contact_block
  a
  > p {
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
}
.footer_contact .footer_menu_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 25px;
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap {
    display: block;
  }
}
.footer_contact .footer_menu_wrap .company_logo {
  width: 20%;
  max-width: 200px;
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap .company_logo {
    width: 30%;
    min-width: 140px;
    margin: 0 auto 30px;
  }
}
.footer_contact .footer_menu_wrap .company_logo a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer_contact .footer_menu_wrap nav .footer_menu_block {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 10px;
  }
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block {
    display: block;
    margin: 0 auto 20px;
  }
}
.footer_contact .footer_menu_wrap nav .footer_menu_block li {
  margin-right: 30px;
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block li {
    width: fit-content;
    margin: 0 auto 15px;
  }
}
.footer_contact .footer_menu_wrap nav .footer_menu_block li:last-child {
  margin-right: 0;
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block li:last-child {
    width: fit-content;
    margin: 0 auto;
  }
}
.footer_contact .footer_menu_wrap nav .footer_menu_block li a {
  font-family: "chihayakaku";
}
@media screen and (max-width: 1024px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block li a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap nav .footer_menu_block li a {
    font-size: 1rem;
  }
}
.footer_contact .footer_menu_wrap .sns_icon_block {
  width: 5%;
  min-width: 30px;
  margin-top: 10px;
  margin-left: auto;
}
@media screen and (max-width: 800px) {
  .footer_contact .footer_menu_wrap .sns_icon_block {
    width: 5%;
    margin: 0 auto;
  }
}
.footer_contact .footer_under {
  padding: 10px;
  background-color: #5e3010;
}
.footer_contact .footer_under small {
  margin: 0 auto;
  display: block;
  width: fit-content;
  color: #ffffff;
  text-align: center;
}

.heading_content {
  width: 100%;
  height: 230px;
  padding: 0;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .heading_content {
    height: 150px;
    margin-top: 65px;
  }
}
.heading_content .heading_content_mv {
  position: relative;
  width: 95%;
  height: 100%;
  margin-left: auto;
  background-image: url(../img/heading/heading_mv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 25px 0 0 25px;
  z-index: -1;
}
.heading_content .heading_content_mv::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.2);
  z-index: 0;
}
.heading_content .heading_content_mv .heading_title {
  position: absolute;
  top: 50%;
  left: 80px;
  transform: translateY(-50%);
  font-size: 3rem;
  font-family: "chihayakaku";
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .heading_content .heading_content_mv .heading_title {
    left: 30px;
    font-size: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .heading_content .heading_content_mv .heading_title {
    left: 15px;
    font-size: 1.75rem;
  }
}

.about_message {
  position: relative;
  overflow: hidden;
}
.about_message::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/top/top_bk_3.png);
  background-repeat: no-repeat;
  background-position: bottom right 70px;
  background-size: 20%;
  opacity: 0.4;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .about_message::before {
    background-position: bottom right -6px;
    background-size: 35%;
  }
}
@media screen and (max-width: 500px) {
  .about_message::before {
    background-position: bottom right -6px;
    background-size: 53%;
  }
}
@media screen and (max-width: 500px) {
  .about_message::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url(../img/top/top_bk_3.png);
    background-repeat: no-repeat;
    background-position: top 120px left 30px;
    background-size: 35%;
    opacity: 0.3;
    z-index: -1;
  }
}
.about_message .about_message_txt {
  margin-top: 50px;
  text-align: justify;
  line-height: 1.5;
}
.about_message .about_message_txt span {
  font-family: "chihayakaku";
  font-size: 1.25rem;
}

.about_features {
  background-image: url(../img/about/about_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.about_features .about_features_block {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block {
    flex-direction: column-reverse;
    margin-bottom: 10px;
  }
}
.about_features .about_features_block .block_txt {
  width: 50%;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px #cccccc;
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block .block_txt {
    width: 100%;
    margin-bottom: 0;
    padding: 35px 20px 20px;
    transform: translateY(-20px);
  }
}
.about_features .about_features_block .block_txt .block_txt_title {
  position: relative;
  font-family: "chihayakaku";
  font-size: 1.375rem;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block .block_txt .block_txt_title {
    font-size: 1.125rem;
    padding-left: 45px;
  }
}
.about_features .about_features_block .block_txt .block_txt_title::before {
  content: "０１";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  line-height: 40px;
  background-color: #5e3010;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block .block_txt .block_txt_title::before {
    width: 35px;
    line-height: 35px;
    font-size: 0.875rem;
  }
}
.about_features .about_features_block .block_txt .block_txt_title::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #cccccc;
}
.about_features .about_features_block .block_txt .block_txt_desc {
  margin-top: 20px;
  line-height: 1.5;
}
.about_features .about_features_block .block_img {
  width: 45%;
  height: 300px;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block .block_img {
    width: 100%;
  }
}
.about_features .about_features_block:first-child {
  margin-top: 50px;
}
.about_features .about_features_block:nth-child(2) .block_txt_title::before {
  content: "０２";
}
.about_features .about_features_block:nth-child(3) .block_txt_title::before {
  content: "０３";
}
.about_features .about_features_block:nth-child(4) .block_txt_title::before {
  content: "０４";
}
.about_features .about_features_block:nth-child(5) .block_txt_title::before {
  content: "０５";
}
.about_features .about_features_block:nth-child(2n) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .about_features .about_features_block:nth-child(2n) {
    flex-direction: column-reverse;
  }
}

.about_company {
  overflow: hidden;
}
.about_company .about_company_table {
  position: relative;
}
.about_company .about_company_table table {
  margin-top: 50px;
  width: 100%;
  border-collapse: collapse;
}
.about_company .about_company_table table tr th,
.about_company .about_company_table table tr td {
  border: 1px solid #5e3010;
  padding: 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .about_company .about_company_table table tr th,
  .about_company .about_company_table table tr td {
    font-size: 0.875rem;
  }
}
.about_company .about_company_table table tr th {
  width: 40%;
  background-color: #5e3010;
  color: #ffffff;
  border-bottom: 1px solid #ffffff;
}
.about_company .about_company_table table tr th:last-child {
  border-bottom: 1px solid #5e3010;
}
.about_company .about_company_table table tr td {
  background-color: #ffffff;
}
.about_company .about_company_table .about_company_bk {
  position: absolute;
  top: -90px;
  left: -170px;
  width: 38%;
  opacity: 0.35;
  z-index: -1;
}
.about_company .about_company_table .about_company_bk.second {
  top: initial;
  left: initial;
  bottom: -50px;
  right: -130px;
  width: 25%;
  opacity: 0.8;
}

.service_content .section_txt {
  margin-top: 50px;
  line-height: 1.5;
  text-align: justify;
}
.service_content .service_img_wrap {
  margin-top: 30px;
}
.service_content .service_img_wrap ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .service_content .service_img_wrap ul {
    gap: 10px;
  }
}

.service_daily {
  background-image: url(../img/service/service_daily_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.service_daily .service_daily_content {
  background-color: #ffffff;
  box-shadow: 5px 5px 10px #cccccc;
  padding: 50px 30px;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .service_daily .service_daily_content {
    padding: 20px 15px;
  }
}
.service_daily .service_daily_content ul {
  position: relative;
  width: 80%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .service_daily .service_daily_content ul {
    width: 100%;
  }
}
.service_daily .service_daily_content ul li {
  display: flex;
  align-items: stretch;
}
.service_daily .service_daily_content ul li .service_daily_img {
  width: 35%;
  margin-right: 80px;
  padding-bottom: 10px;
}
@media screen and (max-width: 480px) {
  .service_daily .service_daily_content ul li .service_daily_img {
    width: 25%;
  }
}
.service_daily .service_daily_content ul li .service_daily_img img {
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  .service_daily .service_daily_content ul li .service_daily_img {
    margin-right: 30px;
  }
}
.service_daily .service_daily_content ul li .service_daily_dots {
  position: relative;
  margin-right: 30px;
}
.service_daily .service_daily_content ul li .service_daily_dots::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background-color: #5e3010;
}
.service_daily .service_daily_content ul li .service_daily_txt {
  width: 65%;
  position: relative;
  display: flex;
  align-items: center;
  font-family: "chihayakaku";
  font-size: 1.375rem;
  padding-bottom: 10px;
}
@media screen and (max-width: 630px) {
  .service_daily .service_daily_content ul li .service_daily_txt {
    font-size: 1rem;
  }
}
@media screen and (max-width: 480px) {
  .service_daily .service_daily_content ul li .service_daily_txt {
    width: 75%;
    font-size: 0.875rem;
  }
}
.service_daily .service_daily_content ul li .service_daily_txt p {
  margin-right: 20px;
}
.service_daily .service_daily_content ul li .service_daily_txt p:last-child {
  flex: 1;
  margin-right: 0;
}
.service_daily .service_daily_content ul li .service_daily_txt::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-image: url(../img/service/service_daily_dots_1.png);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .service_daily .service_daily_content ul li .service_daily_txt::before {
    left: -36px;
  }
}
@media screen and (max-width: 480px) {
  .service_daily .service_daily_content ul li .service_daily_txt::before {
    left: -24px;
    width: 10px;
    height: 10px;
  }
}
.service_daily .service_daily_content ul li .service_daily_txt::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -44px;
  transform: translateY(-50%);
  width: 2px;
  height: 100%;
  background-color: #5e3010;
}
@media screen and (max-width: 767px) {
  .service_daily .service_daily_content ul li .service_daily_txt::after {
    left: -30px;
  }
}
@media screen and (max-width: 480px) {
  .service_daily .service_daily_content ul li .service_daily_txt::after {
    left: -20px;
  }
}
.service_daily .service_daily_content ul li:nth-child(3) .service_daily_txt,
.service_daily .service_daily_content ul li:nth-child(5) .service_daily_txt {
  align-items: baseline;
  padding-top: 30px;
}
.service_daily
  .service_daily_content
  ul
  li:nth-child(2n)
  .service_daily_txt::before {
  background-image: url(../img/service/service_daily_dots_2.png);
}

.service_price .table_wrap .table_title {
  font-family: "chihayakaku";
  font-size: 1.375rem;
  margin-bottom: 20px;
  margin-top: 50px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service_price .table_wrap .table_title {
    font-size: 1.25rem;
  }
}
.service_price .table_wrap .table_content {
  overflow-x: auto;
}
.service_price .table_wrap .table_content table {
  min-width: 850px;
  width: 100%;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .service_price .table_wrap .table_content table {
    min-width: 450px;
  }
}
.service_price .table_wrap .table_content table tr:nth-child(2n) td {
  background-color: #c69c6d;
}
.service_price .table_wrap .table_content table tr th,
.service_price .table_wrap .table_content table tr td {
  width: 25%;
  text-align: center;
  border: 1px solid #5e3010;
}
@media screen and (max-width: 767px) {
  .service_price .table_wrap .table_content table tr th,
  .service_price .table_wrap .table_content table tr td {
    font-size: 0.875rem;
  }
}
.service_price .table_wrap .table_content table tr th {
  background-color: #5e3010;
  color: #ffffff;
  border: 1px solid #ffffff;
}
.service_price .table_wrap .table_content table tr td {
  color: #5e3010;
}
.service_price .table_wrap .table_content table tr td:first-child {
  background-color: #5e3010;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.privacy {
  line-height: 1.5;
}
.privacy .privacy_heading_txt {
  text-align: justify;
  margin: 50px 0 30px;
}
.privacy .privacy_content {
  padding-top: 30px;
  border-top: #cccccc 1px solid;
}
.privacy .privacy_content dl {
  padding: 20px 0;
}
.privacy .privacy_content dl dt {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.privacy .privacy_content dl dd ul {
  margin-top: 10px;
}
.privacy .privacy_content dl dd ul li {
  text-indent: 0;
  list-style-type: disc;
  width: 96%;
  margin-left: auto;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  .privacy .privacy_content dl dd ul li {
    width: 94%;
  }
}
.privacy .privacy_content dl dd ul li a {
  color: #5e3010;
  text-decoration: underline;
}

.undefined .undefined_content p {
  font-family: "chihayakaku";
  font-size: 1.125rem;
  text-align: center;
}
.undefined .undefined_content a {
  text-align: center;
  display: block;
  width: 20%;
  padding: 10px 20px;
  font-family: "chihayakaku";
  color: #ffffff;
  background-color: #5e3010;
  margin: 50px auto 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(4rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  animation: fadeInUp 1s ease forwards;
  will-change: transform;
}

@keyframes fadeInL {
  0% {
    opacity: 0;
    transform: translateX(100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInL {
  animation: fadeInL 1s ease;
  will-change: transform;
}

@keyframes fadeInR {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInR {
  animation: fadeInR 1s ease;
  will-change: transform;
}

@keyframes rotateSlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.loader_wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 1s;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
}
.loader_wrap .loader_inner {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.loader_wrap .loader_inner .load_img {
  width: 100%;
  height: auto;
  max-width: 180px;
  margin: 0 auto 10px;
  animation: rotateSlow 5s linear infinite;
}
@media screen and (max-width: 767px) {
  .loader_wrap .loader_inner .load_img {
    max-width: 150px;
  }
}
.loader_wrap .loader_inner .load_img:last-child {
  animation: none;
}
.loader_wrap .loader_inner > p {
  font-size: 1.375rem;
  text-align: center;
  font-family: "chihayakaku";
}

.loaded {
  opacity: 0;
}

.top_view {
  position: relative;
  width: 100%;
  margin-top: 80px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .top_view {
    margin-top: 65px;
  }
}
.top_view .top_view_image {
  display: flex;
  width: 100%;
  height: 100%;
}
.top_view .top_view_image .top_view_logo {
  display: block;
  width: 30%;
}
@media screen and (max-width: 767px) {
  .top_view .top_view_image .top_view_logo {
    display: none;
  }
}
.top_view .top_view_image .top_view_logo .top_view_logo_inner {
  width: 65%;
  height: auto;
  margin: 60px auto;
}
@media screen and (max-width: 10240px) {
  .top_view .top_view_image .top_view_logo .top_view_logo_inner {
    margin: 24px auto;
  }
}
.top_view .top_view_image .top_view_picture {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .top_view .top_view_image .top_view_picture {
    width: 100%;
  }
}
.top_view .top_view_image .top_view_picture .top_view_picture_inner {
  width: 100%;
  height: 100%;
  margin-left: auto;
}
.top_view .top_view_title {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 590px;
  height: 200px;
  background-color: #5e3010;
  opacity: 0.8;
}
@media screen and (max-width: 1280px) {
  .top_view .top_view_title {
    width: 45%;
    height: 150px;
  }
}
@media screen and (max-width: 1024px) {
  .top_view .top_view_title {
    height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .top_view .top_view_title {
    width: 80%;
    left: 50%;
    transform: translateX(-50%);
  }
}
.top_view .top_view_title h1 {
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1.75rem;
  color: #ffffff;
  font-family: "chihayakaku";
  line-height: 1.5;
}
@media screen and (max-width: 1280px) {
  .top_view .top_view_title h1 {
    font-size: 1.5rem;
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .top_view .top_view_title h1 {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .top_view .top_view_title h1 {
    width: 95%;
    font-size: 1rem;
  }
}

.top_info {
  margin-top: 150px;
  background-image: url(../img/top/top_info_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .top_info {
    margin-top: 130px;
  }
}
.top_info .opening_info,
.top_info .company_info {
  transform: translateY(-150px);
}
.top_info .opening_info {
  position: relative;
  background-image: url(../img/top/top_opening_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 20px 0;
  overflow: hidden;
}
.top_info .opening_info .opening_info_decoration {
  display: block;
  position: absolute;
  top: -16px;
  right: -46px;
  width: 25%;
  height: auto;
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_decoration {
    display: none;
  }
}
.top_info .opening_info .opening_info_inner {
  width: 80%;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 30px 30px;
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_inner {
    width: 95%;
    padding: 15px;
  }
}
.top_info .opening_info .opening_info_inner .opening_info_table {
  width: 100%;
  margin-top: 50px;
  border-collapse: separate;
  border-spacing: 5px 0; /* 横方向に20px、縦方向は0px */
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_inner .opening_info_table {
    margin-top: 30px;
  }
}
.top_info .opening_info .opening_info_inner .opening_info_table th,
.top_info .opening_info .opening_info_inner .opening_info_table td {
  border: 2px solid #5e3010;
  margin-right: 5px;
}
.top_info .opening_info .opening_info_inner .opening_info_table th {
  text-align: center;
  background-color: #5e3010;
  color: #ffffff;
}
.top_info .opening_info .opening_info_inner .opening_info_table td {
  padding: 30px 10px;
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_inner .opening_info_table td {
    padding: 10px 10px;
  }
}
.top_info
  .opening_info
  .opening_info_inner
  .opening_info_table
  td
  .opening_info_mark {
  margin: 0 auto;
  width: 50%;
  height: auto;
  max-width: 50px;
}
@media screen and (max-width: 767px) {
  .top_info
    .opening_info
    .opening_info_inner
    .opening_info_table
    td
    .opening_info_mark {
    width: 100%;
    max-width: 30px;
  }
}
.top_info .opening_info .opening_info_inner .top_opening_info_detail {
  display: flex;
  align-items: center;
  margin-top: 10px;
  padding: 0 10px;
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_inner .top_opening_info_detail {
    padding: 0;
  }
}
.top_info .opening_info .opening_info_inner .top_opening_info_detail li {
  width: 20%;
  display: flex;
  align-items: center;
}
.top_info
  .opening_info
  .opening_info_inner
  .top_opening_info_detail
  li
  .opening_info_mark {
  margin: 0 auto;
  width: 20%;
  height: auto;
  max-width: 50px;
  margin-right: 10px;
}
.top_info .opening_info .opening_info_inner .top_opening_info_detail li p {
  width: 80%;
  font-family: "chihayakaku";
}
.top_info .opening_info .opening_info_inner .top_opening_info_detail {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_info .opening_info .opening_info_inner .top_opening_info_detail {
    display: block;
  }
}
.top_info
  .opening_info
  .opening_info_inner
  .top_opening_info_detail
  .top_opening_info_detail_inner {
  width: 60%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_info
    .opening_info
    .opening_info_inner
    .top_opening_info_detail
    .top_opening_info_detail_inner {
    width: 100%;
  }
}
.top_info
  .opening_info
  .opening_info_inner
  .top_opening_info_detail
  .top_opening_info_detail_inner
  li {
  width: fit-content;
  display: flex;
  align-items: center;
}
.top_info
  .opening_info
  .opening_info_inner
  .top_opening_info_detail
  .top_opening_info_detail_inner
  li
  .opening_info_mark {
  margin: 0 auto;
  width: 20%;
  height: auto;
  max-width: 50px;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  .top_info
    .opening_info
    .opening_info_inner
    .top_opening_info_detail
    .top_opening_info_detail_inner
    li
    .opening_info_mark {
    max-width: 20px;
  }
}
.top_info
  .opening_info
  .opening_info_inner
  .top_opening_info_detail
  .top_opening_info_detail_inner
  li
  p {
  width: 80%;
  font-family: "chihayakaku";
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .top_info
    .opening_info
    .opening_info_inner
    .top_opening_info_detail
    .top_opening_info_detail_inner
    li
    p {
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 767px) {
  .top_info
    .opening_info
    .opening_info_inner
    .top_opening_info_detail
    .top_opening_info_detail_time {
    font-size: 0.875rem;
    margin-top: 10px;
  }
}
.top_info .company_info {
  background-color: #ffffff;
  padding: 30px 0;
  margin-top: 80px;
  border-top: 5px solid #5e3010;
  box-shadow: 3px 3px 10px #cccccc;
}
@media screen and (max-width: 767px) {
  .top_info .company_info {
    margin-top: 50px;
  }
}
.top_info .company_info .fadein_inner .company_info_content {
  width: 90%;
  margin: 50px auto 0;
}
.top_info .company_info .fadein_inner .company_info_content article {
  padding-bottom: 10px;
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 767px) {
  .top_info .company_info .fadein_inner .company_info_content article {
    display: block;
  }
}
.top_info .company_info .fadein_inner .company_info_content article:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
.top_info .company_info .fadein_inner .company_info_content article time {
  margin-right: 30px;
  color: #5e3010;
}
@media screen and (max-width: 767px) {
  .top_info .company_info .fadein_inner .company_info_content article time {
    margin-right: 0;
  }
}
.top_info .company_info .fadein_inner .company_info_content article .title {
  margin-top: 10px;
  width: fit-content;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
}
.top_info .company_info .fadein_inner .company_info_content article p {
  margin-top: 3px;
  line-height: 1.5;
}

.top_gallery {
  overflow: hidden;
  transform: translateY(-200px);
}
@media screen and (max-width: 767px) {
  .top_gallery {
    transform: translateY(-160px);
  }
}
.top_gallery .top_gallery_inner {
  display: flex;
  align-items: center;
}
.top_gallery .top_gallery_inner .top_gallery_img {
  width: 400px;
  height: 260px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .top_gallery .top_gallery_inner .top_gallery_img {
    height: 220px;
  }
}
.top_gallery .top_gallery_inner .top_gallery_img:last-child {
  margin-right: 0;
}

.slick-dots {
  display: none;
}

.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-prev,
.slick-next {
  display: none !important;
}

.top_about .top_about_inner .top_about_block {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  margin-bottom: 100px;
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block {
    display: block;
    position: relative;
    margin-bottom: 50px;
  }
}
.top_about .top_about_inner .top_about_block:nth-child(2n) {
  flex-direction: row-reverse;
}
.top_about .top_about_inner .top_about_block:last-child {
  margin-bottom: 0;
}
.top_about .top_about_inner .top_about_block .top_about_txt {
  position: relative;
  width: 45%;
  height: 100%;
  padding: 40px 0;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block .top_about_txt {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .top_about .top_about_inner .top_about_block .top_about_txt {
    width: 80%;
  }
}
@media screen and (max-width: 500px) {
  .top_about .top_about_inner .top_about_block .top_about_txt {
    width: 95%;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/top/top_about_bk_2.png);
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.4;
  z-index: -1;
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block .top_about_txt::before {
    content: initial;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt > div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 10px;
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div {
    width: 100%;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt > div h4 {
  margin-top: 30px;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div h4 {
    font-size: 1.125rem;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt > div > p {
  margin-top: 30px;
  font-size: 1.125rem;
  line-height: 2;
}
@media screen and (max-width: 500px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div > p {
    font-size: 1rem;
    text-align: justify;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt > div > p br {
  display: block;
}
@media screen and (max-width: 500px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div > p br {
    display: none;
  }
}
.top_about .top_about_inner .top_about_block .top_about_txt > div a {
  display: flex;
  align-items: center;
  justify-content: end;
  font-size: 1.125rem;
  margin-top: 50px;
  padding: 0 60px 0 0;
  font-family: "chihayakaku";
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block .top_about_txt > div a {
    padding: 0;
  }
}
.top_about
  .top_about_inner
  .top_about_block
  .top_about_txt
  > div
  a
  .arrow_icon {
  margin-left: 10px;
  width: 5%;
  min-width: 30px;
}
.top_about .top_about_inner .top_about_block .top_about_img {
  width: 55%;
  height: 100%;
  box-shadow: -5px 5px 10px #cccccc;
}
@media screen and (max-width: 950px) {
  .top_about .top_about_inner .top_about_block .top_about_img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0.5;
  }
}
.top_about
  .top_about_inner
  .top_about_block:nth-child(2)
  .top_about_txt::before {
  background-image: url(../img/top/top_about_bk_1.png);
}
.top_about .top_about_inner .top_about_block:nth-child(2) .top_about_img {
  box-shadow: 5px 5px 10px #cccccc;
}

.top_facility {
  background-image: url(../img/top/top_facility_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_facility .top_facility_galaxy {
  margin-top: 50px;
  padding: 30px 50px 50px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 5px 5px 10px #cccccc;
}
@media screen and (max-width: 767px) {
  .top_facility .top_facility_galaxy {
    padding: 0px 15px 15px;
  }
}
.top_facility .top_facility_galaxy .top_facility_slider .top_facility_img {
  position: relative;
  width: 60%;
  padding-top: 7.25%;
  margin: 30px 0;
}
.top_facility .top_facility_galaxy .top_facility_slider .top_facility_img img {
  position: absolute;
  top: 0;
  left: 0;
}
.top_facility .top_facility_galaxy .slider-nav .slick-slide {
  opacity: 0.5;
  transition: opacity 0.25s linear;
}
.top_facility .top_facility_galaxy .slider-nav .slick-current {
  opacity: 1;
  transition: opacity 0.25s linear;
}
.top_facility .top_facility_galaxy .slider-nav .top_facility_img {
  margin-right: 10px;
}

.top_instagram {
  overflow: hidden;
}
.top_instagram .section_txt {
  margin-top: 50px;
  text-align: center;
  line-height: 1.5;
}
.top_instagram .top_instagram_inner {
  margin-top: 30px;
  position: relative;
}
.top_instagram .top_instagram_inner .top_instagram_bk {
  position: absolute;
  top: 0;
  left: -120px;
  width: 25%;
  opacity: 0.8;
  z-index: -1;
}
.top_instagram .top_instagram_inner .top_instagram_bk.second {
  top: initial;
  left: initial;
  bottom: 0;
  right: -175px;
  width: 38%;
  opacity: 0.35;
}

.top_access {
  background-image: url(../img/top/top_access_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top_access .top_access_detail {
  background-image: url(../img/top/top_opening_bk.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 50px;
  padding: 30px 20px;
}
.top_access .top_access_detail .top_access_detail_inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_access .top_access_detail .top_access_detail_inner {
    display: block;
  }
}
.top_access .top_access_detail .top_access_detail_inner .top_access_detail_txt {
  width: 49%;
  padding: 20px;
  background-color: #ffffff;
}
@media screen and (max-width: 767px) {
  .top_access
    .top_access_detail
    .top_access_detail_inner
    .top_access_detail_txt {
    width: 100%;
    margin-bottom: 10px;
  }
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .company_name {
  font-family: "chihayakaku";
  text-align: center;
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .company_name
  span {
  font-size: 1.5rem;
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .access_info {
  margin-top: 15px;
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .access_info
  > div {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 500px) {
  .top_access
    .top_access_detail
    .top_access_detail_inner
    .top_access_detail_txt
    .access_info
    > div {
    display: block;
  }
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .access_info
  > div:last-child {
  margin-bottom: 0;
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .access_info
  > div
  dt {
  margin-right: 10px;
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_txt
  .access_info
  > div
  dd {
  flex: 1;
}
.top_access .top_access_detail .top_access_detail_inner .top_access_detail_map {
  width: 49%;
}
@media screen and (max-width: 767px) {
  .top_access
    .top_access_detail
    .top_access_detail_inner
    .top_access_detail_map {
    width: 100%;
    height: 280px;
  }
}
.top_access
  .top_access_detail
  .top_access_detail_inner
  .top_access_detail_map
  iframe {
  width: 100%;
  height: 100%;
  display: block;
} /*# sourceMappingURL=style.css.map */
