@charset "utf-8";

/* style.css
 * おまかせプラン ver.7 - v1.0.0
 * 2023-04-01
 * **************************************************
 * Reset
 * Body
 * Header
 * Header Fixed
 * Common
 * Footer
 * Page Top
 * News
 * Print
 * **************************************************
 */

/* Reset
------------------------------------------------------------------- */
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, font, 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 {
  background: transparent;
  border: 0;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
h1,h2,h3,h4,h5,h6 {
  clear: both;
  font-size: 100%;
  font-weight: normal;
}
ol,ul {
  list-style: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
caption,th {
  text-align: left;
}
address,caption,cite,code,dfn,em,strong,th,var {
  font-style: normal;
  font-weight: normal;
}
blockquote {
  quotes: none;
}
blockquote::before, blockquote::after {
  content: '';
  content: none;
}
fieldset,img {
  border: 0;
}
abbr,acronym {
  border: 0;
}
main {
  display: block;
}
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}
*,*::before,*::after {
  box-sizing: border-box;
}
a { color: #005bac;}
a:hover {text-decoration: none;}

/* Root
------------------------------------------------------------------- */
:root {
  --font-base: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  --font-heading: "M PLUS 2", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
}

/* Common
------------------------------------------------------------------- */
.new {
  padding: 2px 5px;
  max-height: 1.25em;
  background-color: #ff0000;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 78%;
  color: #fff;
  font-weight: 500;
  line-height: 1.0;
}

.mt_00 {margin-top: 0 !important; }
.mt_05 {margin-top: .5em !important; }
.mt_10 {margin-top: 1em !important; }
.mt_20 {margin-top: 2em !important; }
.mt_30 {margin-top: 3em !important; }
.mr_00 {margin-right: 0 !important; }
.mr_10 {margin-right: 1em !important; }
.mr_20 {margin-right: 2em !important; }
.mr_30 {margin-right: 3em !important; }
.mb_00 {margin-bottom: 1em !important; }
.mb_05 {margin-bottom: .5em !important; }
.mb_10 {margin-bottom: 1em !important; }
.mb_20 {margin-bottom: 2em !important; }
.mb_30 {margin-bottom: 3em !important; }
.ml_00 {margin-left: 0 !important; }
.ml_10 {margin-left: 1em !important; }
.ml_20 {margin-left: 2em !important; }
.ml_30 {margin-left: 3em !important; }

.red {color: red;}
.underLine{text-decoration: underline;}
.fz_100 {font-size: 100% !important;}
.fz_note {font-size: 87.5% !important;}
.fz_h3 {font-size: 112.5% !important;}
.fz_p {font-size: 1.6em !important;}
.left {text-align: left !important;}
.right {text-align: right !important;}
.center {text-align: center !important;}
.indent_00 {text-indent: 0 !important;}

/* font */
.font-heading {
  font-family: var(--font-heading);
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

@media print, (min-width: 768px) {
  .sp-only {display: none !important;}
}

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

main .logout {
  margin-top: 2.0em;
  font-size: 1.6em;
  font-weight: 600;
}


/* Body
------------------------------------------------------------------ */
/* Font：基本サイズ（16 * 0.625 = 10px） */
body {
  position: relative;
  font-family: var(--font-base);
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
    min-height: 100vh
  }
}

/* Overlay */
body:after {
  opacity: 0;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 0;
  background-color: rgba(0,0,0,0.3);
  content: '';
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}
body.overlay::after {
  opacity: 1;
  z-index: 2;
  width: 100%;
  height: 100%;
}

/* Header（height 120px）
------------------------------------------------------------------- */
#header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 240px;
  padding-bottom: 20px;
  background-color: #fff;
  transition: 0.3s ease;
}
.header__inner {
  display: flex;
  flex-flow: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0 45px;
}
#header .logo img {
  width: 350px;
  height: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1200px) {
  #header {
   /* position: static; */
	min-width: 1200px;
  }
}
@media screen and (max-width: 1280px) {
  #header .logo img {
    width: 280px;
    height: auto;
  }
}

/* navigation-area
------------------------------------------------------------------- */
.navigation-area {
  height: 112px;
}
/* utility */
.utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 20px 0;
  transition: padding 0.3s ease;
}

/* size-change（文字サイズ） */
.size-change {
  position: relative;
  text-align: center;
}
.change-btn-wrap {
  display: flex;
}
.change-btn {
  width: 4.72em;
  background-color: #fff;
  border: 1px solid #005bac;
  border-radius: 100vh;
  color: #005bac;
  font-size: 1.4em;
  font-weight: 700;
  cursor: pointer;
  line-height: 2;
  letter-spacing: normal;
}
.change-btn:hover,
.change-btn.active {
  background-color: #005bac;
  color: #fff;
}
.change-btn:nth-of-type(n+2) { margin-left: 5px}

/* search */
.header-search {
}
.header-search form {
  display: flex;
}
.header-search input[type="text"] {
  width: 18.2em;
  margin-left: 25px;
  border: 1px solid #005bac;
  border-radius: 100vh;
  padding: 0 1em;
  font-size: 1.5em;
}
.header-search input[type="text"]::placeholder {
  color: #868686
}
.header-search input[type="submit"] {
  margin-left: 10px;
  width: 4.72em;
  background: #005bac;
  border-radius: 100vh;
  border: none;
  font-size: 1.4em;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  line-height: 2;
}
.header-search input[type="submit"]:hover {
  background: #3dcbe1;
  cursor: pointer;
}

/* Header Nav */
.header-nav__list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header-nav__list a {
  display: block;
  padding: 10px 0 10px 1.3em;
  background: url("../images/common/icon-hnav-aroow.svg") no-repeat left center/.91em;
  font-size: 1.4em;
  font-weight: 500;
  color: #323b4d;
  text-decoration: none;
  line-height: 1;
}
.header-nav__list .active a,
.header-nav__list a:hover {
  color: #005bac;
}
.header-nav__list > li + li {
  margin-left: 12px;
}

/* Global Nav */
.global-nav {
  width: 100%;
}
/* 1st Level */
.global-nav__list a {
  display: block;
  text-decoration: none;
  color: #000;
}
@media print, (min-width: 768px) {
  .global-nav__list {
    display: flex;
    align-items: center;
    width: 100%;
    height: 108px;
    max-width: 1200px;
    margin: auto;
    transition: 0.3s ease;
  }
  .global-nav__list > li {
    flex-grow: 1;
  }
  .global-nav__list > li > a {
    position: relative;
    display: block;
    min-height: 40px;
    width: 100%;
    padding: 67px 7px 18px;
    background: no-repeat center 12px/45px;
    font-size: 1.5em;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-align: center;
    line-height: 1.4;
    transition: 0.3s ease;
  }
  .global-nav__list > .global-nav__list__item00 > a { background-image: url("../images/global-nav/gnav-icon00.svg") }
  .global-nav__list > .global-nav__list__item01 > a { background-image: url("../images/global-nav/gnav-icon01.svg") }
  .global-nav__list > .global-nav__list__item02 > a { background-image: url("../images/global-nav/gnav-icon02.svg") }
  .global-nav__list > .global-nav__list__item03 > a { background-image: url("../images/global-nav/gnav-icon03.svg") }
  .global-nav__list > .global-nav__list__item04 > a { background-image: url("../images/global-nav/gnav-icon04.svg") }
  .global-nav__list > .global-nav__list__item05 > a { background-image: url("../images/global-nav/gnav-icon05.svg") }
  .global-nav__list > .global-nav__list__item06 > a { background-image: url("../images/global-nav/gnav-icon06.svg") }
  .global-nav__list > li > a > span {
    position: relative;
    display: block;
    border-radius: 3px;
    height: 23px;
    color: #323b4d;
  }
  .global-nav__list > li.active > a > span {
    background-color: #005bac;
    color: #fff;
  }
  .global-nav__list > li > a > span::before {
    content: "";
    position: absolute;
    top: 0;
    left: -8px;
    width: 3px;
    height: 100%;
    background: url("../images/global-nav/gnav-list-bor.svg") no-repeat center/contain;
  }
  .global-nav__list > li:last-of-type > a > span::after {
    content: "";
    position: absolute;
    top: 0;
    right: -8px;
    width: 3px;
    height: 100%;
    background: url("../images/global-nav/gnav-list-bor.svg") no-repeat center/contain;
  }
  .global-nav__list > li > a::before {
    position: absolute;
    left: 0;
    bottom: 0;
    content: "";
    width: 100%;
    height: 7px;
    background: linear-gradient(to right, #1fc3dc, #fefc4f);
    transition: all 0.3s;
    transform: scale(0, 1);
    transform-origin: center top;
  }
  .global-nav__list > li:hover > a::before {
    transform: scale(1, 1);
  }
  /* 2nd Level（Dropdown Position） */
  .global-nav__list__inner {
    z-index: 5;
    display: none;
    position: absolute;
    top: calc(100% - 20px);
    left: 0;
    width: 100vw;
    background: url("../images/common/bg_download.webp") no-repeat center/cover;
  }
  .global-nav__list__2nd {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    position: relative;
    margin: 0 auto;
    padding: 40px 20px 60px 20px;
    width: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    max-width: 1250px;
    min-height: 120px;
  }
  .global-nav__list__2nd li {
    display: inline-block;
    width: -webkit-calc(100% / 4 - 20px);
    width: calc(100% / 4 - 20px);
  }
  .global-nav__list__2nd li:first-child, .global-nav__list__2nd li + li {
    margin-right: 15px;
  }
  .global-nav__list__2nd a {
    position: relative;
    margin-top: 10px;
    padding: 10px 0 10px 30px;
    font-size: 1.7em;
    font-weight: 500;
    color: #005bac;
    line-height: 1.4;
  }
  .global-nav__list__2nd a:hover {
    text-decoration: underline;
  }
  .global-nav__list__2nd a::before {
    content: "";
    position: absolute;
    top: 13px;
    left: 5px;
    display: block;
    width: 20px;
    aspect-ratio: 1/1;
    background: url("../images/global-nav/icon-gnav-aroow.svg") no-repeat center/contain;
  }
}

.sp-nav {
  display: none;
}

/* Header Fixed（height 95px）
------------------------------------------------------------------ */
#header.fixed {
  padding: 5px 0 0 0;
  height: 165px;
}
#header.fixed .navigation-area {
  height: 80px;
}
#header.fixed .utility {
  padding: 10px 0 5px;
}
#header.fixed .header-nav__list a {
  font-size: 1.3em;
}
#main {
  padding-top: 240px;
}
@media screen and (max-width: 1280px) {
  #header.fixed .logo img {
    width: 280px;
    height: auto;
  }
}
/* fixed：Global Nav */
#header.fixed .global-nav__list {
  height: 78px;
}
/* fixed：1st Level */
#header.fixed .global-nav__list > li > a {
  padding: 45px 7px 13px;
  background-size: 34px;
  background-position: center 5px;
}
/* fixed：2nd Level（Dropdown Position） */
#header.fixed .global-nav__list__inner {
  top: 165px;
}

/* Footer
------------------------------------------------------------------- */
#footer {
  margin-top: 78px;
  padding: 35px 0;
  background: #3dcbe1;
  color: #fff;
}
#footer .copyright {
  font-size: 1.4em;
  text-align: center;
}

/* PageTop
------------------------------------------------------------------ */
#page-top {
  z-index: 999;
  margin: 0 auto;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1/1;
  background: url("../images/common/icon-pagetop.svg") no-repeat center/contain;
  outline: none;
}
body.pc #page-top {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 15px;
  width: 80px;
  aspect-ratio: 1/1;
}
body.sp #page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 19vmin;

}
#page-top span {
  display: inline-block;
  text-indent: -9999px;
  white-space: nowrap;
}
#page-top:hover {
  opacity: 0.7;
}


/* News
------------------------------------------------------------------- */
.news-list li {
  display: flex;
  font-size: 1.6em;
  line-height: 1.6;
}
.news-list--cat > span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  width: 5.4em;height: 2em;
  border-radius: 100vh;
  color: #fff;
  font-weight: 700;
  text-align: center;
  white-space: nowrap;
  line-height: 1;
}
.news-list--cat > .news1 { background-color: #eb5d01; } /* 重 要 */
.news-list--cat > .news2 { background-color: #5f7acc; } /* イベント */
.news-list--cat > .news3 { background-color: #f0c560; } /* INFO */
.news-list--cat > .news4 { background-color: #72C4CE; } /* 健康管理 */
.news-list--cat > .news5 { background-color: #aec112; } /* 保 養 */
.news-list--cat > .news6 { background-color: #7EB19B; } /* 届出 */
.news-list--cat > .news7 { background-color: #e5879f; } /* 保険給付 */
.news-list--cat > .news8 { background-color: #33b6cc; } /* 公 告 */
.news-list--cat > .news9 { } /* なし */
.news-list--date {
  margin-right: 15px;
  white-space: nowrap;
}


@media screen and (max-width: 767px) {
  /* Body
  ------------------------------------------------------------------ */
  body {
    min-width: auto;
  }
  body.fix {
    position: fixed;
    width: 100%;
  }

  /* Header
  ------------------------------------------------------------------- */
  #header {
    padding: 15px 0 15px 0;
    min-width: auto;
    height: 70px;
  }
  .header__inner {
    display: block;
    height: 100%;
    margin: 0;
    padding: 0 15px;
  }
  #header .logo {
    height: 100%;
    display: flex;
    align-items: center;
    line-height: 1;
  }
  #header .logo a {
    width: 90%;
  }
  #header .logo img {
    width: 82%;
    height: auto;
  }
  /* utility */
  .utility { display: none; }
  /* Header Nav */
  .header-nav__list {
    display: none;
  }
  /* Global Nav */
  /* SP Btn */
  .sp .global-nav__list > li {
    position: relative;
  }
  .sp .global-nav__list > li::after {
    position: absolute;
    right: 0;
    top: 0;
    content: "開く";
    display: flex;
    justify-content: center;
    width: 50px;
    height: 100%;
    padding: 16px 0 0;
    border-left: 1px solid #dadada;
    background: #fff;
    font-size: 1.2em;
    font-weight: 500;
    text-align: center;
  }
  .sp .global-nav__list > li.open::after {
    content: "閉じる";
  }
  /* 開くボタン非表示（申請書ダウンロード、個人情報保護方針、マイナンバー制度、よくある質問、リンク集、サイトマップ、アクセス） */
  .sp .global-nav__list > li:nth-child(1)::after,
  .sp .global-nav__list > li:nth-child(5)::after,
  .sp .global-nav__list > li:nth-child(n+8)::after {
    display: none;
    width: 0;
    height: 0;
    border: none;
  }
  .sp .global-nav__list > li:not(:nth-child(1)), (:nth-child(5)) > a {
    width: calc(100% - 50px);
  }
  .sp .global-nav__list > li[class^="h-nav"]  > a {
    width: 100%;
  }

  /* 1st Level */
  .global-nav__list {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
    overflow-y: scroll;
    overflow-x: hidden;
    position: fixed;
    left: 0;
    top: 65px;
    display: block;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: -webkit-calc(100% - 65px);
    height: calc(100% - 65px);
    transition: 0.2s;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .global-nav__list.open {
    opacity:1;
    visibility: visible;
    z-index: 99999;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: #fafafa;
  }
  .global-nav__list > li + li {
    border-top: 1px solid #dadada;
  }
  .global-nav__list > li:last-child {
    border-bottom: 1px solid #dadada;
    margin-bottom: 50px;
  }
  .global-nav__list > li > a {
    padding: 15px 15px 15px 15px;
    font-size: 1.6em;
  }
  .global-nav__list > li > a::before {
    bottom: 0;
    width: 0;
    height: 0;
    background-color: transparent;
    -webkit-transition: unset;
    transition: unset;
    transform: none;
    transform-origin: 50% 50%;
  }
  .global-nav__list > li:hover > a::before {
    transform: none;
  }
  .global-nav__list > li.active > a::before {
    -webkit-transition: unset;
    transition: unset;
    transform: none;
  }
  /* 2nd Level */
  .global-nav__list__inner {
    z-index: 5;
    display: none;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #6e767e;;
  }
  .global-nav__list > li:hover > .global-nav__list__inner {
    box-shadow: none
  }
  .global-nav__list__2nd {
    display: block;
    flex-wrap: nowrap;
    justify-content: flex-start;
    position: relative;
    margin: 0;
    padding: 10px 20px 30px 20px;
    min-height: none;
    width: 100%;
    max-width: none;
  }
  .global-nav__list__2nd li {
    display: block;
    width : auto;
  }
  .global-nav__list__2nd a {
    position: relative;
    margin-top: 10px;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #505050;
    font-size: 1.5em;
    font-weight: 400;
    color: #fff;
  }
  .global-nav__list__2nd a:hover {
    background-color: #595c5f;
  }
  .global-nav__list__2nd a::before {
    position: absolute;
    top: 18px;
    left: 5px;
    content: "";
    display: block;
    height: 5px;
    width: 5px;
    border-top: 2px solid #00bddc;
    border-right: 2px solid #00bddc;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  
  /* SP Nav */
  .sp-nav {
    display: block;
    z-index: 2;
    position: absolute;
    top: 28px;
    right: 23px;
    width: 20px;
    height: 16px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none
  }
  .sp-nav,
  .sp-nav span {
    display: inline-block;
    transition: all .4s;
  }
  .sp-nav span {
    position: absolute;
    left: 0;
    width: 20px;
    height: 2px;
    background-color: #005bac;
    border-radius: 100vh;
    border-radius: 4px;
  }
  .sp-nav span:nth-of-type(1) {
    top: 0;
  }
  .sp-nav span:nth-of-type(2) {
    top: 7px;
  }
  .sp-nav span:nth-of-type(3) {
    bottom: 0;
  }
  .sp-nav.active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-135deg) scale(1.3, 1);
    transform-origin: center;
  }
  .sp-nav.active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp-nav.active span:nth-of-type(3) {
    transform: translateY(-7px) rotate(135deg) scale(1.3, 1);
    transform-origin: center;
  }
  .navigation-area {display: none;}

  /* Header Fixed
------------------------------------------------------------------ */
  #header.fixed {
    padding: 15px 0 15px 0;
    height: 35px;
  }
  #header.fixed .logo img {
    margin-top: 5px;
    width: 210px;
    height: auto;
  }
  #main {
    padding-top: 70px;
  }

  /* Footer
  ------------------------------------------------------------------- */
  #footer {
    margin-top: 30px;
    padding: 29px 0 30px;
  }
  #footer .copyright {
    font-size: 1.0em;
  }
  /* News
  ------------------------------------------------------------------- */
  .new {
    
  }
  .news-list li {
    font-size: 1.5em;
  }
  .news-list--cat {
    padding: 12px 0;
    font-size: .66em;
  }
  .news-list--date {
    padding: 12px 0;
    font-size: .83em;
  }
  .news-list--date::after {
    content: "\A";
    white-space: pre;
  }
}

/* Print
------------------------------------------------------------------ */
@media print {
  body {
    zoom: 0.5;
    -webkit-print-color-adjust: exact;
    }
  /* 非表示 */
   /* .navigation-area,
  .global-nav__list__inner,
  .content__side, */
  .side-follow,
  #page-top {
    display: none !important;
  }
  .sp .global-nav__list li[class^="h-nav"] {
    display: none !important;
  }
  /* 調整：高さ */
  #header {
    position: initial!important;
    height: auto !important;
  }
  #main {
    padding-top: 0 !important;
  }
  .subpage-visual {
    height: 150px !important;
  }
  .subpage-visual__hd {
    min-height: 60px !important;
  }
  /* 調整：横幅
  .header__inner,
  .content__inner-column,
  .access .content__inner,
  .sitemap .content__inner {
    padding: 0 !important;
    max-width: none !important;
  }
  .content__layout {
    width: auto !important;
  } */
  /* タブ：表示 */
  .tab-content {
    display: block !important;
  }
  .tab-content + .tab-content {
    display: block !important;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px dotted #dddddd;
  }
  /* もっと詳しく：表示 */
  .content__layout__learn-more dd {
    display: block !important;
  }
  /* よくある質問：表示 */
  .faq-cnt,
  .faq-cnt dd {
    display: block !important;
  }
}
