@charset "UTF-8";
/* 上部メニュー帯 */

    .l-header {
        background-color: #ffffff;
        border-bottom: 1px solid #ccc;
        height: 74px;
    }
    @media (max-width: 576px) {
        .l-header {
            position: fixed;
        }
    }

/* 上部メニューのロゴ */
    .l-header .logo {
        background-image: url(../images/header/smile_logo.png);
        background-repeat: no-repeat;
        background-size: cover;
        width: 380px;
        height: 60px;
        position: absolute;
        left: 10px;
        top: 5px;
    }
    @media (max-width: 576px) {
        .l-header .logo {
            width: 130px;
            height: 50px;
            left: 10px;
            top: 5px;
        }
    }

/* 上部メニューの配置 */
/*
    .l-header .left-menu {}
    .l-header .right-menu {}
    @media screen and (max-width: 768px) {
        .l-header .left-menu {}
        .l-header .right-menu {}
    }
*/

/* 上部　左メニューの配置 */
  .l-header .left-menu {
    display: flex;
    position: absolute;
    left: 400px;
    top: 16px; }
    @media screen and (max-width: 768px) {
      .l-header .left-menu {
        display: none; } }
    .l-header .left-menu li {
      display: block; }
      .l-header .left-menu li a {
        display: block;
        color: #000000;
        text-decoration: none;
        padding: 10px 20px; }
      .l-header .left-menu li a:hover,
      .l-header .left-menu li a.active {
        background-color: #87cefa;
        stroke: #fff; }



/* 上部　右メニューの配置 */
  .l-header .right-menu {
    display: flex;
    position: absolute;
    right: 1em;
    top: 10px; }
    .l-header .right-menu > li:not(.text) {
      display: block;
      padding: 10px 10px; }
      .l-header .right-menu > li:not(.text) a {
        display: block;
        padding: 10px;
        background-color: #fff;
        width: 40px;
        height: 40px;
        border-radius: 25px;
        text-decoration: none; }
      .l-header .right-menu > li:not(.text) a:hover,
      .l-header .right-menu > li:not(.text) a.active {
        background-color: #87cefa;
        stroke: #fff; }

    .l-header .right-menu > li.text {
      color: #fff; }
      .l-header .right-menu > li.text a {
        display: block;
        color: #000000;
        text-decoration: none;
        padding: 10px 20px;
        margin-top: 7px; }
      .l-header .right-menu > li.text a:hover,
      .l-header .right-menu > li.text a.active {
        background-color: #87cefa;
        stroke: #fff; }

/* ボタン */

    .btn {
        display: inline-block;
        border-radius: 8px;
        font-size: 1rem;
        padding: 0.6em;
        font-weight: 300;
        white-space: nowrap;
        text-align: center;
        text-decoration: none;
        border: 1px solid #ccc;
        min-width: 150px;
    }
    @media (max-width: 576px) {
        .btn {
            min-width: 100px;
        }
    }
    .btn.active {
        background-color: #2e8b57 !important;
        color: #fff !important;
    }

.col-bgblu {
  background-color: #000080 !important;
  color: #fff !important; }



/* 2022/06/30  小倉追加 */
.public_slick .item_img {
    display: block;
    width: 100%;
    padding-bottom: 56.2%;
    overflow: hidden;
    position: relative;
}
.public_slick a{
    text-decoration: none !important;
}
.public_slick .item_img img {
    display: block;
    position: absolute;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center center;
}