@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);
  }
}
/************************************************************ */
body {
  /*font-size: 1.7rem;*/
}
/************************************************************ main*/
#mainimg {}
#mainimg .inner {
  margin: 20px 0;
}
#mainimg .inner img {
  width: 100%;
  height: auto;
  border-radius: 20px;
}
/**/
#main {}
#main .inner {}
/* ------------------------------ end*/
#end {
  padding: 20px 0;
}
#end .inner {
  padding: 50px;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.07));
}
#end .inner h2 {
  margin: 0;
  padding: 0 0 20px 0;
  font-size: 1.8rem;
  font-weight: 600;
}
/* ------------------------------ news*/
#news {
  padding: 20px 0;
}
#news .inner {
  padding: 20px 0;
  background-color: #fff;
  border-radius: 20px;
  filter: drop-shadow(0px 0px 12px rgba(0, 0, 0, 0.07));
}
#news .inner h2 {
  margin: 40px 50px 0 50px;
  padding: 30px 0;
  font-size: 3.5rem;
  font-weight: 700;
  position: relative;
}
#news .inner h2::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 6px;
  height: 6px;
  background-image: url("../img/icon_h2.png");
  background-repeat: no-repeat;
}
#news .inner h2::after {
  position: absolute;
  content: "News";
  top: -10px;
  left: 15px;
  /*color: var(--main);*/
  color: var(--accent);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  font-weight: 400;
}
/**/
#news .inner .news_list {
  width: 100%;
  padding: 10px 50px 30px 50px;
}
/**/
#news .inner .news_list table {
  width: 100%!important;
  padding: 10px 50px 30px 50px;
}
#news .inner .news_list table td {
  border-bottom: 1px solid #D6D6D6;
  vertical-align: middle;
  text-align: center;
  padding: 20px 10px;
}
#news .inner .news_list table td .day {
  width: 120px;
  color: var(--main);
  line-height: 1.0em;
  white-space: nowrap;
  border: 1px solid var(--main);
  margin: 0;
  padding: 4px 15px;
  border-radius: 100vh;
}
#news .inner .news_list table td:last-child {
  width: 100%!important;
  text-align: left;
}
#news .inner .news_list table td a {
  color: var(--main);
  text-decoration: underline;
}