@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Noto+Serif+JP:wght@400;700&family=Roboto:wght@900&display=swap");
/*
変数定義
*/
/*
mixin定義
*/
/*
ベース調整
*/
body {
  color: #000000;
  font-family: "Noto Sans JP", "游ゴシック Medium", YuGothic, YuGothicM, "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, sans-serif;
  -webkit-text-size-adjust: none;
}

.container {
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .container {
    padding: 1rem;
  }
}

main a {
  outline: none;
  -webkit-tap-highlight-color: #000000;
  cursor: pointer;
  color: #000000;
  text-decoration: underline;
}
main a:hover {
  color: #000000;
  opacity: 0.8;
}

/*
フレーム
*/
header .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.logo img {
  width: 200px;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 767px) {
  .hamburger {
    display: block;
    position: fixed;
    z-index: 999;
    right: 1rem;
    top: 1rem;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #000000;
    transition: 0.3s ease-in-out;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span:nth-child(1) {
    top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span:nth-child(2) {
    top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger span :nth-child(3) {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .hamburger.active span:nth-child(1) {
    top: 16px;
    left: 6px;
    background: #000000;
    transform: rotate(-45deg);
  }
}
@media screen and (max-width: 767px) {
  .hamburger.active span:nth-child(2), .hamburger.active span:nth-child(3) {
    top: 16px;
    background: #000000;
    transform: rotate(45deg);
  }
}

@media screen and (max-width: 767px) {
  .global-nav.active {
    opacity: 100;
    visibility: visible;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .global-nav {
    font-size: 70%;
  }
}
@media screen and (max-width: 767px) {
  .global-nav {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    background: #eeeeee;
    text-align: center;
    width: 100%;
    height: 100%;
    padding: 50px 0;
    font-weight: bold;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
  }
}
.global-nav ul.parent {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .global-nav ul.parent {
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
}
.global-nav ul.parent li.parent-li {
  position: relative;
  margin-right: 1rem;
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent li.parent-li {
    display: inline-block;
  }
}
@media screen and (max-width: 767px) {
  .global-nav ul.parent li.parent-li {
    list-style-type: none;
    padding: 0;
    width: 100%;
  }
}
.global-nav ul.parent li.parent-li:hover ul.child {
  visibility: visible;
  z-index: 2;
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent li.parent-li:last-child {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .global-nav ul.parent li.parent-li:last-child {
    padding-bottom: 0;
  }
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent li.parent-li.active:after {
    position: absolute;
    bottom: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    transform: none;
  }
}
.global-nav ul.parent li.parent-li a {
  color: #000000;
  text-decoration: none;
  display: inline-block;
  z-index: 3;
}
.global-nav ul.parent li.parent-li a.list-item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .global-nav ul.parent li.parent-li a.list-item {
    display: block;
    padding: 1em 0;
  }
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent li.parent-li a.list-item:after {
    position: absolute;
    bottom: -5px;
    left: 0;
    content: "";
    width: 100%;
    height: 2px;
    background: #000000;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
  }
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent li.parent-li a.list-item:hover:after {
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent ul.child {
    margin: 0;
    padding: 0;
    visibility: hidden;
    position: absolute;
    top: 25px;
    left: 0;
    background: #ffffff;
    z-index: 1;
    white-space: nowrap;
  }
}
@media screen and (min-width: 768px), print {
  .global-nav ul.parent ul.child li.child-li {
    display: block;
    margin: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .global-nav ul.parent ul.child li.child-li {
    list-style-type: none;
    display: none;
  }
}

footer {
  width: 100%;
  background: #000000;
  padding: 1rem;
  color: #ffffff;
  text-align: center;
}
footer address {
  margin: 0;
}
footer .top-btn {
  position: fixed;
  bottom: 80px;
  right: 10px;
  width: 4rem;
  height: 4rem;
  padding: 0;
  color: #ffffff;
  background: #000000;
  border-radius: 50%;
}
footer .top-btn i {
  font-size: 150%;
  line-height: 4rem;
  transition: all 0.3s;
  letter-spacing: 0;
}
footer .top-btn:hover i {
  line-height: 3.5rem;
}

/*
コンポーネント
*/
/* 汎用セクション */
.gray-section {
  padding: 2rem 0;
  background: #eeeeee;
}

/* ブロック */
.base-block {
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .base-block {
    flex-direction: column;
  }
}
.base-block__text {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .base-block__text {
    order: 1;
    flex-direction: column;
    margin-bottom: 2rem;
  }
}
.base-block__text__inner {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .base-block__text__inner {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }
}
.base-block__img {
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (max-width: 767px) {
  .base-block__img {
    order: 2;
    margin-bottom: 2rem;
  }
}
.base-block__img img {
  width: 100%;
}

/* 見出し */
.heading-02 {
  font-size: 2rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  margin: 0 0 2rem 0;
}

.heading-03 {
  font-size: 1.5rem;
  font-family: "Noto Serif JP";
  font-weight: 700;
  margin: 0 0 2rem 0;
}

/* リスト */
ul.reset {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.base-list {
  list-style-type: square;
  padding: 0.5rem 0.5rem 0.5rem 1.5rem;
  margin: 0;
}
.base-list li {
  margin-bottom: 0.3rem;
}

/* テーブル */
.base-table {
  border-collapse: collapse;
  border-spacing: 0;
}
.base-table th {
  background: #000000;
  color: #ffffff;
  padding: 1rem;
  border: solid 1px #000000;
}
.base-table td {
  padding: 1rem;
  border: solid 1px #000000;
}

/* スライド */
.kv-slide__item {
  overflow: hidden;
  position: relative;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.kv-slide__item--slide01 {
  background-image: url(https://placehold.jp/211D26/ffffff/2000x2000.png);
}
.kv-slide__item--slide02 {
  background-image: url(https://placehold.jp/034C8C/ffffff/2000x2000.png);
}
.kv-slide__item--slide03 {
  background-image: url(https://placehold.jp/3B9CD9/ffffff/2000x2000.png);
}
.kv-slide__item--slide04 {
  background-image: url(https://placehold.jp/BF2C0B/ffffff/2000x2000.png);
}
.kv-slide__item__inner {
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.kv-slide__item__inner__title {
  color: #ffffff;
  font-size: 6rem;
  font-family: "Roboto";
}

/* プラグインデザイン調整 */
.slick-dots li button:before {
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */