@charset "UTF-8";
/*------------------------------------------------------
　メインビジュアル
-------------------------------------------------------*/
#mainvisual {
  height: 700px;
  position: relative;
  background: url("../img/top/main.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 150px; }
  #mainvisual .inner {
    max-width: 1600px;
    text-align: right;
    margin: auto;
    padding: 0 5%; }
  #mainvisual img.main-logo {
    position: relative; }
  @media screen and (max-width: 768px) {
    #mainvisual {
      height: 480px;
      background: url("../img/top/main-sp.jpg");
      background-repeat: no-repeat;
      background-size: cover;
      background-position: center; }
      #mainvisual .inner {
        text-align: center; }
      #mainvisual img.main-logo {
        width: 280px; } }

/*------------------------------------------------------
背景
-------------------------------------------------------*/
.bg-cover {
  background: url("../img/common/dot.svg"), linear-gradient(0deg, #cddbe6, #e9f1da);
  background-size: 30px ,auto;
  background-position: center;
  padding-bottom: 10px; }

/*------------------------------------------------------
read
-------------------------------------------------------*/
.read {
  background: rgba(255, 255, 255, 0.9);
  max-width: 1000px;
  margin: -130px auto 30px auto;
  position: relative;
  border-radius: 15px;
  padding: 20px 40px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  display: flex;
  column-gap: 50px; }
  .read span {
    width: 140px;
    display: block; }
  .read p {
    flex: 1;
    font-size: 22px;
    margin: 0;
    color: #464646;
    font-weight: 600; }
  @media screen and (max-width: 768px) {
    .read {
      margin: -70px 20px 30px 20px;
      padding: 20px;
      column-gap: 10px; }
      .read span {
        width: 80px;
        display: block;
        margin: auto; }
      .read p {
        font-size: 12px;
        line-height: 1.7; } }

/*------------------------------------------------------
main-list
-------------------------------------------------------*/
.main-list {
  width: 100%;
  display: flex;
  column-gap: 50px;
  margin-top: 100px; }
  @media screen and (max-width: 768px) {
    .main-list {
      flex-wrap: wrap;
      padding: 10px; } }
  .main-list a.main-list-item {
    display: block;
    width: calc( 100% / 3 - 33px );
    text-decoration: none;
    border-radius: 20px;
    position: relative;
    background: -webkit-linear-gradient(bottom, #eaf2cf, #edf3e4, #edf3e4);
    background: -o-linear-gradient(bottom, #eaf2cf, #edf3e4, #edf3e4);
    background: linear-gradient(to top, #eaf2cf, #edf3e4, #edf3e4);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
    margin-bottom: 70px;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all  0.25s; }
    .main-list a.main-list-item:hover {
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
      transform: scale(1.03); }
      .main-list a.main-list-item:hover img {
        opacity: 1; }
    @media screen and (max-width: 768px) {
      .main-list a.main-list-item {
        width: 100%; } }
    .main-list a.main-list-item img {
      position: absolute;
      top: -60px;
      left: 50%;
      margin-left: -80px;
      width: 160px; }
    .main-list a.main-list-item h3 {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      height: 110px;
      padding: 30px 0 20px 0;
      text-align: center;
      font-size: 20px;
      font-weight: bold;
      color: #fff;
      font-family: "M PLUS Rounded 1c", sans-serif;
      font-weight: bold;
      border-radius: 20px 20px 0 0;
      background: #00aa90; }
      @media screen and (max-width: 768px) {
        .main-list a.main-list-item h3 {
          padding: 20px 0 15px 0;
          font-size: 16px;
          height: 80px; } }
      .main-list a.main-list-item h3 span {
        width: 100%; }
    .main-list a.main-list-item .inner {
      padding: 20px 20px 60px 20px; }
      .main-list a.main-list-item .inner p {
        margin: 0;
        color: #333;
        font-weight: bold; }
        @media screen and (max-width: 768px) {
          .main-list a.main-list-item .inner p {
            font-size: 14px; } }
      .main-list a.main-list-item .inner span {
        font-weight: bold;
        color: #333;
        position: absolute;
        bottom: 20px;
        width: calc(100% - 20px);
        display: block;
        text-align: center; }
        .main-list a.main-list-item .inner span:after {
          content: "";
          display: inline-block;
          width: 25px;
          height: 25px;
          border-radius: 50%;
          background-color: #00aa90;
          background-image: url("../img/temp/arrow.svg");
          background-repeat: no-repeat;
          background-size: 10px;
          background-position: center;
          vertical-align: middle;
          margin-left: 0.5em; }
  .main-list a.main-list-item:nth-child(2) h3 {
    background: #5eae43; }
  .main-list a.main-list-item:nth-child(2) .inner span:after {
    background-color: #5eae43; }
  .main-list a.main-list-item:nth-child(3) h3 {
    background: #38819a; }
  .main-list a.main-list-item:nth-child(3) .inner span:after {
    background-color: #38819a; }

/*------------------------------------------------------
お知らせ
-------------------------------------------------------*/
.news {
  z-index: 2;
  max-width: 1200px;
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  margin-bottom: 70px; }
  @media screen and (max-width: 1024px) {
    .news {
      margin: 10px 10px 50px 10px; } }
  .news h2 {
    text-align: center;
    font-weight: bold;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #246699;
    margin-bottom: 1em; }
  @media screen and (max-width: 1024px) {
    .news {
      right: 10px; } }
  @media screen and (max-width: 1400px) {
    .news {
      padding: 20px; } }

/*------------------------------------------------------
　タブの切り替え
-------------------------------------------------------*/
.tabs {
  position: relative;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 20px; }
  .tabs .tab-label {
    display: inline-block;
    text-align: center;
    color: #fff;
    margin: 0;
    padding: 0.3em 1em;
    width: 160px;
    border-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: -0.01em;
    position: relative;
    height: 2.6em;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 6em;
    z-index: 0;
    border-color: #000; }
    @media screen and (max-width: 1200px) {
      .tabs .tab-label {
        min-width: 0; } }
    @media screen and (max-width: 768px) {
      .tabs .tab-label {
        height: 3.2em; } }
  .tabs .tab-label:hover {
    background-color: #000;
    color: #fff; }
  .tabs input[name="tab-radio"],
  .tabs .tab-content {
    width: 100%;
    display: none;
    clear: both;
    font-size: 16px;
    color: #fff;
    text-align: left;
    position: relative;
    z-index: 1;
    padding: 10px;
    margin: 10px 0 0 10px; }
    @media screen and (max-width: 768px) {
      .tabs input[name="tab-radio"],
      .tabs .tab-content {
        margin: 10px 0; } }

@media screen and (max-width: 768px) {
  .tabs {
    gap: 10px; }
    .tabs .tab-label {
      font-size: 12px;
      width: calc( 33.33% - 10px );
      padding: 1em 0;
      margin: 0;
      border-radius: 5px; }
      .tabs .tab-label.fast {
        margin: 0; }
    .tabs .tab-content {
      padding: 10px;
      margin-top: 10px; } }
/* 選択されているタブのコンテンツのみを表示 */
.tabs #tab-1:checked ~ .tab-1-content,
.tabs #tab-2:checked ~ .tab-2-content,
.tabs #tab-3:checked ~ .tab-3-content,
.tabs #tab-4:checked ~ .tab-4-content,
.tabs #tab-5:checked ~ .tab-5-content,
.tabs #tab-6:checked ~ .tab-6-content {
  display: block; }

.tabs #tab-1 + .tab-label {
  background: #246699; }

.tabs #tab-2 + .tab-label {
  background: #eb7a77; }

.tabs #tab-3 + .tab-label {
  background: #3a89d9; }

.tabs #tab-4 + .tab-label {
  background: #dda52d; }

.tabs #tab-5 + .tab-label {
  background: #00a3a0; }

/* 選択されているタブのスタイルを変える */
.tabs input[name="tab-radio"]:checked + .tab-label {
  color: #fff;
  height: 3em;
  z-index: 2; }
  @media screen and (max-width: 768px) {
    .tabs input[name="tab-radio"]:checked + .tab-label {
      height: 3.8em; } }
