@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.cdnfonts.com/css/d-din");
/* cssリセット */
html,
body,
h1,
h2,
h3,
p,
dl,
dt,
dd,
ul,
li {
  margin: 0;
  padding: 0;
  line-height: 1;
  /*デフォルトの文字色、font-familyを予め当てておく*/
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
}

html {
  scroll-behavior: smooth;
}

a {
  /*下線を消す*/
  text-decoration: none;
  /*色を消す*/
  color: inherit;
  transition: 0.3s;
  scroll-behavior: smooth;
}

a:hover {
  opacity: 0.5;
}

ul {
  /*左の「・」を消す*/
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  border: none;
}

h2 {
  font-size: 36px;
}
main {
  overflow-x: hidden;
}
/* ressここまで */

/* ヘッダー */
#header {
  position: relative;
}
.header_wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 3% 0 3%;
  width: 100%;
  box-sizing: border-box;
  height: 51px;
  background-color: #6c6c6c;
  position: sticky;
}
nav {
  color: #fff;
}

.header_logo {
  width: 80px;
}
.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 0.7em;
  height: 0.7em;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  margin-left: 7px;
}
.nav ul {
  display: flex;
}

.nav ul li {
  text-align: center;
  font-size: 16px;
  padding-left: 25px;
}
.menu-parent_a {
  display: block;
  padding: 5px;
  text-align: center;
}
.menu-parent_a.blrn {
  border-left: none;
  border-right: none;
}
/* --------------------------- */
/* メニュー（兄）の動作に直接関係する箇所 */
/* --------------------------- */
/* メニュー（兄）hover時に色を変える */
@media (hover: hover) {
  .menu-parent_a:hover {
    transition: all 0.1s;
  }
}

/* --------------------------- */
/* メガメニュー(弟)のスタイル */

/* --------------------------- */
/* メニュー（弟）は普段は非表示 */
.menu-child {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  /* padding: 20px 0; */
  background-color: #6c6c6c;
  color: #fff;
  z-index: 999;
}
.nav ul .menu-child_ul {
  display: block;
}

.menu-child_li {
  line-height: 4;
  font-size: 16px;
}
/*追従ボタン */
.fixed_btn {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #6c6c6c;
  color: #fff;
  font-family: "D-DIN", sans-serif;
  font-weight: 600;
  font-size: 7vw;
  text-align: center;
  padding: 10px 0;
  z-index: 999;
}
/*パンくず */
.Breadcrumb {
  padding: 1.5em;
  color: #6c6c6c;
  font-size: 10px;
}
.Breadcrumb-ListGroup {
  display: flex;
}
.Breadcrumb-ListGroup-Item-Link[href]:hover {
  opacity: 0.5;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: "/";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
/*↑パンくず */
.inner {
  padding: 0 16px;
}
.vertical {
  writing-mode: vertical-rl;
}
.line_btn {
  width: 80%;
  margin: 60px auto 30px;
}
.insta_btn {
  width: 80%;
  margin: 30px auto 50px;
}
.pc_img {
  display: none;
}
.sp_img,
.pc_img {
  vertical-align: bottom;
  margin-top: -1px;
}
footer {
  margin-top: 80px;
}

@media (min-width: 576px) {
  .header_wrap {
    height: 9vw;
  }
  .header_logo {
    width: 15vw;
  }
  .nav ul li {
    font-size: 3.5vw;
  }
  .menu-child_li {
    font-size: 3.5vw;
  }
  .Breadcrumb {
    padding: 1em;
    color: #6c6c6c;
    font-size: 2.5vw;
  }
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
  .sp_img {
    display: none;
  }
  .pc_img {
    display: block;
  }
  .header_wrap {
    height: 6vw;
  }
  .header_logo {
    width: 13vw;
  }
  .nav ul li {
    font-size: 2.8vw;
    padding-left: 40px;
  }
  .menu-child_li {
    font-size: 2.8vw;
  }
  .menu-child {
    margin-top: -1px;
  }
  .fixed_btn {
    font-size: 4vw;
    padding: 10px 0;
    z-index: 999;
  }
  .line_btn {
    width: 50%;
    margin: 60px auto 80px;
  }
  .insta_btn {
    width: 50%;
    margin: 30px auto 50px;
  }
  footer {
    margin-top: 150px;
  }
  .Breadcrumb {
    font-size: 1.8vw;
  }
}
@media (min-width: 1200px) {
  footer {
    margin-top: 200px;
  }
}
