@charset "UTF-8";
/*
	$weight:フォントの太さ
	@include f_hiragino(300); ※ W3
	@include f_hiragino(600); ※ W6
*/
/*
	$weight:フォントの太さ
	@include f_din(600);
*/
/*
	$weight:フォントの太さ
	@include f_din(600);
*/
/*
	@include sc(pc) {
		width: 100%;
	}
	@include sc(sp) {
		width: 50%;
	}
*/
/*--------------------------------------------------------------
# base
--------------------------------------------------------------*/
html {
  font-size: 10px !important;
  scroll-behavior: smooth;
  overflow-x: hidden;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  line-height: 1.7;
  letter-spacing: normal;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #000000;
  background-color: #FFFFFF;
}
body.no-scroll {
  overflow: hidden;
  height: 100vh;
  position: fixed;
  width: 100%;
}

.inner {
  width: 100%;
  max-width: 1000px;
  padding-left: 1.6rem;
  padding-right: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}
.inner.width {
  max-width: 100%;
}

@media print, screen and (min-width: 992px) {
  .sp {
    display: none !important;
  }
  [data-scroll-anchor] {
    scroll-margin-top: 100px;
  }
  [data-sc-sp] {
    display: none !important;
  }
}
@media screen and (max-width: 991px) {
  .pc {
    display: none !important;
  }
  [data-scroll-anchor] {
    scroll-margin-top: 60px;
  }
  [data-sc-pc] {
    display: none !important;
  }
}
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: opacity 0.15s ease-out;
  transition: opacity 0.15s ease-out;
}

/*
.of{
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  background-size: cover;
  background-position: center center;
  max-width: 100%;
  max-height: 100%
}
*/
picture {
  display: block;
  line-height: 0;
}

a[onclick] {
  cursor: pointer;
}

address {
  font-style: normal;
}

.internal {
  font-weight: bold;
  text-decoration: underline;
}

.external {
  font-weight: bold;
  text-decoration: underline;
}

.youtube iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.gmap iframe {
  width: 100%;
  aspect-ratio: 4/3;
}

/* TEXT SIZE */
.catch {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
}

.lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
}

.text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
}

.note {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.4rem;
}

/*--------------------------------------------------------------
# header
--------------------------------------------------------------*/
.header {
  position: relative;
}
.header .site_title {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 100;
}
@media (min-width: 768px) {
  .header .site_title {
    top: 30px;
    left: 40px;
  }
}
@media (min-width: 992px) {
  .header .site_title {
    top: 40px;
    left: 80px;
  }
}
.header .site_title .logo {
  width: 50px;
}
@media (min-width: 768px) {
  .header .site_title .logo {
    width: 90px;
  }
}
@media (min-width: 992px) {
  .header .site_title .logo {
    width: 130px;
  }
}
.header .sec_header {
  display: block;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 99;
}
@media (min-width: 768px) {
  .header .sec_header {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.8)), to(rgba(255, 255, 255, 0.15)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.15) 100%);
  }
}
.header .sec_header .content_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 60px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (min-width: 768px) {
  .header .sec_header .content_block {
    height: 100px;
  }
}
.header .sec_header .content_block .logo {
  width: 167px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 992px) {
  .header .sec_header .content_block .logo {
    width: 234px;
  }
}
.header .sec_header .content_block .header_menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 3rem;
     -moz-column-gap: 3rem;
          column-gap: 3rem;
}
.header .sec_header .content_block .header_menu .menu_list {
  display: none;
}
@media (min-width: 768px) {
  .header .sec_header .content_block .header_menu .menu_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1em 2em;
  }
}
.header .sec_header .content_block .header_menu .menu_list .level_first {
  position: relative;
}
@media (min-width: 768px) {
  .header .sec_header .content_block .header_menu .menu_list .level_first {
    font-size: 1.4rem;
  }
}
@media (min-width: 992px) {
  .header .sec_header .content_block .header_menu .menu_list .level_first {
    font-size: 1.6rem;
  }
}
.header .sec_header .content_block .header_menu .menu_list .level_first .arrow::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #000000;
  line-height: 1;
  width: 8px;
  height: 8px;
  border: 2px solid #000000;
  border-left: 0;
  border-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(135deg);
          transform: translateY(-25%) rotate(135deg);
  margin-left: 8px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header .sec_header .content_block .header_menu .menu_list .level_first a {
  position: relative;
  letter-spacing: 0.01em;
  color: #000000;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  padding-top: 5px;
  padding-bottom: 5px;
}
.header .sec_header .content_block .header_menu .menu_list .level_first a span::before {
  content: "";
  display: block;
  position: absolute;
  bottom: -0.02rem;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #000000;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.header .sec_header .content_block .header_menu .menu_list .level_first a:hover span::before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
.header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  border-radius: 15px;
  background-color: #fff;
  border: 1px solid #ddd;
  padding: 4rem 2rem;
  z-index: 98;
  min-width: 240px;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu .caption {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  color: #FFFFFF;
  background-color: #4D4D4D;
  border-radius: 10px;
  margin-bottom: 1em;
  padding-top: 0.25em;
  padding-bottom: 0.25em;
}
.header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  padding: 0.5em 1em;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu ul li a {
    font-size: 1.6rem;
  }
}
.header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu ul li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: inline-block;
  content: "";
  width: 1em;
  height: 1em;
  background-image: url("/assets/img/common/icon_arrow_right_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  line-height: 1;
  margin: auto;
  padding-left: 4px;
}
.header .sec_header .content_block .header_menu .menu_list .level_first .sub_menu ul li a:hover {
  background-color: #f5f5f5;
}
.header .sec_header .content_block .header_menu .menu_list .level_first:hover .sub_menu {
  display: block;
}
.header .sec_header .content_block .header_menu .menu_list .level_first:hover .arrow::after {
  -webkit-transform: translateY(0%) rotate(135deg);
          transform: translateY(0%) rotate(135deg);
}
.header .sec_header .content_block .header_menu .link {
  display: none;
}
@media (min-width: 768px) {
  .header .sec_header .content_block .header_menu .link {
    display: block;
  }
}
.header .sec_header .content_block .header_menu .link .btn_contact {
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-align: center;
  line-height: 1;
  border-radius: 100vw;
  color: #000000;
  background-color: #FFFFFF;
  border: 3px solid #000000;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: auto;
  cursor: pointer;
}
@media (min-width: 768px) {
  .header .sec_header .content_block .header_menu .link .btn_contact {
    width: 140px;
    height: 36px;
    font-size: 1.2rem;
  }
}
@media (min-width: 992px) {
  .header .sec_header .content_block .header_menu .link .btn_contact {
    width: 185px;
    height: 48px;
    font-size: 1.4rem;
  }
}
.header .sec_header .content_block .header_menu .link .btn_contact .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.header .sec_header .content_block .header_menu .link .btn_contact .icon::before {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  background-image: url("/assets/img/common/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header .sec_header .content_block .header_menu .link .btn_contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 100vw;
}
.header .sec_header .content_block .header_menu .link .btn_contact:hover::after {
  opacity: 1;
}
.header.open {
  background-color: #FFFFFF;
}
.header.scroll .sec_header {
  background-color: #FFFFFF;
  -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header.scroll .sec_header .logo {
  opacity: 1;
  visibility: visible;
}

/*========= ナビゲーションのためのCSS ===============*/
.header .spnav {
  position: fixed;
  width: 100%;
  height: 100vh;
  z-index: 10;
  opacity: 0;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  pointer-events: none;
  background-color: #FFFFFF;
  padding-top: 100px;
  -webkit-transition: 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
  transition: 0.5s cubic-bezier(0.17, 0.84, 0.44, 1);
}
.header .spnav.panelactive {
  opacity: 1;
  pointer-events: all;
}
.header .spnavi_menu_business {
  padding: 0 10%;
}
.header .spnavi_menu_business .spmenu_list .level_first {
  position: relative;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
}
.header .spnavi_menu_business .spmenu_list .level_first picture {
  width: 60%;
}
.header .spnavi_menu_business .spmenu_list .level_first span {
  width: 55%;
  height: 3em;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  display: -ms-grid;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #FFFFFF;
  background-color: #000000;
  font-size: 1.2rem;
  margin: auto;
  padding-left: 1em;
}
.header .spnavi_menu_business .spmenu_list .level_first span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0.5em;
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #FFFFFF;
  background-image: url("/assets/img/common/icon_arrow_right_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 50%;
  line-height: 1;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: auto;
  padding-left: 2px;
}
.header .spnavi_menu {
  margin-top: 1rem;
  padding: 0 10%;
}
.header .spnavi_menu .spmenu_list .level_first a {
  display: block;
  position: relative;
  border-top: 1px solid #E6E6E6;
  padding: 1.5rem 0;
}
.header .spnavi_menu .spmenu_list .level_first a span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  display: inline-block;
  content: "";
  width: 16px;
  height: 16px;
  background-color: #B3B3B3;
  background-image: url("/assets/img/common/icon_arrow_right_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
  border-radius: 50%;
  line-height: 1;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: auto;
  padding-left: 2px;
}
.header .spnavi_bottom {
  color: #FFFFFF;
  background-color: #4D4D4D;
  margin-top: 4rem;
  padding: 2rem 10%;
}
.header .spnavi_bottom .message .text {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
}
.header .spnavi_bottom .message .list {
  margin-top: 2rem;
  display: block;
}
.header .spnavi_bottom .message .list .item {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
}
.header .spnavi_bottom .message .list .item::before {
  content: "□";
  margin-right: 0.25em;
}
.header .spnavi_bottom .info {
  display: -ms-grid;
  display: grid;
  margin: 2.5rem auto 0;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
  row-gap: 2rem;
}
.header .spnavi_bottom .info > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.header .spnavi_bottom .info .company {
  width: 100%;
  margin: auto;
  -ms-grid-row: 2;
  grid-row: 2;
}
.header .spnavi_bottom .info .company .name {
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
}
.header .spnavi_bottom .info .company .address {
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
.header .spnavi_bottom .info .company .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 2rem;
}
.header .spnavi_bottom .info .company .contact .item {
  font-size: 2rem;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2em auto;
  grid-template-columns: 2em auto;
}
.header .spnavi_bottom .info .company .contact .item dd::before {
  content: ".";
}
.header .spnavi_bottom .info .company .hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 2rem;
}
.header .spnavi_bottom .info .company .hours .item {
  font-size: 1.4rem;
  font-weight: bold;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4em 0.5em auto;
  grid-template-columns: 4em auto;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
.header .spnavi_bottom .info .company .hours .item dt {
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.header .spnavi_bottom .info .company .hours .item dd::before {
  content: "|";
  margin-right: 0.5em;
}
.header .spnavi_bottom .info .cta {
  width: 100%;
  max-width: 350px;
  margin: auto;
  -ms-grid-row: 1;
  grid-row: 1;
}
.header .spnavi_bottom .info .cta .link .btn_contact {
  font-size: 2.4rem;
  font-weight: bold;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 52px;
  text-align: center;
  line-height: 1;
  border-radius: 100vw;
  color: #000000;
  background-color: #FFFFFF;
  border: 3px solid #000000;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: auto;
  cursor: pointer;
}
.header .spnavi_bottom .info .cta .link .btn_contact .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.header .spnavi_bottom .info .cta .link .btn_contact .icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/assets/img/common/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.header .spnavi_bottom .info .cta .link .btn_contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 100vw;
}
.header .spnavi_bottom .info .cta .link .btn_contact:hover::after {
  opacity: 1;
}
.header .spnavi_bottom .logo {
  width: 200px;
  margin: auto;
  margin-top: 2rem;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  display: block;
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  background-color: #000000;
}
@media (min-width: 768px) {
  .openbtn {
    display: none;
  }
}
.openbtn span {
  width: 50%;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  position: absolute;
  left: 15px;
  height: 2px;
  background-color: #FFFFFF;
}
.openbtn span:nth-of-type(1) {
  top: 15px;
}
.openbtn span:nth-of-type(2) {
  top: 23px;
}
.openbtn .text {
  font-family: "Barlow Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  text-align: center;
  color: #FFFFFF;
  display: -ms-grid;
  display: grid;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-line-pack: end;
      align-content: flex-end;
  height: 100%;
  padding-bottom: 4px;
}
.openbtn.active span:nth-of-type(1) {
  width: 30%;
  top: 18px;
  left: 22px;
  -webkit-transform: translateY(6px) rotate(-45deg);
          transform: translateY(6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  width: 30%;
  top: 30px;
  left: 22px;
  -webkit-transform: translateY(-6px) rotate(45deg);
          transform: translateY(-6px) rotate(45deg);
}

/*--------------------------------------------------------------
# main
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# footer
--------------------------------------------------------------*/
.footer {
  color: #FFFFFF;
  background-color: #4D4D4D;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.footer .sec_info .content_block .message .text {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .message .text {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .message .text {
    font-size: 2rem;
  }
}
.footer .sec_info .content_block .message .list {
  margin-top: 2rem;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .message .list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-column-gap: 1.5em;
       -moz-column-gap: 1.5em;
            column-gap: 1.5em;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .message .list {
    display: block;
  }
}
.footer .sec_info .content_block .message .list .item {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
.footer .sec_info .content_block .message .list .item::before {
  content: "□";
  margin-right: 0.25em;
}
.footer .sec_info .content_block .info {
  display: -ms-grid;
  display: grid;
  margin: 2.5rem auto 0;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    row-gap: 2rem;
  }
  .footer .sec_info .content_block .info > *:nth-child(1) {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .company {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company {
    width: 100%;
    margin: auto;
    -ms-grid-row: 2;
    grid-row: 2;
  }
}
.footer .sec_info .content_block .info .company .name {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .company .name {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company .name {
    font-size: 1.6rem;
    text-align: center;
  }
}
.footer .sec_info .content_block .info .company .address {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .company .address {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company .address {
    font-size: 1.4rem;
    text-align: center;
  }
}
.footer .sec_info .content_block .info .company .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 2em;
     -moz-column-gap: 2em;
          column-gap: 2em;
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company .contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 2rem;
  }
}
.footer .sec_info .content_block .info .company .contact .item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2rem;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 2em auto;
  grid-template-columns: 2em auto;
}
.footer .sec_info .content_block .info .company .contact .item dd::before {
  content: ".";
}
.footer .sec_info .content_block .info .company .hours {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1em;
     -moz-column-gap: 1em;
          column-gap: 1em;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .company .hours {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company .hours {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 2rem;
  }
}
.footer .sec_info .content_block .info .company .hours .item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 4em 0.5em auto;
  grid-template-columns: 4em auto;
  -webkit-column-gap: 0.5em;
     -moz-column-gap: 0.5em;
          column-gap: 0.5em;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .company .hours .item {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .company .hours .item {
    font-size: 1.4rem;
  }
}
.footer .sec_info .content_block .info .company .hours .item dt {
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.footer .sec_info .content_block .info .company .hours .item dd::before {
  content: "|";
  margin-right: 0.5em;
}
.footer .sec_info .content_block .info .cta {
  width: 100%;
  max-width: 350px;
  margin: auto;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_info .content_block .info .cta {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_info .content_block .info .cta {
    -ms-grid-row: 1;
    grid-row: 1;
  }
}
.footer .sec_info .content_block .info .cta .link .btn_contact {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.4rem;
  position: relative;
  display: -ms-grid;
  display: grid;
  place-items: center;
  width: 100%;
  height: 52px;
  text-align: center;
  line-height: 1;
  border-radius: 100vw;
  color: #000000;
  background-color: #FFFFFF;
  border: 3px solid #000000;
  text-decoration: none;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  margin: auto;
  cursor: pointer;
}
.footer .sec_info .content_block .info .cta .link .btn_contact .icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 4px;
     -moz-column-gap: 4px;
          column-gap: 4px;
}
.footer .sec_info .content_block .info .cta .link .btn_contact .icon::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  background-image: url("/assets/img/common/icon_mail.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.footer .sec_info .content_block .info .cta .link .btn_contact::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 100vw;
}
.footer .sec_info .content_block .info .cta .link .btn_contact:hover::after {
  opacity: 1;
}
.footer .sec_info .content_block .info .cta .logo {
  display: -ms-grid;
  display: grid;
  place-items: center;
  margin-top: 2rem;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_menu {
    border-top: 1px solid #FFFFFF;
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_menu .content_block {
    border-top: 1px solid #FFFFFF;
    border-bottom: 1px solid #FFFFFF;
    padding: 2rem 1rem;
  }
}
.footer .sec_menu .content_block .menu .menu_list {
  display: -ms-grid;
  display: grid;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_menu .content_block .menu .menu_list {
    -ms-grid-columns: (auto)[7];
    grid-template-columns: repeat(7, auto);
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_menu .content_block .menu .menu_list {
    max-width: 390px;
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
    row-gap: 1.5rem;
    margin: auto;
  }
}
.footer .sec_menu .content_block .menu .menu_list .menu_item a {
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  margin-bottom: 1em;
}
@media print, screen and (min-width: 992px) {
  .footer .sec_menu .content_block .menu .menu_list .menu_item a {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 991px) {
  .footer .sec_menu .content_block .menu .menu_list .menu_item a {
    font-size: 1.4rem;
  }
}
.footer .sec_menu .content_block .menu .menu_list .menu_item a span:before {
  content: "";
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #FFFFFF;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: right top;
  transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1), -webkit-transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.footer .sec_menu .content_block .menu .menu_list .menu_item a:hover span:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left top;
  transform-origin: left top;
}
@media screen and (max-width: 991px) {
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(1) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(2) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(3) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(4) {
    -ms-grid-row: 4;
    grid-row: 4;
    -ms-grid-column: 1;
    grid-column: 1;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(5) {
    -ms-grid-row: 1;
    grid-row: 1;
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(6) {
    -ms-grid-row: 2;
    grid-row: 2;
    -ms-grid-column: 2;
    grid-column: 2;
  }
  .footer .sec_menu .content_block .menu .menu_list .menu_item:nth-child(7) {
    -ms-grid-row: 3;
    grid-row: 3;
    -ms-grid-column: 2;
    grid-column: 2;
  }
}
@media screen and (max-width: 991px) {
  .footer .copyright {
    padding-top: 2rem;
  }
}
.footer .copyright .logo {
  width: 200px;
  margin: auto;
}
.footer .copyright .text {
  font-family: "Barlow Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
  text-align: center;
  padding-bottom: 1rem;
}
@media screen and (max-width: 991px) {
  .footer .copyright .text {
    padding-top: 1rem;
  }
}

/* PAGE TOP*/
.page_top {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 4px;
  color: #FFFFFF;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  background: #FFFFFF;
  -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  border-radius: 5;
  z-index: 10;
}
@media print, screen and (min-width: 992px) {
  .page_top {
    border: 4px solid #E61F19;
    width: 75px;
    height: 75px;
    right: -90px;
    bottom: 30px;
  }
}
@media screen and (max-width: 991px) {
  .page_top {
    border: 2px solid #E61F19;
    width: 60px;
    height: 60px;
    right: -40px;
    bottom: 40px;
  }
}
@media print, screen and (min-width: 992px) {
  .page_top i {
    width: 22px;
    height: 22px;
  }
}
@media screen and (max-width: 991px) {
  .page_top i {
    width: 18px;
    height: 18px;
  }
}
.page_top p {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0;
  color: #E61F19;
}
.page_top.is-active {
  opacity: 1;
  visibility: visible;
  right: 20px;
}
.page_top:hover {
  background: #DADADA;
}

/* COMMON PARTS*/
/* COMMON LAYOUT*/
.page_visual {
  position: relative;
  display: block;
  background: #F9F7F5;
  width: 100%;
  height: auto;
  min-height: 120px;
  aspect-ratio: 4.8/1;
}
.page_visual .inner {
  width: 100%;
  height: 100%;
}
.page_visual .bg_box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page_visual .bg_box .bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page_visual .visual_text {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 120px;
}
.page_visual .visual_text .title {
  font-family: "Barlow Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  line-height: 1;
  position: absolute;
  color: #FFFFFF;
  top: auto;
  right: 0;
}
@media print, screen and (min-width: 992px) {
  .page_visual .visual_text .title {
    font-size: 6rem;
    bottom: -6px;
  }
}
@media screen and (max-width: 991px) {
  .page_visual .visual_text .title {
    font-size: 3rem;
    bottom: -3px;
  }
}

/* PAGE CONTENTS */
.page_contents {
  /* PAGE TITLE */
}
@media screen and (max-width: 991px) {
  .page_contents {
    min-height: calc(100vh - 665px);
  }
}
@media print, screen and (min-width: 992px) {
  .page_contents .page_title {
    margin-top: 100px;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .page_title {
    margin-top: 50px;
  }
}
.page_contents .page_title .title .jp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 2.8rem;
  text-align: center;
}
.page_contents .page_title .title .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  text-align: center;
}
.page_contents .page_title .title .en.logo:before {
  content: url("/assets/img/index/title-logo.svg");
  width: 16px;
  height: 12px;
  margin-right: 4px;
}
.page_contents .content_title .title .jp {
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-style: normal;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .page_contents .content_title .title .jp {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .content_title .title .jp {
    font-size: 1.8rem;
  }
}
.page_contents .content_title .title .en {
  display: block;
  font-family: "Barlow Condensed", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.08em;
  font-size: 1.6rem;
  text-align: center;
}
.page_contents .content_title .title .en.logo:before {
  content: url("/assets/img/index/title-logo.svg");
  width: 16px;
  height: 12px;
  margin-right: 4px;
}
.page_contents .content_title .text {
  margin-top: 4rem;
}
@media print, screen and (min-width: 992px) {
  .page_contents .content_title .text {
    text-align: center;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .content_title .text {
    text-align: left;
  }
}
@media print, screen and (min-width: 992px) {
  .page_contents .sec_intro {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .sec_intro {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media print, screen and (min-width: 992px) {
  .page_contents .sec_intro .inner {
    max-width: 900px;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .sec_intro .inner {
    max-width: 600px;
  }
}
.page_contents .sec_intro .text_box .text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-style: normal;
}
@media print, screen and (min-width: 992px) {
  .page_contents .sec_intro .text_box .text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 991px) {
  .page_contents .sec_intro .text_box .text {
    font-size: 1.6rem;
  }
}

/* LABEL */
.label_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1rem;
}
.label_box .label .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 2px;
     -moz-column-gap: 2px;
          column-gap: 2px;
  background: #E61F19;
  border: 2px solid #E61F19;
  color: #FFFFFF;
  text-align: center;
  text-decoration: none;
  border-radius: 9999px;
  padding: 0.25em 1em;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
@media print, screen and (min-width: 992px) {
  .label_box .label .category {
    font-size: 1rem;
  }
}
@media screen and (max-width: 991px) {
  .label_box .label .category {
    font-size: 0.8rem;
  }
}
.label_box .label .category.tent-sheet {
  background-color: #0071BC;
  border: 2px solid #0071BC;
}
.label_box .label .category.event-ceremony {
  background-color: #00A99D;
  border: 2px solid #00A99D;
}
.label_box .label .category.bag-cover {
  background-color: #F7931E;
  border: 2px solid #F7931E;
}
.label_box .label .category.tent-sheet::before, .label_box .label .category.event-ceremony::before, .label_box .label .category.bag-cover::before {
  display: block;
  content: "";
  width: 1.25em;
  height: 1.25em;
  background-image: url("/assets/img/common/icon_arrow_right_white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
  line-height: 1;
}
.label_box .label .category.tent-sheet:hover, .label_box .label .category.event-ceremony:hover, .label_box .label .category.bag-cover:hover {
  background-color: #b81914;
  -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.label_box .label .category.tent-sheet:hover.tent-sheet:hover, .label_box .label .category.event-ceremony:hover.tent-sheet:hover, .label_box .label .category.bag-cover:hover.tent-sheet:hover {
  background-color: #005289;
}
.label_box .label .category.tent-sheet:hover.event-ceremony:hover, .label_box .label .category.event-ceremony:hover.event-ceremony:hover, .label_box .label .category.bag-cover:hover.event-ceremony:hover {
  background-color: #00766e;
}
.label_box .label .category.tent-sheet:hover.bag-cover:hover, .label_box .label .category.event-ceremony:hover.bag-cover:hover, .label_box .label .category.bag-cover:hover.bag-cover:hover {
  background-color: #da7908;
}

/* BUTTON */
.link_box {
  width: 100%;
  height: auto;
}
.link_box .btn01 {
  width: 100%;
  max-width: 175px;
  position: relative;
  font-size: 1.4rem;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  border-radius: 100vw;
  color: #000000;
  background-color: #FFFFFF;
  display: -ms-grid;
  display: grid;
  place-items: center;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: auto;
  padding: 0.35em 1.35em 0.35em 0.35em;
  border: 2px solid #000000;
}
.link_box .btn01::after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  display: inline-block;
  content: "";
  width: 1.25em;
  height: 1.25em;
  /*background-color: #B3B3B3;*/
  background-image: url("/assets/img/common/icon_arrow_right_black.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 75%;
  border-radius: 50%;
  line-height: 1;
  color: #FFFFFF;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: auto;
  padding-left: 2px;
}
.link_box .btn01:hover {
  border: 2px solid #000000;
  background: #E61F19;
  color: #FFFFFF;
}
.link_box .btn01:hover::after {
  right: 0.5em;
  /*`background-color: $c_main;*/
}

.wp-pagenavi {
  margin-top: 4rem;
}

.grecaptcha-badge {
  visibility: hidden;
}