@charset "UTF-8";

/*変数*/
/*A Modern CSS Reset https://github.com/hankchizljaw/modern-css-reset/blob/master/dist/reset.min.css */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  padding: 0;
  padding-left: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd,
ul {
  margin: 0;
  list-style: none;
}

html {
  scroll-behavior: smooth;
  background: #000;
}

main {
  display: block;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a,
a:hover {
  color: #000;
  transition-property: color;
  text-decoration: none;
  transition: .7s;
}

a:hover {
  opacity: .7;
  transition: .7s;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  height: auto;
  width: 100%;
  max-width: 100%;
  display: block;
}

video {
  height: auto;
  width: 100%;
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  cursor: pointer;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

a,
a:hover {
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  * {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/*common*/
html {
  position: relative;
  height: 100%;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: "Shippori Mincho B1", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "メイリオ", sans-serif;
  color: #FFF;
  overflow-x: hidden;
  line-height: 1.5;
}

section{
  position: relative;
}

.min {
  font-family: serif;
  font-weight: bold;
  font-size: 98%;
}

.go {
  font-family: Avenir Next, 'Avenir Next', 'Noto Sans JP', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}
.noto_sans {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "游ゴシック体", "Yu Gothic", YuGothic, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
}


svg {
  width: 100%;
  height: 100%;
}

.clearfix {
  overflow: hidden;
}

/*inner*/
main {
  position: relative;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  width: 95%;
  max-width: 1000px;
}

.fadeInUp {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 1s;
  transition: 1s;
}

/*flexbox*/
.fb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.svg-icon {
  display: none;
}

/*--- リンクロールオーバー ---*/
a.img-link img,
a.img-link:hover img,
a.block-link > p,
a.block-link > div,
a.block-link > ul > li,
a.block-link > dl > dt,
a.block-link > dl > dd,
a.block-link > span,
a.block-link:hover > p,
a.block-link:hover > div,
a.block-link:hover > ul > li,
a.block-link:hover > dl > dt,
a.block-link:hover > dl > dd,
a.block-link:hover > span {
	transition-property: opacity;
	transition-duration:.4s;
}
a.img-link img {
	opacity: 1;
}
a.img-link:hover img {
	opacity: 0.5;
}
a.block-link > p,
a.block-link > div,
a.block-link > ul > li,
a.block-link > dl > dt,
a.block-link > dl > dd,
a.block-link > span {
	opacity: 1;
}
a.block-link:hover > p,
a.block-link:hover > div,
a.block-link:hover > ul > li,
a.block-link:hover > dl > dt,
a.block-link:hover > dl > dd,
a.block-link:hover > span {
	opacity: 0.5;
}

/* ===== common ===== */
.mw980{
  max-width: 980px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}
.din{
  font-family: din-condensed, sans-serif;;
  font-style: normal;
  font-weight: 600;
}


/*---------------------------
アニメーション用CSS
-----------------------------*/
.filterBlur{
  filter: blur(6px);
  opacity: 0.2;
  transition: 1.5s ease;
  -webkit-transition: 1.5s ease;
  -webkit-filter: blur(6px);
}
.filterBlur.active{
  filter: blur(0);
  -webkit-filter: blur(0);
  opacity: 1;
}

/* ボタン */
.ani-btn {
  transition: .5s !important;
}
.ani-btn:hover {
  transform: scale(1.1) !important;
  transition: .5s !important;
}

.btn{
  opacity: 1;
  transition: all 0.5s;
  cursor: pointer;
}
.btn:hover{
  opacity: .8;
  transition: all 0.5s;
}





@media(min-width:1200px) {
  .tb_block {
    display: none;
  }
}
@media(max-width:1200px) {
  .tb_block {
    display: block;
  }
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
@media only screen and (max-width: 700px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
