@charset "UTF-8";
/*--◇全体--*/
/*色指定*/
:root {
  --main-color1:#fdfdfd;
  --main-color2:#242424;
  --main-color3:#d86d00;
  --main-color4:#67736f;
  --main-color5:#c9c9c9;
  --main-color6:#116ab8;
  --main-color7:#59a2e3;
  --main-color8:#d0edfd;
  --main-color9:#f3c729;
  --main-color10:#005bac;
  --main-color11:#8b3f20;
  --main-color12:#595757;
}

/*--変数設定--*/
/*横幅*/
/*ブレイクポイント設定*/
/*角丸*/
/*--mixin設定--*/
/*レスポンシブル*/
/*フォントサイズを調整*/
/*影*/
/*グラデーション*/
/*ストライプ*/
/*css柄*/
/*--その他--*/
/*文字の色デフォルト*/
div.ccm-page main div, div.ccm-page main p {
  color: var(--main-color2);
}
@media screen and (max-width: 500px) {
  div.ccm-page main p {
    font-size: 0.9em;
  }
}

/*スマホのみ表示するクラス*/
.sp-only {
  display: none;
}
@media screen and (max-width: 500px) {
  .sp-only {
    display: block;
  }
}

/*タブレット2以下のみ表示するクラス*/
.tb2-only {
  display: none;
}
@media screen and (max-width: 800px) {
  .tb2-only {
    display: block;
  }
}

/*スマホのみ非表示のクラス*/
@media screen and (max-width: 500px) {
  .pc-only {
    display: none;
  }
}

/*画像ブロック中央寄せ*/
.text-img-center {
  text-align: center;
}

/*webボタン*/
div.ccm-page a.web-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 230px;
  text-align: left;
  padding: 0.4em 0.7em 0.5em 0.7em;
  text-decoration: none;
  color: var(--main-color1);
  background-color: var(--main-color6);
  border: 2px solid var(--main-color6);
  transition: all 0.2s;
  padding-right: 1em;
  border-radius: 10px;
}
div.ccm-page a.web-btn::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 0.9em;
  transition: all 0.2s;
  transform: translateY(-50%);
}
div.ccm-page a.web-btn:hover {
  background-color: transparent;
  color: var(--main-color6);
}
div.ccm-page a.web-btn:hover::after {
  right: 0.4em;
}

div.ccm-page a.web-btn.orange {
  background-color: var(--main-color3);
  border-color: var(--main-color3);
  color: var(--main-color1);
}
div.ccm-page a.web-btn.orange:hover {
  background-color: transparent;
  color: var(--main-color3);
}

div.ccm-page a.web-btn.green {
  background-color: var(--main-color6);
  border-color: var(--main-color6);
  color: var(--main-color1);
}
div.ccm-page a.web-btn.green:hover {
  background-color: transparent;
  color: var(--main-color6);
}

/*conctainerの幅調整*/
.container-width {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 3%;
}

.container-width-s {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 3%;
}

.bg-color {
  background-color: var(--main-color1);
  border-radius: 10px;
  padding-top: 20px;
  padding-bottom: 20px;
}

/*ヒトミルネットエディタークラス*/
ul.kagonet_ul li a {
  text-decoration: none;
}
ul.kagonet_ul li::marker {
  color: var(--main-color6);
}

ol.num_ol {
  list-style: none;
  counter-reset: listnum;
  padding-left: 0.3em;
}
ol.num_ol li {
  position: relative;
  padding-left: 1em;
  text-indent: -1.2em;
}
@media screen and (max-width: 500px) {
  ol.num_ol li {
    font-size: 0.9em;
  }
}
ol.num_ol li::before {
  counter-increment: listnum;
  content: counter(listnum) "."; /* 半角スペースを入れて""の中にピリオドを追加 */
  padding-right: 0.2em;
  color: var(--main-color6);
  vertical-align: baseline;
  font-size: 1.05em;
  font-family: "Roboto", sans-serif;
  font-weight: 750;
}

span.kagonet_y_marker {
  background: linear-gradient(transparent 60%, #f5e198 60%);
}

/*見出し*/
div.ccm-page h2 {
  position: relative;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  padding: 0.4em 0.1em 0.45em 0.1em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 500px) {
  div.ccm-page h2 {
    font-size: 1.2em;
  }
}
div.ccm-page h2::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: var(--main-color2);
}
div.ccm-page h2::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  border-radius: 3px;
  background-color: var(--main-color2);
}
div.ccm-page h3 {
  position: relative;
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  padding: 35px 3% 15px 3%;
  z-index: 1;
}
@media screen and (max-width: 500px) {
  div.ccm-page h3 {
    font-size: 1.4em;
  }
}
div.ccm-page h3::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 80px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/application/files/9917/6552/0996/ashirai-blue.png");
  opacity: 0.4;
  z-index: -1;
}
div.ccm-page h4 {
  position: relative;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-left: 1em;
}
@media screen and (max-width: 500px) {
  div.ccm-page h4 {
    font-size: 1.2em;
  }
}
div.ccm-page h4::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 12px;
  height: 100%;
  background-color: var(--main-color6);
}
div.ccm-page h5 {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-color6);
}
@media screen and (max-width: 500px) {
  div.ccm-page h5 {
    font-size: 1.05em;
  }
}

.midashi-02 .jp {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .midashi-02 .jp {
    font-size: 1.4em;
  }
}
.midashi-02 .eng {
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  color: var(--main-color3);
}
@media screen and (max-width: 500px) {
  .midashi-02 .eng {
    font-size: 0.95em;
  }
}

/*パンくずリスト*/
@media screen and (max-width: 500px) {
  #bread-area {
    display: none;
  }
}
#bread-area .breadcrumb {
  justify-content: end;
}
#bread-area .breadcrumb li {
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/*mainのクラス*/
.main-wrap {
  background-color: var(--main-color8);
}

html.ccm-edit-mode .main-wrap {
  padding-top: 130px;
}

/*編集モードの時以外は非表示*/
.main-wrap .display-none {
  display: none;
}

html.ccm-edit-mode .main-wrap .display-none {
  display: block;
}

/*説明用2列*/
.flex-box.colum2 {
  display: flex;
  max-width: 1150px;
  margin: 0 auto;
  height: auto;
  padding: 0 3%;
  margin-bottom: 30px;
}
@media screen and (max-width: 500px) {
  .flex-box.colum2 {
    display: block;
  }
}
.flex-box.colum2 .img {
  width: 40%;
  padding: 10px;
}
@media screen and (max-width: 500px) {
  .flex-box.colum2 .img {
    width: 100%;
  }
}
.flex-box.colum2 .img img {
  border-radius: 10px;
}
.flex-box.colum2 .text {
  width: 60%;
  padding: 10px 3% 10px 5%;
}
@media screen and (max-width: 500px) {
  .flex-box.colum2 .text {
    width: 100%;
    padding: 10px 0;
  }
}
.flex-box.colum2 .text .bold {
  font-size: 1.3em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 0.26em;
}
.flex-box.colum2 .text .bar {
  width: 60px;
  height: 2px;
  background-color: var(--main-color6);
  margin-top: 1em;
  margin-bottom: 1em;
}
.flex-box.colum2.reverse {
  flex-direction: row-reverse;
}
.flex-box.colum2.reverse .text {
  padding: 10px 5% 10px 3%;
}

/*--◇グローバルエリア--*/
/*ロゴ*/
#logo-area {
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 1280px) {
  #logo-area {
    padding: 10px 0;
  }
}

/*左のグローバルナビ*/
#header-left {
  background-image: url("");
  background-repeat: repeat;
  background-size: 15px 15px;
}

.mobile_top_margin {
  display: none;
  overflow: hidden;
}
@media screen and (max-width: 1025px) {
  .mobile_top_margin {
    display: block;
    height: 100px;
    background-color: var(--main-color1);
    background: repeating-linear-gradient(135deg, var(--main-color8), var(--main-color8) 4px, var(--main-color1) 4px, var(--main-color1) 6px);
    padding: 20px;
    padding-top: 33px;
  }
}
.mobile_top_margin span {
  font-size: 2.4em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  overflow: visible;
  color: var(--main-color6);
  text-shadow: 1px 1px 0 var(--main-color1), -1px -1px 0 var(--main-color1), -1px 1px 0 var(--main-color1), 1px -1px 0 var(--main-color1), 0px 1px 0 var(--main-color1), 0 -1px 0 var(--main-color1), -1px 0 0 var(--main-color1), 1px 0 0 var(--main-color1);
}

.gloval_nav {
  background-color: var(--main-color6);
}
.gloval_nav ul {
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  list-style: none;
  padding: 0;
}
.gloval_nav ul li {
  position: relative;
  border-bottom: 1px dotted var(--main-color7);
}
.gloval_nav ul li a {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--main-color1);
  padding: 0.75em 1em;
  padding-right: 1.2em;
  transition: all 0.3s;
}
.gloval_nav ul li a:hover {
  color: var(--main-color6);
  background-color: var(--main-color1);
}
.gloval_nav ul li a.active {
  background-color: var(--main-color10);
}
.gloval_nav ul li a.active:hover {
  color: var(--main-color1);
  background-color: var(--main-color10);
}
.gloval_nav ul li a::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 0.5em;
  color: var(--main-color7);
  font-size: 0.85rem;
  transform: translateY(-50%);
}
.gloval_nav ul li.sp-only a {
  background-image: linear-gradient(to top, rgb(3, 120, 141) 0%, var(--main-color6) 100%);
}

/*上のグローバルナビ（グローバルエリアだがmain-wrap内/tb2以下では非表示）*/
#top-header-area {
  position: relative;
  padding-right: 4%;
  z-index: 10;
}
#top-header-area .flex-box {
  display: flex;
  width: 100%;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 0 0 auto;
  border-radius: 0 0 5px 5px;
  overflow: hidden;
  box-shadow: rgba(50, 50, 50, 0.1) 0px 3px 6px, rgba(50, 50, 50, 0.16) 0px 3px 6px;
}
#top-header-area .flex-box .item a {
  text-decoration: none;
}
#top-header-area .flex-box .item a > div {
  font-size: 1.15em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  color: var(--main-color1);
  text-align: center;
  padding: 20px 20px;
  transition: all 0.2s;
}
#top-header-area .flex-box .item a > div.btn01 {
  background-image: linear-gradient(to top, rgb(3, 120, 141) 0%, var(--main-color6) 100%);
}
#top-header-area .flex-box .item a > div.btn02 {
  background-image: linear-gradient(to top, rgb(3, 120, 141) 0%, var(--main-color6) 100%);
}
#top-header-area .flex-box .item a:hover > div.btn01 {
  background-image: linear-gradient(to top, rgb(0, 88, 104) 0%, #04948d 100%);
}
#top-header-area .flex-box .item a:hover > div.btn02 {
  background-image: linear-gradient(to top, rgb(0, 88, 104) 0%, #04948d 100%);
}
#top-header-area .flex-box .item.line {
  border-right: 1px dotted var(--main-color1);
}

/*フッター*/
.footer-area {
  padding: 50px 3% 70px 3%;
}
.footer-area .flex-box {
  display: flex;
  justify-content: space-between;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 500px) {
  .footer-area .flex-box {
    display: block;
  }
}
.footer-area .flex-box .img-box {
  width: 30%;
}
@media screen and (max-width: 500px) {
  .footer-area .flex-box .img-box {
    width: 100%;
    text-align: center;
    max-width: 250px;
    margin: 0 auto;
  }
}
.footer-area .flex-box .text-box {
  width: 60%;
}
@media screen and (max-width: 500px) {
  .footer-area .flex-box .text-box {
    width: 100%;
  }
}
.footer-area .flex-box .text-box .title {
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .footer-area .flex-box .text-box .title {
    border-bottom: 1px dotted var(--main-color4);
    margin-bottom: 5px;
  }
}
.footer-area .flex-box .text-box .name {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .footer-area .flex-box .text-box .name {
    font-size: 0.9em;
  }
}
.footer-area .flex-box .text-box .tel, .footer-area .flex-box .text-box .address {
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
}

/*◇トップページ*/
#mv-area {
  border-top: 5px solid var(--main-color6);
  background-color: var(--main-color8);
  background-image: linear-gradient(0deg, var(--main-color8), #a6ccf7);
  background-position: center;
  width: 100%;
  padding: 0 0;
}
#mv-area .flex-box {
  background-image: url("");
  background-position: center;
  background-repeat: repeat;
}
@media screen and (max-width: 500px) {
  #mv-area .flex-box {
    background-size: 120%;
  }
}
#mv-area .flex-box .img-box {
  text-align: right;
  padding: 0 0;
}
@media screen and (max-width: 1025px) {
  #mv-area .flex-box .img-box {
    text-align: center;
  }
}
@media screen and (max-width: 1025px) {
  #mv-area .flex-box .img-box {
    width: 100%;
  }
}
#mv-area .flex-box .empty {
  width: 30%;
}

/*MV上のテキストボックス（システム参加状況）*/
html:not(.ccm-edit-mode) #mv-right-area {
  position: absolute;
  top: 2%;
  right: 2%;
  width: 300px;
  height: auto;
}
@media screen and (max-width: 1600px) {
  html:not(.ccm-edit-mode) #mv-right-area {
    top: 1%;
    width: 250px;
  }
}
@media screen and (max-width: 1280px) {
  html:not(.ccm-edit-mode) #mv-right-area {
    top: 1%;
  }
}
@media screen and (max-width: 1025px) {
  html:not(.ccm-edit-mode) #mv-right-area {
    position: static;
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}

html.ccm-edit-mode #mv-right-area {
  background-color: #e1fbff;
}

/*ヒトミルネット紹介*/
#about-hitomiru {
  max-width: 1150px;
  margin: 0 auto;
  height: 90px;
  padding: 0 1%;
}
@media screen and (max-width: 1025px) {
  #about-hitomiru {
    height: auto;
  }
}
#about-hitomiru .about {
  position: relative;
  top: -80px;
  width: 100%;
  max-width: 1150px;
  margin: 0 auto;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  padding: 1em 1em;
  border-radius: 10px;
  border: 4px solid var(--main-color6);
  background-color: var(--main-color1);
}
@media screen and (max-width: 1025px) {
  #about-hitomiru .about {
    position: static;
    margin-top: -20px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 500px) {
  #about-hitomiru .about {
    margin-bottom: 15px;
  }
}
#about-hitomiru .about p {
  margin-bottom: 0;
}

html.ccm-edit-mode #about-hitomiru {
  height: auto;
}
html.ccm-edit-mode #about-hitomiru .about {
  position: static;
}

/*プロモーションムービー*/
.anime-bg video {
  margin: 0 auto;
}

/*お知らせ（date-title-list）*/
ul.date-title-list {
  list-style: none;
  padding-left: 0;
}
@media screen and (max-width: 500px) {
  ul.date-title-list {
    padding-top: 10px;
  }
}
ul.date-title-list li {
  border-bottom: 1px dotted var(--main-color4);
}
ul.date-title-list li:last-child {
  border-bottom: none;
}
ul.date-title-list li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 0.6em 0.3em;
  background-color: transparent;
  transition: all 0.2s;
}
@media screen and (max-width: 500px) {
  ul.date-title-list li a {
    display: block;
  }
}
ul.date-title-list li a div {
  display: inline-block;
  font-weight: 700;
  transition: all 0.2s;
}
@media screen and (max-width: 500px) {
  ul.date-title-list li a div {
    display: block;
    font-size: 0.9em;
  }
}
ul.date-title-list li a div:first-child {
  position: relative;
  margin-right: 75px;
  min-width: 125px;
}
ul.date-title-list li a:hover {
  background-color: var(--main-color8);
}
ul.date-title-list li a:hover div {
  color: var(--main-color6);
}

/*ページネーション*/
.pagination .page-item.active span.page-link {
  background-color: var(--main-color6);
  border-color: var(--main-color6);
}

/*地域住民の方、医療施設介護施設の方*/
.resident-facility {
  background-color: var(--main-color1);
  padding: 20px 5%;
  border-radius: 10px;
  margin-bottom: 30px;
}
.resident-facility .title {
  position: relative;
  text-align: center;
  font-size: 1.5em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.6;
  margin-bottom: 1em;
  z-index: 1;
  padding: 10px 0;
}
@media screen and (max-width: 500px) {
  .resident-facility .title {
    padding: 0 0;
  }
}
.resident-facility .title::before {
  position: absolute;
  content: "";
  width: 200px;
  height: 80px;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-image: url("/application/files/5916/9260/1817/ashirai.png");
  z-index: -1;
  opacity: 0.4;
}
.resident-facility .flex-box {
  display: flex;
}
@media screen and (max-width: 1025px) {
  .resident-facility .flex-box {
    display: block;
  }
}
.resident-facility .flex-box .img-box {
  width: 40%;
  padding: 30px 3%;
}
@media screen and (max-width: 1025px) {
  .resident-facility .flex-box .img-box {
    padding: 10px 3%;
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 1025px) {
  .resident-facility .flex-box .img-box img {
    max-width: 230px;
  }
}
.resident-facility .flex-box .text-box {
  width: 60%;
}
@media screen and (max-width: 1025px) {
  .resident-facility .flex-box .text-box {
    width: 100%;
  }
}
.resident-facility .flex-box .text-box ul {
  list-style: none;
}
@media screen and (max-width: 1025px) {
  .resident-facility .flex-box .text-box ul {
    padding-left: 0;
  }
}
.resident-facility .flex-box .text-box ul li {
  text-align: center;
  margin-bottom: 15px;
}

/*◇サブページ*/
/*ページ上部の余白*/
.top-margin {
  height: 130px;
}
@media screen and (max-width: 500px) {
  .top-margin {
    height: 0px;
  }
}

/*サブページ見出し*/
.subpage-top .box {
  padding: 90px 3% 50px 3%;
}
@media screen and (max-width: 500px) {
  .subpage-top .box {
    padding: 30px 3%;
  }
}
.subpage-top .box h1.jp {
  text-align: center;
  color: var(--main-color6);
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 500px) {
  .subpage-top .box h1.jp {
    font-size: 1.75em;
  }
}
.subpage-top .box p.eng {
  text-align: center;
  color: var(--main-color6);
  font-size: 1.2em;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 0;
}
@media screen and (max-width: 500px) {
  .subpage-top .box p.eng {
    font-size: 1em;
  }
}

/*◇参加施設*/
.googlemap-box {
  background-color: var(--main-color7);
  margin-top: 30px;
  padding: 5px;
}

#googlemap {
  width: 100%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 800px) {
  #googlemap {
    aspect-ratio: 4/3;
  }
}
@media screen and (max-width: 500px) {
  #googlemap {
    aspect-ratio: 1/1.25;
  }
}

/*ページ内リンク*/
.mappage_anchor .flex-box {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  padding: 30px;
  background-color: var(--main-color8);
}
@media screen and (max-width: 1025px) {
  .mappage_anchor .flex-box {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 500px) {
  .mappage_anchor .flex-box {
    grid-template-columns: 1fr 1fr;
    padding: 30px 3%;
  }
}
.mappage_anchor .flex-box a.item {
  width: 100%;
  text-decoration: none;
}
.mappage_anchor .flex-box a.item div {
  width: 100%;
  background-color: var(--main-color9);
  color: var(--main-color11);
  border: solid 2px var(--main-color9);
  text-align: center;
  padding: 0.4em 0.6em 0.5em 0.6em;
  font-size: 1.1em;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.6;
  border-radius: 10px;
  transition: all 0.2s;
}
@media screen and (max-width: 500px) {
  .mappage_anchor .flex-box a.item div {
    font-size: 1em;
  }
}
.mappage_anchor .flex-box a.item:hover div {
  background-color: var(--main-color1);
}

/*施設一覧の表*/
.mappage-table {
  table-layout: fixed;
}
@media screen and (max-width: 1025px) {
  .mappage-table {
    table-layout: unset;
    display: block;
  }
}
@media screen and (max-width: 1025px) {
  .mappage-table thead {
    display: none;
  }
}
.mappage-table thead th {
  background-color: var(--main-color6);
  color: var(--main-color1);
  font-size: 1.05em;
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 1.6;
  border: 1px solid var(--main-color5);
  padding: 0.5em;
  text-align: center;
}
.mappage-table thead th:first-child {
  width: 30%;
}
.mappage-table thead th:nth-child(3) {
  width: 110px;
}
.mappage-table thead th:nth-child(4) {
  width: 110px;
}
.mappage-table thead th:last-child {
  width: 80px;
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody {
    display: block;
    width: 100%;
  }
}
.mappage-table tbody tr {
  background-color: var(--main-color1);
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr {
    display: block;
    width: 100%;
    border: solid 1px var(--main-color5);
    border-bottom: none;
    letter-spacing: -1em;
  }
  .mappage-table tbody tr:last-child {
    border-bottom: solid 1px var(--main-color5);
  }
}
.mappage-table tbody tr th, .mappage-table tbody tr td {
  font-size: 0.95em;
  padding: 1em 0.5em;
  border: 1px solid var(--main-color5);
  vertical-align: middle !important;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr th, .mappage-table tbody tr td {
    display: block;
    width: 100%;
    padding: 0.6em 0.4em;
    border: none;
  }
}
.mappage-table tbody tr th a {
  color: var(--main-color2);
  -webkit-text-decoration: underline solid var(--main-color4);
          text-decoration: underline solid var(--main-color4);
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr th {
    border-bottom: 1px dotted var(--main-color5);
    background-color: var(--main-color8);
    background: repeating-linear-gradient(135deg, var(--main-color8), var(--main-color8) 4px, var(--main-color1) 4px, var(--main-color1) 6px);
  }
}
.mappage-table tbody tr td p {
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 500px) {
  .mappage-table tbody tr td {
    font-size: 0.9em;
  }
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr td:nth-child(2) {
    border-bottom: 1px dotted var(--main-color5);
  }
}
.mappage-table tbody tr td:nth-child(3) {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr td:nth-child(3) {
    position: relative;
    display: inline-block;
    width: 33.3333333333%;
    height: 46px;
  }
}
.mappage-table tbody tr td:nth-child(4) {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr td:nth-child(4) {
    position: relative;
    display: inline-block;
    width: 33.3333333333%;
    border-left: 1px dotted var(--main-color5);
    height: 46px;
  }
}
.mappage-table tbody tr td:last-child {
  text-align: center;
}
@media screen and (max-width: 1025px) {
  .mappage-table tbody tr td:last-child {
    display: inline-block;
    width: 33.3333333333%;
    border-left: 1px dotted var(--main-color5);
    height: 46px;
  }
}
.mappage-table tbody tr td span {
  display: inline-block;
  padding: 0.3em 0.5em 0.4em 0.5em;
  color: var(--main-color4);
  background-color: var(--main-color5);
  border-radius: 10px;
  font-size: 0.9em;
}
.mappage-table tbody tr td span.data_provide {
  color: var(--main-color1);
  background-color: #4085c5;
}
.mappage-table tbody tr td span.card_issue {
  color: var(--main-color1);
  background-color: #e75c5c;
}
.mappage-table tbody tr td .map_btn {
  display: inline-block;
  font-size: 0.9em;
  padding: 0.3em 0.5em 0.4em 0.5em;
  color: var(--main-color1);
  background-color: var(--main-color3);
  border-radius: 10px;
  text-decoration: none;
  margin: 0 auto;
  transition: all 0.2s;
}
.mappage-table tbody tr td .map_btn:hover {
  opacity: 0.8;
}
.mappage-table tbody tr td .map_btn i {
  margin-right: 0.3em;
}

/*◇ヒトミルネットについて*/
/*メリット*/
.merit ul {
  padding-left: 0;
}
.merit ul li.flex-box {
  display: flex;
  width: 100%;
  border-bottom: 2px dotted var(--main-color7);
  list-style: none;
}
@media screen and (max-width: 500px) {
  .merit ul li.flex-box {
    display: block;
    margin-bottom: 10px;
  }
}
.merit ul li.flex-box:last-child {
  border-bottom: none;
}
.merit ul li.flex-box .item.text {
  width: calc(100% - 150px);
  padding: 20px 0;
}
@media screen and (max-width: 500px) {
  .merit ul li.flex-box .item.text {
    width: 100%;
  }
}
.merit ul li.flex-box .item.num {
  font-size: 3em;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1;
  color: var(--main-color6);
  text-align: center;
  padding: 20px 30px 15px 20px;
}
@media screen and (max-width: 500px) {
  .merit ul li.flex-box .item.num {
    text-align: center;
    margin: 0 auto;
    padding: 0 0 0 0;
  }
}
.merit ul li.flex-box .item.num img {
  width: 110px;
}
@media screen and (max-width: 500px) {
  .merit ul li.flex-box .item.num img {
    width: 80px;
  }
}

/*あゆみ*/
table.table-2color {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  background-color: var(--main-color1);
}
table.table-2color tr:nth-child(even) {
  background-color: var(--main-color8);
}
table.table-2color tr th, table.table-2color tr td {
  padding: 1em 0.5em;
}
@media screen and (max-width: 500px) {
  table.table-2color tr th, table.table-2color tr td {
    display: block;
  }
}
table.table-2color tr th {
  font-weight: 700;
  width: 25%;
  max-width: 300px;
  padding-right: 1.5em;
}
@media screen and (max-width: 500px) {
  table.table-2color tr th {
    width: 100%;
  }
}
table.table-2color tr td:first-child {
  font-weight: 700;
  width: 25%;
  max-width: 300px;
  padding-right: 1.5em;
}
@media screen and (max-width: 500px) {
  table.table-2color tr td:first-child {
    width: 100%;
    padding-bottom: 0;
  }
}

/*◇地域住民の方*/
/*お申し込み手順*/
.kagonet-flow .flex-box {
  display: flex;
}
@media screen and (max-width: 500px) {
  .kagonet-flow .flex-box {
    display: block;
  }
}
.kagonet-flow .flex-box .item {
  position: relative;
  width: 33.3333333333%;
  padding: 20px 10px;
}
@media screen and (max-width: 800px) {
  .kagonet-flow .flex-box .item {
    width: 100%;
  }
}
.kagonet-flow .flex-box .item::after {
  position: absolute;
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  top: 50%;
  right: 0.5em;
  color: var(--main-color7);
  font-size: 1.1em;
  transform: translateY(-50%);
}
@media screen and (max-width: 500px) {
  .kagonet-flow .flex-box .item::after {
    content: "";
  }
}
.kagonet-flow .flex-box .item:last-child::after {
  content: "";
}
.kagonet-flow .flex-box .item .step {
  text-align: center;
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  color: var(--main-color4);
  margin-bottom: 20px;
}
@media screen and (max-width: 800px) {
  .kagonet-flow .flex-box .item .step {
    font-size: 0.9em;
  }
}
.kagonet-flow .flex-box .item .img {
  text-align: center;
  margin-bottom: 20px;
}
.kagonet-flow .flex-box .item .img img {
  height: 100px;
}
@media screen and (max-width: 800px) {
  .kagonet-flow .flex-box .item .img img {
    height: 80px;
  }
}
.kagonet-flow .flex-box .item .text {
  font-size: 1em;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.5;
}
@media screen and (max-width: 800px) {
  .kagonet-flow .flex-box .item .text {
    font-size: 0.9em;
  }
}

/*◇よくある質問*/
table.faq-table {
  width: 100%;
}
table.faq-table tr th {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0px 15px 45px;
  margin-top: 15px;
  font-size: 1.15em;
}
@media screen and (max-width: 500px) {
  table.faq-table tr th {
    font-size: 1em;
  }
}
table.faq-table tr th::before {
  position: absolute;
  content: "Q";
  color: var(--main-color1);
  text-align: center;
  top: 50%;
  left: 0;
  width: 35px;
  height: 35px;
  padding: 4px;
  border-radius: 50%;
  background-color: var(--main-color6);
  transform: translateY(-50%);
}
table.faq-table tr td {
  position: relative;
  display: block;
  width: 100%;
  padding: 15px 0px 30px 2.5em;
  border-bottom: 1px solid var(--main-color5);
}
@media screen and (max-width: 500px) {
  table.faq-table tr td {
    font-size: 0.9em;
  }
}
table.faq-table tr td::before {
  position: absolute;
  content: "A";
  font-size: 1.15em;
  font-weight: 700;
  color: #b6351e;
  text-align: center;
  top: 45%;
  left: 0.5em;
  transform: translateY(-50%);
}
table.faq-table tr:last-child td {
  border-bottom: none;
}

/*お問い合わせ*/
.kagonet-form span.text-muted.small {
  color: var(--main-color10);
}
.kagonet-form .form-control {
  box-shadow: none !important;
}
.kagonet-form .form-control:focus {
  border-color: var(--main-color7);
}
.kagonet-form .form-check-input:checked {
  background-color: var(--main-color6);
  border-color: var(--main-color6);
}
.kagonet-form input[type=submit].btn-primary {
  background-color: var(--main-color6);
  border-color: var(--main-color6);
}

/*◇連携アプリ（ヒトミルマイカルテ）*/
#kagomy_app_top {
  padding-top: 20px;
}
#kagomy_app_top .flex-box {
  display: flex;
}
@media screen and (max-width: 500px) {
  #kagomy_app_top .flex-box {
    display: block;
  }
}
#kagomy_app_top .flex-box .item {
  width: 50%;
}
@media screen and (max-width: 500px) {
  #kagomy_app_top .flex-box .item {
    width: 100%;
  }
}
#kagomy_app_top .flex-box .item.text {
  padding-bottom: 20px;
}
@media screen and (max-width: 500px) {
  #kagomy_app_top .flex-box .item.text {
    padding-bottom: 0;
  }
}
#kagomy_app_top .flex-box .item.text .info {
  padding: 10px 0;
}
@media screen and (max-width: 500px) {
  #kagomy_app_top .flex-box .item.text .info {
    font-size: 0.9em;
  }
}
#kagomy_app_top .flex-box .item.img {
  position: relative;
  padding: 0 20px;
}
#kagomy_app_top .flex-box .item.img img {
  position: absolute;
  left: 55%;
  bottom: 0;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 500px) {
  #kagomy_app_top .flex-box .item.img img {
    position: static;
    transform: translate(0, 0);
  }
}

.btn-flex-box {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}
@media screen and (max-width: 500px) {
  .btn-flex-box {
    padding-top: 0;
  }
}
.btn-flex-box .item {
  position: relative;
  width: 50%;
  padding: 0 10px;
  text-align: center;
}
.btn-flex-box .item:first-child::before {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  width: 1px;
  height: 80%;
  transform: translate(0, -50%);
  border-right: 1px dotted var(--main-color4);
}
@media screen and (max-width: 500px) {
  .btn-flex-box .item:first-child::before {
    display: none;
  }
}
.btn-flex-box .item a img {
  max-width: 180px;
  transition: all 0.2s;
}
@media screen and (max-width: 500px) {
  .btn-flex-box .item a img {
    max-width: 100%;
  }
}
.btn-flex-box .item a:hover img {
  opacity: 0.7;
}
.btn-flex-box .item p {
  padding-top: 15px;
}
@media screen and (max-width: 500px) {
  .btn-flex-box .item p {
    padding-top: 0px;
    display: none;
  }
}

/*利用開始までの流れ（フロー）*/
.kagomy-flow {
  max-width: 850px;
  margin: 0 auto;
  padding: 20px 30px;
  border-bottom: dotted 1px var(--main-color5);
  margin-bottom: 25px;
}
@media screen and (max-width: 500px) {
  .kagomy-flow {
    padding: 10px 0;
  }
}
.kagomy-flow .flex-box {
  display: flex;
}
.kagomy-flow .flex-box .item.img {
  width: 30%;
  text-align: center;
}
.kagomy-flow .flex-box .item.img img {
  max-height: 250px;
}
.kagomy-flow .flex-box .item.text {
  width: 70%;
  padding: 10px;
}
.kagomy-flow .flex-box .item.text .step {
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  display: inline-block;
  color: var(--main-color1);
  background-color: var(--main-color6);
  padding: 0.2em 0.8em;
  margin-bottom: 0.25em;
  border-radius: 20px;
}
@media screen and (max-width: 500px) {
  .kagomy-flow .flex-box .item.text .step {
    font-size: 1.1em;
  }
}
.kagomy-flow .flex-box .item.text .title {
  font-size: 1.1em;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.5;
  margin-bottom: 0.2em;
}
@media screen and (max-width: 500px) {
  .kagomy-flow .flex-box .item.text .title {
    font-size: 1em;
  }
}
.kagomy-flow .flex-box .item.text .info {
  font-size: 1em;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
.kagomy-flow .flex-box .item.text .info span {
  color: #e75c5c;
}
@media screen and (max-width: 500px) {
  .kagomy-flow .flex-box .item.text .info {
    font-size: 0.9em;
  }
}/*# sourceMappingURL=active3.css.map */