@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;
  list-style: none;
}

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

html {
  scroll-behavior: smooth;
}

main {
  display: block;
}

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

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

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;
  color: inherit;
}

@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: 16px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #000000;
  background: #ece8e4;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

section{
  position: relative;
}

.noto_sans{
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}


.relative{
  position: relative;
}

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

.clearfix {
  overflow: hidden;
}

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

/* ===== common ===== */

.no_link{
  opacity: 0.3 !important;
  pointer-events: none !important;
  cursor: default !important;
}




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

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





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

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