@charset "UTF-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&family=Vollkorn:ital,wght@0,400..900;1,400..900&display=swap');
html {
  font-size: 62.5%;
  width: 100%;
  text-size-adjust: 100%;
  color: #33334D;
  scroll-behavior: smooth;
}
body {
  font-size: 1.7rem;
  font-family: "Roboto", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a:link, a:visited, a:active {
  color: #747098;
  text-decoration: underline;
}
a:hover {
opacity: 0.5;
  -webkit-transition: all 0.8s ease;
  -moz-transition: all 0.8s ease;
  -o-transition: all 0.8s ease;
  transition: all 0.8s ease;
}
*:after, *::before {
  box-sizing: border-box;
}
.bold {
  font-weight: 600;
}
.url {
  word-break: break-all !important;
}
.header {
  width: 90%;
  margin: 0px auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 2;
}
h1.title1 {
  font-family: "Vollkorn", serif;
  font-size: 2.4rem;
  font-weight: 400;
  background-color: #33334D;
  color: #FFF;
  width: 300px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer_bg {
  padding-inline: calc((100vw - 750px) / 2);
  background: #47475F;
  padding-top: 230px;
  padding-bottom: 230px;
  color: #fff;
  line-height: 170%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer_bg a {
  color: #FFF;
}
.contact {
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
  padding: 35px 0px;
  margin: 0px 40px;
  position: relative;
  width: 245px;
}
.contact:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background-color: #FFF;
}
.contact:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -40px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  width: 1px;
  height: 70px;
  background-color: #FFF;
}
/* ページTOPに戻る */
.pagetop {
  display: none;
  position: fixed;
  right: 0%;
  bottom: 0%;
  z-index: 999;
}
.pagetop a {
  display: block;
  font-size: 0;
  width: 80px;
  height: 80px;
  text-align: center;
  background-color: #FF7BAC;
  line-height: 50px;
}
.pagetop a > :before {
  content: "";
  position: absolute;
  top: 49%;
  left: 43%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-top: 3px solid #2E3163;
  border-right: 3px solid #2E3163;
  -moz-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out;
  -moz-transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  transform: rotate(315deg);
}
.at::after {
  content: '@';
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
/* 0.5秒間かけてフェードイン */
.fadeIn250ms {
  animation-name: fadeIn250ms;
  animation-delay: 250ms;
  animation-duration: 1.0s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn250ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 1.5秒間かけてフェードイン */
.fadeIn1000ms {
  animation-name: fadeIn1000ms;
  animation-delay: 1000ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn1000ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/* 1.5秒間かけてフェードイン */
.fadeIn1500ms {
  animation-name: fadeIn1500ms;
  animation-delay: 1500ms;
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  transform: translateY(50px);
  opacity: 0;
}
@keyframes fadeIn1500ms {
  0% {}
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
/*　↓↓↓↓↓　1200px以下のデバイスを使用するとき　↓↓↓↓↓　*/
@media screen and (max-width:1500px) {
  .header {
    width: 100%;
  }
}
@media screen and (max-width:1300px) {
  .header {
    display: block;
  }
  h1.title1 {
    width: 260px;
  }
}
@media screen and (max-width:1080px) {
  .header {
    width: 100%;
    height: 100vh;
    border-bottom: none;
    pointer-events: none;
  }
  h1.title1 {
    width: 300px;
  }
}
@media screen and (max-width:800px) {
  .footer_bg {
    display: block;
  }
  .footer_bg div:last-child {
    width: 90%;
    margin: 0px auto;
    text-align: center;
  }
  .contact {
    border-top: none;
    border-bottom: 1px solid #FFF;
    padding: 0px 0px 10px 0px;
    margin: 0px auto 20px auto;
    max-width: 360px;
    width: 90%;
    text-align: center;
  }
  .contact:before {
    display: none;
  }
  .contact:after {
    display: none;
  }
  h1.title1 {
    height: 100px;
  }
}
@media screen and (max-width:650px) {}
@media screen and (max-width:480px) {
  body {
    font-size: 1.5rem;
  }
  h1.title1 {
    width: 220px;
    height: 80px;
    font-size: 2.0rem;
  }
  .date_img {
    margin: 20px 0px 0px 0px;
  }
  .pagetop a {
    width: 60px;
    height: 60px;
  }
  .pagetop a > :before {
    top: 46%;
    left: 41%;
  }
}