@charset "UTF-8";
/* Scss Document */
@import "normalize.css";
/* Scss Document */
/*=======================================================
    reset
========================================================*/
/* http://meyerweb.com/eric/tools/css/reset/ 
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

* {
  margin: 0;
  padding: 0;
}

/*=======================================================
    font
========================================================*/
.yu-mincho {
  font-family: "Yu Mincho", "YuMincho";
}

.font_en {
  font-family: Copperplate, Copperplate Gothic Light, fantasy;
}

/*=======================================================

    ブレークポイント
========================================================*/
/*-------------- calc mixin ここから ----------------*/
/*-------------- calc mixin ここまで ----------------*/
/*
 * Mixin for placeholder
 * @include placeholderColor(#00ff00);
 */
/*=======================================================

    common

========================================================*/
html {
  font-size: 63.5%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  html {
    font-size: 56.5%;
  }
}

body {
  font-size: 1.8rem;
  height: 100%;
  -webkit-text-size-adjust: 100%;
  color: #333333;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  transition: all 0.3s ease 0s;
  color: #333333;
}
a:hover {
  color: #0F653A;
}

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

@media screen and (max-width: 1100px) {
  .pc02 {
    display: none !important;
  }
}

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

@media screen and (min-width: 1101px) {
  .sp02 {
    display: none !important;
  }
}

.clearfix {
  *zoom: 1;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.no_link {
  opacity: 0.3;
  pointer-events: none;
}

.mincho {
  font-family: "Zen Old Mincho", serif;
}

a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a img {
  transition: all 0.3s ease 0s;
}
a img:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.link {
  color: #000;
  text-decoration: none;
}

.mrgT5 {
  margin-top: 5px;
}

.mrgT10 {
  margin-top: 10px;
}

.mrgT15 {
  margin-top: 15px;
}

.mrgT20 {
  margin-top: 20px;
}

.mrgT25 {
  margin-top: 25px;
}

.mrgT30 {
  margin-top: 30px;
}

.mrgT40 {
  margin-top: 40px;
}

.mrgT50 {
  margin-top: 50px;
}

.mrgT60 {
  margin-top: 60px;
}

.mrgT70 {
  margin-top: 70px;
}

.mrgB5 {
  margin-bottom: 5px;
}

.mrgB10 {
  margin-bottom: 10px;
}

.mrgB15 {
  margin-bottom: 15px;
}

.mrgB20 {
  margin-bottom: 20px;
}

.mrgB25 {
  margin-bottom: 25px;
}

.mrgB30 {
  margin-bottom: 30px;
}

.mrgB40 {
  margin-bottom: 40px;
}

.mrgB50 {
  margin-bottom: 50px;
}

.mrgB60 {
  margin-bottom: 60px;
}

.mrgB70 {
  margin-bottom: 70px;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.fontBold {
  font-weight: bold;
}

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

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.f12 {
  font-size: 1.2rem !important;
}

.f14 {
  font-size: 1.4rem;
}

.f16 {
  font-size: 1.6rem;
}

.f18 {
  font-size: 1.8rem;
}

.red {
  color: #ed1e79;
}

.marker {
  background: linear-gradient(transparent 60%, #ffe800 60%);
  font-weight: bold;
}

/*=======================================================

    header

========================================================*/
@media screen and (max-width: 767px) {
  #container {
    overflow: hidden;
  }
}
#container header {
  width: 100%;
  padding: 0;
  box-sizing: border-box;
  z-index: 9999;
}
@media screen and (max-width: 767px) {
  #container header {
    padding: 0;
  }
}
#container header.is-fixed {
  position: fixed;
  background-color: rgba(255, 255, 255, 0.8);
  animation: nyuru 0.5s;
}
@keyframes nyuru {
  0% {
    margin-top: -158px;
  }
  100% {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  @keyframes nyuru {
    0% {
      margin-top: -78px;
    }
    100% {
      margin-top: 0;
    }
  }
}
#container header .head_inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 15px 30px;
}
@media screen and (max-width: 767px) {
  #container header .head_inner {
    padding: 10px;
  }
}
#container header .head_inner nav .gnav {
  display: flex;
  align-items: center;
}
#container header .head_inner nav .gnav ul {
  margin-right: 30px;
  display: flex;
  align-items: center;
}
#container header .head_inner nav .gnav ul li {
  margin-right: 30px;
  font-size: 1.7rem;
  font-weight: 500;
}
#container header .sp02 h1 img {
  width: 240px;
}
#container .menu-trigger,
#container .menu-trigger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  cursor: pointer;
  color: #fff;
}
#container .menu-trigger {
  width: 50px;
  height: 50px;
  float: right;
  position: fixed;
  top: 1%;
  right: 1%;
  z-index: 9999;
  border-radius: 5px;
  background: #0F653A;
  transform: scale(0.8);
}
#container .menu-trigger span {
  width: 30px;
  height: 3px;
  margin: auto auto auto 10px;
  position: absolute;
  background-color: #fff;
}
#container .menu-trigger span:nth-of-type(1) {
  top: 15px;
}
#container .menu-trigger span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
#container .menu-trigger span:nth-of-type(3) {
  bottom: 15px;
}
#container .menu-trigger {
  padding-right: 20px;
}
#container .menu-trigger.active span {
  background-color: #fff;
}
#container .menu-trigger.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
}
#container .menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}
#container .menu-trigger.active span:nth-of-type(3) {
  transform: translateY(-7px) rotate(45deg);
}
#container #overlay {
  width: 100%;
  height: 100vh;
  margin: auto;
  padding-top: 10%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background-color: #fff;
  display: none;
  text-align: center;
}
#container #overlay ul {
  width: 100%;
  margin: 10px 0;
}
#container #overlay ul li {
  margin: 25px 15px !important;
  text-align: center;
  line-height: 1.6;
  border: 0;
}
#container #overlay ul li span {
  display: block;
  font-size: 1.3rem;
}
#container #overlay ul li a {
  text-decoration: none;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #333;
}
#container footer .download {
  background: #CEEDF6;
}
#container footer .download .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #container footer .download .inner {
    padding: 40px 15px;
  }
}
#container footer .download .inner h2 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#container footer .download .inner ul {
  display: flex;
  justify-content: space-between;
  align-items: end;
  flex-wrap: wrap;
}
#container footer .download .inner ul li {
  width: calc(25% - 30px);
}
@media screen and (max-width: 767px) {
  #container footer .download .inner ul li {
    width: calc(50% - 20px);
    margin-bottom: 20px;
  }
}
#container footer .inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 0;
}
@media screen and (max-width: 767px) {
  #container footer .inner {
    padding: 40px 15px;
  }
}
#container footer .inner nav {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #container footer .inner nav {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  #container footer .inner nav dl {
    margin-bottom: 30px;
  }
}
#container footer .inner nav dl dt {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#container footer .inner nav dl dd ul li {
  margin-bottom: 15px;
}
#container footer .inner nav dl dd ul li::before {
  content: "ー";
  color: #ABC900;
}
#container footer .inner .info {
  display: flex;
  align-items: end;
}
@media screen and (max-width: 767px) {
  #container footer .inner .info {
    display: block;
  }
}
#container footer .inner .info .info_txt {
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  #container footer .inner .info .info_txt {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
#container footer .inner .info .info_txt p {
  line-height: 1.6;
}
#container footer .inner .info ul {
  display: flex;
  align-items: end;
}
#container footer .inner .info ul li {
  margin-right: 30px;
}
#container footer .inner .info ul li:last-child {
  margin-right: 0;
}
#container footer address {
  text-align: center;
  color: #999999;
  padding: 20px 0;
}
#container .fixed_btn {
  position: fixed;
  right: 0;
  top: 10%;
}
@media screen and (max-width: 767px) {
  #container .fixed_btn {
    top: auto;
    bottom: -10px;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  #container .fixed_btn ul {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
}
#container .fixed_btn ul li {
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  #container .fixed_btn ul li {
    width: 50%;
  }
}
#container .fixed_btn ul li a {
  width: 230px;
  padding: 20px;
  display: block;
  box-sizing: border-box;
  color: #fff;
  border-radius: 45px 0 0 45px;
  background: #E60024;
  position: relative;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #container .fixed_btn ul li a {
    width: 100%;
    border-radius: 0;
  }
}
#container .fixed_btn ul li a::after {
  content: url(../img/common/ico_arrow01.svg);
  position: absolute;
  right: 20px;
  top: 20px;
}
#container .fixed_btn ul li:last-child a {
  background: #0F653A;
}

/*=======================================================

    共通レイアウト

========================================================*/
#container img {
  max-width: 100%;
  height: auto;
}
#container .flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  #container .flex .box01 {
    order: 1;
  }
}
@media screen and (max-width: 767px) {
  #container .flex .box02 {
    order: 2;
  }
}
#container .flex img {
  max-width: 100%;
}
#container section p {
  line-height: 2;
  font-weight: 500;
}
#container section .inner {
  padding: 50px 0;
}
@media screen and (max-width: 1100px) {
  #container section .inner {
    padding: 15px 0;
    box-sizing: border-box;
  }
}
#container section .inner .more01 {
  line-height: 1;
}
#container section .inner .more01 a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 240px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 45px;
  text-align: center;
  font-size: 1.6rem;
  text-decoration: none;
  color: #ED8099;
  background: #fff;
  border: 2px solid #ED8099;
  margin: 50px auto 0;
  position: relative;
}
#container section .inner .more01 a::after {
  content: url(../img/common/ico_arrow02.svg);
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
#container section .inner .more01 a:hover {
  background: #ED8099;
  color: #fff;
}
#container section .inner .more01 a:hover::after {
  content: url(../img/common/ico_arrow01.svg);
}
#container section .inner .more02 {
  line-height: 1;
}
#container section .inner .more02 a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 290px;
  padding: 15px;
  box-sizing: border-box;
  border-radius: 45px;
  text-align: center;
  font-size: 2rem;
  text-decoration: none;
  color: #fff;
  background: #E7404B;
  position: relative;
}
#container section .inner .more02 a::after {
  content: url(../img/common/ico_arrow01.svg);
  position: absolute;
  right: 20px;
  top: 15px;
}
#container section .inner .more02 a:hover {
  opacity: 0.8;
}
#container #content .pagenavi {
  text-align: center;
  margin: 50px 0 0;
}
#container #content .inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  #container #content .inner {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
}
#container .wp-pagenavi a, #container .wp-pagenavi span {
  text-decoration: none;
  border: 0;
  margin: 2px 10px;
  color: #707070;
  font-size: 1.6rem;
  border-radius: 50%;
  width: 40px;
  height: 43px;
  line-height: 43px;
  display: inline-block;
  background: #fff;
  border: 1px solid #444;
}
#container .wp-pagenavi a:hover, #container .wp-pagenavi span.current {
  border-color: #b52e82;
  background: #b52e82;
  color: #fff;
}
#container .wp-pagenavi a.nextpostslink {
  border-radius: 20px;
  font-size: 1.3rem;
  width: auto;
  height: auto;
  padding: 10px 10px;
  line-height: 1.6;
}
#container .wp-pagenavi a.previouspostslink {
  border-radius: 20px;
  font-size: 1.3rem;
  width: auto;
  height: auto;
  padding: 10px 10px;
  line-height: 1.6;
}
#container .toTop {
  position: fixed;
  right: 0;
  bottom: 0;
}
#container .contact_area {
  background: url(../img/bg_contact.png) no-repeat center bottom/100%;
}
#container .contact_area .inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 100px 0 80px;
}

/*=======================================================

    TOPコンテンツ

========================================================*/
#top #container {
  overflow: hidden;
}
#top #container section h2.style01 {
  font-weight: 700;
  font-size: 3.4rem;
  color: #0F653A;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #top #container section h2.style01 {
    font-size: 2.6rem;
  }
}
#top #container section h2.style01::before {
  content: url(../img/top/ico_ttl01.svg);
  margin-right: 20px;
}
#top #container section h2.style02 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #top #container section h2.style02 {
    font-size: 2.6rem;
  }
}
#top #container section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  #top #container section .inner {
    padding: 50px 15px;
  }
}
#top #container section .inner p {
  line-height: 1.8;
}
#top #container #mainImg .mv {
  width: 90%;
}
@media screen and (max-width: 767px) {
  #top #container #mainImg .mv {
    width: 95%;
  }
}
#top #container .sec001 .inner p {
  font-size: 2.2rem;
  font-weight: 500;
  padding-bottom: 1em;
  margin-bottom: 1em;
  line-height: 1.4;
  border-bottom: 2px dotted #333333;
}
@media screen and (max-width: 767px) {
  #top #container .sec001 .inner p {
    font-size: 1.8rem;
  }
}
#top #container .sec002 {
  background: #FAF5F2;
  border-radius: 200px;
}
@media screen and (max-width: 767px) {
  #top #container .sec002 {
    border-radius: 20px;
  }
}
#top #container .sec002 .inner {
  position: relative;
}
#top #container .sec002 .inner::before {
  content: url(../img/top/illust01.svg);
  position: absolute;
  right: 0;
  top: 70px;
}
@media screen and (max-width: 767px) {
  #top #container .sec002 .inner::before {
    top: 10px;
  }
}
#top #container .sec002 .inner .box {
  margin-bottom: 30px;
}
#top #container .sec002 .inner .box h3 p {
  font-size: 2.1rem;
  font-weight: 500;
  padding: 5px 10px;
  background: #fff;
  line-height: 1.2;
  margin-bottom: 0.5em;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  #top #container .sec002 .inner .box h3 p {
    font-size: 1.8rem;
  }
}
#top #container .sec002 .inner .box h3 p span {
  color: #ED8099;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #top #container .sec002 .inner .box h3 p span {
    font-size: 2.1rem;
  }
}
#top #container .sec002 .inner .box h3.flex p {
  margin-right: 20px;
}
#top #container .sec002 .inner .box .txt {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 2;
}
#top #container .sec003 .inner .txt {
  font-size: 1.8rem;
  font-weight: 500;
}
#top #container .sec004 .inner .news_list li {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
#top #container .sec004 .inner .news_list li:first-child {
  border-top: 1px solid #CCCCCC;
  padding-top: 20px;
}
#top #container .sec004 .inner .news_list li .date {
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 20px;
}
#top #container .sec004 .inner .news_list li .cont {
  width: 80%;
  font-family: "Noto Sans JP", sans-serif;
}
#top #container .sec004 .inner .news_list li .cont span {
  padding: 1px 10px;
  display: block;
  color: #fff;
  width: 120px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.4rem;
}
#top #container .sec004 .inner .news_list li .cont span.cat-0 {
  background: #3786C8;
}
#top #container .sec004 .inner .news_list li .cont span.cat-1 {
  background: #6DBB58;
}
#top #container .sec004 .inner .news_list li .cont span.cat-2 {
  background: #F09B00;
}
#top #container .sec004 .inner .news_list li .cont span.cat-3 {
  background: #BE62A3;
}
#top #container .sec005 {
  background: #FDEBED;
}
#top #container .sec005 .inner dl dt {
  background: #ED8099;
  color: #fff;
  padding: 15px;
  border-radius: 20px 20px 0 0;
  font-size: 3rem;
  text-align: center;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  #top #container .sec005 .inner dl dt {
    font-size: 2.4rem;
  }
}
#top #container .sec005 .inner dl dd {
  padding: 50px;
  background: #fff;
  border-radius: 0 0 20px 20px;
}
@media screen and (max-width: 767px) {
  #top #container .sec005 .inner dl dd {
    padding: 20px;
  }
}
#top #container .sec005 .inner dl dd ul {
  font-size: 1.8rem !important;
}
#top #container .sec005 .inner dl dd ul li {
  display: flex;
  border-bottom: 1px solid #CCCCCC;
  padding-bottom: 15px;
  margin-bottom: 15px;
  font-size: 1.8rem !important;
}
#top #container .sec005 .inner dl dd ul li b {
  width: 20%;
  line-height: 1.6;
  display: inline-block;
}
#top #container .sec006 .inner h3 {
  text-align: center;
  margin-bottom: 50px;
}
#top #container .sec006 .inner .photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
#top #container .sec006 .inner .photos figure {
  width: calc(50% - 10px);
}
@media screen and (max-width: 767px) {
  #top #container .sec006 .inner .photos figure {
    width: 100%;
    margin-bottom: 20px;
  }
}
#top #container .sec006 .inner table {
  width: 100%;
  margin-bottom: 20px;
}
#top #container .sec006 .inner table tr th {
  background: #F2F2F2;
  padding: 15px;
}
#top #container .sec006 .inner table tr td {
  padding: 15px;
}
#top #container .sec006 .inner .address {
  margin-bottom: 40px;
}
#top #container .sec006 .inner .access_txt {
  margin-top: 20px;
  text-align: center;
  font-size: 1.8rem;
}

/*=======================================================

    下層

========================================================*/
#local #container {
  overflow: hidden;
}
#local #container .title {
  margin-right: 10%;
  position: relative;
}
@media screen and (max-width: 767px) {
  #local #container .title {
    margin-right: 5%;
  }
}
#local #container .title h1 {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  color: #fff;
  z-index: 10;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  font-size: 5.4rem;
  text-align: center;
  line-height: 1.6;
  text-shadow: #333 1px 0 10px;
}
@media screen and (max-width: 767px) {
  #local #container .title h1 {
    font-size: 3rem;
    width: 90%;
  }
}
#local #container .title h1 span {
  display: block;
  font-size: 3.3rem;
}
@media screen and (max-width: 767px) {
  #local #container .title h1 span {
    font-size: 2.2rem;
  }
}
#local #container .title02 {
  text-align: center;
  font-size: 5.4rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #local #container .title02 {
    font-size: 3.8rem;
  }
}
#local #container .title02 span {
  display: block;
  color: #ed8099;
  font-size: 3.4rem;
}
@media screen and (max-width: 767px) {
  #local #container .title02 span {
    font-size: 2.2rem;
  }
}
#local #container section h2.style01 {
  font-weight: 700;
  font-size: 3.4rem;
  color: #0F653A;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #local #container section h2.style01 {
    font-size: 2.6rem;
  }
}
#local #container section h2.style01::before {
  content: url(../img/top/ico_ttl01.svg);
  margin-right: 20px;
}
#local #container section h2.style02 {
  text-align: center;
  font-size: 3.4rem;
  font-weight: 700;
  margin-bottom: 1em;
}
@media screen and (max-width: 767px) {
  #local #container section h2.style02 {
    font-size: 2.6rem;
  }
}
#local #container section .inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 90px 0;
}
@media screen and (max-width: 767px) {
  #local #container section .inner {
    padding: 50px 15px;
  }
}
#local #container section .inner p {
  line-height: 1.8;
}

/*=======================================================

    いきいきデイサービスについて

========================================================*/
#local .about .sec001 .inner .flex {
  justify-content: space-between;
}
#local .about .sec001 .inner .flex li {
  width: calc(50% - 30px);
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  #local .about .sec001 .inner .flex li {
    width: 100%;
  }
}
#local .about .sec001 .inner .flex li h3 {
  border-radius: 15px;
  text-align: center;
  font-size: 2.8rem;
  color: #fff;
  font-weight: 700;
  padding: 15px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #local .about .sec001 .inner .flex li h3 {
    font-size: 2.3rem;
  }
}
#local .about .sec001 .inner .flex li:first-child h3 {
  background: #EBB200;
}
#local .about .sec001 .inner .flex li:nth-child(2) h3 {
  background: #5A87C3;
}
#local .about .sec001 .inner .flex li:nth-child(3) h3 {
  background: #EB7C96;
}
#local .about .sec001 .inner .flex li:last-child h3 {
  background: #28B7AF;
}
#local .about .sec001 .inner .flex li .txt {
  font-weight: 500;
}
#local .about .sec001 .inner .flex li .txt .green {
  color: #28B7AF;
}
#local .about .sec002 {
  background: #E1F5BF;
}
#local .about .sec002 .inner .box {
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  position: relative;
}
#local .about .sec002 .inner .box h2 {
  margin-top: -170px;
}
@media screen and (max-width: 767px) {
  #local .about .sec002 .inner .box h2 {
    margin: 0 0 20px 0;
  }
}
#local .about .sec002 .inner .box figure {
  position: absolute;
  right: -20px;
  top: -140px;
}
@media screen and (max-width: 767px) {
  #local .about .sec002 .inner .box figure {
    position: inherit;
    right: auto;
    top: auto;
    display: block;
  }
}
#local .about .sec002 .inner .box .txt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  #local .about .sec002 .inner .box .txt {
    width: 100%;
  }
}
#local .about .sec004 {
  background: #FAF5F2;
}
#local .about .sec004 ul {
  padding: 30px 50px;
  background: #fff;
  border-radius: 15px;
}
@media screen and (max-width: 767px) {
  #local .about .sec004 ul {
    padding: 15px;
  }
}
#local .about .sec004 ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 15px;
  border-bottom: 1px solid #999999;
  margin-bottom: 15px;
}
#local .about .sec004 ul li:last-child {
  border-bottom: 0;
  padding: 0;
  margin: 0;
}
#local .about .sec004 ul li .month {
  font-size: 3rem;
  width: 15%;
}
@media screen and (max-width: 767px) {
  #local .about .sec004 ul li .month {
    font-size: 2.3rem;
  }
}
#local .about .sec004 ul li .month span {
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #local .about .sec004 ul li .month span {
    font-size: 1.8rem;
  }
}
#local .about .sec004 ul li .txt {
  width: 85%;
  font-size: 2.2rem;
}
@media screen and (max-width: 767px) {
  #local .about .sec004 ul li .txt {
    font-size: 1.6rem;
  }
}
#local .about .sec005 .inner .lead {
  margin-bottom: 40px;
}
#local .about .sec005 .inner .flex {
  justify-content: space-between;
}
#local .about .sec005 .inner .flex li {
  text-align: center;
  width: calc(25% - 5px);
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #local .about .sec005 .inner .flex li {
    width: calc(50% - 5px);
  }
}
#local .about .sec005 .inner .flex li figure figcaption {
  margin-top: 10px;
  font-size: 1.6rem;
  font-weight: 500;
}

/*=======================================================

    ご利用について

========================================================*/
#local .service .sec001 .inner p {
  font-weight: 600;
}
#local .service .sec002 .inner .flex .cont {
  position: relative;
  width: calc(50% - 20px);
}
@media screen and (max-width: 767px) {
  #local .service .sec002 .inner .flex .cont {
    width: 100%;
    margin-bottom: 30px;
  }
}
#local .service .sec002 .inner .flex .cont p {
  font-weight: 600;
  line-height: 2.4 !important;
}
#local .service .sec002 .inner .flex .cont .more02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 290px;
}
@media screen and (max-width: 767px) {
  #local .service .sec002 .inner .flex .cont .more02 {
    position: inherit;
  }
}
#local .service .sec002 .inner .flex figure {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  #local .service .sec002 .inner .flex figure {
    margin: 0;
    flex: none;
    width: 100%;
  }
}
#local .service .sec003 {
  background: #FAF5F2;
}
#local .service .sec003 .box {
  background: #fff;
  padding: 50px;
  border-radius: 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #local .service .sec003 .box {
    padding: 20px;
  }
}
#local .service .sec003 .box h3 {
  font-size: 2.8rem;
  font-weight: 500;
  text-align: center;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom: 1px solid #999999;
}
@media screen and (max-width: 767px) {
  #local .service .sec003 .box h3 {
    font-size: 2.2rem;
  }
}
#local .service .sec003 .box dl {
  margin-bottom: 30px;
}
#local .service .sec003 .box dl.last {
  margin-bottom: 0;
}
#local .service .sec003 .box dl dt {
  font-size: 2.6rem;
  margin-bottom: 0.5em;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #local .service .sec003 .box dl dt {
    font-size: 2rem;
  }
}
#local .service .sec003 .box dl dt::before {
  color: #EFC200;
  content: "●";
  font-size: 2rem;
  margin-right: 20px;
}
#local .service .sec003 .box dl dd {
  line-height: 1.6;
}
#local .service .sec003 .catch::before {
  content: url(../img/service/fig_arrow.svg);
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
#local .service .sec003 .catch {
  font-size: 2.4rem;
  font-weight: 500;
  color: #6E3812;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #local .service .sec003 .catch {
    font-size: 2rem;
  }
}
#local .service .sec003 .catch span {
  color: #E7404B;
  font-size: 2.8rem;
  -webkit-text-decoration: underline double #E7404B;
          text-decoration: underline double #E7404B;
}
@media screen and (max-width: 767px) {
  #local .service .sec003 .catch span {
    font-size: 2.4rem;
  }
}
#local .service .sec004 .inner .lead {
  font-size: 2.6rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #local .service .sec004 .inner .lead {
    font-size: 1.8rem;
  }
}
#local .service .sec004 .inner .lead .pink {
  color: #ED8099;
}
#local .service .sec004 .inner .lead .orange {
  color: #F7931E;
}
#local .service .sec004 .inner dl {
  margin-bottom: 30px;
}
#local .service .sec004 .inner dl dt {
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 2.2rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
#local .service .sec004 .inner dl dt::before {
  font-size: 2.8rem;
  margin-right: 10px;
}
@media screen and (max-width: 767px) {
  #local .service .sec004 .inner dl dt::before {
    font-size: 2.2rem;
  }
}
#local .service .sec004 .inner dl dd {
  line-height: 1.8;
  font-size: 1.8rem;
  padding-left: 40px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #local .service .sec004 .inner dl dd {
    font-size: 1.6rem;
  }
}
#local .service .sec004 .inner dl.no01 dt {
  color: #ED8099;
}
#local .service .sec004 .inner dl.no01 dt::before {
  content: "❶";
}
#local .service .sec004 .inner dl.no02 dt {
  color: #ED8099;
}
#local .service .sec004 .inner dl.no02 dt::before {
  content: "❷";
}
#local .service .sec004 .inner dl.no03 dt {
  color: #ED8099;
}
#local .service .sec004 .inner dl.no03 dt::before {
  content: "❸";
}
#local .service .sec004 .inner dl.no04 dt {
  color: #F7931E;
}
#local .service .sec004 .inner dl.no04 dt::before {
  content: "❹";
}
#local .service .sec004 .inner dl.no05 dt {
  color: #F7931E;
}
#local .service .sec004 .inner dl.no05 dt::before {
  content: "❺";
}
#local .service .sec004 .inner .catch::before {
  content: url(../img/service/fig_arrow.svg);
  display: block;
  text-align: center;
  margin-bottom: 20px;
}
#local .service .sec004 .inner .catch {
  font-size: 3rem;
  font-weight: 500;
  color: #E7404B;
  text-align: center;
}
#local .service .sec004 .inner .more02 a {
  margin: 60px auto 0;
}

/*=======================================================

    お知らせ

========================================================*/
#local .news .sec001 .inner .cat_list {
  max-width: 740px;
  border-bottom: 2px solid #ed8099;
  margin: 0 auto 60px;
}
#local .news .sec001 .inner .cat_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#local .news .sec001 .inner .cat_list ul li {
  width: 20%;
  border-right: 1px solid #fff;
  box-sizing: border-box;
}
#local .news .sec001 .inner .cat_list ul li a {
  display: block;
  padding: 10px;
  background: #cccccc;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
#local .news .sec001 .inner .cat_list ul li a:hover {
  background: #ed8099;
}
#local .news .sec001 .inner .cat_list ul li.is-current a {
  background: #ed8099;
}
#local .news .sec001 .inner .year_list {
  margin: 0 auto 60px;
}
#local .news .sec001 .inner .year_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#local .news .sec001 .inner .year_list ul li {
  border-right: 1px solid #fff;
}
#local .news .sec001 .inner .year_list ul li a {
  display: block;
  padding: 10px 80px;
  background: #cccccc;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
#local .news .sec001 .inner .year_list ul li a:hover {
  background: #ed8099;
}
#local .news .sec001 .inner .year_list ul li.is-current a {
  background: #ed8099;
}
#local .news .sec001 .inner .news_list li {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #CCCCCC;
}
#local .news .sec001 .inner .news_list li .date {
  font-family: "Roboto Condensed", sans-serif;
  margin-right: 20px;
}
#local .news .sec001 .inner .news_list li .cont {
  width: 80%;
  font-family: "Noto Sans JP", sans-serif;
}
#local .news .sec001 .inner .news_list li .cont span {
  padding: 1px 10px;
  display: block;
  color: #fff;
  width: 120px;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.4rem;
}
#local .news .sec001 .inner .news_list li .cont span.cat-0 {
  background: #3786C8;
}
#local .news .sec001 .inner .news_list li .cont span.cat-1 {
  background: #6DBB58;
}
#local .news .sec001 .inner .news_list li .cont span.cat-2 {
  background: #F09B00;
}
#local .news .sec001 .inner .news_list li .cont span.cat-3 {
  background: #BE62A3;
}
#local .news .news_detail .inner h2 {
  font-size: 2.4rem;
  font-weight: 700;
  padding-bottom: 0.5em;
  border-bottom: 1px solid #999999;
  margin-bottom: 1em;
}
#local .news .news_detail .inner #up_ymd {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
#local .news .news_detail .inner .detailText {
  font-size: 1.8rem;
}

/*=======================================================

    お知らせ

========================================================*/
#local .event .sec001 .inner .year_list {
  margin: 0 auto 60px;
}
#local .event .sec001 .inner .year_list ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
#local .event .sec001 .inner .year_list ul li {
  box-sizing: border-box;
}
#local .event .sec001 .inner .year_list ul li a {
  display: block;
  padding: 10px 80px;
  background: #cccccc;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
}
#local .event .sec001 .inner .year_list ul li a:hover {
  background: #ed8099;
}
#local .event .sec001 .inner .year_list ul li.is-current a {
  background: #ed8099;
}
#local .event .sec001 .inner .event_list .box {
  margin-bottom: 50px;
}
#local .event .sec001 .inner .event_list .box h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}
#local .event .sec001 .inner .event_list .box #detail ul li {
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid #999999;
  display: flex;
  font-size: 1.8rem !important;
}
#local .event .sec001 .inner .event_list .box #detail ul li b {
  display: inline-block;
  width: 10%;
}

/*=======================================================

    お問い合わせ

========================================================*/
#local .contact .sec001 .lead {
  font-weight: 700;
  text-align: center;
}
#local .contact .sec001 #formWrap h4 {
  margin-bottom: 1em;
}
#local .contact .sec001 .thanks_txt {
  text-align: center;
}
#local .contact .sec001 .flow {
  margin: 50px auto 50px;
  max-width: 800px;
}
#local .contact .sec001 .flow ul {
  display: flex; /* flexboxで横並びにする */
  justify-content: space-between; /* 横並びにしたものを等間隔で並べる */
  flex-wrap: wrap;
}
#local .contact .sec001 .flow li {
  width: 33.3333333333%; /* 横幅を三等分した1つの大きさに指定 */
  background: #eee; /* 背景色をグレーに指定 */
  line-height: 40px; /* 行間(高さの代わり)を指定 */
  text-align: center; /* 文字を中央寄せにする */
  position: relative; /* 基準位置とする */
  font-weight: 700;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  #local .contact .sec001 .flow li {
    width: 100%;
  }
}
#local .contact .sec001 .flow li::before,
#local .contact .sec001 .flow li::after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute; /* 相対位置に指定 */
}
#local .contact .sec001 .flow li::after {
  border: solid 20px transparent; /* 25pxのborderを指定 */
  border-left: solid 10px #EDEDED; /* 左のborderで背景色と同じ▶の部分を作成する */
  border-right: solid 10px transparent; /* 幅を合わせるために右線は10pxにする */
  top: 0; /* 重ねる位置(縦軸)を調整 */
  right: -20px; /* 重ねる位置(横軸)を調整 */
  z-index: 2; /* 重なり順の優先度を他よりも上げる */
}
#local .contact .sec001 .flow li:first-child::before,
#local .contact .sec001 .flow li:last-child::after {
  content: none; /* 最初のliの左と最後のliの右は作らない */
}
#local .contact .sec001 {
  /* 以下.currentだけ色を変えるCSS */
}
#local .contact .sec001 .flow li.current {
  color: #FFF;
  background: #ed8099 !important;
}
#local .contact .sec001 .flow li:nth-child(2) {
  background: #cccccc;
}
#local .contact .sec001 .flow li:nth-child(2)::after {
  border-left: solid 10px #cccccc;
}
#local .contact .sec001 .flow li.current::after {
  border-left: solid 10px #ed8099;
}
#local .contact .sec001 .formTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 4px;
}
#local .contact .sec001 .formTable tr th {
  padding: 10px;
  background: #fcecf0;
  font-weight: 700;
  text-align: left;
  line-height: 1.4;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  #local .contact .sec001 .formTable tr th {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
#local .contact .sec001 .formTable tr th .require {
  display: block;
  font-size: 1.2rem;
  color: #ff4760;
}
#local .contact .sec001 .formTable tr td {
  padding: 10px;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #local .contact .sec001 .formTable tr td {
    width: 100%;
    box-sizing: border-box;
    display: block;
  }
}
#local .contact .sec001 .formTable tr td input {
  width: 100%;
  padding: 15px;
  border: 1px solid #d6d8d7;
  box-sizing: border-box;
}
#local .contact .sec001 .formTable tr td input.w100 {
  width: 100%;
}
#local .contact .sec001 .formTable tr td input.name::-moz-placeholder {
  text-align: right;
}
#local .contact .sec001 .formTable tr td input.name::placeholder {
  text-align: right;
}
#local .contact .sec001 .formTable tr td textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d6d8d7;
  box-sizing: border-box;
}
#local .contact .sec001 .privacy_box {
  margin: 20px 0 40px;
  font-size: 1.6rem;
}
#local .contact .sec001 .submit {
  text-align: center;
}
#local .contact .sec001 .submit #interlock {
  pointer-events: none;
  opacity: 0.3;
}
#local .contact .sec001 .submit #consent1:checked ~ #interlock {
  pointer-events: auto;
  opacity: 1;
}
#local .contact .sec001 .submit .submit {
  background: #e60024;
  padding: 15px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  width: 250px;
  box-sizing: border-box;
  margin: 40px auto 0;
  font-weight: 700;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
}
#local .contact .sec001 .submit .back {
  background: #707070;
  padding: 15px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  width: 250px;
  box-sizing: border-box;
  margin: 40px auto 0;
  font-weight: 700;
  border-radius: 3px;
  border: 0;
  cursor: pointer;
}

/*=======================================================

    プライバシーポリシー

========================================================*/
#local .privacy .sec001 .inner {
  border-bottom: 1px solid #999999;
}
#local .privacy .sec001 .inner .txt {
  margin-bottom: 30px;
}
#local .privacy .sec001 .inner .box h3 {
  color: #f07d41;
  font-weight: 700;
  margin-bottom: 10px;
}
#local .privacy .sec002 .txt {
  margin-bottom: 30px;
}
#local .privacy .sec002 h2 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 20px;
}
#local .privacy .sec002 h3 {
  font-weight: 700;
  margin-bottom: 10px;
}
#local .privacy .sec002 .box h4 {
  font-weight: 700;
  margin-bottom: 10px;
}/*# sourceMappingURL=style.css.map */