@charset "UTF-8";

:root {
  --vh: 1vh;
  --bg-image: url(../img/back_sp.jpg);
  --top-margin: 2%;
  --bottom-margin: 200px;
  --base-font-size: 15px;
  --sign-font-size: 13px;
  line-height: 2.2;
  letter-spacing: 0.025em;
  font-size: var(--base-font-size);
  @media (min-width: 1001px) {
    --top-margin: 60px;
  }
  @media (min-width: 641px) {
    --bg-image: url(../img/back_pc.jpg);
    --bottom-margin: 240px;
    --base-font-size: 18px;
    --sign-font-size: 16px;
  }
}

html, body {
  height: -webkit-fill-available;
  font-family: "Yu Gothic Pr6N B", sans-serif;
  color: #07084d;
}

img {
  max-width: 100%;
}

@media (hover: hover) {
  .hoverOp:hover {
    opacity: 0.4;
  }
  a:hover {
    color: #ff9900;
    text-decoration: none;
  }
}

a img {
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

body {
  animation: fadeIn 1s ease 0s;
}

body:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  min-height: 100vh;
  min-height: --webkit-fill-available;
  background-image: var(--bg-image);
  background-size: cover;
  background-position: left center;
  z-index: -2;
}

@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}

.wrapper {
  width: 942px;
  max-width: 96%;
  margin: 0 auto;
  background-color: rgba(255,255,255,0.98);
}

ul, li {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

br.sp {
  display: none;
}
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}

/*本文
 * --------------------------------------------------------*/
.main {
  margin-top: var(--top-margin);
}
.title_bar {
  height: 85px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9d93d;
}
.title_bar img {
  width: 204px;
  max-width: 86%;
}
.title {
  width: 780px;
  max-width: 84%;
  margin: 0 auto;
  padding-top: 32px;
  padding-bottom: 76px;
}
.title img {
  display: block;
}
 
.text {
  width: 480px;
  max-width: 85%;
  text-align: left;
  margin:0 auto;
  overflow: hidden;
}
.text p {
  margin: 0;
}
.text p + p {
  margin-top: 2em;
}
.sign {
  width: 480px;
  max-width: 85%;
  text-align: right;
  margin: 80px auto 0 auto;
  overflow: hidden;
  padding-bottom: 84px;
}
.sign p {
  margin: 1em auto;
  font-size: var(--sign-font-size);
  line-height: 1;
}

/*フッター
 * --------------------------------------------------------*/
.footer {
  margin: var(--bottom-margin) 0 0 0;
  padding: 60px 0 50px 0;
  position: relative;
  color: #ffffff;
}
.footer::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
  background-color: #989898;
  z-index: -1;
}

.credit {
  font-family: "Yu Gothic Pr6N M", sans-serif;
  font-size: 15px;
}
.credit dl {
  display: flex;
  gap: 1em;
  justify-content: center;
}
.credit dt,
.credit dt {
  font-weight: normal;
}

.share-link {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  max-width: 80%;
}
.share-link img {
  height: 56px;
}
.share-link > ul {
  display: flex;
  justify-content: center;
  gap: 30px 60px;
  flex-wrap: wrap;
}
.share-link__sns > ul {
  display: flex;
  justify-content: center;
  gap: 24px;
}
.share-link li {
  list-style-type: none;
}

.copyright {
  margin-top: 60px;
  font-size: 12px;
  text-align: center;
}


/*スマホ対応
* --------------------------------------------------------*/
@media only screen and (max-width: 640px) {

  br:not(.br) {
    display: none;
  }

  /*スマホ対応 本文
   * --------------------------------------------------------*/
  .title {
    padding-top: 25px;
    padding-bottom: 50px;
  }
  .text {
    line-height: 2.1em;
  }
  .sign {
    padding-bottom: 64px;
  }
  .sign img {
    width: 40%;
  }

  /*スマホ対応 フッター
   * --------------------------------------------------------*/
  .footer {
    padding: 40px 0 30px 0;
  }
  .credit {
    font-size: 12px;
  }
  .share-link img {
    height: 40px;
    width: auto;
  }
  .share-link {
    margin-top: 36px;
  }
  .copyright {
    margin-top: 36px;
    font-size: 10px;
  }

}
