@charset "UTF-8";
/* mixin-------------------------------------------------------------------------- */ /* Utility 多用CSS-------------------------------------------------------------------------- */
.flex {
  display: flex;
}

.bold {
  font-weight: bold;
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.left50 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.jost {
  font-family: "Jost", sans-serif;
}

/* Base 全体共通-------------------------------------------------------------------------- */
body {
  color: #fff;
  font-size: 14px;
  background-color: #141414;
  background-image: url(../img/common/bg.png);
  background-size: cover;
  background-blend-mode: multiply;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  font-weight: 500px;
}

table {
  border-collapse: collapse;
}

li {
  list-style-type: none;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #fff;
  text-decoration: none;
}

p {
  line-height: 1.8;
}

.wrap1300 {
  max-width: calc(100% - 40px);
  width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .wrap1300 {
    max-width: calc(100% - 20px);
  }
}

/* Layout 全体配置-------------------------------------------------------------------------- */
@-webkit-keyframes rainbow {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
@keyframes rainbow {
  0% {
    left: 0;
  }
  100% {
    left: 100%;
  }
}
.layout-header {
  padding-top: 65px;
  padding-bottom: 55px;
}
@media screen and (max-width: 500px) {
  .layout-header {
    padding-top: 35px;
    padding-bottom: 25px;
  }
}
.layout-header h1 {
  position: relative;
  overflow-x: hidden;
}
.layout-header h1::after {
  content: "";
  width: 100%;
  height: 60px;
  top: 0;
  left: 0;
  display: block;
  background-color: #141414;
  background-image: url(../img/top/bg.png);
  background-size: cover;
  background-blend-mode: multiply;
  position: absolute;
  -webkit-animation: rainbow 1s ease-in-out forwards;
          animation: rainbow 1s ease-in-out forwards;
}
.layout-main {
  min-height: calc(100vh - 255px);
  padding-bottom: 50px;
}
@media screen and (max-width: 650px) {
  .layout-main {
    padding-bottom: 100px;
  }
}
.layout-footer small {
  display: block;
  line-height: 80px;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
  color: #e102e1;
  background-color: #000;
}

/* BEM topページ-------------------------------------------------------------------------- */
.b-window {
  border-top: #fff 2px solid;
  border-left: #fff 2px solid;
  border-bottom: #414141 2px solid;
  border-right: #414141 2px solid;
  background-color: #cacaca;
  padding: 5px 5px 45px;
  position: relative;
}
@media screen and (max-width: 500px) {
  .b-window {
    padding: 2px 2px 45px;
  }
}
.b-window__title {
  margin-bottom: 15px;
}
@media screen and (max-width: 500px) {
  .b-window__title {
    margin-bottom: 5px;
  }
}
.b-window__title img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .b-window__title .pc {
    display: none;
  }
}
.b-window__title .sp {
  display: none;
}
@media screen and (max-width: 1024px) {
  .b-window__title .sp {
    display: block;
  }
}
.b-window__contents {
  background-color: #0000ae;
  border-top: #d9d9d9 1px solid;
  border-left: #d9d9d9 2px solid;
  border-bottom: #fff 2px solid;
  border-right: #fff 2px solid;
  box-shadow: 1px 1px 0px #414141 inset;
  padding: 60px 105px 50px;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 1250px) {
  .b-window__contents {
    padding: 60px 60px 50px;
    gap: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .b-window__contents {
    flex-direction: column;
    gap: 0;
  }
}
@media screen and (max-width: 650px) {
  .b-window__contents {
    padding: 30px 30px 50px;
  }
}
@media screen and (max-width: 500px) {
  .b-window__contents {
    padding: 20px 10px 30px;
  }
}
.b-window__text {
  width: 48.3%;
}
@media screen and (max-width: 1024px) {
  .b-window__text {
    width: 100%;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 500px) {
  .b-window__text {
    margin-bottom: 30px;
  }
}
.b-window__text h3 {
  background-color: #a3a49c;
  color: #0000ae;
  line-height: 24px;
  display: inline-block;
  font-size: 20px;
  padding: 0 3px;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .b-window__text h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
.b-window__text dl {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 500px) {
  .b-window__text dl {
    flex-direction: column;
  }
}
.b-window__text dt {
  background-color: #a3a49c;
  color: #0000ae;
  font-family: "Jost", sans-serif;
  width: 70px;
  text-align: center;
  line-height: 19px;
  font-size: 12px;
  display: inline-block;
  text-transform: uppercase;
}
.b-window__text dd {
  width: calc(100% - 95px);
  margin-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .b-window__text dd {
    width: 100%;
    margin-top: 0.5em;
    margin-bottom: 15px;
  }
}
.b-window__text dd:last-of-type {
  margin-bottom: 0;
}
.b-window__text p {
  margin-bottom: 0.5em;
}
.b-window__text a {
  display: inline-block;
  font-size: 16px;
  font-style: italic;
  display: inline-block;
  align-items: center;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 500px) {
  .b-window__text a {
    font-size: 15px;
  }
}
.b-window__text a.mb40 {
  margin-bottom: 40px;
}
@media screen and (max-width: 500px) {
  .b-window__text a.mb40 {
    margin-bottom: 25px;
  }
}
.b-window__text a img {
  position: relative;
  top: -8px;
  margin-right: 2px;
}
.b-window__map {
  width: 52.7%;
  height: 420px;
}
@media screen and (max-width: 1024px) {
  .b-window__map {
    width: 100%;
    height: 300px;
  }
}
@media screen and (max-width: 500px) {
  .b-window__map {
    height: 250px;
  }
}
.b-window__map iframe {
  width: 100%;
  height: 100%;
}

.dolphin {
  position: absolute;
  transform: rotate(-20deg);
  right: 190px;
  bottom: -55px;
  opacity: 0;
}
@media screen and (max-width: 650px) {
  .dolphin {
    right: 130px;
    bottom: -105px;
  }
}
@media screen and (max-width: 500px) {
  .dolphin {
    width: 152px;
  }
}
.dolphin.anime {
  -webkit-animation: dolphin 0.3s ease-in-out forwards;
          animation: dolphin 0.3s ease-in-out forwards;
}
@media screen and (max-width: 650px) {
  .dolphin.anime {
    -webkit-animation: dolphin-sp 0.3s ease-in-out forwards;
            animation: dolphin-sp 0.3s ease-in-out forwards;
  }
}

@-webkit-keyframes dolphin {
  0% {
    transform: rotate(-20deg);
    right: 190px;
    bottom: -55px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 180px;
    bottom: 5px;
    opacity: 1;
  }
}

@keyframes dolphin {
  0% {
    transform: rotate(-20deg);
    right: 190px;
    bottom: -55px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 180px;
    bottom: 5px;
    opacity: 1;
  }
}
@-webkit-keyframes dolphin-sp {
  0% {
    transform: rotate(-20deg);
    right: 130px;
    bottom: -105px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 120px;
    bottom: -45px;
    opacity: 1;
  }
}
@keyframes dolphin-sp {
  0% {
    transform: rotate(-20deg);
    right: 130px;
    bottom: -105px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 120px;
    bottom: -45px;
    opacity: 1;
  }
}
.smile {
  position: absolute;
  transform: rotate(-20deg);
  right: 80px;
  bottom: -85px;
  opacity: 0;
}
@media screen and (max-width: 650px) {
  .smile {
    right: 20px;
    bottom: -135px;
  }
}
@media screen and (max-width: 500px) {
  .smile {
    width: 120px;
  }
}
.smile.anime {
  -webkit-animation: smile 0.3s 0.5s ease-in-out forwards;
          animation: smile 0.3s 0.5s ease-in-out forwards;
}
@media screen and (max-width: 650px) {
  .smile.anime {
    -webkit-animation: smile-sp 0.3s 0.5s ease-in-out forwards;
            animation: smile-sp 0.3s 0.5s ease-in-out forwards;
  }
}

@-webkit-keyframes smile {
  0% {
    transform: rotate(-20deg);
    right: 80px;
    bottom: -85px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 60px;
    bottom: -30px;
    opacity: 1;
  }
}

@keyframes smile {
  0% {
    transform: rotate(-20deg);
    right: 80px;
    bottom: -85px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 60px;
    bottom: -30px;
    opacity: 1;
  }
}
@-webkit-keyframes smile-sp {
  0% {
    transform: rotate(-20deg);
    right: 20px;
    bottom: -135px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 0px;
    bottom: -80px;
    opacity: 1;
  }
}
@keyframes smile-sp {
  0% {
    transform: rotate(-20deg);
    right: 20px;
    bottom: -135px;
    opacity: 0;
  }
  100% {
    transform: rotate(0deg);
    right: 0px;
    bottom: -80px;
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */