@charset "utf8";

/*---------------------------
リセット
---------------------------*/
*{
  margin:0;
  padding:0;
}

._clear {
  display: none;
}

/*---------------------------
移植
---------------------------*/
.header-top-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0 auto;
}

.header {
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  font-style: normal;
  color: #333333;

  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  font-weight: normal;
  line-height: normal;
  border: none;
}

.header__item--link_text {
  margin-top: 0px;
  margin-bottom: 0px;
}

.header__wrapper {
  /*position: fixed;*/
  position: static; /* 初期値 */
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  opacity: 1;
  z-index: 9998;
  background-color: #fff;
  padding: calc(10vw/19.2) calc(30vw/19.2) calc(10vw/19.2) calc(20vw/19.2);
  box-shadow: 0px 1px 1px #d8d8d8;
}
@media screen and (max-width: 767px) {
  .header__wrapper {
    padding: 8px 2vw;
  }
}

.header__logo {
  width: 8%;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 30%;
  }
}

.header__nav {
  display: block;
  margin: 0 20px 0 auto;
  white-space: nowrap;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
  .header__nav.js-open {
    position: fixed;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    /*top: 58px;*/
    top: 82px;
    /*bottom: 0;*/
    /*right: 0%;*/
    left: 0%;
    /*width: 50vw;*/
    width: 100vw;
    height: calc(100vh - 58px);
    height: calc(100dvh - 58px);
    background-color: #fff;
    -webkit-animation: burger-slide 0.5s ease 0s;
    animation: burger-slide 0.5s ease 0s;
    transition: 0.5s;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    /*font-size: calc(16vw/3.6);*/
  }
}

@media screen and (max-width: 767px) {
  .header__nav.js-open .header__list {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-content: right;
    align-items: flex-start;
    top: 14px;
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 767px) {
  .header__nav.js-open .header__item {
    width: 100%;
    border-bottom: solid 1px #B4B4B4;
  }
}
.header__list {
  display: flex;
  justify-content: right;
  align-items: end;
}

.header__item {
  font-size: 14px;
}
.header__item--link {
  font-size: 14px;
  display: inline-block;
  padding: calc(8vw/19.2) calc(16vw/19.2);
  transition: 0.3s;
  letter-spacing: -0.01em;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__item--link {
    padding: 12px 4vw;
  }
}
.header__item--link:hover {
  background-color: #E95389;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .header__item--link:hover {
    background-color: #fff;
    color: #333;
  }
}
.header__item--link_plus-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.header__item--link_plus {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__item--link_plus {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
  }
}
@media screen and (max-width: 767px) {
  .header__item--link_plus::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
  }
}
.header__sub-list {
  position: absolute;
  display: flex;
  gap: 4px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 16px 24px;
  font-size: 14px;
  background-color: #fff;
  box-shadow: 0 3px 3px #d3d0d0;
  display: none;
  z-index: 10000;
}
@media screen and (max-width: 767px) {
  .header__sub-list {
    position: relative;
    padding: 8px 4vw;
    box-shadow: none;
  }
}
.header__sub-list__item {
  width: 100%;
}
.header__sub-list__item--link {
  display: inline-block;
  padding: 4px 8px;
  transition: 0.3s;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .header__sub-list__item--link {
    padding: 8px 1em;
  }
}
.header__sub-list__item--link:hover {
  background-color: #E95389;
  color: #fff;
}

.header__sub-list.js-hover {
  display: block;
}
@media screen and (max-width: 767px) {
  .header__sub-list.js-hover {
    display: none;
  }
}

.header__sub-list.js-active {
  display: none;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .header__sub-list.js-active {
    display: block;
  }
}

.header__item--link_plus-link.js-active {
  display: none;
}
@media screen and (max-width: 767px) {
  .header__item--link_plus-link.js-active {
    display: flex;
    background-color: #E95389;
    color: #fff;
    transition: 0.3s;
  }
  .header__item--link_plus-link.js-active .header__item--link_plus {
    color: #fff;
  }
  .header__item--link_plus-link.js-active .header__item--link_plus::before {
    transition: 0.3s;
    transform: rotate(90deg);
    opacity: 0;
  }
}

@-webkit-keyframes burger-slide {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes burger-slide {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.burger-btn {
  display: none;
}
@media screen and (max-width: 767px) {
  .burger-btn {
    display: block;
    width: 30px;
    height: 30px;
    margin-right: 10px;
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
}

@media screen and (max-width: 767px) {
  .burger-btn__bar {
    display: block;
    height: 4px;
    width: 30px;
    background-color: #BCC3CD;
    transition: transform 0.3s;
    border-radius: 8px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn__bar-top {
    position: relative;
    bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .burger-btn__bar-bottom {
    position: relative;
    top: 8px;
  }
}

.burger-btn.js-open .burger-btn__bar-top {
  transform: translate(0, 12px) rotate(45deg);
  transition: transform 0.3s;
}

.burger-btn.js-open .burger-btn__bar-mid {
  opacity: 0;
  transition: opacity 0.3s;
}

.burger-btn.js-open .burger-btn__bar-bottom {
  transform: translate(0, -12px) rotate(-45deg);
  transition: transform 0.3s;
}


.header__btn {
  width: 14%;
  text-align: right;
  /*border: 0px solid;*/
}
@media screen and (max-width: 767px) {
  .header__btn {
    display: none;
  }  
}

.blink {
  animation: blinkAnime 0.5s infinite alternate;
}
@keyframes blinkAnime{
   0% { color: #F3FB60 }
 100% { color: #FB60CD }
}

.caution {
  position: absolute;
  left: 0;
  right: 0;
  width: 420px;
  height: 60px;
  margin: auto;
  font-size: 30px;
  font-weight: bold;
  font-family: "Zen Kaku Gothic New", serif;
  text-align: center;
  color: #ff0000;
  background-color: #ffffffaa;
  border: 5px solid #ff0000;
  border-radius: 25px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .caution {
    width: calc(210vw / 3.6);
    height: calc(30vw / 3.6);  
    border: calc(3vw / 3.6) solid #ff0000;
    border-radius: calc(12.5vw / 3.6);
    font-size: calc(15vw / 3.6);
  }
}

.caution-grid {
  display: grid;
  place-items: center;
  height: 100%;
  padding-top: calc(3vw / 19.2);
}
@media screen and (max-width: 767px) {
  .caution-grid {
    padding-top: calc(2vw / 3.6);
  }
}

.top150 {
  top: calc(150vw / 19.2);
}
@media screen and (max-width: 767px) {
  .top150 {
    top: calc(90vw / 3.6);
  }
}

.top90 {
  top: calc(90vw / 19.2);
}
@media screen and (max-width: 767px) {
  .top90 {
    top: calc(80vw / 3.6);
  }
}

.top10 {
  top: calc(10vw / 19.2);
}
@media screen and (max-width: 767px) {
  .top10 {
    top: calc(10vw / 3.6);
  }
}