@charset "UTF-8";
/* トップ */
body {
  background: linear-gradient(0deg, rgba(209, 229, 182, 0.7) 0%, rgba(107, 199, 241, 0.7) 100%); }

.top-wd {
  width: 1200px;
  margin: 0 auto 30px; }
  @media all and (min-width: 750px) and (max-width: 1200px) {
    .top-wd {
      width: 94.64%; } }
  @media screen and (max-width: 749px) {
    .top-wd {
      width: 90%;
      margin: 0 auto 20px; } }
  @media all and (min-width: 750px) and (max-width: 1200px) {
    .top-wd.fit {
      width: 100%; } }
  @media screen and (max-width: 749px) {
    .top-wd.fit {
      width: 100%; } }

.contents-area {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  align-items: flex-start; }
  @media all and (min-width: 750px) and (max-width: 1200px) {
    .contents-area {
      column-gap: 2.5%; } }
  @media screen and (max-width: 749px) {
    .contents-area {
      column-gap: 0;
      row-gap: 40px; } }
  .contents-area nav {
    width: 600px; }
    @media all and (min-width: 750px) and (max-width: 1200px) {
      .contents-area nav {
        width: 50%; } }
    @media screen and (max-width: 749px) {
      .contents-area nav {
        width: 100%; } }
    .contents-area nav ul {
      display: flex;
      flex-wrap: wrap;
      gap: 30px; }
      @media all and (min-width: 750px) and (max-width: 1200px) {
        .contents-area nav ul {
          gap: 10px 5%; } }
      @media screen and (max-width: 749px) {
        .contents-area nav ul {
          justify-content: center;
          gap: 15px 5%; } }
      .contents-area nav ul li {
        width: 180px; }
        .contents-area nav ul li a .soon {
          pointer-events: none; }
        @media all and (min-width: 750px) and (max-width: 1200px) {
          .contents-area nav ul li {
            width: 30%; } }
        @media screen and (max-width: 749px) {
          .contents-area nav ul li {
            width: 30%; } }
  .contents-area .news {
    position: relative;
    width: 570px;
    max-height: 400px;
    padding: 10px 20px 10px 10px;
    border: 2px solid #475a9d;
    border-radius: 20px; }
    .contents-area .news::before {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -2;
      /* 一番下に敷く */
      border-radius: 18px;
      background: linear-gradient(135deg, #CEE9E5 0%, #C3BFDF 30%, #F09EC1 60%, #FBD7A2 100%); }
    .contents-area .news::after {
      content: "";
      position: absolute;
      /* ボックスのサイズから線として出したい部分の分だけ小さくする */
      /* border-size: 2px; にしたいときは2*2px（上下or左右の分） */
      width: calc(100% - 12px);
      height: calc(100% - 12px);
      top: 6px;
      left: 6px;
      z-index: -1;
      /* グラデーションの上に被せる、かつ表示したいテキストより下にする */
      border-radius: 15px;
      background: linear-gradient(0deg, #cfe9e6 0%, white 30%); }
    @media all and (min-width: 750px) and (max-width: 1200px) {
      .contents-area .news {
        width: 47.5%; } }
    @media screen and (max-width: 749px) {
      .contents-area .news {
        width: 100%; } }
    .contents-area .news .header {
      margin-top: -50px;
      text-align: center; }
      @media screen and (max-width: 749px) {
        .contents-area .news .header {
          width: 86%;
          margin: -35px auto 0; } }
  .contents-area .news-list {
    list-style: none outside;
    margin: 0;
    padding: 0;
    overflow-y: scroll;
    scrollbar-width: thin;
    scrollbar-color: #f473b4 transparent;
    max-height: 340px; }
    .contents-area .news-list::-webkit-scrollbar {
      width: 10px; }
    .contents-area .news-list::-webkit-scrollbar-track {
      background-color: transparent; }
    .contents-area .news-list::-webkit-scrollbar-thumb {
      background-color: #f473b4;
      border-radius: 8px; }
    .contents-area .news-list .item a {
      display: flex;
      text-decoration: none;
      color: #222;
      border-bottom: 1px solid #bae3f9;
      padding: 20px 20px; }
    .contents-area .news-list .item:last-child a {
      border-bottom: none; }
    .contents-area .news-list .item .date {
      margin: 0;
      min-width: 100px;
      font-size: 1.6rem;
      color: #e85298;
      padding: 0 20px 0 0; }
    .contents-area .news-list .item .category {
      margin: 0;
      min-width: 100px;
      padding: 0 20px 0 0; }
      .contents-area .news-list .item .category span {
        background-color: #41bcd7;
        color: #FFF;
        text-align: center;
        display: inline-block;
        padding: 3px 20px 5px;
        font-size: 1.2rem;
        line-height: 1; }
        .contents-area .news-list .item .category span.info {
          background-color: #a279d3;
          padding: 3px 10px 5px; }
    .contents-area .news-list .item .title {
      margin: 0;
      width: 100%; }
    .contents-area .news-list .item a:hover .title {
      color: #999; }
    @media screen and (max-width: 749px) {
      .contents-area .news-list .item a {
        flex-wrap: wrap; }
      .contents-area .news-list .item .date {
        min-width: 100px; }
      .contents-area .news-list .item .title {
        margin-top: 10px; } }

.notice {
  padding: 30px;
  font-size: 1.6rem;
  color: #222;
  background-color: white;
  border-radius: 20px; }
  .notice p {
    font-size: 2rem;
    padding-bottom: 30px; }
    .notice p span {
      font-size: 2.4rem;
      color: #fff462;
      font-weight: 700; }
    @media screen and (max-width: 749px) {
      .notice p {
        font-size: 1.6rem;
        padding-bottom: 20px; }
        .notice p span {
          font-size: 1.8rem; } }
  .notice h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #ff3399;
    padding: 0 0 15px; }
    .notice h2 span {
      font-size: 2.6rem; }
    @media screen and (max-width: 749px) {
      .notice h2 {
        font-size: 2.4rem;
        padding: 0 0 10px; }
        .notice h2 span {
          font-size: 2rem; } }
  @media all and (min-width: 750px) and (max-width: 1200px) {
    .notice {
      padding: 2.5%; } }
  @media screen and (max-width: 749px) {
    .notice {
      border-radius: 10px;
      font-size: 1.4rem;
      margin: 0 auto;
      padding: 4%; } }
  .notice li {
    margin-left: 1em;
    text-indent: -1em;
    margin-bottom: 0.5em; }
  .notice .office {
    font-size: 2rem;
    font-weight: 700;
    padding-bottom: 10px; }
    @media screen and (max-width: 749px) {
      .notice .office {
        font-size: 1.6rem; } }
  .notice .tel {
    display: flex;
    flex-wrap: wrap;
    column-gap: 1em; }
    @media screen and (max-width: 749px) {
      .notice .tel {
        flex-direction: column;
        column-gap: 0; } }
    .notice .tel .number {
      font-size: 4rem;
      font-weight: 700;
      color: #222;
      padding-bottom: 10px; }
      @media screen and (max-width: 749px) {
        .notice .tel .number {
          font-size: 3rem; } }

.corp {
  font-size: 2rem; }
  .corp span {
    font-size: 0.75em; }
  @media screen and (max-width: 749px) {
    .corp {
      font-size: 1.6rem; } }

.bnr-area {
  display: flex;
  justify-content: center;
  gap: 0 10%; }
  .bnr-area figure {
    flex-basis: 40%; }
    .bnr-area figure img {
      border: 1px solid #e85298; }
  .bnr-area p {
    font-size: 1.2rem;
    text-align: center;
    padding-top: 0.25em; }
  @media screen and (max-width: 749px) {
    .bnr-area {
      flex-direction: column; }
      .bnr-area figure {
        width: 66.8%;
        margin: 0 auto 30px; }
      .bnr-area p {
        font-size: 1rem;
        text-align: center;
        padding-top: 0.25em; } }

.weather_info {
  border: 2px solid #ff3399;
  padding: 1em;
  text-align: center; }
  .weather_info .ttl {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3399;
    padding-bottom: 1em; }
    @media screen and (max-width: 749px) {
      .weather_info .ttl {
        font-size: 2rem; } }
  .weather_info p {
    padding-bottom: 1em;
    line-height: 1.5; }
  .weather_info .sns {
    display: flex;
    justify-content: center;
    gap: 0 10%; }
    .weather_info .sns li {
      width: 30%;
      border: 1px solid #ff3399;
      display: grid;
      place-content: center;
      place-items: center; }
      .weather_info .sns li:hover {
        background-color: #ffdaea; }
      .weather_info .sns li a {
        display: flex;
        flex-direction: column;
        color: #ff3399; }
        .weather_info .sns li a:hover {
          text-decoration: none; }
        .weather_info .sns li a i {
          color: #ff3399;
          padding: 0.25em;
          font-size: 3rem; }
      @media screen and (max-width: 749px) {
        .weather_info .sns li {
          width: 40%; } }

.urgent_info {
  border: 2px solid #ff3399;
  padding: 1em;
  text-align: center; }
  .urgent_info .ttl {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff3399;
    padding-bottom: 1em; }
    @media screen and (max-width: 749px) {
      .urgent_info .ttl {
        font-size: 2rem; } }
  .urgent_info p {
    padding-bottom: 1em;
    line-height: 1.5;
    overflow-wrap: anywhere;
    word-break: normal;
    line-break: strict; }
  .urgent_info .sns {
    display: flex;
    justify-content: center;
    gap: 0 10%; }
    .urgent_info .sns li {
      width: 30%;
      border: 1px solid #222;
      display: grid;
      place-content: center;
      place-items: center; }
      .urgent_info .sns li:hover {
        background-color: #ffdaea; }
      .urgent_info .sns li p {
        padding-bottom: 0.25em;
        line-height: 1.5; }
      .urgent_info .sns li a {
        display: flex;
        flex-direction: column;
        color: #222; }
        .urgent_info .sns li a:hover {
          text-decoration: none; }
        .urgent_info .sns li a i {
          color: #222;
          padding: 0.25em;
          font-size: 3rem; }
      @media screen and (max-width: 749px) {
        .urgent_info .sns li {
          width: 40%; } }
