@charset "UTF-8";
/*--------------------------------------------------------
Reset
--------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: hidden;
}

body {
  overflow: hidden;
  font-size: 1.6rem; /*16px*/
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

h1,
h2,
h3,
h4,
h5 {
  font-size: 100%;
}

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

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

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  text-decoration: none;
}

/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
a img {
  border-style: none;
}

img {
  vertical-align: bottom; /* 一番上の画像だけ注意。隙間が空く可能性あり */
  line-height: 0 !important;
  /* display:block; */
}

button {
  background-color: transparent;
  border: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
button:focus {
  outline: none;
}
button:hover {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------
定数（基本的に、全サイト共通に使えるもの）
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}



/*重なりの優先度*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*要素固定*/
.fixed {
  position: fixed;
  z-index: 999;
}


/*横幅*/
.w100 {
  width: 100%;
}

.cp {
  font-family: Verdana, "Droid Sans", "メイリオ", sans-serif;
}

/*--------------------------------------------------------
animation
--------------------------------------------------------*/
.animated {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/***********
* pickup *
************/
@-webkit-keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pickup {
  display: block;
  -webkit-animation-name: pickup;
          animation-name: pickup;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.fullscreen {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contents {
  width: 900px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  background-image: url(../img/hht_hai.jpg);
  background-repeat: repeat;
  background-size: 145px 71px;
}
.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}
.contents1000 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
header {
  width: 100%;
  top: 0;
  margin: 0 auto;
  line-height: 0; /* 画像の上下に隙間が空いてしまう対策 */
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/

.copyright {
  justify-content: center;
  align-items: center;
  padding: 7px 3%;
  line-height: 1.3;
}

.copyright,
.copyright a {
  color: #754c24;
  font-size: small;
  bottom: 0%;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.button {
  top: 72%;
  max-width:500px;
  display: flex;
  justify-content: center;
  align-items: start;
}
.button img {
  width: 100%;
}
.hht_02 {
  top: 86%;
  max-width:560px;
  display: flex;
  justify-content: center;
  align-items: start;
}
.hht_02 img {
  width: 100%;
}
.bg-img {
  max-height: 100dvh;
  /* width: 100%; */
  /* width: 100vw; */
  object-fit: contain;
  max-width:560px;
}
.section {
  display: flex;
  justify-content: center;
  align-items: start;
}
/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --プラポリ-- */
/* --プラポリ-end-- */
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*# sourceMappingURL=base.css.map */