@charset "UTF-8";
/* CSS Document */
.loading {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1000;
  background-color: #ffffff;
}

/*topimage*/
.topimage {
  font-family: "Noto Sans JP", sans-serif;
  position: relative;
}
.topimage_area {
  position: relative;
  display: block;
  padding-top: 100px;
}
.scroll_point {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
  bottom: 10px;
  left: 12px;
  text-align: center;
  color: #111111;
  font-size: 14px;
  letter-spacing: 1px;
}
.scroll_point span {
  display: block;
  width: 1px;
  height: 100px;
  background: #111111;
  position: relative;
}
.scroll_point span:first-child {
  transform: rotate(-180deg);
  top: 0;
  left: 22px;
  position: relative;
}

.carousel-cel {
  width: 66%;
  height: 60vh;
  max-height: 600px;
  margin-right: 10px;
  background: #cccccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* cell number */
.carousel-cell:before {
  display: block;
  text-align: center;
  content: counter(carousel-cell);
  line-height: 200px;
  font-size: 80px;
  color: white;
}

/*header_org_typeB CSS*/
#header_org_typeB {
  background-color: #fcfcfc;
  height: 100px;
  width: 100%;
  padding: 20px 100px 20px 20px;
  font-family: "Lato", sans-serif;
  border-bottom: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}
#header_org_typeB h1 {
  height: 60px;
  font-size: 24px;
  display: flex;
  align-items: center;
}
#header_org_typeB h1 a {
  color: #343434;
}
#header_org_typeB h1 a:hover {
  text-decoration: none;
  opacity: 0.9;
}
#header_org_typeB .nav_bar_area {
  background-color: #111111;
  display: block;
  width: 100px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 100;
}
#header_org_typeB .nav_bar_area:hover {
  cursor: pointer;
}
.nav_bar_button {
  width: 18px;
  height: 18px;
  display: block;
}
#header_org_typeB .nav_bar_area .nav_bar_button span {
  height: 1px;
  width: 18px;
  background-color: #fcfcfc;
  display: block;
  -webkit-transition: 0.1s all ease;
  transition: 0.1s all ease;
  will-change: transform;
  z-index: 101;
}
#header_org_typeB .nav_bar_area .nav_bar_button span:nth-child(2) {
  margin-top: 5px;
  margin-bottom: 5px;
}

#header_org_typeB .nav_bar_area.active span:nth-child(2) {
  margin-top: 7px;
  margin-bottom: 7px;
}
#header_org_typeB .nav_bar_area.active .nav_bar_button span:first-child {
  transform: rotate(45deg);
  position: relative;
  top: 5px;
  background-color: #fcfcfc;
}
#header_org_typeB .nav_bar_area.active .nav_bar_button span:nth-child(2) {
  display: none;
}
#header_org_typeB .nav_bar_area.active .nav_bar_button span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: 4px;
  background-color: #fcfcfc;
}

#header_org_typeB .nav_bar_sub {
  padding: 0;
  margin: 0 auto;
  text-align: left;
}
#header_org_typeB .nav_bar_sub .nav_item_li {
  display: inline-block;
}
#header_org_typeB .nav_bar_sub .nav_item_li a {
  display: block;
  padding: 20px 20px;
  font-weight: bolder;
  color: #343434;
  letter-spacing: 2px;
  font-size: 14px;
  position: relative;
}
#header_org_typeB .nav_bar_sub .nav_item_li a:hover {
  text-decoration: none;
}
#header_org_typeB .nav_bar_sub .nav_item_li a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #343434;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
#header_org_typeB .nav_bar_sub .nav_item_li a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}
#header_org_typeB .nav_bar_sns {
  height: 100px;
  width: 30px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: block;
  z-index: 1;
}
#header_org_typeB .nav_bar_sns .nav_item_li {
  width: 18px;
  display: block;
  margin-bottom: 10px;
}
#header_org_typeB .nav_bar_sns .nav_item_a img {
  width: 100%;
  height: auto;
}
#header_org_typeB .nav_bar_main {
  display: none;
  position: fixed;
  background-color: #111111;
  top: 0px;
  right: -100vw;
  width: 100vw;
  height: 100vh;
  text-align: center;
  z-index: 50;
  color: #fcfcfc;
  opacity: 0;
  transition: all 0.5s ease;
}
.nav_bar_main a {
  color: #fcfcfc;
  display: block;
  padding: 10px;
  position: relative;
}
.nav_bar_main a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.nav_bar_main a::after {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #fcfcfc;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.3s;
}
.nav_bar_main a:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

#header_org_typeB .nav_bar_main.nav_open {
  opacity: 1;
  right: 0;
  transition: all 0.8s ease;
}
.nav_bar_main_left {
  background-image: url(../images/sample/slide1.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.display_block {
  display: block !important;
}
.display_flex {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.display_flex_row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tr {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.h-100vh {
  height: 100vh;
}
.ttl_1 {
  font-size: 48px;
}
@media (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
  .carousel-cel {
    width: 100%;
    height: 50vh;
    max-height: 400px;
    margin-right: 10px;
    background: #cccccc;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .topimage_area {
    padding-top: 0;
  }
}
@media (max-width: 768px) {
  #header_org_typeB {
    background-color: #fcfcfc;
    height: 50px;
    width: 80%;
    padding: 10px 50px 10px 10px;
    font-family: "Lato", sans-serif;
    border-bottom: none;
    position: relative;
    top: 0;
    left: 0;
    z-index: 1;
  }
  #header_org_typeB h1 {
    height: 30px;
    font-size: 12px;
    display: flex;
    align-items: center;
  }
  #header_org_typeB .nav_bar_area {
    background-color: #111111;
    display: block;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    right: 0;
    top: 0;
    z-index: 100;
  }
  #header_org_typeB .nav_bar_area:hover {
    cursor: pointer;
  }
  .nav_bar_button {
    width: 18px;
    height: 18px;
    display: block;
  }
  #header_org_typeB .nav_bar_area .nav_bar_button span {
    height: 1px;
    width: 18px;
    background-color: #fcfcfc;
    display: block;
    -webkit-transition: 0.1s all ease;
    transition: 0.1s all ease;
    will-change: transform;
    z-index: 101;
  }
  #header_org_typeB .nav_bar_area .nav_bar_button span:nth-child(2) {
    margin-top: 5px;
    margin-bottom: 5px;
  }

  #header_org_typeB .nav_bar_area.active span:nth-child(2) {
    margin-top: 7px;
    margin-bottom: 7px;
  }
  #header_org_typeB .nav_bar_area.active .nav_bar_button span:first-child {
    transform: rotate(45deg);
    position: relative;
    top: 5px;
    background-color: #fcfcfc;
  }
  #header_org_typeB .nav_bar_area.active .nav_bar_button span:nth-child(2) {
    display: none;
  }
  #header_org_typeB .nav_bar_area.active .nav_bar_button span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: 4px;
    background-color: #fcfcfc;
  }
  #header_org_typeB .nav_bar_sns {
    height: 80px;
    width: 18px;
    position: fixed;
    bottom: 15px;
    right: 15px;
    display: block;
    z-index: 1;
  }
  #header_org_typeB .nav_bar_main.nav_open {
    opacity: 1;
    right: 0;
    transition: all 0.3s ease;
  }
  .ttl_1 {
    font-size: 24px;
  }
}
