@charset "UTF-8";
/*font alata*/
@import url("https://fonts.googleapis.com/css2?family=Alata&display=swap");
.other {
  font-family: "Alata", sans-serif;
}

/* base */
html {
  scroll-behavior: smooth;
}
html body {
  font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "Noto Sans JP", "メイリオ", Meiryo, Lato, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 13px;
  line-height: 1.428571429;
  color: #111;
  background-color: #fff;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
}
html body .wrap {
  padding-bottom: 0 !important;
}
html body .wrap .block--content-wrap {
  margin-top: -96px;
  margin-bottom: 100px;
  padding: 0;
}
html body .wrap .block--content-wrap > .section--family-banner {
  display: none;
}

/**/
.drawer__btn {
  display: none;
}

/* loading animation */
#loadingAnimation {
  width: 100%;
  height: 100vh;
  background: -webkit-linear-gradient(left top, #fff 0%, #e2e2e2 100%);
  position: fixed;
  z-index: 1000;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
}
#loadingAnimation .logo-svg {
  width: 30vw;
  min-width: 180px;
  padding: 10px;
}

.loadComplete {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: loading 3s forwards linear;
          animation: loading 3s forwards linear;
}

/* header*/
#header-nav {
  background: #fff;
  padding: 0 !important;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#header-nav .logo {
  display: none;
}
#header-nav .block--login {
  display: none;
}
#header-nav .drawer .g-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
#header-nav .drawer .g-nav .nav {
  background: #000;
  height: 88px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0 75px 0 35px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  position: relative;
}
#header-nav .drawer .g-nav .nav::before {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(0, 0, 0, 0)), color-stop(50.5%, #000000)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom right, rgba(0, 0, 0, 0) 50%, #000000 50.5%) no-repeat top left/100% 100%;
  background-size: cover;
  content: "";
  display: block;
  width: 88px;
  height: 88px;
  position: absolute;
  bottom: 0;
  left: -88px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
#header-nav .drawer .g-nav .nav .g-nav--item {
  margin-right: 0;
  padding: 0 25px;
}
#header-nav .drawer .g-nav .nav .g-nav--item a {
  font-size: 1.15rem;
  letter-spacing: -0.3px;
  font-family: "Alata", sans-serif;
  color: #fff;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#header-nav .drawer .g-nav .nav .g-nav--item a::after {
  bottom: -5px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
  opacity: 0;
}
#header-nav .drawer .g-nav .nav .g-nav--item a:hover {
  opacity: 0.7;
}
#header-nav .drawer .g-nav .nav .g-nav--item a:hover::after {
  width: 100%;
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}
#header-nav .drawer .g-nav .nav .g-nav--item__sns {
  display: none;
}

.window-scroll #header-nav .drawer .g-nav .nav {
  height: 60px;
}
.window-scroll #header-nav .drawer .g-nav .nav::before {
  width: 60px;
  height: 60px;
  left: -60px;
}
.window-scroll #header-nav .drawer .g-nav .nav .g-nav--item a {
  font-size: 1rem;
}

/*top bg*/
.page--home .bg {
  display: none;
}
@media screen and (min-width: 961px) {
  .page--home.top-contents-none .block--content-wrap {
    padding: 100px 0 0;
    margin-top: -40px;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .page--home.top-contents-none .block--content-wrap {
    padding: 50px 0;
    margin: -50px 0 40px;
  }
}

/* section--hero */
.view__area {
  background-image: -webkit-linear-gradient(left top, #fff 0%, #e2e2e2 100%);
  position: relative;
}
.view__area .section--hero-img {
  position: relative;
}
.view__area .section--hero-img .block--hero-img img:nth-child(1) {
  max-height: 200px;
  height: 100%;
}
.view__area .section--hero-img .scroll {
  position: absolute;
  z-index: 1;
  top: 84%;
  -webkit-animation: scroll 2s linear infinite;
          animation: scroll 2s linear infinite;
}
.view__area .section--hero-img .scroll a {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.view__area .section--hero-img .scroll a img {
  width: 25px;
}
.view__area .section--hero-img .scroll a span {
  font-size: 0.8rem;
  font-family: "Alata", sans-serif;
  margin-top: 5px;
}
.view__area .section--hero-img .section--hero-btn {
  position: absolute;
  bottom: -65px;
  background: #000;
  color: #fff;
  padding: 20px 3px;
  width: 100%;
  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;
  padding: 20px 3px;
  z-index: 1;
}
.view__area .section--hero-img .section--hero-btn span {
  display: block;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  line-height: 1.4;
  padding: 12px 0;
  width: 100%;
  max-width: 1106px;
  text-align: center;
  position: relative;
}
.view__area .section--hero-img .section--hero-btn::before {
  background: -webkit-gradient(linear, right top, left bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #000000)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom left, rgba(255, 255, 255, 0) 50%, #000000 50.5%) no-repeat top left/100% 100%;
  background-size: cover;
  content: "";
  display: block;
  width: 50%;
  height: 55px;
  position: absolute;
  top: -55px;
  left: 0;
}
.view__area .section--hero-img .section--hero-btn::after {
  background: -webkit-gradient(linear, left top, right bottom, color-stop(50%, rgba(255, 255, 255, 0)), color-stop(50.5%, #000000)) no-repeat top left/100% 100%;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0) 50%, #000000 50.5%) no-repeat top left/100% 100%;
  background-size: cover;
  content: "";
  display: block;
  width: 50%;
  height: 55px;
  position: absolute;
  top: -55px;
  right: 0;
}

/*banner*/
.section--banner {
  display: none;
}

/*introduce*/
.section--introduce {
  background: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #eaeaea), color-stop(100%, #d6d6d6));
  width: 100%;
  margin-top: -60px;
  padding-top: 60px;
}
.section--introduce .section--introduce__inner {
  max-width: 1106px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 7px;
  position: relative;
}
.section--introduce .section--introduce__inner .dummy-txt {
  color: #fff;
  display: block;
  line-height: 1;
  opacity: 0.3;
  width: 1000px;
  position: absolute;
  top: 370px;
  left: -400px;
  -webkit-transform: rotate(-270deg);
          transform: rotate(-270deg);
  font-size: 7.5rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
  z-index: 0;
}
.section--introduce .section--introduce__inner .animation-circle {
  width: 528px;
  height: 542px;
  background-color: #cecece;
  -webkit-animation: uneune 5s linear infinite;
          animation: uneune 5s linear infinite;
  position: absolute;
  left: -10%;
  top: 0%;
  z-index: 0;
}
.section--introduce .section--introduce__inner .section--introduce-tit {
  font-size: 3rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
}
.section--introduce .section--introduce__inner .section--introduce-tit::after {
  background-color: #000;
  content: "";
  height: 4px;
  width: 56px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
.section--introduce .section--introduce__inner p {
  max-width: 992px;
  width: 100%;
  margin: 0 auto;
  letter-spacing: 2px;
  font-size: 17px;
  font-weight: bold;
  line-height: 1.8;
  padding-bottom: 40px;
  position: relative;
}

/*message*/
.section--message {
  width: 100%;
  overflow: hidden;
}
.section--message .section--message__inner {
  max-width: 1106px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 0;
  position: relative;
}
.section--message .section--message__inner .dummy-txt {
  color: #000;
  display: block;
  line-height: 1;
  opacity: 0.12;
  text-align: right;
  width: 758px;
  position: absolute;
  top: 300px;
  right: -312px;
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
  font-size: 10rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
  z-index: 0;
}
.section--message .section--message__inner .section--message-tit {
  font-size: 3rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
}
.section--message .section--message__inner .section--message-tit::after {
  background-color: #000;
  content: "";
  height: 4px;
  width: 56px;
  position: absolute;
  bottom: 8px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

/* NEWS WRAP*/
.news-wrap {
  display: none;
  height: 0;
  width: 100%;
  background: -webkit-gradient(linear, 0% 0%, 100% 100%, color-stop(0%, #eaeaea), color-stop(100%, #d6d6d6));
  padding-top: 80px;
  padding-bottom: 60px;
  /* NEWS*/
  /*family banner*/
}
.news-wrap .section--information {
  max-width: 1106px !important;
  width: 100% !important;
  margin: 0 auto;
  border: 8px solid transparent;
  margin-bottom: 80px;
  position: relative;
  padding: 14px;
}
.news-wrap .section--information::before {
  position: absolute;
  content: "";
  height: 6px;
  width: 78%;
  background: #000;
  top: 0;
  right: 0;
}
.news-wrap .section--information::after {
  position: absolute;
  content: "";
  height: 6px;
  width: 100%;
  background: #000;
  bottom: 0;
  right: 0;
}
.news-wrap .section--information .block--title {
  margin-bottom: 0;
  height: 0px;
}
.news-wrap .section--information .block--title .section-tit {
  width: 100%;
  font-size: 3rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: 20px;
  margin-bottom: 25px;
  position: relative;
  left: -21px;
  top: -25px;
}
.news-wrap .section--information .block--title .section-tit::after {
  background-color: #000;
  content: "";
  height: 4px;
  width: 56px;
  position: absolute;
  bottom: 8px;
  left: 0;
}
.news-wrap .section--information .block--title .list__more {
  display: none !important;
}
.news-wrap .section--information .news-list--wrap {
  padding: 10px 0;
}
.news-wrap .section--information .news-list--wrap::before {
  position: absolute;
  content: "";
  height: calc(100% - 100px);
  width: 6px;
  background: #000;
  bottom: 0;
  left: 0;
}
.news-wrap .section--information .news-list--wrap::after {
  position: absolute;
  content: "";
  height: 100%;
  width: 6px;
  background: #000;
  bottom: 0;
  right: 0;
}
.news-wrap .section--information .news-list--wrap .list--information {
  margin-left: calc(22% - 8px);
  position: relative;
  padding: 25px 20px 25px 40px;
}
.news-wrap .section--information .news-list--wrap .list--information::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 100vw;
  background: #2e2e2e;
  top: 0;
  left: 0;
}
.news-wrap .section--information .news-list--wrap .list--information .no-data {
  color: #fff;
  position: relative;
  padding: 14px;
  font-weight: bold;
  line-height: 1.7;
  font-size: 1.1rem;
}
.news-wrap .section--information .news-list--wrap .list--information .list__item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.news-wrap .section--information .news-list--wrap .list--information .list__item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.news-wrap .section--information .news-list--wrap .list--information .list__item a {
  color: #fff;
  border-bottom: 2px solid #fff;
  padding: 15px 0;
}
.news-wrap .section--information .news-list--wrap .list--information .list__item a .block--txt .date {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
  opacity: 1;
  font-size: 0.9rem;
  line-height: 30px;
}
.news-wrap .section--information .news-list--wrap .list--information .list__item a .block--txt .date .date-md {
  font-size: 1.7rem;
}
.news-wrap .section--information .news-list--wrap .list--information .list__item a .block--txt .tit {
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.7;
}
.news-wrap .section--information .news-list--wrap .list--information .new .tit::after {
  color: #fff;
  background: #2e2e2e;
  padding: 3px 2px 1px 3px;
}
.news-wrap .section--information .news-list--wrap .list__more {
  display: block !important;
  position: relative;
  color: #fff;
  width: 100%;
  max-width: 168px;
  position: relative;
  border-bottom: 1px solid #fff;
  padding-bottom: 3px;
  margin-top: 20px;
}
.news-wrap .section--information .news-list--wrap .list__more::before {
  content: "";
  height: 1px;
  width: 10px;
  position: absolute;
  background: #fff;
  bottom: -1px;
  right: 0px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news-wrap .section--information .news-list--wrap .list__more::after {
  content: "";
  height: 1px;
  width: 10px;
  position: absolute;
  background: #fff;
  bottom: -1px;
  right: 0px;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news-wrap .section--information .news-list--wrap .list__more a {
  color: #fff;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.1rem;
  text-align: left;
  padding-left: calc(0% - 0px);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.news-wrap .section--information .news-list--wrap .list__more a::after {
  content: none;
}
.news-wrap .section--information .news-list--wrap .list__more:hover {
  opacity: 0.7;
}
.news-wrap .section--information .news-list--wrap .list__more:hover::before {
  opacity: 1;
}
.news-wrap .section--information .news-list--wrap .list__more:hover a {
  padding-left: calc(100% - 60px);
}
.news-wrap .section--family-banner {
  width: 100%;
  max-width: 992px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 14px;
}
.news-wrap .section--family-banner a {
  width: calc(50% - 7px);
  position: relative;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  overflow: hidden;
}
.news-wrap .section--family-banner a:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  opacity: 0.7;
}
.news-wrap .section--family-banner a img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/* page--information */
.page--information .wrap {
  padding-top: 100px;
}
.page--information .wrap .section--list {
  max-width: 1106px;
  width: 100%;
  margin: 0 auto;
  padding: 16px 14px 100px 14px;
}
.page--information .wrap .section--list .section-tit {
  line-height: 1;
  position: relative;
  font-size: 3.7rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 900;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  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;
  margin: 0 -7px 30px -7px;
}
.page--information .wrap .section--list .section-tit a {
  background: #000;
  color: #fff;
  display: block;
  font-size: 0.9rem;
  padding: 9px 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.page--information .wrap .section--list .section-tit a:hover {
  background-color: #a7a7a7;
  color: #111;
  opacity: 1;
}
.page--information .wrap .section--list .list--information {
  position: relative;
  padding-bottom: 84px;
}
.page--information .wrap .section--list .list--information .no-data {
  color: #000;
  position: relative;
  padding: 14px;
  font-weight: bold;
  line-height: 1.7;
  font-size: 1.1rem;
}
.page--information .wrap .section--list .list--information .list__item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.page--information .wrap .section--list .list--information .list__item:hover {
  -webkit-transform: scale(1.01);
          transform: scale(1.01);
}
.page--information .wrap .section--list .list--information .list__item a {
  color: #000;
  border-bottom: 2px solid #000;
  padding: 15px 0;
}
.page--information .wrap .section--list .list--information .list__item a .block--txt .date {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
  opacity: 1;
  font-size: 0.9rem;
  line-height: 30px;
}
.page--information .wrap .section--list .list--information .list__item a .block--txt .date .date-md {
  font-size: 1.7rem;
}
.page--information .wrap .section--list .list--information .list__item a .block--txt .tit {
  font-size: 0.95rem;
  font-weight: bold;
  line-height: 1.7;
}
.page--information .wrap .section--list .list--information .new .tit::after {
  color: #fff;
  background: #2e2e2e;
  padding: 3px 2px 1px 3px;
}

/* News detail*/
.section--detail {
  width: 100%;
  max-width: 1106px;
  padding: 16px 14px 100px 14px;
  position: relative;
}
.section--detail .section-tit {
  line-height: 1;
  position: relative;
  font-size: 3.7rem;
  font-style: inherit;
  font-family: "Alata", sans-serif;
  font-weight: 900;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-align: center;
  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;
  margin: 0 -7px 30px -7px;
}
.section--detail .section-tit a {
  background: #000;
  color: #fff;
  display: block;
  font-size: 0.9rem;
  padding: 9px 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.section--detail .section-tit a:hover {
  background-color: #a7a7a7;
  color: #111;
  opacity: 1;
}
.section--detail .block--title {
  border-bottom: 1px solid #ddd;
  margin-bottom: 0;
  padding-bottom: 5px;
}
.section--detail .block--title .tit {
  font-size: 1.15rem;
  font-weight: bold;
  line-height: 1.5;
}
.section--detail .block--title .date {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  zoom: 1;
  opacity: 1;
  font-size: 0.9rem;
  line-height: 30px;
  margin-bottom: 0px;
}
.section--detail .block--title .date .date-md {
  font-size: 1.7rem;
}
.section--detail .block--share {
  padding: 10px 0 14px 0;
}
.section--detail .block--share .share {
  display: none;
}
.section--detail .detail__btn {
  margin-bottom: 80px;
}
.section--detail .detail__btn a {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  color: #2e2e2e;
  background-color: #fff;
  border: 1px solid #ccc;
  text-align: center;
  vertical-align: middle;
  background-image: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: static;
}
.section--detail .detail__btn a:hover {
  color: #2e2e2e;
  background-color: #ebebeb;
  border-color: #adadad;
  opacity: 1;
}
.section--detail .detail__btn a::after {
  content: none;
}

/* Back title*/
.back-title {
  width: 100vw;
  overflow: hidden;
  position: absolute;
  height: 360px;
  top: 0px;
  z-index: 0;
}
.back-title .back-title-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.back-title .back-title-inner .back-title-txt {
  color: #f7f7f7;
  position: absolute;
  font-size: 23rem;
  top: -3rem;
  font-family: "Alata", sans-serif;
  font-weight: 900;
  -webkit-animation: moveText 36s linear forwards;
          animation: moveText 36s linear forwards;
  opacity: 0;
}

/* footer */
.footer {
  height: auto;
  background: #000;
}
.footer .bg::before {
  content: none;
}
.footer .footer__inner {
  display: none;
}
.footer .footer__inner .nav__list--sns {
  display: none;
}
.footer .footer__inner .list--support {
  display: none;
}
.footer .copyright {
  bottom: 50%;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
}
.footer .copyright small {
  color: #a7a7a7;
}
.footer .copyright small a {
  color: #a7a7a7;
}
/*top link btn*/
#topLink {
  opacity: 0;
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px;
  border-radius: 5px;
  text-decoration: none;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#topLink a {
  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-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#topLink a img {
  width: 25px;
}
#topLink a span {
  font-size: 0.8rem;
  font-family: "Alata", sans-serif;
  margin-top: 5px;
}

/*delighters*/
.FadeInUp {
  opacity: 0;
  -webkit-transform: translate3d(0, 40px, 0);
          transform: translate3d(0, 40px, 0);
}

.FadeInUp.show {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  opacity: 1;
  -webkit-transition: opacity 0.5s linear, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s linear, -webkit-transform 0.5s ease-in-out;
  transition: opacity 0.5s linear, transform 0.5s ease-in-out;
  transition: opacity 0.5s linear, transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
}

/* laptop */
@media screen and (max-width: 1199px) and (min-width: 961px) {
  /*fv*/
  .view__area .section--hero-img {
    height: 100vh;
  }
  .view__area .section--hero-img .section--hero-btn a {
    max-width: 938px;
  }
  /*introduce*/
  .section--introduce .section--introduce__inner {
    max-width: 992px;
  }
  .section--introduce .section--introduce__inner .dummy-txt {
    left: -360px;
  }
  .section--introduce .section--introduce__inner p {
    max-width: 938px;
    padding: 0 40px;
  }
  /*message*/
  .section--message .section--message__inner {
    max-width: 938px;
  }
  /* NEWS WRAP*/
  .news-wrap {
    /* NEWS*/
  }
  .news-wrap .section--information {
    max-width: 938px !important;
  }
  .news-wrap .section--family-banner {
    max-width: 938px;
  }
  /* page--information */
  .page--information .wrap .section--list {
    max-width: 938px;
  }
  /* News detail*/
  .section--detail {
    width: 100%;
    max-width: 938px;
  }
}
/* tablet */
@media screen and (max-width: 960px) and (min-width: 1px) {
  html body .wrap .block--content-wrap {
    margin-top: 0;
  }
  /* header */
  #header-nav {
    height: 60px;
    width: 100%;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
  }
  .drawer__btn {
    display: block;
    right: 0% !important;
    top: 20px !important;
    height: 20px;
    mix-blend-mode: normal;
  }
  .drawer__btn span {
    height: 4px;
    width: 36px;
    left: 0;
    background: #000;
    overflow: hidden;
  }
  .drawer__btn span:first-child {
    top: 0%;
  }
  .drawer__btn span:nth-child(2) {
    top: calc(50% - 2px);
  }
  .drawer__btn span:last-child {
    top: calc(100% - 4px);
  }
  .drawer {
    overflow: hidden !important;
  }
  .drawer .g-nav {
    display: none !important;
    background: rgba(0, 0, 0, 0.8);
    height: calc(100vh - 60px);
    width: 100%;
    padding: 35px 14px 0px 14px !important;
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .drawer .g-nav .nav {
    padding: 0 !important;
    background: transparent !important;
    height: auto !important;
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .drawer .g-nav .nav .g-nav--item {
    width: 100%;
    text-align: center;
    margin-bottom: 35px;
  }
  .drawer .g-nav .nav .g-nav--item a {
    display: inline;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 1.5rem !important;
    position: relative;
    padding-bottom: 0px;
  }
  .drawer .g-nav .nav .g-nav--item a::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #fff;
    opacity: 0.7;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .drawer .g-nav .nav::before {
    content: none !important;
  }
  .drawer .g-nav .nav__list--sns {
    display: none !important;
  }
  .drawer .g-nav .nav__list--login {
    display: none !important;
  }
  .drawer-visible .drawer {
    padding: 60px 0 0 0;
    overflow: hidden;
  }
  .drawer-visible .drawer .g-nav {
    display: block !important;
  }
  .drawer-visible .drawer__btn span:first-child {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
    margin-top: -4px;
  }
  .drawer-visible .drawer__btn span:nth-child(2) {
    top: calc(0% - 2px);
    opacity: 0;
  }
  .drawer-visible .drawer__btn span:last-child {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
    margin-top: -4px;
  }
  .view__area {
    padding-bottom: 65px;
  }
  .view__area .section--hero-img {
    height: auto;
    padding: 41% 0;
  }
  .view__area .section--hero-img .scroll {
    top: 77%;
  }
  .view__area .section--hero-img .logo-svg {
    height: 96px !important;
  }
  .view__area .section--hero-img .section--hero-btn a {
    max-width: 720px;
    margin: 0px 7px;
  }
  .view__area .section--hero-img .section--hero-btn::before {
    height: 25px;
    top: -25px;
  }
  .view__area .section--hero-img .section--hero-btn::after {
    height: 25px;
    top: -25px;
  }
  .view__area .section--hero-img .block--hero-img {
    top: 0 !important;
  }
  .view__area .section--hero-img .block--hero-img img:nth-child(1) {
    display: block;
    margin: 0 auto;
    padding: 10px 0;
    width: 50vw;
  }
  .view__area .section--hero-img .block--login {
    display: none;
  }
  .view__area .section--hero-img .section--hero-btn {
    z-index: 1;
  }
  .logo {
    display: none !important;
  }
  /*introduce*/
  .section--introduce .section--introduce__inner {
    max-width: 992px;
  }
  .section--introduce .section--introduce__inner .dummy-txt {
    left: -380px;
    top: 380px;
    font-size: 7.2rem;
  }
  .section--introduce .section--introduce__inner .section--introduce-tit {
    font-size: 2.5rem;
  }
  .section--introduce .section--introduce__inner p {
    max-width: 720px;
    padding: 0 40px;
  }
  .section--introduce .section--introduce__inner .animation-circle {
    width: 358px;
    height: 368px;
  }
  /*message*/
  .section--message .section--message__inner {
    max-width: 720px;
  }
  .section--message .section--message__inner .section--message-tit {
    font-size: 2.5rem;
  }
  .section--message .section--message__inner .dummy-txt {
    font-size: 7rem;
  }
  /* NEWS WRAP*/
  .news-wrap {
    /* NEWS*/
  }
  .news-wrap .section--information {
    max-width: 720px !important;
  }
  .news-wrap .section--information .block--title .section-tit {
    font-size: 2.5rem;
  }
  .news-wrap .section--family-banner {
    max-width: 720px;
  }
  /* page--information */
  .page--information .wrap {
    padding-top: 60px;
  }
  .page--information .wrap .section--list {
    max-width: 720px;
  }
  .page--information .wrap .section-tit {
    letter-spacing: 0;
  }
  /* News detail*/
  .section--detail {
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }
  .section--detail .section-tit {
    letter-spacing: 0;
  }
  /*footer*/
  footer {
    height: auto;
    background: #000 !important;
  }
  footer .bg::before {
    content: none;
  }
  footer .copyright {
    -webkit-transform: translateY(0%) !important;
            transform: translateY(0%) !important;
  }
  .page--home footer {
    margin-top: -100px;
  }
  .copyright {
    bottom: 50%;
    -webkit-transform: translateY(50%);
            transform: translateY(50%);
    opacity: 1 !important;
  }
  .copyright small {
    color: #a7a7a7;
  }
  .copyright small a {
    color: #a7a7a7;
  }
  /*top link btn*/
  #topLink {
    display: none;
  }
}
/* sp */
@media screen and (max-width: 767px) {
  /*introduce*/
  .section--introduce .section--introduce__inner .section--introduce-tit {
    font-size: 1.9rem;
    letter-spacing: 0px;
  }
  .section--introduce .section--introduce__inner .dummy-txt {
    left: -400px;
  }
  /*message*/
  .section--message .section--message__inner .section--message-tit {
    font-size: 1.9rem;
    letter-spacing: 0px;
  }
  /* NEWS WRAP*/
  .news-wrap {
    padding-top: 20px;
    padding-bottom: 70px;
    /* NEWS*/
  }
  .news-wrap .section--information {
    padding: 14px 14px 7px 14px;
    margin-bottom: 40px;
  }
  .news-wrap .section--information::before {
    width: 100%;
    background: -webkit-gradient(linear, left top, right top, from(rgb(0, 0, 0)), color-stop(30%, rgb(0, 0, 0)), color-stop(30%, rgba(255, 255, 255, 0)), color-stop(70%, rgba(255, 255, 255, 0)), color-stop(70%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
    background: linear-gradient(90deg, rgb(0, 0, 0) 0%, rgb(0, 0, 0) 30%, rgba(255, 255, 255, 0) 30%, rgba(255, 255, 255, 0) 70%, rgb(0, 0, 0) 70%, rgb(0, 0, 0) 100%);
  }
  .news-wrap .section--information .block--title {
    text-align: center;
    height: 30px;
  }
  .news-wrap .section--information .block--title .section-tit {
    font-size: 1.9rem;
    position: relative;
    display: inline;
    padding: 0 0 20px 0;
    left: 0;
    letter-spacing: 0px;
  }
  .news-wrap .section--information .block--title .section-tit::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .news-wrap .section--information .news-list--wrap::before {
    height: 100%;
  }
  .news-wrap .section--information .news-list--wrap .list--information {
    margin-left: calc(1% - 8px);
    padding: 10px 10px 25px 15px;
  }
  .news-wrap .section--information .news-list--wrap .list--information .list__item a .block--txt .tit {
    font-size: 0.9rem;
  }
  .news-wrap .section--information .news-list--wrap .list--information .list__item a .block--txt .date .date-md {
    font-size: 1.3rem;
  }
  .news-wrap .section--information .news-list--wrap .list__more {
    max-width: 116px;
  }
  .news-wrap .section--information .news-list--wrap .list__more a {
    font-size: 1rem;
  }
  .news-wrap .section--family-banner {
    padding: 0 7px;
  }
  .news-wrap .section--family-banner a {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    justify-items: center;
  }
  /* page--information */
  .page--information .wrap .section--list .section-tit {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .page--information .wrap .section--list .list--information .list__item a {
    padding: 10px 0;
  }
  .page--information .wrap .section--list .list--information .list__item a .block--txt .tit {
    font-size: 0.9rem;
  }
  .page--information .wrap .section--list .list--information .list__item a .block--txt .date .date-md {
    font-size: 1.3rem;
  }
  .page--information .wrap .section-tit a {
    display: none !important;
  }
  /* News detail*/
  .section--detail .section-tit {
    font-size: 2.6rem;
    margin-bottom: 20px;
  }
  .section--detail .block--title .tit {
    font-size: 0.9rem;
  }
  .section--detail .block--title .date .date-md {
    font-size: 1.3rem;
  }
  /*Back title*/
  .back-title {
    top: -20px;
  }
  .back-title .back-title-inner .back-title-txt {
    font-size: 14rem;
    top: 0;
  }
}
/* animation */
@-webkit-keyframes loading {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  99% {
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 1000;
  }
  100% {
    width: 0;
    z-index: -9999;
    height: 0;
    opacity: 0;
    display: none;
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  99% {
    width: 100%;
    height: 100vh;
    opacity: 0;
    z-index: 1000;
  }
  100% {
    width: 0;
    z-index: -9999;
    height: 0;
    opacity: 0;
    display: none;
  }
}
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@keyframes scroll {
  0% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
  50% {
    -webkit-transform: translateY(10px);
            transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}
@-webkit-keyframes uneune {
  0% {
    border-radius: 60% 50% 70% 80%/50% 60% 50% 70%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    border-radius: 70% 60% 60% 90%/70% 80% 40% 90%;
    -webkit-transform: translate(-7.5%, 0);
            transform: translate(-7.5%, 0);
  }
  50% {
    border-radius: 60% 40% 70% 60%/40% 60% 50% 60%;
    -webkit-transform: translate(-15%, 0);
            transform: translate(-15%, 0);
  }
  75% {
    border-radius: 90% 60% 40% 70%/70% 50% 80% 40%;
    -webkit-transform: translate(-7.5%, 0);
            transform: translate(-7.5%, 0);
  }
  100% {
    border-radius: 60% 50% 70% 80%/50% 60% 50% 70%;
    -webkit-transform: translate(0%, 0);
            transform: translate(0%, 0);
  }
}
@keyframes uneune {
  0% {
    border-radius: 60% 50% 70% 80%/50% 60% 50% 70%;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  25% {
    border-radius: 70% 60% 60% 90%/70% 80% 40% 90%;
    -webkit-transform: translate(-7.5%, 0);
            transform: translate(-7.5%, 0);
  }
  50% {
    border-radius: 60% 40% 70% 60%/40% 60% 50% 60%;
    -webkit-transform: translate(-15%, 0);
            transform: translate(-15%, 0);
  }
  75% {
    border-radius: 90% 60% 40% 70%/70% 50% 80% 40%;
    -webkit-transform: translate(-7.5%, 0);
            transform: translate(-7.5%, 0);
  }
  100% {
    border-radius: 60% 50% 70% 80%/50% 60% 50% 70%;
    -webkit-transform: translate(0%, 0);
            transform: translate(0%, 0);
  }
}
@-webkit-keyframes moveText {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    opacity: 0;
  }
}
@keyframes moveText {
  0% {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  95% {
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    opacity: 0;
  }
}/*# sourceMappingURL=service_bU91mkw.css.map */