@charset "utf-8";

/* style.css
 * おまかせプラン ver.7 - v1.0.0
 * 2023-04-01
 * **************************************************
 * Reset
 * Body
 * Header
 * Header Fixed
 * Common
 * Footer
 * Side Follow（文字サイズ）
 * Page Top
 * 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, sup, 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;
}
* {
  -webkit-box-sizing:border-box;
  box-sizing:border-box;
}

a{
	color:#0079de;
}

a:hover{
	text-decoration:none;
}

/* Body
------------------------------------------------------------------ */
/* Font：基本サイズ（16 * 0.625 = 10px） */
body {
  position: relative;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 62.5%;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-feature-settings: "palt";
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1200px;
  }
}

/* Overlay */
body:after {
  opacity: 0;
  z-index: -1;
  position: absolute;
  left: 0;
  top: 120px;
  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%;
}

/* 汎用クラス
------------------------------------------------------------------- */
.mt_00 {margin-top: 0 !important; }
.mt_05 {margin-top: 0.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: 0em !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; }

._14 {font-size:1.4em!important;}
._15{font-size:1.5em!important;}
._16{font-size:1.6em!important;}
._x2{font-size:200%!important;}

.red {color: red!important;}
.blue{color:#0058a6!important;}
.black{color:#000!important;}
.underLine{text-decoration: underline;}
.fz_100 {font-size: 100% !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;}
.indmn_00 {text-indent: 0!important;margin-left: 0!important;}
.dot{font-feature-settings: normal!important;}
._bl{display:block!important;}

table.td_left td{text-align: left !important;}
table.td_right td{text-align: right !important;}
table.td_center td{text-align: center !important;}
table.td_w2 td{width : calc(100% / 2)!important;}
table.td_w3 td{width : calc(100% / 3)!important;}
table.td_w4 td{width : calc(100% / 4)!important;}
table.td_w5 td{width : calc(100% / 5)!important;}

table.th_left th{text-align: left !important;}
table.th_right th{text-align: right !important;}
table.th_center th{text-align: center !important;}
table.th_w2 th{width : calc(100% / 2)!important;}
table.th_w3 th{width : calc(100% / 3)!important;}
table.th_w4 th{width : calc(100% / 4)!important;}
table.th_w5 th{width : calc(100% / 5)!important;}

@media screen and (min-width: 768px) {
.pc-none {display: none!important}
}
@media screen and (max-width: 767px) {
.sp-none {display: none!important;}
}

/* Header（height 120px）
------------------------------------------------------------------- */
#header {
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  padding: 15px 0 15px 0;
  width: 100%;
  height: 180px;
  background-color: #f9f6f1;
  /*box-shadow: 0 0 10px rgb(0 0 0 / 5%);*/
  -webkit-transition: height 0.3s ease;
  transition: height 0.3s ease;
  font-family: 'Trebuchet MS', "ヒラギノ丸ゴ ProN W4","ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic ProN","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO", Meiryo, Arial, sans-serif;
}
.header__inner {
  margin: 0 auto;
  padding: 0 0px 0px 40px;
  max-width: 1490px;
  position:relative;
  height:125px;
}
#header .logo img {
  padding-top:10px;
  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;
  }
}

/* utility
------------------------------------------------------------------ */
#header .utility {
  display: flex;
  justify-content: flex-end;
	position: absolute;
	top:0px;
	right:40px;
}

/* sizeChange（文字サイズ）
------------------------------------------------------------------ */
.font-size {
  display: flex;
  align-items: center;
}
.sizeChange li {
  min-width: 4em;
  padding: 4px 10px;
  background-color: #fff;
  border-radius: 100vh;
  text-align: center;
  font-size: 1.4em;
  cursor: pointer;
  font-weight:bold;
}
.sizeChange li:hover,
.sizeChange li.active {
  background-color: #00c4c6;
  color: #fff;
}
.sizeChange li + li {
  margin-inline-start: 4px;
}
/* Search */
.header__search {
  transition: .3s;
  margin-left:10px;
}
.header__search form {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.header__search input[type="text"] {
  padding: 8px 10px;
  width: 255px;
  border: none;
  border-radius: 100vh;
  font-size: 1.5em;
}
.header__search input[type="text"]::placeholder {
  color: #868686
}
.header__search input[type="submit"] {
  position: absolute;
  right: 10px;
  border: none;
  color: #fff;
  height: 18px;
  width: 18px;
  overflow: hidden;
  text-indent: -70px;
  background: url(../images/common/icon-search.png) no-repeat center/contain;
  -webkit-appearance: none;
}

.header__search input[type="submit"]:hover {
  cursor: pointer;
}
/* Header Nav */
.header-nav__list {
  position:absolute;
  top:45px;
  right:40px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
	padding:0px 0 15px;
}

.header-nav__list a {
  font-size: 1.4em;
	position:relative;
  display: block;
  padding: 0 0 0 0.8em;
  color: inherit;
  text-decoration: none;
	font-weight:bold;
  color: #333333;
  transition: 0.3s;
}

.header-nav__list .active a,
.header-nav__list a:hover {
  color:#0079de;
}
.header-nav__list > li + li {
  margin: 0 5px;
}

#main {
  padding-top: 180px;
  background-color: #f9f6f1;
	background:#f9f6f1 url(../images/common/white-dot.webp)repeat-y top 27% right 36% /453px;
}
#subpage #main{
	min-height:850px;
	background:#f9f6f1 url(../images/common/white-dot.webp)repeat-y top 22% right 18% /453px;
}


/* Header Fixed（height 95px）
------------------------------------------------------------------ */
#header.fixed {
  padding: 5px 0 10px 0;
  height: 155px;
}

#header.fixed .global-nav__list {
	margin-top:16px;
}

#header.fixed .header-nav__list {
	top:30px;
}

/* Header Nav */
#header.fixed .header-nav__list a {
  padding: 8px 5px;
  font-size: 1.3em;
}

/* Common
------------------------------------------------------------------- */
.new {
  margin: 5px 0 0 10px;
  padding: 2px 5px;
  max-height: 15px;
  background-color: #ff0000;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  font-size: 78%;
  color: #fff;
  font-weight: 500;
  line-height: 1.0;
}

/* Footer
------------------------------------------------------------------- */
#footer {
  background:#f9f6f1;
}

#subpage #footer {
  background:#f9f6f1;}

#footer .copyright {
  font-size: 1.0em;
  text-align: center;
  color:#fff;
  padding: 35px 0;
  background:#0079de;
  border-radius:100vw 100vw 0 0;
}


/* PageTop
------------------------------------------------------------------ */
#page-top {
  z-index: 999;
  position: relative;
  margin: 0 auto;
  cursor: pointer;
}
#page-top span {
  z-index: 1;
  opacity: 0.9;
  display: block;
  overflow: hidden;
  position: fixed;
  bottom: 90px;
  right: 15px;
  height:60px;
  width:60px;
  background: url("../images/common/page-top.svg") no-repeat center/contain;
  text-indent: -9999px;
  outline: none;
}
#page-top span:hover {
  opacity: 0.7;
}


/*NEWS（トップページ・news内共通）
------------------------------------------------------------------- */
/*news*/

.news-list dl{
	display:flex;
}

.news-list dt{
	display:flex;
}

.news-list--cat > span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6em;
  height: 1.6em;
  margin-right: 15px;
  background-color: #336699;
  font-size: 0.875em;
  color: #ffffff;
  font-weight:bold;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
}
.news-list--date {
  margin-right: 15px;
  white-space: nowrap;
  color:#333;
}

.news-list dd{
  flex-grow: 1;
  padding-right:35px;
}

.news-list dd a {
  color:#333;
  text-decoration:none;
}
.news-list dd a:hover{
  text-decoration:underline;
}

/* 重要 */
.news-list--cat span.news1 {
	background-color: #eb6959;
}
/* イベント */
.news-list--cat span.news2 {
	background-color: #efbb4b;
}
/* INFO */
.news-list--cat span.news3 {
	background-color: #ffd300;
}
/* 健康管理 */
.news-list--cat span.news4 {
	background-color: #509b79;
}
/* 保養 */
.news-list--cat span.news5 {
	background-color: #00c4c6;
}
/* 届出 */
.news-list--cat span.news6 {
	background-color: #618aba;
}
/* 保険給付 */
.news-list--cat span.news7 {
	background-color: #67bd63;
}
/* 公告 */
.news-list--cat span.news8 {
	background-color: #9b7bb6;
}

/*メニューボタン*/
.content__inner-index li,
.like-this__btn li {
  position: relative;
  width: -webkit-calc(20% - 20px);
  width: calc(20% - 60px);
  background-color: #fff;
  -webkit-border-radius: 15px;
  border-radius: 15px;
  transition: 0.3s;
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
          box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
}
.content__inner-index li.animate,
.like-this__btn > li.animate {
  animation: like-this-btn 0.6s;
}
@keyframes like-this-btn {
  0% {
   transform: scale(0.1);
  }
  100% {
   transform: none;
  }
}
.content__inner-index li:first-child,
.content__inner-index li +li,
.like-this li:first-child,
.like-this li + li {
  margin: 30px 20px 0 0;
}

.content__inner-index li:hover,
.like-this li:hover {
  -webkit-box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
  box-shadow: 1px 1px 5px 0px rgba(0,0,0,0.2);
  transform: scale(1.05);
}
.content__inner-index li a,
.like-this li a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding:90px 5px 10px;
  min-height: 160px;
  height:100%;
  font-size: 1.4em;
  color: #333333;
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
  background:no-repeat center 16px / 100px;
	position:relative;
	z-index:1;
	border:1px solid #dddddd;
	border-radius:15px;
	font-weight:bold;
}
.content__inner-index li a:before,
.like-this li a:before{
	position:absolute;
	content:'';
	width:50px;
	height:10px;
	background:#00c4c6;
	border-radius:100vw;
	top:-5px;
}
.content__inner-index li a:hover,
.like-this li a:hover{
	border:1px solid #0079de;
	color:#0079de;
}
.content__inner-index li a:hover:before,
.like-this li a:hover:before{
	background:#0079de;
}
.insurance-benefits .content__inner-index ul li:nth-of-type(1) a{background-image: url("../images/category/icon/A-01.webp");}
.insurance-benefits .content__inner-index ul li:nth-of-type(2) a{background-image: url("../images/category/icon/A-02.webp");}
.insurance-benefits .content__inner-index ul li:nth-of-type(3) a{background-image: url("../images/category/icon/A-03.webp");}

.consultation .content__inner-index #card ul li:nth-of-type(1) a,
.like-this__btn li:nth-of-type(1) a {background-image: url("../images/category/icon/B-01.webp");}
.consultation .content__inner-index #card ul li:nth-of-type(2) a,
.like-this__btn li:nth-of-type(2) a {background-image: url("../images/category/icon/B-02.webp");}
.consultation .content__inner-index #card ul li:nth-of-type(3) a,
.like-this__btn li:nth-of-type(3) a {background-image: url("../images/category/icon/B-03.webp");}

.consultation .content__inner-index #consultation ul li:nth-of-type(1) a,
.like-this__btn li:nth-of-type(4) a {background-image: url("../images/category/icon/B-04.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(2) a,
.like-this__btn li:nth-of-type(5) a {background-image: url("../images/category/icon/B-05.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(3) a,
.like-this__btn li:nth-of-type(6) a {background-image: url("../images/category/icon/B-06.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(4) a,
.like-this__btn li:nth-of-type(7) a {background-image: url("../images/category/icon/B-07.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(5) a,
.like-this__btn li:nth-of-type(8) a {background-image: url("../images/category/icon/B-08.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(6) a,
.like-this__btn li:nth-of-type(9) a {background-image: url("../images/category/icon/B-09.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(7) a,
.like-this__btn li:nth-of-type(10) a {background-image: url("../images/category/icon/B-10.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(8) a,
.like-this__btn li:nth-of-type(11) a {background-image: url("../images/category/icon/B-11.webp");}
.consultation .content__inner-index #consultation ul li:nth-of-type(9) a,
.like-this__btn li:nth-of-type(12) a {background-image: url("../images/category/icon/B-12.webp");}

.consultation .content__inner-index #lifescene ul li:nth-of-type(1) a,
.like-this__btn li:nth-of-type(13) a {background-image: url("../images/category/icon/B-13.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(2) a,
.like-this__btn li:nth-of-type(14) a {background-image: url("../images/category/icon/B-14.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(3) a,
.like-this__btn li:nth-of-type(15) a {background-image: url("../images/category/icon/B-15.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(4) a,
.like-this__btn li:nth-of-type(16) a {background-image: url("../images/category/icon/B-16.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(5) a,
.like-this__btn li:nth-of-type(17) a {background-image: url("../images/category/icon/B-17.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(6) a,
.like-this__btn li:nth-of-type(18) a {background-image: url("../images/category/icon/B-18.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(7) a,
.like-this__btn li:nth-of-type(19) a {background-image: url("../images/category/icon/B-19.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(8) a,
.like-this__btn li:nth-of-type(20) a {background-image: url("../images/category/icon/B-20.webp");}
.consultation .content__inner-index #lifescene ul li:nth-of-type(9) a,
.like-this__btn li:nth-of-type(21) a {background-image: url("../images/category/icon/B-21.webp");}

.health-promotion .content__inner-index ul li:nth-of-type(1) a{background-image: url("../images/category/icon/C-01.webp");}
.health-promotion .content__inner-index ul li:nth-of-type(2) a{background-image: url("../images/category/icon/C-02.webp");}
.health-promotion .content__inner-index ul li:nth-of-type(3) a{background-image: url("../images/category/icon/C-03.webp");}

.structure-insurance .content__inner-index ul li:nth-of-type(1) a{background-image: url("../images/category/icon/D-01.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(2) a{background-image: url("../images/category/icon/D-02.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(3) a{background-image: url("../images/category/icon/D-03.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(4) a{background-image: url("../images/category/icon/D-04.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(5) a{background-image: url("../images/category/icon/D-05.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(6) a{background-image: url("../images/category/icon/D-06.webp");}
.structure-insurance .content__inner-index ul li:nth-of-type(7) a{background-image: url("../images/category/icon/D-07.webp");}

.care .content__inner-index ul li:nth-of-type(1) a{background-image: url("../images/category/icon/E-01.webp");}
.care .content__inner-index ul li:nth-of-type(2) a{background-image: url("../images/category/icon/E-02.webp");}
.care .content__inner-index ul li:nth-of-type(3) a{background-image: url("../images/category/icon/E-03.webp");}
.care .content__inner-index ul li:nth-of-type(4) a{background-image: url("../images/category/icon/E-04.webp");}
.care .content__inner-index ul li:nth-of-type(5) a{background-image: url("../images/category/icon/E-05.webp");}
.care .content__inner-index ul li:nth-of-type(6) a{background-image: url("../images/category/icon/E-06.webp");}


@media screen and (max-width: 767px) {
  /* Body
  ------------------------------------------------------------------ */
  body {
    min-width: auto;
  }
  body.fix {
    position: fixed;
    width: 100%;
  }
	
#subpage #main{
	min-height:784px;
}


  /* Header
  ------------------------------------------------------------------- */
  #header {
    padding: 0px 0 0px 0;
    min-width: auto;
    height: 60px;
    background:url(../images/home/MV_01_sp_header.webp)no-repeat top center/cover;
  }
  .header__inner {
    display: block;
    justify-content: flex-start;
    align-items: stretch;
    margin: 0;
    padding: 0 15px;
    max-width: none;
  }
  #header .logo img {
    margin-top: 9px;
    width: 220px;
    height: auto;
  }
  /* Header Nav */
    .header__search,
    .font-size,
    .header-nav__list {
    display: none!important;
  }
  /* 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: inline-block;
    width: 50px;
    height: 30px;
    padding: 11px 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(4)::after,
  .sp .global-nav__list > li:nth-child(n+7)::after {
    display: none;
    width: 0;
    height: 0;
    border: none;
  }
  .sp .global-nav__list > li:not(:nth-child(4)) > a {
    width: calc(100% - 80px);
  }
  .sp .global-nav__list > li:nth-child(n+7) > 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: -webkit-calc(100% - 40px);
    width: calc(100% - 40px);
    max-width: none;
  }
  .global-nav__list__2nd li {
    display: block;
    width : auto;
  }
  .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 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: 13px;
    right: 15px;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    appearance: none;
    cursor: pointer;
    text-decoration: none
  }
  .sp-nav,
  .sp-nav span {
    display: inline-block;
    transition: all .4s;
    box-sizing: border-box;
  }
  .sp-nav span {
    position: absolute;
    left: -2px;
    width: 100%;
    height: 2px;
    background-color: #000;
    border-radius: 4px;
  }
  .sp-nav span:nth-of-type(1) {
    top: 0;
  }
  .sp-nav span:nth-of-type(2) {
    top: 9px;
  }
  .sp-nav span:nth-of-type(3) {
    bottom: 0;
  }
  .sp-nav.active span:nth-of-type(1) {
    transform: translateY(9px) rotate(-135deg);
  }
  .sp-nav.active span:nth-of-type(2) {
    opacity: 0;
    width: 100%;
  }
  .sp-nav.active span:nth-of-type(3) {
    transform: translateY(-9px) rotate(135deg);
    width: 100%;
  }
  #main {
    padding-top: 59px!important;
	  background:none;
  }
	
    
    /*メニューボタン*/
    .content__inner-index ul,
    .like-this__btn {
        justify-content:start!important;
    }
    
    .content__inner-index ul li a,
    .like-this li a {
        background:no-repeat center 20px / 80px;
    }
    
    .content__inner-index ul li,


    .like-this__btn li {
        width: -webkit-calc(50% - 17px)!important;
        width: calc(50% - 17px)!important;
    }
    .content__inner-index ul li:first-child,
    .content__inner-index ul li + li,
    .like-this__btn li:first-child,
    .like-this__btn li + li {
        margin: 15px 15px 0 0!important;
    }
    
    .content__inner-index ul li a,
    .like-this__btn li a {
        height: 65px!important;
        font-size: 1.4em!important;
        letter-spacing: 0!important;
    } 
	
  /* Footer
  ------------------------------------------------------------------- */
  #footer {
	  background:#f9f6f1;
	  padding-top:60px;
  }
	#subpage #footer {
	background:#f9f6f1
    }

#footer .copyright {
  border-radius:10vw 10vw 0 0;
}
	
/* #page-top
  ------------------------------------------------------------------ */
  #page-top {
    z-index: 1;
  }
  #page-top span {
    position: absolute;
    left:0;
    right:0;
    margin:auto;
    top:-200px;
    width: min(17.8666%, 67px);
    transition: .3s;
  }
  #subpage #page-top span {
    bottom: 80px!important;
  }

  /* Side Follow（文字サイズ）
  ------------------------------------------------------------------ */
  .side-follow {
    display: none;
  }
}


/* Print
------------------------------------------------------------------ */
@media print {
    body {
    zoom: 0.5;
    -webkit-print-color-adjust: exact;
    }
  /* 非表示 */
   /* .navigation-area,
  .global-nav__list__inner,
  .content__side, */
  .sizeChange,
  #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;
  }
}
