@charset "UTF-8";
body {
  background-color: #000000;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  body {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.3rem;
  }
}

header {
  width: 100px;
  height: 100vh;
  border-right: 1px solid #D6909D;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  header {
    width: 100%;
    height: 50px;
    border-right: none;
    border-bottom: 1px solid #D6909D;
    background-color: #000000;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 800;
  }
}
header img {
  display: block;
  width: 70%;
  margin: 20px auto 10px;
}
@media screen and (max-width: 1024px) {
  header img {
    width: 40px;
    height: 32px;
    margin: 0 0 0 10px;
  }
}
header p {
  color: #ffffff;
  writing-mode: vertical-rl;
  margin: auto;
  font-size: 1.5vw;
  font-family: "Playfair", serif;
}
header p a {
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  header p {
    writing-mode: unset;
    margin: 0 0 0 10px;
    font-size: clamp(110%, 2.5vw, 2rem);
  }
}
header .hum {
  background-color: #D6909D;
  color: #ffffff;
  width: 100px;
  height: 100px;
  position: fixed;
  bottom: 0;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  header .hum {
    width: 50px;
    height: 50px;
    top: 0;
    right: 0;
  }
}
header .hum span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 28px;
  height: 3px;
  border-radius: 2px;
  background: #ffffff;
  width: 45px;
}
@media screen and (max-width: 1024px) {
  header .hum span {
    width: 30px;
    left: 10px;
  }
}
header .hum span:nth-of-type(1) {
  top: 37px;
}
@media screen and (max-width: 1024px) {
  header .hum span:nth-of-type(1) {
    top: 15px;
  }
}
header .hum span:nth-of-type(2) {
  top: 52px;
}
@media screen and (max-width: 1024px) {
  header .hum span:nth-of-type(2) {
    top: 25px;
  }
}
header .hum span:nth-of-type(3) {
  top: 67px;
}
@media screen and (max-width: 1024px) {
  header .hum span:nth-of-type(3) {
    top: 35px;
  }
}
header .active span:nth-of-type(1) {
  top: 45px;
  left: 35px;
  transform: translateY(6px) rotate(-45deg);
  width: 30px;
}
@media screen and (max-width: 1024px) {
  header .active span:nth-of-type(1) {
    top: 20px;
    left: 10px;
  }
}
header .active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
header .active span:nth-of-type(3) {
  top: 55px;
  left: 35px;
  transform: translateY(-6px) rotate(45deg);
  width: 30px;
}
@media screen and (max-width: 1024px) {
  header .active span:nth-of-type(3) {
    top: 30px;
    left: 10px;
  }
}

.hum-div {
  background-color: #D6909D;
  width: calc(100% - 101px);
  margin: 0 0 0 auto;
  box-sizing: border-box;
  height: 100vh;
  position: fixed;
  top: -100vh;
  left: 101px;
  z-index: 1000;
  background-image: url(../images/hum_bcg.png);
  background-position: right;
  background-repeat: no-repeat;
  color: #ffffff;
  transition: all 0.5s ease;
  overflow-y: scroll;
}
@media screen and (max-width: 1200px) {
  .hum-div {
    background-position: bottom 0 right -150px;
  }
}
@media screen and (max-width: 1024px) {
  .hum-div {
    width: 100%;
    background-image: none;
    background-color: #D6909D;
    left: 0;
  }
}
.hum-div ul {
  padding: 20px;
  list-style: none;
  width: 30%;
  margin-left: 5%;
  font-size: 1.7rem;
}
@media screen and (max-width: 1024px) {
  .hum-div ul {
    width: 80%;
    padding-left: 0;
  }
}
.hum-div ul li {
  margin: 15px 0;
}
.hum-div ul li a {
  color: #ffffff;
  text-decoration: none;
}
.hum-div .cat_title {
  position: relative;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: normal;
  padding: 20px 0;
  transition: all 0.5s ease;
}
.hum-div .cat_title::before, .hum-div .cat_title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background-color: #ffffff;
}
.hum-div .cat_title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
@media screen and (max-width: 1024px) {
  .hum-div .cat_title::before {
    right: 0px;
  }
}
.hum-div .cat_title::after {
  top: 48%;
  right: 15px;
  transform: rotate(90deg);
}
@media screen and (max-width: 1024px) {
  .hum-div .cat_title::after {
    right: 0px;
  }
}
.hum-div .cat_title.close::before {
  transform: rotate(45deg);
}
.hum-div .cat_title.close::after {
  transform: rotate(-45deg);
}
.hum-div .box {
  display: none;
  margin: 5px;
  padding: 5px;
}
.hum-div .box p {
  padding: 10px 0;
}

.hum-div.active {
  top: 0;
}
@media screen and (max-width: 1024px) {
  .hum-div.active {
    top: 50px;
  }
}

footer {
  background-color: #ffffff;
  width: calc(100% - 101px);
  margin: 0 0 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 1024px) {
  footer {
    width: 100%;
  }
}
footer .menu {
  display: flex;
  justify-content: space-around;
  align-items: flex-start;
  font-size: 1.5rem;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  footer .menu {
    display: none;
  }
}
footer .menu dl {
  width: 20%;
}
footer .menu dl dt {
  color: #D6909D;
  margin-bottom: 10px;
}
footer .menu dl dd {
  margin-bottom: 10px;
  font-size: 1.3rem;
  margin-left: 1em;
}
footer .menu dl dd a {
  color: #000000;
}
footer .adress {
  background-color: #000000;
  color: #ffffff;
  font-size: 1.2rem;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  box-sizing: border-box;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  footer .adress {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  footer .adress .sm-none {
    display: none;
  }
}
footer .adress img {
  width: 50px;
}
footer .adress ul {
  margin-bottom: 5px;
}
footer .adress ul li {
  list-style-type: none;
  border-left: 1px solid #ffffff;
  padding: 0 10px;
}
footer .adress ul li:last-child {
  border-right: 1px solid #ffffff;
}
footer .adress .flex {
  display: flex;
  align-items: center;
}
footer .adress .flex a {
  color: #ffffff;
}
footer .link {
  background-color: #D6909D;
  color: #ffffff;
  font-size: 1.2rem;
  padding: 20px 0;
}
footer .link ul {
  display: flex;
  flex-wrap: wrap;
}
footer .link ul li {
  position: relative;
  padding-left: 1.5em;
  list-style: none;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  footer .link ul li {
    margin-bottom: 15px;
  }
}
footer .link ul li a {
  color: #ffffff;
}
footer .link ul li::before {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  width: 0px;
  height: 0px;
  border: 0.3em solid transparent;
  border-left: 0.4em solid #ffffff;
  content: "";
}

.wapper {
  width: calc(100% - 101px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .wapper {
    width: 100%;
    margin: 0;
  }
}
.wapper .h-title {
  height: 300px;
  background: linear-gradient(45deg, #D6909D 0%, #D6909D 50%, #FFEFF2 50%, #FFEFF2 100%);
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  box-sizing: border-box;
  align-items: center;
  font-weight: normal;
}
@media screen and (max-width: 1024px) {
  .wapper .h-title {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .wapper .h-title {
    height: 200px;
  }
}
.wapper .h-title h1 {
  color: #ffffff;
  font-size: 2.5vw;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .wapper .h-title h1 {
    font-size: 3.5vw;
  }
}
.wapper .h-title h1 span {
  font-size: 2rem;
  display: block;
}
.wapper .images {
  max-width: 50vw;
}
@media screen and (max-width: 500px) {
  .wapper .images {
    display: none;
  }
}
.wapper .images img {
  box-shadow: 15px 15px 0px -5px #666666;
  border-radius: 0px;
  width: 100%;
}
.wapper .bread {
  display: flex;
  list-style: none;
  color: #ffffff;
  margin: 10px;
  font-size: 1.2rem;
}
.wapper .bread li:after {
  content: ">";
  margin: 0 10px 0 3px;
}
.wapper .bread li:last-child:after {
  content: none;
}
.wapper .bread a {
  color: #ffffff;
}
.wapper section {
  width: 90%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .wapper section {
    width: 95%;
  }
}
@media screen and (max-width: 768px) {
  .wapper section {
    width: 100%;
  }
}
.wapper section h2 {
  border-bottom: 2px solid #D6909D;
  padding-bottom: 5px;
  font-size: 2rem;
  margin-bottom: 20px;
  padding-top: 5px;
}
@media screen and (max-width: 1024px) {
  .wapper section h2 {
    padding-top: 60px;
    margin-top: -60px;
  }
}
@media screen and (max-width: 768px) {
  .wapper section h2 {
    font-size: 1.6rem;
  }
}
.wapper section h3 {
  font-size: 1.8rem;
  margin: 20px 10px;
}
@media screen and (max-width: 768px) {
  .wapper section h3 {
    font-size: 1.5rem;
  }
}
.wapper section h3 span.title {
  position: relative;
  z-index: 10;
  display: inline;
}
.wapper section h3 span.square {
  width: 100px;
  height: 1.8rem;
  background-color: #FFEFF2;
  position: relative;
  display: inline-block;
  left: -2em;
  top: 5px;
  z-index: 5;
}
.wapper section h4 {
  font-size: 1.7rem;
  margin: 20px 15px;
}
@media screen and (max-width: 768px) {
  .wapper section h4 {
    font-size: 1.4rem;
  }
}
.wapper section .section-in {
  background-color: #ffffff;
  box-sizing: border-box;
  padding: 20px;
}
@media screen and (max-width: 1024px) {
  .wapper section .section-in {
    padding: 20px 5px;
  }
}
.wapper section .section-in p {
  padding: 10px 10px 10px 30px;
}
.wapper section .bcg {
  width: 20%;
  height: 100%;
  background-color: #D6909D;
  position: absolute;
  top: 20px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .wapper section .bcg {
    display: none;
  }
}
.wapper section.right {
  margin: 60px 0 0 auto;
}
.wapper section.right .bcg {
  left: -20px;
}
.wapper section.left {
  margin: 60px auto 0 0;
}
.wapper section.left .bcg {
  right: -20px;
}

div.over-table {
  overflow-x: scroll;
}

iframe {
  width: calc(100% - 101px);
  height: 30vh;
  margin: 50px 0 0 auto;
  display: block;
}
@media screen and (max-width: 1024px) {
  iframe {
    width: 100%;
  }
}

#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  font-size: 2rem;
  line-height: 2rem;
  background: #D6909D;
  color: #ffffff;
  padding: 1em 1.2em;
  border: solid 1px;
  border-radius: 50%;
  box-shadow: 0 2px 10px -6px rgba(0, 0, 0, 0.5), 0 3px 10px -4px rgba(0, 0, 0, 0.2);
  z-index: 900;
}

span.liner {
  background: linear-gradient(transparent 75%, #ffff7f 75%);
}

@media print {
  .no-print {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */