@charset "utf-8";

/*  Resetting
/*-------------------------------------------*/
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  line-height: 1.8;
  overflow-x: clip;
  color: #000000;
  font-weight: 500;/*(ミディアム)*/
  letter-spacing: -1px;
}
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
* {
  margin: 0px;
  padding: 0px;
  word-wrap: break-word;
  list-style: none;
  text-decoration: none;
  border: 0;
  vertical-align: top;
}
p {
  text-align: justify;
}
/*マーカー*/
.marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline;
  font-weight: 600;
}
figure {
  text-align: center;
}
img {
  max-width: 100%;
  height: auto;
}
a:hover img {
  opacity: 1;
}
ul li,
ol li {
  list-style: none;
}

.center {
  text-align: center;
}
.inner {
  width: 90%;
  max-width: 1000px;
  margin-inline: auto;
}


/*-------------------------------------------*/
/*  Wrap
/*-------------------------------------------*/
.inner-wrap {
  width: auto;
  padding: 30px 75px 30px 75px;
}
.wrap {
  margin: auto;
  overflow: hidden;
  max-width: 1000px;
}

.wrap_1098 {
  max-width: 960px;
}


/*-------------------------------------------*/
/*  ボタンアニメーション
/*-------------------------------------------*/
/*アニメーション(横、縦にフワフワ)*/
.animation {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-3px);
  }
  100% {
    transform: translateY(0);
  }
}

/*アニメーション(揺れる)*/
.animation2 {
  animation: yureru-s 2s infinite;
  scale: 1;
}

@keyframes yureru-s {
  0% {
    transform: translate(2px, 0px);
}
5% {
    transform: translate(-2px, 0px);
}
10% {
    transform: translate(2px, 0px);
}
15% {
    transform: translate(-2px, 0px);
}
20% {
    transform: translate(2px, 0px);
}
25% {
    transform: translate(-2px, 0px);
}
30% {
    transform: translate(0px, 0px);
}
}

/*キラキラ*/
.shiny-btn:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn 1.7s ease-in-out infinite;
}

@keyframes shiny-btn {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
}
80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
}
81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
}
100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
}
}

/*特定商取引法============================*/

.upbox {
  width: 90%;
  margin: 15px auto;
}
.upbox h2 {
  font-size: 24px;
  text-align: center;
  margin: 0;
  padding: 0 0 15px 0;
}
.upbox h3 {
  font-size: 18px;
  text-align: left;
  margin: 30px 0 15px 0;
  padding: 0 0 0 10px;
  border-bottom: 1px solid #ddd;
}
table.up1 {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6em;
}
table.up1 th {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #eee;
  font-weight: bold;
}
table.up1 td {
  width: 70%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  font-weight: bold;
  font-size: 1.4rem;
}
table.up1 td span {
  padding-left: 10px;
  display: block;
}
table.up2 {
  width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 16px;
  line-height: 1.6em;
}
table.up2 th {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #eee;
  font-weight: bold;
}
table.up2 td {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
  background-color: #f9f9f9;
  font-size: 1.4rem;
}
.upbox ol {
  margin: 0 0 20px 5%;
}
.upbox ol li {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.6em;
  list-style: decimal;
}
/*プライバシー============================*/
.upbox p {
  font-size: 16px;
  line-height: 1.6em;
  padding: 0 0 25px 0;
  margin: 0;
}
.upbox dl {
  width: 100%;
  margin: 20px auto;
}
.upbox dl dt {
  font-size: 20px;
  line-height: 1.6em;
  font-weight: bold;
  padding: 0 0 10px 0;
  background: none;
  color: #333;
}
.upbox dl dd {
  font-size: 16px;
  line-height: 1.6em;
  padding: 0 0 50px 0;
  background: none;
}
.upbox ul {
  width: 90%;
  margin: 0 0 0 5%;
}
.upbox ul li {
  width: 100%;
  margin: 0 0 0 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.6em;
  list-style: disc;
}
/*スマホ==========================================================================================================*/
@media screen and (max-width: 768px) {
  /*特定商取引法============================*/
  .upbox {
    width: 90%;
    margin: 15px auto;
  }
  .upbox h2 {
    font-size: 20px;
    text-align: center;
    margin: 0;
    padding: 0 0 15px 0;
  }
  table.up1 {
    width: 100%;
    box-sizing: border-box;
    background-color: #fff;
    font-size: 14px;
    line-height: 1.6em;
  }
  table.up1 th {
    width: 100%;
    display: block;
    padding: 5px 10px;
    box-sizing: border-box;
    background-color: #eee;
    font-weight: bold;
  }
  table.up1 td {
    width: 100%;
    display: block;
    padding: 5px 10px;
    box-sizing: border-box;
    background-color: #fff;
  }
  /*プライバシー============================*/
  .upbox p {
    font-size: 14px;
    line-height: 1.6em;
    padding: 0 0 15px 0;
    margin: 0;
  }
  .upbox dl {
    width: 100%;
    margin: 20px auto;
  }
  .upbox dl dt {
    font-size: 16px;
    line-height: 1.6em;
    font-weight: bold;
    padding: 0 0 10px 0;
  }
  .upbox dl dd {
    font-size: 14px;
    line-height: 1.6em;
    padding: 0 0 30px 0;
  }
  .upbox ul {
    width: 90%;
    margin: 0 0 0 5%;
  }
  .upbox ul li {
    width: 100%;
    margin: 0 0 0 0;
    padding: 0;
    font-size: 14px;
    line-height: 1.6em;
    list-style: disc;
  }
}


