@charset "utf-8";
/* CSS Document */
@import url("layout.css");
/* ************************************************************ Loading　*/
#loader {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 10000000;
  background: #fff;
  text-align: center;
  color: #fff;
}
/* -------------------- 中央配置　*/
#loader_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#loader_logo img {
  width: 100px;
  height: auto;
}
/* -------------------- fadeUpをするアイコンの動き */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/************************************************************ main*/
header {
  height: 160px;
}
/************************************************************ main*/
main {
  width: 100%;
  /*max-width: 1280px;*/
  margin: 0 auto;
  padding: 0 0 80px 0;
}
#main {}
#main .inner {}
/* ------------------------------ mainvisual*/
#mainvisual {
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto;
}
#mainvisual .inner {
  position: relative;
}
#mainvisual .inner .pict_01 {
  position: relative;
  /*top: -20px;*/
}
#mainvisual .inner .pict_01 img {
  border-radius: 60px;
}
#mainvisual .inner .pict_02 {
  position: absolute;
  bottom: -40px;
  right: 0;
}
#mainvisual .inner .pict_02 img {
  border-radius: 0 60px 60px 60px;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, .2);
}
#mainvisual .inner .catch {
  font-size: 4.0rem;
  color: #000f4f;
  position: absolute;
  padding: 0 0 0 40px;
  top: 140px;
  right: 0px;
  z-index: 10;
  text-shadow: 0 0 8px rgb(255, 255, 255, 1);
}
#mainvisual .inner .catch::before {
  position: absolute;
  content: "";
  background-image: url("../img/mainvisual_bg.png");
  background-repeat: no-repeat;
  width: 409px;
  height: 336px;
  top: -60px;
  right: 0;
  z-index: -1;
  text-shadow: none;
}
#mainvisual .inner .catch span {
  font-size: 2.4rem;
  color: #000f4f;
  text-align: right;
  display: block;
}
/* ------------------------------ intro*/
#intro {
  position: relative;
  padding: 100px 0;
  width: 100%;
  overflow-x: hidden;
}
#intro .inner::before {
  position: absolute;
  content: "";
  left: -150px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  width: 372px;
  height: 421px;
  background-image: url("../img/intro_bg_01.png");
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}
#intro .inner::after {
  position: absolute;
  content: "";
  bottom: -100px;
  right: -150px;
  width: 428px;
  height: 370px;
  background-image: url("../img/intro_bg_02.png");
  background-repeat: no-repeat;
  z-index: 1;
  overflow: hidden;
}
#intro .inner {
  width: calc(100% - 40px);
  max-width: 1280px;
  background-color: #E2F1F2;
  margin: 0 auto;
  padding: 80px 140px 100px 140px;
  border-radius: 45px;
  position: relative;
  text-align: center;
}
#intro .inner p {
  position: relative;
  z-index: 10;
}
/**/
#intro .inner h2 {
  position: relative;
  display: inline-block;
  margin: 10px 0;
  padding: 0 40px;
  font-size: 2.4rem;
  color: var(--main-col);
}
#intro .inner h2:before, #intro .inner h2:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 12px;
  height: 2px;
  background-color: var(--main-col);
}
#intro .inner h2:before {
  left: 0;
}
#intro .inner h2:after {
  right: 0;
}
/**/
#intro .inner table {
  width: 90%;
  max-width: 500px;
  margin: 10px auto;
  border-collapse: separate;
  border-spacing: 6px;
}
#intro .inner table th, #intro .inner table td {}
#intro .inner table th {
  width: 20%;
  padding: 5px 0;
  text-align: center;
  background-color: #AFDCDB;
}
#intro .inner table td {
  background-color: #fff;
  text-align: left;
  padding: 5px 16px;
}
/* ------------------------------ info*/
#info {
  width: calc(100% - 80px);
  max-width: 1280px;
  margin: 0 auto;
}
#info h2 {
  position: relative;
  text-align: center;
  font-size: 3.2rem;
  color: var(--sub-col);
  padding: 44px 0;
}
#info h2::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 3px;
  height: 40px;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background-color: var(--main-col);
}
#info .inner {
  padding: 0 0 50px 0;
}
#info article a {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-end;
  justify-content: flex-end;
  -webkit-flex-direction: row-reverse;
  flex-direction: row-reverse;
  border: 2px solid #E6ECF5;
  box-shadow: 0 4px 12px 0 rgba(1, 47, 101, .1);
  /*filter: drop-shadow(0px 0px 4px rgba(1, 47, 101, .1));*/
  margin: 10px 0;
  padding: 25px 20px;
  border-radius: 15px;
  background-color: #fff;
}
#info article a:hover {
  box-shadow: 0 4px 12px 0 rgba(1, 47, 101, 0);
}
#info article a h3 {
  color: var(--sub-col);
}
#info article a .day {
  margin: 0 40px 0 10px;
  color: var(--sub-col);
}
/* ボタン */
#info .btn {
  display: inline-block;
  position: relative;
  color: #fff !important;
  text-decoration: none !important;
  font-size: 1.6rem;
  text-align: left;
  background-color: var(--main-col);
  margin: 10px;
  padding: 24px 200px 24px 40px;
  border-radius: 100vh;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
  transform: .4s;
}
#info .btn::before {
  position: absolute;
  content: "";
  right: 32px;
  top: calc(50% - 5px);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  transition: .4s;
}
#info .btn::after {
  position: absolute;
  content: "";
  right: 48px;
  top: calc(50% - 1px);
  width: 30px;
  height: 2px;
  background: #fff;
  transition: .4s;
}
#info .btn:hover::before {
  right: 22px;
}
#info .btn:hover::after {
  right: 28px;
}