html {
    width: 100%;
    height: 100%;
    color: #171717;
    font-size: 62.5%;
    font-family: 'IBM Plex Sans JP', sans-serif;
}

body {
    font-size: 1.6rem;
    font-weight: 400;
    background: #F8F2ED
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600;
}

img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 100%;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.wrapper {
    overflow: hidden;
}

.container {
    box-sizing: border-box;
    max-width: 1140px;
    padding: 0 20px;
    margin: 0 auto;
}

.facility-tag-list {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.facility-tag-list__item + .facility-tag-list__item {
    margin-left: 20px;
}

.facility-tag {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
    overflow: hidden;
}

.facility-tag__row {
    color: inherit;
    display: flex;
    width: 200px;
    height: 65px;
    text-decoration: none;
    transition: opacity 0.25s;
}

.facility-tag__row:hover {
    opacity: 0.8;
}

.facility-tag__category-en {
    color: #fff;
    flex: 0 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.08;
    writing-mode: vertical-rl;
    box-sizing: border-box;
    padding-right: 3px;
}

.facility-tag--day-service .facility-tag__category-en {
    background-color: #F0BE50;
}

.facility-tag--group-home .facility-tag__category-en {
    background-color: #F08278;
}

.facility-tag__title {
    flex: 1 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.facility-tag__title img {
    height: 40px;
    vertical-align: bottom;
}

/*=====================================================*/
/*  共通非表示                                           */
/*=====================================================*/
.pc-view {
    display: block
}

.sp-view {
    display: none
}

@media only screen and (max-width: 767px) {
    .pc-view {
        display: none;
    }

    .sp-view {
        display: block;
    }
}


/* ---------------------------------------------
*   Header
--------------------------------------------- */
.header {
    color: #fff;
}

.header__logo {
    width: 190px;
    height: 190px;
    background-color: #fff;
    border-radius: 0 0 15px 0;
    line-height: 1;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 200;
}

.header__logo a {
    box-sizing: border-box;
    color: inherit;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-bottom: 15px;
    text-decoration: none;
    transition: opacity 0.25s;
}

.header__logo a:hover {
    opacity: 0.8;
}

.header__logo-img {
    width: 112px;
    vertical-align: bottom;
}

@media screen and (max-width: 991px) {
    .header__logo {
        width: 85px;
        height: 85px;
        border-radius: 0 0 10px 0;
    }

    .header__logo a {
        padding-bottom: 10px;
    }

    .header__logo-img {
        width: 50px;
    }
}


/* ---------------------------------------------
*   Global Nav
--------------------------------------------- */
.gnav {
    color: #fff;
    background-color: #185E34;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 100%;
    z-index: 900;
    opacity: 0;
    overflow: scroll;
    transition: bottom 0s 0.4s, opacity 0.3s 0s;
}

.gnav.is-active {
    bottom: 0;
    opacity: 1;
    transition: bottom 0s 0s, opacity 0.3s 0.1s;
}

.gnav-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    min-height: 100%;
    margin: 0 auto;
    padding: 0 20px;
}

.gnav-grid {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto 1fr;
    grid-template-areas:
        "facility facility facility"
        "konomi kokoro common"
        "konomi imadu common";
    gap: 30px 40px;
}

.gnav__facility {
    grid-area: facility;
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.gnav__facility .facility-tag-list {
    margin: 0 auto;
}

.gnav-menu-group--konomi {
    grid-area: konomi;
}

.gnav-menu-group--kokoro {
    grid-area: kokoro;
}

.gnav-menu-group--imadu {
    grid-area: imadu;
}

.gnav-menu-group a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.gnav-menu-group a:hover {
    opacity: 0.8;
}

.gnav-menu-group__name {
    font-size: 1.8rem;

    margin: 0 0 15px;
}

.gnav-menu-group--common {
    grid-area: common;
}

.gnav-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gnav-menu .gnav-menu__item {
    font-size: 2.0rem;
    font-weight: bold;
    text-align: center

}

.gnav-menu .gnav-menu__item + .gnav-menu__item {
    margin: 15px 0;
}

.gnav-menu--nested {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.25em;
}

.gnav-menu--nested .gnav-menu__item {
    font-size: 1.5rem;

}

.gnav-menu--nested .gnav-menu__item::before {
    content: '-　';
}

.gnav-menu--nested .gnav-menu__item + .gnav-menu__item {
    margin-top: 8px;
}

.gnav-toggle {
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    background: #6DB970;
    appearance: none;
    border-radius: 0 0 0 15px;
    width: 110px;
    height: 110px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
}

.gnav-toggle__bar {
    top: 40px;
    left: 27px;
    margin-top: -2.5px;
    transition: background-color 0s 0.15s;
}

.gnav-toggle__bar,
.gnav-toggle__bar::before,
.gnav-toggle__bar::after {
    content: '';
    display: block;
    width: 56px;
    height: 5px;
    background-color: #fff;
    border-radius: 2.5px;
    position: absolute;
}

.gnav-toggle__bar::before {
    top: -20.5px;
    transition: top 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle__bar::after {
    bottom: -20.5px;
    transition: bottom 0.15s 0.15s, transform 0.15s 0s;
}

.gnav-toggle.is-active .gnav-toggle__bar {
    background-color: transparent;
    transition: background-color 0s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle.is-active .gnav-toggle__bar::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.15s 0s, transform 0.15s 0.15s;
}

.gnav-toggle__label {
    color: #fff;
    font-size: 1.6rem;

    line-height: 1;
    text-align: center;
    letter-spacing: 0.1em;
    text-indent: 0.1em;
    position: absolute;
    bottom: 22px;
    left: 0;
    right: 0;
    z-index: 0;
}

@media screen and (max-width: 991px) {

.gnav-menu .gnav-menu__item {
    font-size: 1.8rem;
    font-weight: 400;

}

.gnav-menu .gnav-menu__item + .gnav-menu__item {
    margin: 15px 0;
}
    
    .gnav-grid {
        display: block;
        gap: 0;
    }

    .gnav__facility {
        margin-bottom: 30px;
    }

    .gnav__facility .facility-tag-list {
        display: block;
        width: 200px;
        margin: 0 auto;
    }

    .gnav__facility .facility-tag-list__item + .facility-tag-list__item {
        margin-left: 0;
        margin-top: 20px;
    }

    .gnav-menu-group + .gnav-menu-group {
        margin-top: 0;
    }

    .gnav-toggle {
        border-radius: 0 0 0 8px;
        width: 70px;
        height: 70px;
    }

    .gnav-toggle__bar {
        top: 26px;
        left: 17px;
        margin-top: -1.5px;
    }

    .gnav-toggle__bar,
    .gnav-toggle__bar::before,
    .gnav-toggle__bar::after {
        width: 36px;
        height: 3px;
        border-radius: 1.5px;
    }

    .gnav-toggle__bar::before {
        top: -13px;
    }

    .gnav-toggle__bar::after {
        bottom: -13px;
    }

    .gnav-toggle__label {
        font-size: 1rem;
        bottom: 10px;
    }
}


/* ---------------------------------------------
*   Footer
--------------------------------------------- */
.footer {
    color: #fff;
    background-color: #185E34;
    position: relative;
    z-index: 0;
}

.footer-row {
    display: flex;
    justify-content: space-between;
    padding: 65px 0 70px;
}

.footer__logo {
    margin: 0 0 20px;
}

.footer__logo a {
    color: #fff;
    display: inline-block;
    text-decoration: none;
    text-align: center;
}

.footer__logo-img {
    width: 282px;
}

.footer__data {

    line-height: 1.75;
    margin: 0;
}

.footer__data a {
    color: #fff
}

.footer-nav {
    display: grid;
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto 1fr;
    grid-template-areas:
        "konomi kokoro common"
        "konomi imadu common";
    gap: 30px 40px;
}

.footer-menu-group--konomi {
    grid-area: konomi;
}

.footer-menu-group--kokoro {
    grid-area: kokoro;
}

.footer-menu-group--imadu {
    grid-area: imadu;
}

.footer-menu-group--common {
    grid-area: common;
}

.footer-menu-group a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.25s;
}

.footer-menu-group a:hover {
    opacity: 0.8;
}

.footer-menu-group__name {
    font-size: 1.7rem;
    font-weight: 400;
    margin: 0 0 15px;
}

.footer-menu-group--common {
    grid-area: common;
}

.footer-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-menu .footer-menu__item {
    font-size: 1.7rem;

}

.footer-menu .footer-menu__item + .footer-menu__item {
    margin-top: 15px;
}

.footer-menu--nested {
    list-style: none;
    margin: 0;
    padding: 0 0 0 1.0em;
}

.footer-menu--nested .footer-menu__item {
    font-size: 1.5rem;

}

.footer-menu--nested .footer-menu__item::before {
    content: '-　';
}

.footer-menu--nested .footer-menu__item + .footer-menu__item {
    margin-top: 8px;
}

.footer__copyright {
    font-size: 1.5rem;

    background-color: #0D2B19;
    text-align: center;
    padding: 8px 0;
    margin: 0;
}

.scroll-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #EB8145;
    position: fixed;
    right: 15px;
    bottom: -100px;
    z-index: 800;
    opacity: 0;
    transition: bottom 0s 0.3s, opacity 0.25s;
}

.scroll-btn.is-active {
    bottom: 15px;
    opacity: 1;
    transition: bottom 0s 0s, opacity 0.25s 0.05s;
}

.scroll-btn img {
    width: 22px;
    vertical-align: bottom;
}

@media screen and (max-width: 767px) {
    .footer-row {
        display: block;
        padding: 0;
    }

    .footer-col--left {
        padding: 50px 0 40px;
    }

    .footer-col--right {
        background-color: #134A29;
        margin: 0 -20px;
        padding: 35px 50px;
    }

    .footer__logo {
        text-align: center;
    }

    .footer__logo-img {
        width: 220px;
    }

    .footer__data {
        text-align: center;
    }

    .footer-nav {
        display: block;
        gap: 0;
    }

    .footer-menu-group + .footer-menu-group {
        margin-top: 20px;
    }

    .footer__copyright {
        font-size: 1.4rem;
    }
}


/* ---------------------------------------------
*   Top
--------------------------------------------- */
.top-sec {
    background-color: #fff;
    padding: 26px 20px 20px;
    position: relative;
}

.top-slider .swiper-slide {
    /* .top-secのpaddingの高さを引く */
    height: calc(100vh - 20px - 26px);
    border-radius: 0 0 50px 0;
    overflow: hidden;
}

.top-slider__slide {
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

.top__title {
    font-size: 1.1rem;
    line-height: 1;
    margin: 0;
    position: absolute;
    top: 8px;
    left: 20px;
    z-index: 300;
}

.top__overlay {
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.top__facility {
    position: absolute;
    top: 45px;
    right: 150px;
}

.top__message {
    margin: 0 125px 0 0;
}

.top__message img {
    width: 150px;
}

@media screen and (max-width: 991px) {
    .top__title {
        display: none;
    }

    .top__facility {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .top-sec {
        padding: 10px;
    }

    .top-slider .swiper-slide {
        /* .top-secのpaddingの高さを引く */
        height: calc(100vh - 10px - 10px);
        border-radius: 0 0 25px 0;
    }

    .top__title {
        display: none;
    }

    .top__facility {
        display: none;
    }

    .top__message {
        margin: 0 35px 0 0;
    }

    .top__message img {
        width: 100px;
    }
}


/* ---------------------------------------------
*   Facility
--------------------------------------------- */
.facility-sec {
    background-color: #F8F2ED;
    padding: 100px 0;
}

.facility-sec__header {
    display: flex;
    align-items: center;
    margin: 0 0 35px;
}

.facility-sec__title {
    flex: 0 0 auto;
    font-size: 4.1rem;
    font-weight: 400;
    margin: 0;
}

.facility-sec__description {
    flex: 1 1 auto;

    line-height: 1.75;
    margin: 0;
    padding-left: 60px;
    position: relative;
    z-index: 0;
}

.facility-sec__description::before {
    content: '';
    display: block;
    width: 3px;
    height: 46px;
    background-color: #171717;
    position: absolute;
    left: 30px;
    top: 50%;
    margin-top: -23px;
}

.facility-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 250px);
    padding: 0;
    margin: 0;
    gap: 30px;
    list-style: none;
}

.facility-list__item--konomi {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.facility-list__item--kokoro {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.facility-list__item--imadu {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.facility-card {
    border-radius: 15px;
    overflow: hidden;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 0;
}

.facility-card__link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    transition: opacity 0.25s;
}

.facility-card__link::before {
    content: '';
    display: block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    z-index: 0;
}

.facility-card--day-service .facility-card__link::before {
    background-image: url(../img/top/badge_dayservice.svg);
    width: 130px;
    height: 130px;
    top: 15px;
    left: 15px;
}

.facility-card--group-home .facility-card__link::before {
    background-image: url(../img/top/badge_grouphome.svg);
    width: 90px;
    height: 90px;
    right: 180px;
    bottom: 19px;
}

.facility-card__link:hover {
    opacity: 0.8;
}

.facility-card__title {
    background-color: #fff;
    border-radius: 10px 0 0 10px;
    margin: 0;
}

.facility-list__item--konomi .facility-card__title {
    padding: 17px 33px;
    margin: 0 0 35px;
}

.facility-list__item--kokoro .facility-card__title,
.facility-list__item--imadu .facility-card__title {
    width: 212px;
    margin: 0 0 25px;
    padding: 15px 0 15px 50px;
    box-sizing: border-box;
}

.facility-list__item--konomi .facility-card__title img {
    height: 65px;
}

.facility-list__item--kokoro .facility-card__title img,
.facility-list__item--imadu .facility-card__title img {
    height: 50px;
}


/*追加*/

.facility_top_image img {
    border-radius: 15px;
    margin-bottom: 35px
}

.facility_top_menu {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 20px;
  row-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.facility_top_menu li {
  margin: 0;
  padding: 0;
}

.facility_top_menu a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 60px;
  padding: 5px 50px 0 30px;
  background: #fff;
  border: 3px solid #185E34;
  border-radius: 10px;
  color: #111;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  box-sizing: border-box;
}

.facility_top_menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 14px;
  height: 14px;
  border-top: 2px solid #6DB970;
  border-right: 2px solid #6DB970;
  transform: translateY(-50%) rotate(45deg);
}

.facility_top_menu a:hover {
  opacity: .75;
}

@media screen and (max-width: 767px) {
    .facility-sec {
        padding: 30px 0 50px;
    }

    .facility-sec__header {
        flex-direction: column;
        align-items: flex-start;
        margin: 0 0 20px;
    }

    .facility-sec__title {
        font-size: 2.5rem;
        border-bottom: 3px solid #171717;
        margin: 0 0 15px;
        padding-bottom: 5px;
    }

    .facility-sec__description {
        font-size: 1.5rem;
        line-height: 1.8;
        margin: 0;
        padding-left: 0;
    }

    .facility-sec__description::before {
        display: none;
    }

    .facility-list {
        display: block;
        gap: 0;
    }

    .facility-list__item + .facility-list__item {
        margin-top: 17px;
    }

    .facility-card {
        border-radius: 10px;
    }

    .facility-card__link {
        position: relative;
        z-index: 0;
    }

    .facility-list__item--konomi .facility-card__link {
        padding-top: 74.62%;
    }

    .facility-list__item--kokoro .facility-card__link,
    .facility-list__item--imadu .facility-card__link {
        padding-top: 59.7%;
    }

    .facility-card--day-service .facility-card__link::before,
    .facility-card--group-home .facility-card__link::before {
        width: 80px;
        height: 80px;
        top: 10px;
        left: 10px;
    }

    .facility-card__title {
        margin: 0;
        position: absolute;
        right: 0;
        bottom: 15px;
        text-align: center;
    }

    .facility-list__item--konomi .facility-card__title,
    .facility-list__item--kokoro .facility-card__title,
    .facility-list__item--imadu .facility-card__title {
        width: 165px;
        margin: 0;
        padding: 11px 0;
    }

    .facility-list__item--konomi .facility-card__title img,
    .facility-list__item--kokoro .facility-card__title img,
    .facility-list__item--imadu .facility-card__title img {
        height: 42px;
    }

/*追加*/

.facility_top_image img {
    border-radius: 10px;
    margin-bottom: 20px
}
  .facility_top_menu {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 12px;
    row-gap: 12px;
  }

  .facility_top_menu a {
    min-height: 46px;
    padding: 2px 25px 0 15px;
    font-size: 1.6rem;
      border-radius: 8px;
      border: 2px solid #185E34;
  }

  .facility_top_menu a::after {
    right: 15px;
    width: 10px;
    height: 10px;
  }
    
}


/* ---------------------------------------------
*   Message
--------------------------------------------- */
.message-sec {
    padding: 100px 0;
    background-color: #F5E8D7;
}

.message-sec-row {
    display: flex;
    min-width: 0;
}

.message-sec-col--text {
    flex: 0 0 50%;
    margin-right: 45px;
}

.message-sec-col--img {
    flex: 1 1 auto;
}

.message-sec__title {
    color: #EB8145;
    font-size: 2.4rem;
    margin: 0 0 0px;
}

.message-sec__message {
    font-size: 3.4rem;
    line-height: 1.5;
    margin: 0 0 20px;
}

.message-sec__description {

    line-height: 2;
    margin: 0;
}

.message-sec__img-container {
    margin-right: min(calc((100vw - 1100px) / 2 * -1), -20px);
}

.message-sec__img {
    height: 720px;
    background-image: url(../img/top/message.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 50px 0 0 50px;
}

@media screen and (max-width: 767px) {
    .message-sec {
        padding: 40px 0 20px;
    }

    .message-sec-row {
        display: block;
    }

    .message-sec-col--text {
        margin-right: 0;
        margin-bottom: 25px;
    }

    .message-sec__title {
        font-size: 1.5rem;
        margin: 0 0 0;
    }

    .message-sec__message {
        font-size: 2.2rem;
        line-height: 1.5;
        margin: 0 0 15px;
    }

    .message-sec__description {
        font-size: 1.5rem;
        line-height: 1.9;
        margin: 0;
    }

    .message-sec__img-container {
        margin-right: -20px;
    }

    .message-sec__img {
        height: auto;
        padding-top: 106.47%;
        border-radius: 20px 0 0 20px;
    }
}


/* ---------------------------------------------
*   Diary
--------------------------------------------- */
.diary-sec {
    background-color: #F8F2ED;
    padding: 100px 0;
}

.diary-sec-row {
    display: flex;
    min-width: 0;
}

.diary-sec-col--title {
    width: 90px;
    flex: 0 0 90px;
    margin-right: 8.18%;
}

.diary-sec-col--content {
    width: calc(100% - 90px - 8.18%);
    flex: 1 1 auto;
}

.diary-sec__title {
    font-size: 4.1rem;
    writing-mode: vertical-rl;
    line-height: 1;
    border-left: 3px solid #171717;
    border-right: 3px solid #171717;
    padding: 20px;
    margin: 0;
}

.diary-sec__description {

    line-height: 1.75;
    margin: 0 0 35px;
}

.diary-slider-container {
    margin-right: min(calc((100vw - 1100px) / 2 * -1), -20px);
}

.diary-slider .swiper-wrapper {
    margin: 0 0 40px;
}

.diary-slider .swiper-slide {
    width: 370px;
    margin-right: 35px;
}

.diary-slider .swiper-button-prev,
.diary-slider .swiper-button-next {
    background-color: #1A1A1A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: static;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin: 0;
    transition: opacity 0.25s;
}

.diary-slider .swiper-button-next {
    margin-left: 10px;
}

.diary-slider .swiper-button-prev:hover,
.diary-slider .swiper-button-next:hover {
    opacity: 0.8;
}

.diary-slider .swiper-button-prev::after,
.diary-slider .swiper-button-next::after {
    content: '';
    display: block;
    width: 10px;
    height: 13px;
    background-image: url(../img/common/pagination_arrow.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: left center;
}

.diary-slider .swiper-button-next::after {
    transform: rotate(180deg);
}

.diary-slider .swiper-pagination {
    display: inline-block;
    width: auto;
    margin-left: 10px;
    position: relative;
    top: -2px;
}

.diary-slider .swiper-pagination-bullet {
    background-color: #B4B4B4;
    width: 10px;
    height: 10px;
    margin: 0 10px !important;
    opacity: 1;
}

.diary-slider .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #5A412B;
}

.diary-card {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px 20px 0;
    overflow: hidden;
    min-height: 485px;
    display: flex;
    flex-flow: column;
    justify-content: space-between
}

.diary-card__link {
    color: inherit;
    display: block;
    text-decoration: none;
}

.diary-card__img {
    padding-top: 66.66%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 10px;
    margin: 0 0 18px;
}

.diary-card__date {
    font-size: 1.6rem;
    margin: 0 0 7px;
}

.diary-card__title {
    font-size: 2rem;
    font-weight: 600;
    margin: 0 0 5px;
}

.diary-card__body {
    font-size: 1.5rem !important;
    line-height: 1.75 !important;
    margin: 0;
}

.diary-card__facility {
    color: #fff;
    text-align: center;
    padding: 7px 0 6px;
    margin: 20px -20px 0;
}

.cat-konomi {
    background-color: #5BB6F8;
}

.cat-kokoro {
    background-color: #F85B9D;
}

.cat-imadu {
    background-color: #F8975B;
}

.diary-sec__btn-container {
    margin-top: 40px;
}

.diary-sec__btn {
    display: inline-block;
    width: 260px;
    background-color: #539657;
    border-radius: 30px / 50%;
    color: #fff;
    font-size: 2rem;

    padding: 15px 15px 13px;
    text-decoration: none;
    text-align: center;
    transition: opacity 0.25s;
}

.diary-sec__btn:hover {
    opacity: 0.8;
}

@media screen and (max-width: 767px) {
    .diary-sec {
        padding: 50px 0;
    }

    .diary-sec-row {
        display: block;
    }

    .diary-sec-col--title {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .diary-sec-col--content {
        width: 100%;
    }

    .diary-sec__title {
        font-size: 2.5rem;
        padding: 12px 15px;
        margin: 0 auto;
    }

    .diary-sec__description {
        font-size: 1.5rem;
        margin: 0 0 20px;
    }

    .diary-slider-container {
        margin-right: 0;
    }

    .diary-slider .swiper-wrapper {
        margin: 0 0 25px;
    }

    .diary-slider .swiper-slide {
        width: 100%;
    }

    .diary-card {
        padding: 18px 18px 0;
        min-height: 480px;
    }

    .diary-card__img {
        margin: 0 0 15px;
    }

    .diary-card__date {
        font-size: 1.6rem;
    }

    .diary-card__title {
        font-size: 1.8rem;
    }

    .diary-card__facility {
        font-size: 1.5rem;
        padding: 8px 0 5px;
        margin: 15px -18px 0;
    }

    .diary-sec__btn-container {
        margin-top: 25px;
    }

    .diary-sec__btn {
        width: 210px;
        border-radius: 25px / 50%;
        font-size: 1.6rem;
        padding: 13px 15px 13px;
    }
}


/* ---------------------------------------------
*   Contact
--------------------------------------------- */
.contact-sec {
    background-image: url(../img/top/contact_bg.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 100px 0;
}

.contact-sec__inner {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
}

.contact-sec__message {
    font-size: 2.3rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
}

.contact__tel {
    align-items: flex-end;
    display: flex;
    line-height: 1;
    justify-content: center;
    margin: 15px 0 25px;
}

.contact__tel::before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background-image: url(../img/common/icon_tel.svg);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    margin-right: 10px;
}

.contact__tel-number {
    font-size: 4rem;
    height: 30px;
}

.contact__btn-container {
    text-align: center;
}

.contact__btn {
    background-color: #EB8145;
    color: #fff;
    font-family: "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", " Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, YuGothicM, メイリオ, Meiryo, sans-serif;
    display: block;
    width: 305px;
    margin: 0 auto;
    padding: 19px 20px;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    transition: opacity 0.25s;
}

.contact__btn:hover {
    opacity: 0.8;
}

.contact__btn-text--ja {
    font-size: 2.2rem;
    font-weight: 600;
    display: block;
}

.contact__btn-text--en {
    font-size: 1.2rem;
    display: block;
    margin-top: 8px;
}

@media screen and (max-width: 767px) {
    .contact-sec {
        padding: 50px 0;
    }

    .contact-sec__inner {
        padding: 30px 28px;
    }

    .contact-sec__message {
        font-size: 1.6rem;
    }

    .contact__tel {
        margin: 10px 0 15px;
    }

    .contact__tel::before {
        width: 25px;
        height: 25px;
        margin-right: 6px;
    }

    .contact__tel-number {
        font-size: 3.3rem;
        height: 24px;
    }

    .contact__btn {
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
    }

    .contact__btn-text--ja {
        font-size: 2rem;
    }

    .contact__btn-text--en {
        font-size: 1.2rem;
    }
}


/* ---------------------------------------------
*   Utility
--------------------------------------------- */
@media screen and (max-width: 767px) {
    .hidden-sp {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hidden-pc {
        display: none !important;
    }
}



/* ---------------------------------------------
*   下階層 共通
--------------------------------------------- */

.ud_cont {
    margin: 45px 0 60px
}

.ud_cont p {
    margin: 0 0 1em 0;
    font-size: 1.6rem;
    line-height: 1.9;
}

.ud_cont p:last-of-type {
    margin-bottom: 0
}

.bread {
    display: flex;
    margin: 15px 0 0 0;
    padding-left: 0
}

.bread a {
    color: #ff772a
}

.bread li {
    font-size: 1.4rem;

}

.bread li::after {
    content: ">";
    margin: 0 15px
}

.bread li:last-child::after {
    content: none;
    margin: 0
}

@media screen and (max-width: 767px) {

    .ud_cont {
        margin: 30px 0 40px
    }

    .ud_cont p {
        margin: 0 0 1em 0;
        font-size: 1.6rem;
        line-height: 1.8;
    }

    .bread {
        display: flex;
        margin: 10px 0 0 0
    }

    .bread li {
        font-size: 1.3rem;
    }

    .bread li::after {
        margin: 0 10px
    }
}

/* ---------------------------------------------
*   Page Template
--------------------------------------------- */

.ud_mv {
    height: calc(540px - 20px - 26px);
    border-radius: 0 0 50px 0;
    overflow: hidden;
}

.ud_mv_img {
    height: 540px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

#page .ud_mv_img {
    background-image: url(../img/top/top_slide_pc.jpg)
}

#daiary .ud_mv_img {
    background-image: url(../img/top/top_slide_pc.jpg)
}

#kokoro .ud_mv_img {
    background-image: url(../img/mv/mv-kokoro.jpg)
}

#daiary-kokoro .ud_mv_img {
    background-image: url(../img/mv/mv-kokoro.jpg)
}

#konomi .ud_mv_img {
    background-image: url(../img/mv/mv-konomi2.jpg)
}

#daiary-konomi .ud_mv_img {
    background-image: url(../img/mv/mv-konomi2.jpg)
}

#imadu .ud_mv_img {
    background-image: url(../img/mv/mv-imadu.jpg)
}

#daiary-imadu .ud_mv_img {
    background-image: url(../img/mv/mv-imadu.jpg)
}

#syokuba .ud_mv_img {
    background-image: url(../img/mv/mv-hanyo01.jpg)
}

#policy .ud_mv_img {
    background-image: url(../img/mv/mv-hanyo02.jpg)
}

#kitei .ud_mv_img {
    background-image: url(../img/mv/mv-hanyo02.jpg)
}

#contact .ud_mv_img {
    background-image: url(../img/mv/mv-hanyo03.jpg)
}


#sub .top__overlay h2 {
    margin: 25px 0 0 0;
    font-size: 6.8rem;
    font-weight: 600;
    line-height: 1.25;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    text-shadow: #000000 1px 0 15px;
}

#sub .top__overlay h2 span {
    display: block;
    font-size: 3.2rem
}

@media screen and (max-width: 767px) {

    .ud_mv {
        height: calc(260px - 20px - 26px);
        border-radius: 0 0 25px 0;
    }

    .ud_mv_img {
        height: 260px;
    }

    #sub .top__overlay h2 {
        margin: 20px 0 0 0;
        font-size: 3.5rem;
    }

    #sub .top__overlay h2 span {
        font-size: 2rem
    }
}

/* ---------------------------------------------
*   このみ日記
--------------------------------------------- */

.daiary_ttl {
    text-align: center;
    font-weight: 500;
    padding: 35px 0 5px;
    margin: 0 0 45px
}

.daiary_ttl span {
    font-size: 3.8rem;
    border-top: 3px solid #171717;
    border-bottom: 3px solid #171717;
    padding: 10px 20px 2px;
}

p.daiary_com {
    text-align: center;
    margin-top: 40px;
    font-weight: 500;
    font-size: 1.8rem;
}

.ud_sing_wrap {
    display: flex;
    margin-top: 40px
}

.ud_sing_wrap .main_cont {
    width: calc(100% - 240px);
    padding-right: 50px;
}

.ud_sing_wrap .side_cont {
    width: 240px
}

.ud_sing_wrap .side_cont h4 {
    margin: 5px 0 25px;
    background: #539657;
    color: #fff;
    font-size: 1.8rem;
    padding: 7px 15px 3px;
    border-radius: 6px
}

.ud_sing_wrap .side_cont ul {
    margin: 0 0 30px;
    padding-left: 1.0em
}

.ud_sing_wrap .side_cont ul li {
    margin: 8px 0;
    font-weight: 500;
}


.ud_sing_wrap .side_cont ul li a {
    color: #171717;
    font-size: 1.7rem;
    font-weight:
}

.ud_sing_wrap .side_cont ul li a:hover {
    color: #ff6e1c;
}

.daiary_list {
    display: flex;
    flex-flow: wrap;
    padding-left: 0;
    width: calc(100% + 30px);
    margin: 0
}

.daiary_list li {
    width: calc(100% / 2 - 30px);
    margin-right: 30px;
    margin-bottom: 30px
}

.daiary_list li:nth-child(2n) {
    margin-right: 0
}

.old_link {
    margin-top: 20px
}

.old_link a {
    background: #539657;
    color: #fff;
    padding: 8px 20px 5px 20px;
    border-radius: 50px;

}


@media only screen and (max-width: 767px) {

    .daiary_ttl {
        padding: 20px 0 30px;
        margin: 0
    }

    .daiary_ttl span {
        font-size: 2.6rem;
        border-top: 3px solid #171717;
        border-bottom: 3px solid #171717;
        padding: 7px 20px 2px;
    }

    p.daiary_com {
        margin-top: 25px;
        text-align: left;
        font-size: 1.5rem;
    }

    .ud_sing_wrap {
        display: flex;
        flex-flow: column;
        margin-top: 30px
    }

    .ud_sing_wrap .main_cont {
        width: 100%;
        padding-right: 0;
    }

    .ud_sing_wrap .side_cont {
        width: 100%;
        padding-top: 30px
    }

    .ud_sing_wrap .side_cont h4 {
        margin: 0 0 20px;
        font-size: 1.6rem;
        padding: 6px 10px 3px;
        border-radius: 4px
    }

    .ud_sing_wrap .side_cont ul {
        margin: 0 0 30px;
        padding-left: 1.0em;
    }

    .ud_sing_wrap .side_cont ul:last-of-type {
        margin-bottom: 0
    }

    .ud_sing_wrap .side_cont ul li {
        margin: 5px 0;
    }

    .ud_sing_wrap .side_cont ul li a {
        font-size: 1.6rem;
    }

    .daiary_list {
        flex-flow: column;
        width: 100%
    }

    .daiary_list li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 25px
    }

    #daiary .diary-card {
        min-height: auto
    }

    .old_link {
        margin-top: 15px
    }

    .old_link a {
        padding: 7px 20px 5px 20px;
        font-size: 1.4rem
    }

}

/* ------------------------------
*   投稿フォーマット共通
------------------------------- */

.sng_cont p {
    margin-bottom: 1em;
    line-height: 2
}

.sng_cont p:last-of-type {
    margin-bottom: 0
}

.sng_cont h1 {
    font-size: 3.6rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont h2 {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont h3 {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont h4 {
    font-size: 2.4rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont h5 {
    font-size: 2rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont h6 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0
}

.sng_cont img {
    margin: 15px 0;
}

.sng_cont a {
    color: #CF0357
}

.sng_cont a:hover {
    color: #ff8000
}

h3.daiary_sing_ttl {
    font-size: 3rem;
    border-bottom: 2px solid #171717;
    padding-bottom: 8px
}

p.sing_date {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 25px;
    font-weight: 500
}

p.sing_date span {
    color: #fff;
    font-size: 1.3rem;
    padding: 3px 13px 0;
    border-radius: 30px;
}

.sing_img {
    text-align: center;
    margin-bottom: 40px;
    background: #fff;
    padding: 20px
}

.sing_img img {
    margin: 0;
    width: 100%;
    height: auto
}

.back_link {
    text-align: center;
    width: 280px;
    margin: 35px auto 0;
    background: #539657;
    border-radius: 50px
}

.back_link:hover {
    background: #185E34;
    border-radius: 50px
}

.back_link a {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 500;
    display: block;
    padding: 8px 0 4px
}

/********* 投稿ページ詳細  レスポンシブ *********/
@media only screen and (max-width: 767px) {



    .sng_cont p {
        font-size: 1.5rem;
        line-height: 1.9;
    }

    .sng_cont h1 {
        font-size: 3.2rem;
        margin-bottom: 10px
    }

    .sng_cont h2 {
        font-size: 2.8rem;
        margin-bottom: 10px
    }

    .sng_cont h3 {
        font-size: 2.4rem;
        margin-bottom: 10px
    }

    .sng_cont h4 {
        font-size: 2rem;
        margin-bottom: 10px
    }

    .sng_cont h5 {
        font-size: 1.8rem;
        margin-bottom: 10px
    }

    .sng_cont h6 {
        font-size: 1.6rem;
        font-weight: 700;
        margin: 15px 0
    }

    .sng_cont img {
        margin: 15px 0
    }

    h3.daiary_sing_ttl {
        font-size: 2rem;
        padding-bottom: 6px
    }

    p.sing_date {
        margin: 0 0 15px;
        font-weight: 400
    }

    p.sing_date span {
        font-size: 1.2rem;
        padding: 2px 10px 0;
    }

    .sing_img {
        margin-bottom: 30px;
        padding: 10px
    }

    .sing_img img {
        margin: 0;
    }

    .back_link {
        width: 200px;
        margin: 20px auto 0;
    }

    .back_link a {
        font-size: 1.7rem;
        padding: 6px 0 3px
    }
}

/* ------------------------------
*   ページネーション
------------------------------- */

.pager {
    margin: 0 auto 0
}

.pager .pagination {
    text-align: center;
    font-family: sans-serif
}

.pager .pagination {
    padding: 0;
}

.pager .pagination li {
    display: inline;
    margin: 0 2px;
    padding: 0;
    display: inline-block;
    background: #539657;
    width: 50px;
    height: 50px;
    text-align: center;
    position: relative;
    border-radius: 50px;
    font-size: 1.5rem;
    line-height: 0
}


.pager .pagination li a {
    vertical-align: middle;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    display: table;
    color: #fff;
    text-decoration: none;
    -webkit-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.pager .pagination li a span {
    display: table-cell;
    vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
    color: #fff;
    background: #ff8744;
    border-radius: 50px;
    outline-width: 1.5px;
    outline-style: solid;
    outline-color: #ff8744;
    outline-offset: -1px;
}

/********* ページネーション  レスポンシブ *********/
@media only screen and (max-width: 767px) {

    .pager {
        margin: -10px auto 0
    }

    .pager .pagination {
        text-align: center;
    }

    .pager .pagination li {
        display: none;
        font-size: 1.4rem;
        background: #539657;
    }

    .pager .pagination li.pre,
    .pager .pagination li.next {
        display: inline-block;
        width: 40%;
        height: 50px;
        text-align: center;
    }

    .pager .pagination li.pre a,
    .pager .pagination li.next a {
        width: 100%;
        text-align: center;
    }

    .pager .pagination li.pre span::after {
        content: "　前の10件へ";
    }

    .pager .pagination li.next span::before {
        content: "次の10件へ　";
    }

    .pager .pagination li a:hover,
    .pager .pagination li a.active {
        color: #fff;
        background: #ff8744;
        border-radius: 50px;
    }
}


/* ---------------------------------------------
*   施設別共通
--------------------------------------------- */

.ud_fas_wrap {
    display: flex
}

.ud_fas_wrap .side_cont {
    background: #DDD1C6;
    width: 200px;
    border-radius: 10px;
}

.ud_fas_wrap .main_cont {
    width: calc(100% - 200px);
    padding-left: 60px;
}

.ud_fas_wrap .side_cont h2 {
    margin: 28px 0 22px 23px;
}

.ud_fas_wrap .side_cont h2 img {
    height: 49px
}

.ud_fas_wrap .fas_menu {
    padding-left: 0;
    border-top: 2px dashed #fff;
}

.ud_fas_wrap .fas_menu li {
    border: 1xp solid #fff;
    border-bottom: 2px dashed #fff;
    padding: 15px 0 10px
}

.ud_fas_wrap .fas_menu li a {
    margin: 0 25px;
    color: #171717;
    font-weight: 500;
    font-size: 1.8rem;
}

.ud_fas_wrap .fas_menu li a:hover {
    color: #ff792f
}

.ud_fas_wrap .fas_list {
    padding-left: 0;
    margin: 25px 17px 0 17px
}

.ud_fas_wrap .fas_list li {
    margin: 4px 0
}

.fas_daiary_top {
    margin: 45px 0
}

p.daiary_cat_label {
    text-align: center;
    margin: 30px 0 40px !important;
}

.daiary_cat_label span {
    color: #fff;
    font-weight: 500;
    border-radius: 30px !important;
    padding: 5px 15px 3px;
    font-size: 1.7rem
}

.daiary_bottom_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px
}

.daiary_bottom_nav .archive_select {
    display: flex;
    align-items: center;
}

.daiary_bottom_nav .archive_select select {
    font-size: 1.6rem;
    padding: 8px 8px 6px 8px;
    border-radius: 5p
}

.daiary_bottom_nav .archive_select h4 {
    margin: 0;
    font-size: 1.6rem;
    margin-right: 15px;
    margin-top: 5px
}

.daiary_bottom_nav .fas_select {
    display: flex;
}

.daiary_bottom_nav .fas_select a {
    color: #fff;
    font-size: 1.6rem;
    padding: 3px 10px 0;
    border-radius: 30px;
    margin-left: 12px
}

.ttl_brown {
    background: #390707;
    color: #fff;
    font-weight: 600;
    padding: 8px 8px 5px 12px;
    font-size: 2rem;
    margin: 50px 0 35px
}

.ttl_brown:first-of-type {
    margin-top: 0
}

.ttl_green {
    font-size: 2rem;
    color: #3F8342;
    border-bottom: 3px dotted #3F8342;
    padding-bottom: 4px;
    margin: 25px 0 25px;
    display: inline-block
}

/*日記スライダー*/

.fas_daiary_top .diary-slider-container {
    margin-right: 0;
    width: calc(100% + 25px);
}

.fas_daiary_top .diary-slider .swiper-wrapper {
    margin: 0 0 40px;
}

.fas_daiary_top .diary-slider .swiper-slide {
    width: calc(100% / 3 - 25px);
    /*width: 340px;*/
    margin-right: 25px;
}

.fas_daiary_top .diary-card {
    border-radius: 15px;
    padding: 15px 15px 0;
    min-height: 385px;
}

.fas_daiary_top .diary-card__img {
    border-radius: 8px;
    margin: 0 0 15px;
}

.fas_daiary_top .diary-card__date {
    font-size: 1.4rem;
    margin: 0 0 3px;
}

.fas_daiary_top .diary-card__title {
    font-size: 1.7rem;
    margin: 0 0 5px;
}

.fas_daiary_top .diary-card__body {
    font-size: 1.5rem !important;
    line-height: 1.5 !important;
}

.fas_daiary_top .diary-card__facility {
    padding: 7px 0 5px;
    margin: 10px -20px 0;
    font-size: 1.5rem;
}


.fas_daiary_top .daiary_bottom_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px
}

@media screen and (max-width: 991px) {

    .ud_fas_wrap {
        flex-flow: column-reverse
    }

    .ud_fas_wrap .side_cont {
        width: 100%;
        margin-top: 30px;
        border-radius: 10px;
    }

    .ud_fas_wrap .main_cont {
        width: 100%;
        padding-left: 0;
    }

    .ud_fas_wrap .side_cont h2 {
        margin: 28px 0 22px 23px;
        display: none
    }

    .ud_fas_wrap .fas_menu {
        padding-left: 0;
        border-top: none;
        margin-top: 3px
    }

    .ud_fas_wrap .fas_menu li {
        padding: 12px 0 9px
    }

    .ud_fas_wrap .fas_menu li a {
        margin: 0 18px;
        font-size: 1.6rem;
    }

    .ud_fas_wrap .fas_list {
        padding-left: 0;
        margin: 15px 15px 10px 15px
    }

    .ud_fas_wrap .fas_list li {
        margin: 0px 0
    }

    .fas_daiary_top {
        margin-top: 30px
    }

    p.daiary_cat_label {
        text-align: center;
        margin: 15px 0 25px !important;
    }

    .daiary_cat_label span {
        padding: 5px 15px 3px;
        font-size: 1.4rem
    }

    .daiary_bottom_nav {
        flex-flow: column;
        align-items: flex-start;
        margin-top: 30px
    }

    .daiary_bottom_nav .archive_select {
        display: flex;
        align-items: center;
    }

    .daiary_bottom_nav .archive_select select {
        font-size: 1.5rem;
        padding: 8px 8px 6px 8px;
        border-radius: 5p
    }

    .daiary_bottom_nav .archive_select h4 {
        margin: 0;
        font-size: 1.6rem;
        margin-right: 10px;
        margin-top: 5px
    }

    .daiary_bottom_nav .fas_select {
        display: flex;
        padding-left: 0;
        margin: 20px 0 0
    }

    .daiary_bottom_nav .fas_select a {
        font-size: 1.4rem;
        padding: 3px 10px 0;
        margin-left: 0;
        margin-right: 10px
    }
}

@media screen and (max-width: 767px) {

    .ttl_brown {
        padding: 6px 8px 4px 9px;
        font-size: 1.7rem;
        margin: 35px 0 25px
    }

    /*日記スライダー*/

    .fas_daiary_top .diary-slider-container {
        margin-right: 0;
        width: 100%;
    }

    .fas_daiary_top .diary-slider .swiper-wrapper {
        margin: 0 0 20px;
    }

    .fas_daiary_top .diary-slider .swiper-slide {
        width: 100%;
        ;
        margin-right: 20px;
    }

    .fas_daiary_top .diary-card {
        min-height: 430px;
    }

    .fas_daiary_top .diary-card__date {
        margin: 0 0 4px;
    }

    .fas_daiary_top .diary-card__facility {
        padding: 6px 0 5px;
        font-size: 1.4rem;
    }

    .ttl_green {
        font-size: 1.7rem;
        border-bottom: 2px dotted #3F8342;
        padding-bottom: 3px;
        margin: 25px 0 20px
    }

}

/* ---------------------------------------------
*   施設スライダー
--------------------------------------------- */


.fas_slide_wrap {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.swiper-thumb {
    margin-top: 8px;
}

.swiper-thumb .swiper-slide {
    opacity: .5;
    transition: opacity .5s ease;
    cursor: pointer;
}

.swiper-thumb .swiper-slide.swiper-slide-thumb-active {
    opacity: 1;
}


.swiper-main img {
    border-radius: 10px;
}

.swiper-thumb .swiper-slide {
    padding-right: 8px;
}

.swiper-thumb {
    width: calc(100% + 8px)
}

.swiper-thumb img {
    border-radius: 8px;
}


@media screen and (max-width: 767px) {
    .swiper-thumb img {
        border-radius: 5px;
    }
}

/* ---------------------------------------------
*   施設トップ
--------------------------------------------- */
.h3_fas_ttl {
    font-size: 3.7rem;
    color: #390707;
    margin: 0 0 35px;
    padding-bottom: 5px;
    border-bottom: 3px dotted #390707;
    font-weight: 500
}

.sec_apr {
    margin: 40px 0
}

.sec_apr h4 {
    font-size: 3.2rem;
    color: #F56614;
    font-weight: 500;
    margin: 0 0 10px
}

.sec_apr p {
    line-height: 1.7;
    padding-bottom: 5px
}

.fas_link {
    margin: 20px 0;
    display: flex
}

.fas_link a {
    background: #539657;
    color: #fff;
    text-decoration: none;
    padding: 11px 50px 8px;
    border-radius: 50px;
    font-size: 2rem;
    margin-right: 15px
}

.fas_link a:hover {
    background: #EB8145
}

.sec_fas_point {
    display: flex;
    flex-flow: wrap;
    margin: 55px 0 0 0;
    padding-left: 0;
    width: calc(100% + 45px)
}

.sec_fas_point li {
    width: calc(100% / 2 - 40px);
    margin-right: 40px;
    margin-bottom: 30px;
    position: relative
}

.sec_fas_point li h5 {
    position: absolute;
    top: 25px;
    width: 8.2em;
    background: #fff;
    font-size: 2rem;
    padding: 8px 10px 5px 10px;
    border-radius: 0 50px 50px 0;
    margin: 0
}

.sec_fas_point li img {
    margin-bottom: 15px;
}

.sec_fas_point li p {
    font-size: 1.5rem;
    line-height: 1.6
}


@media screen and (max-width: 767px) {

    .h3_fas_ttl {
        font-size: 2.2rem;
        margin: 0 0 20px;
        padding-bottom: 5px;
    }

    .sec_apr {
        margin: 30px 0
    }

    .sec_apr h4 {
        font-size: 2.3rem;
        margin: 0 0 10px
    }

    .sec_apr p {
        padding-bottom: 5px
    }

    .fas_link {
        margin: 15px auto 5px;
        flex-flow: column;
        max-width: 220px;
        text-align: center
    }

    .fas_link a {
        padding: 10px 30px 8px;
        font-size: 1.7rem;
        margin-right: 0;
        margin-bottom: 10px
    }

    .sec_fas_point {
        flex-flow: column;
        margin: 35px 0 0 0;
        padding-left: 0;
        width: 100%
    }

    .sec_fas_point li {
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .sec_fas_point li h5 {
        top: 25px;
        width: 8.0em;
        font-size: 1.6rem;
        padding: 8px 10px 5px 10px;
    }

    .sec_fas_point li img {
        margin-bottom: 15px;
        border-radius: 8px
    }

    .sec_fas_point li p {
        font-size: 1.5rem;
        line-height: 1.6
    }
}

/* ---------------------------------------------
*   施設概要
--------------------------------------------- */

.kuushitsu_wrap {
    background: #fff;
    border: 2px solid #390707;
    margin-bottom: 35px;
    border-radius: 10px
}

.kuushitsu_wrap h4 {
    background: #390707;
    border-radius: 8px 8px 0 0;
    color: #fff;
    font-size: 2rem;
    font-weight: 500;
    margin: 0;
    padding: 6px 12px 4px
}

.kuushitsu_wrap .inner {
    padding: 20px 25px 18px 25px
}

.kuushitsu_wrap .inner p.vacancy {
    margin: 0;
    color: #ED0000;
    font-size: 1.85rem;
    font-weight: 500;
}

.kuushitsu_wrap .inner p.att {
    margin: 3px 0 0 0;
    font-size: 1.5rem;
    line-height: 1.5
}

.gaiyou_table {
    border-collapse: collapse;
    background: #fff;
    margin: 30px 0 35px;
    width: 100%
}

.gaiyou_table th,
.gaiyou_table td {
    border: 1px solid #171717;
    padding: 13px 15px 11px;
    line-height: 1.6
}

.gaiyou_table th {
    text-align: left;
    font-weight: 500;
    background: #e0f0e1
}

.fas_iframe {
    margin: 5px 0
}

.fas_gallery {
    padding-left: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 25px)
}

.fas_gallery li {
    width: calc(100% / 4 - 25px);
    margin-right: 25px;
    margin-bottom: 15px
}

.fas_gallery li:nth-of-type(n+9) {
    margin-bottom: 0
}

.fas_gallery li p {
    text-align: center;
    font-size: 1.4rem;
    margin: 5px 0 0 0
}

.fas_gallery li img {
    border-radius: 10px
}

.riyou_tbl h5 {
    margin: 20px 0 8px;
    font-size: 1.7rem;
    text-align: center;
}

.riyou_tbl table {
    border-collapse: collapse;
    width: 100%;
    background: #fff;
    text-align: center;
    margin-bottom: 40px
}

.riyou_tbl table th,
.riyou_tbl table td {
    border: 1px solid #390707;
    padding: 8px 10px 6px
}

.riyou_tbl table th {
    background: #fce8c8
}

@media screen and (max-width: 767px) {

    .kuushitsu_wrap {
        border: 2px solid #390707;
        margin-bottom: 25px;
        border-radius: 8px
    }

    .kuushitsu_wrap h4 {
        border-radius: 6px 6px 0 0;
        font-size: 1.7rem;
        padding: 6px 12px 4px
    }

    .kuushitsu_wrap .inner {
        padding: 14px 15px 12px 15px
    }

    .kuushitsu_wrap .inner p.vacancy {
        font-size: 1.7rem;
    }

    .kuushitsu_wrap .inner p.att {
        margin: 3px 0 0 0;
        font-size: 1.4rem;
        line-height: 1.5
    }

    .gaiyou_table {
        margin: 25px 0 35px;
        border-bottom: 1px solid #171717;
    }

    .gaiyou_table th,
    .gaiyou_table td {
        display: block;
        width: 100%;
        border-bottom: none;
        padding: 10px 10px 8px;
        line-height: 1.6;
        font-size: 1.5rem;
    }

    .gaiyou_table th {
        padding: 7px 10px 4px;
    }

    .fas_iframe {
        height: 250px;
        margin: 0 0
    }

    .fas_gallery {
        padding-left: 0;
        width: calc(100% + 15px);
        margin-bottom: 0
    }

    .fas_gallery li {
        width: calc(100% / 2 - 15px);
        margin-right: 15px;
        margin-bottom: 10px
    }

    .fas_gallery li p {
        font-size: 1.3rem;
        margin: 5px 0 0 0
    }

    .fas_gallery li img {
        border-radius: 8px
    }

    .riyou_tbl h5 {
        margin: 15px 0 8px;
        font-size: 1.6rem;
    }

    .riyou_tbl table {
        -ms-writing-mode: tb-lr;
        writing-mode: vertical-lr;
        margin-bottom: 30px
    }

    .riyou_tbl table th,
    .riyou_tbl table td {
        padding: 0 10px 0;
        vertical-align: middle;
        height: 40px
    }

    .riyou_tbl table th span,
    .riyou_tbl table td span {
        white-space: pre;
        -ms-writing-mode: lr-tb !important;
        writing-mode: horizontal-tb;
        display: inline-block
    }
}

/* ---------------------------------------------
*   利用料金
--------------------------------------------- */

.fee_table {
    border-collapse: collapse;
    background: #fff;
    margin: 25px 0 15px;
    width: 100%
}

.fee_table th,
.fee_table td {
    border: 1px solid #171717;
    padding: 13px 15px 11px;
    line-height: 1.6;
    text-align: center
}

.fee_table th {
    font-weight: 500;
    background: #ffeec7;

}

.fee_table thead th {
    background: #e0f0e1
}

p.fee_att {
    line-height: 1.7;
    margin-bottom: 10px
}


@media screen and (max-width: 767px) {

    .fee_table {
        margin: 25px 0 15px;
        width: 100%
    }

    .fee_table th,
    .fee_table td {
        font-size: 1.5rem;
        padding: 10px 5px 8px;
    }

    .fee_table th {
        padding: 10px 3px 8px;
    }

    .fee_table th span {
        display: block;
        font-size: 1.3rem
    }

    p.fee_att {
        line-height: 1.7;
        margin-bottom: 10px;
        font-size: 1.5rem
    }

}


/* ---------------------------------------------
*   利用料金
--------------------------------------------- */
.ds_fee caption {
    border: 1px solid #171717;
    border-bottom: none;
    background: #fff;
    padding: 12px 8px 8px 8px;
    font-weight: 500;
    font-size: 1.8rem
}

.att_list {
    padding-left: 0.3em;
    margin: 20px 0 40px
}

.att_list:last-of-type {
    margin-bottom: 0
}

.att_list li {
    font-size: 1.5rem;
    margin: 5px 0
}

.att_list li::before {
    content: "*";
    margin-right: 0.5em
}

.riyou_parson {
    padding-left: 0.3rem;
    margin: 0
}

.riyou_parson li {
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 1.7rem
}

.riyou_parson li::before {
    content: "●";
    padding-right: 0.5em
}

.collabo_wrap {
    background: #fff;
    border-radius: 10px;
    border: 2px solid #4E0B0B;
    display: flex;
    margin-top: 30px
}

.collabo_wrap .left {
    background: #4E0B0B;
    color: #fff;
    padding: 20px 10px;
    font-size: 2.2rem;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center
}

.collabo_wrap h5 {
    margin: 0
}

.collabo_wrap .right {
    padding: 15px 20px;
    display: flex;
    align-items: center;
}

.collabo_wrap .right p {
    font-size: 1.7rem;
    line-height: 1.5
}

.madori {
    margin-bottom: 45px
}


@media screen and (max-width: 767px) {

    .ds_fee caption {
        padding: 9px 5px 5px 5px;
        font-size: 1.5rem;
        line-height: 1.5
    }

    .ds_fee caption span {
        font-size: 1.4rem
    }

    .att_list {
        margin: 15px 0 30px
    }

    .att_list:last-of-type {
        margin-bottom: 0
    }

    .att_list li {
        font-size: 1.4rem;
        margin: 3px 0
    }

    .att_list li::before {
        margin-right: 0.3em
    }

    .riyou_parson {
        padding-left: 0.3rem;
        margin: 0
    }

    .riyou_parson li {
        margin-bottom: 5px;
        font-size: 1.6rem
    }

    .collabo_wrap {
        border-radius: 8px;
        border: 2px solid #4E0B0B;
        display: block;
        margin-top: 20px
    }

    .collabo_wrap .left {
        padding: 7px 10px 6px;
        font-size: 1.8rem;
        width: 100%;
    }

    .collabo_wrap .right {
        padding: 15px 15px 13px;
        text-align: left
    }

    .collabo_wrap .right p {
        font-size: 1.6rem;
        line-height: 1.6
    }

    .madori {
        margin-bottom: 30px
    }
}


/* ---------------------------------------------
*   イベントカレンダー
--------------------------------------------- */
.cal_wrap {
    margin-bottom: 30px;
    border: 1px solid #714444
}

.cal_wrap:last-of-type {
    margin-bottom: 0
}

.menu_list {
    padding: 0;
    display: flex;
    flex-flow: wrap;
    width: calc(100% + 25px);
    margin: -15px 0 0 0
}

.menu_list li {
    width: calc(100% / 3 - 25px);
    margin-right: 25px;
    margin-top: 25px
}


@media screen and (max-width: 767px) {

    .cal_wrap {
        margin-bottom: 20px;
    }

    .menu_list {
        width: calc(100% + 15px);
        margin-top: -15px
    }

    .menu_list li {
        width: calc(100% / 2 - 15px);
        margin-right: 15px;
        margin-top: 15px
    }
}

/* ---------------------------------------------
*   個人情報保護方針
--------------------------------------------- */

.privasy-box h4 {
    border-left: 8px solid #539657;
    padding-left: 10px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 500
}

.privasy-box p {
    margin-left: 1em;
    margin-bottom: 1.5em;

}

.privasy-box .acc {
    font-size: 1.7rem;
    margin-top: 12px;
    line-height: 1.7
}

.privasy-box .acc p {
    line-height: 1.6
}

.privasy-box .acc p.ttl {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 5px
}

@media screen and (max-width:768px) {
    .privasy-box h4 {
        padding-left: 10px;
        font-size: 1.6rem;
        margin-bottom: 15px;
        font-weight: 600
    }

    .privasy-box p {
        margin-left: 1em;
        margin-bottom: 1.5em;
        font-size: 1.5rem
    }

    .privasy-box .acc {
        margin-top: 8px;
    }

    .privasy-box .acc p.ttl {
        font-size: 1.7rem;
        margin-left: .6em
    }
}

/* ---------------------------------------------
*   利用料金
--------------------------------------------- */

.kankyo_list {
    padding-left: 1.5em;
    margin: 20px 0 0 0;
    font-weight: 500;
    font-size: 1.7rem
}

.kankyo_list li {
    margin-bottom: 1.5em
}



.kankyo_list ul {
    list-style: disc;
    padding-left: 1em;
    margin-top: 13px
}

.kankyo_list ul li {
    margin-bottom: 0.5em;
    font-weight: 400;
    font-size: 1.6rem
}


@media screen and (max-width: 767px) {

    .kankyo_list {
        padding-left: 1.2em;
        font-size: 1.6rem
    }

    .kankyo_list li {
        margin-bottom: 1.3em
    }

    .kankyo_list ul {
        margin-top: 12px;
        padding-left: 0.8em;
    }

    .kankyo_list ul li {
        margin-bottom: 0.35em;
        font-size: 1.5rem
    }

}


/*---------------------------------------------------------------
 CONTACT FORM
---------------------------------------------------------------*/
.contact_att {
    text-align: center
}

.form {
    margin-right: auto;
    margin-left: auto;
    max-width: 880px;
    padding: 0;
    margin-top: 30px;
    font-size: 1.6rem
}

.form p {
    margin-bottom: 0
}

.form__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: baseline;
    padding: 20px 0 20px;
    border-bottom: 1px dotted #707070;
    font-family: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    -webkit-box-align: baseline;
    align-items: baseline;
}

.firefox .form__item {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
}

.form__ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    width: 235px;
    -webkit-box-align: center;
    align-items: center;
}

.firefox .form__ttl {
    padding-top: 7px;
}

p.form__ttl-item {
    margin-right: 12px !important;
}

.form__ttl-cat--red span {
    background-color: #CE0010;
}

.form__ttl-cat--blue span {
    background-color: #4676D3;
}

.form__ttl-cat span {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    -ms-flex-align: center;
    padding: 5px 6px 4px;
    border-radius: 3px;
    color: #fff;
    font-weight: 300;
    font-size: 1.1rem;
    line-height: 1;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: center;
    justify-content: center;
}

.form__data {
    width: calc(100% - 215px);
}

.form__txt {
    display: block;
    padding: 5px 12px;
    width: 100%;
    height: 42px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.6rem;
}

.form__content {
    display: block;
    padding: 5px 12px;
    width: 100%;
    height: 195px;
    border: 1px solid #707070;
    background-color: #fff;
    color: #4A3535;
    font-size: 1.6rem;
}

.form_select {
    padding: 5px 12px;
    height: 42px;
    font-size: 1.5rem;
}

.form-link {
    display: block;
    margin-top: 20px;
    margin-right: auto;
    margin-left: auto;
    padding: 10px 45px;
    min-width: 200px;
    text-align: center;
    background-color: #0D2350;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
    -webkit-transition: opacity 300ms;
    transition: opacity 300ms;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
    border: none;
    font-family: "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.form-link:first-of-type {
    margin-top: 40px;
}

.form-link:hover {
    opacity: 0.8;
}

.submit_fin {
    text-align: center;
}

.submit_fin .fin {
    font-weight: 600;
    font-size: 3.2rem;
    color: #1d22a0;
}

.form_policy {
    font-size: 1.5rem;
    color: #c11c1c
}

@media screen and (max-width: 767px) {

    .contact_att {
        text-align: left
    }

    .form {
        margin-top: 25px;
        font-size: 1.5rem;
        border-top: 1px solid #b9b9b9;
        padding-top: 5px
    }

    .form p {
        margin-bottom: 0
    }

    .form p {
        font-size: 1.4rem
    }

    .form__item {
        display: block;
        padding: 18px 10px;
    }

    .form__ttl {
        width: 100%;
    }

    .form__data {
        margin-top: 8px;
        width: 100%;
    }

    .form__txt {
        padding: 5px 6px;
        height: auto;
        font-size: 1.5rem;
    }

    .form_select {
        padding: 5px 6px;
        height: auto;
        font-size: 1.4rem;
    }

    .form_radio {}

    .form__ttl-cat span {
        font-size: 1.1rem
    }

    .form__content {
        padding: 6px 6px;
        height: 125px;
        font-size: 1.5rem;
    }

    .form-link {
        margin-top: 20px !important;
        padding: 5px 35px;
        min-width: 120px;
        font-size: 1.5rem;
    }

    .form-link:first-of-type {
        margin-top: 30px;
    }

    .form-link:hover {
        opacity: 0.8;
    }

    .submit_fin {
        text-align: center;
    }

    .submit_fin .fin {
        font-weight: 600;
        font-size: 3.2rem;
        color: #1d22a0;
    }

    .submit_fin {
        text-align: left;
    }

    .submit_fin .fin {
        text-align: center;
        font-size: 2.5rem;
    }
}
