@charset "UTF-8";

/*
VARIABLES
================================================ */
:root {
  --light-green: #d5edeb;
  --green: #63dbd0;
  --brown: #403632;
  --light-grey: #eee;
  --white: #fff;
  --main-color: #1d1e2e;
  --sub-color: #b2a296;
  --sub-color02: #a3d7d9;
  --oswald-font: 'Oswald', sans-serif;
  color-scheme: light;
}

/*
GENERAL STYLING
================================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
  text-decoration: none;
}

html,
body {
  background-color: #ffffff;
  color: #000000;
}
html {
  /* font-size: 62.5%; */
  /*基本フォントサイズが16pxなのでこれで1rem=10pxになる*/
  color-scheme: light;
}
body {
  font-feature-settings: 'palt';
  text-size-adjust: 100%;
  font-size: 16px;
  line-height: 1.875;
  overflow: hidden !important;
}

/*
COMMON
================================================ */
a {
  color: #333;
  text-decoration: none;
  transition: 0.5s; /* マウスカーソルを外すとき */
}

a:hover {
  color: #333;
  opacity: 0.5;
  transition: 0.5s; /* マウスカーソルを載せるとき */
}

a:active {
  color: #333;
}
img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}
.radius {
  border-radius: 8px;
}
li {
  list-style: none;
}

@media (max-width: 767px) {
}

.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
.relative {
  position: relative;
}
.cap_wrap {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
.cap {
  font-size: 12px;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.5;
  letter-spacing: 0;
  word-break: break-all;
}
.img_cap {
  position: absolute;
  color: #fff;
  right: 0;
  bottom: 0;
  background-color: rgba(55, 55, 55, 0.6);
  font-size: 10px;
  padding: 5px;
}

.grecaptcha-badge {
  visibility: hidden;
}

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

@media (max-width: 1020px) and (min-width: 768px) {
  /*狭いブラウザとタブレット向け*/
}
@media (max-width: 767px) {
  /*スマホ向け*/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.slidein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1s;
}

.slidein.slidein-left {
  transform: translate(-100%, 0);
}

.slidein.slidein-right {
  transform: translate(100%, 0);
}

.slidein.slidein-up {
  transform: translate(0, -100%);
}

.slidein.slidein-bottom {
  transform: translate(0, 100%);
}

.slidein.scrollin {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
/* 順番にディレイをかける */
/* 順番にディレイをかける（transition 用） */
.slidein.delay1 {
  transition-delay: 0s;
}

.slidein.delay2 {
  transition-delay: 0.15s;
}

.slidein.delay3 {
  transition-delay: 0.3s;
}
