@charset "UTF-8";
/*==================================================================================================
	サイト基礎
==================================================================================================*/
html {
  -ms-text-size-adjust: 100% !important;
  -webkit-text-size-adjust: 100% !important;
  font-size: 62.5% !important;
  background: none !important;
}

body {
  color: #000;
  background-color: #fff;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
  font-size: clamp(1.6rem, 1.7vw, 1.8rem) !important;
  font-weight: 400;
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
}
body.noScrolled {
  overflow: hidden;
}
body a {
  transition: 0.5s;
  color: #50b2d7;
  text-decoration: none;
}
body a:hover {
  text-decoration: underline;
}
body img {
  max-width: 100%;
  height: auto;
}
body .inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (max-width: 1200px) {
  body .inner {
    padding-left: 3vw;
    padding-right: 3vw;
  }
}
@media screen and (max-width: 767px) {
  body .inner {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}
body .spShow {
  display: none;
}
@media screen and (max-width: 1060px) {
  body .spShow {
    display: block;
  }
}
@media screen and (max-width: 1060px) {
  body .pcShow {
    display: none;
  }
}
body .indentText {
  text-indent: -1em;
  padding-left: 1em;
}
body .smallText {
  font-size: 70%;
}
body .largeText {
  font-size: 120%;
}
body .boldText {
  font-weight: 600;
}
body .-center {
  text-align: center;
}
body .-right {
  text-align: right;
}
body .-left {
  text-align: left;
}
body .-en {
  font-family: "Roboto Condensed", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", sans-serif;
}
body .material-icons-outlined {
  font-size: 120%;
  vertical-align: middle;
}
body.fixed {
  height: 100vh;
  overflow-y: hidden;
}

/*----- 背景色 -----*/
.bg-pink {
  background: #d21577;
  color: #fff;
}

/*==================================================================================================
	共通 Common
==================================================================================================*/
.l-container {
  position: relative;
}

/*--------------------------------------------------------
リスト
---------------------------------------------------------*/
ol {
  padding-left: 1.5em;
  font-size: 1em;
  margin-bottom: 1em;
}

/*--------------------------------------------------------
表組　テーブル
---------------------------------------------------------*/
table {
  border-collapse: collapse;
  width: 100%;
  margin: 2em auto;
  line-height: 1.5;
}
table thead tr th,
table thead tr td {
  text-align: center;
  color: #fff;
  background-color: #50b2d7;
}
table tr {
  max-width: 1080px;
  margin: auto;
}
table tr th,
table tr td {
  padding: 1em;
  vertical-align: middle;
  font-weight: 400;
  text-align: left;
  border: 1px solid #716f64;
  color: #000;
}
@media screen and (max-width: 1060px) {
  table tr th,
table tr td {
    display: block;
  }
}
table tr th {
  white-space: nowrap;
  font-weight: 500;
}
@media screen and (max-width: 1060px) {
  table tr th {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 1060px) {
  table tr td {
    padding: 1em 1.5em 2em 1.5em !important;
  }
}

.scrollTable {
  overflow: auto;
  white-space: nowrap;
  line-height: 1.75;
  margin: 0 calc(50% - 50vw);
}
@media screen and (max-width: 1060px) {
  .scrollTable {
    margin: 0 calc(50% - 50vw) 0 0;
  }
}
@media screen and (max-width: 1060px) {
  .scrollTable table th,
.scrollTable table td {
    display: table-cell;
    padding: 0.75em !important;
  }
}
@media screen and (max-width: 1060px) {
  .scrollTable table th {
    padding-bottom: initial;
  }
}

/*--------------------------------------------------------
Main
---------------------------------------------------------*/
.kv {
  width: 100%;
  padding-top: 120px;
  background-color: #d21577;
  background-image: url("../images/top_bg2.png"), url(../images/top_bg.png);
  background-repeat: no-repeat, repeat-x;
  background-position: center bottom;
  background-size: auto, contain;
  text-align: center;
}
@media screen and (max-width: 770px) {
  .kv {
    padding-top: 60px;
  }
}
.kv_inner {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}
.kv_ttl {
  position: absolute;
  top: 0;
  text-align: center;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media screen and (max-width: 650px) {
  .kv_ttl {
    top: 7.5%;
  }
}
.kv_ttl img {
  -webkit-animation: fadein 2.4s ease-in-out;
          animation: fadein 2.4s ease-in-out;
}
.kv .cloud {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  position: relative;
}
.kv .cloud img {
  -webkit-animation: fadein 1.2s ease-in-out;
          animation: fadein 1.2s ease-in-out;
}
.kv .date {
  margin: 0 auto;
  width: 100%;
}
@media screen and (max-width: 650px) {
  .kv .date {
    background-color: #e0de80;
    padding: 8px;
    margin-top: -14px;
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
    transform: translatey(20px);
  }
  to {
    opacity: 1;
    transform: translatey(0);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translatey(20px);
  }
  to {
    opacity: 1;
    transform: translatey(0);
  }
}
.entry {
  height: 100%;
}
.entry .soon {
  text-align: center;
  padding: 120px 10px;
}
@media screen and (max-width: 1060px) {
  .entry .soon {
    padding: 80px 10px;
  }
}

.l-breadcrumbs {
  margin-top: 0;
}
/*# sourceMappingURL=base.css.map */