@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:wght@100..900&display=swap');
/*	reset
--------------------------------------------*/
body, div, p, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  border: 0;
}
address, caption, cite, code, dfn, em, strong, var {
  font-style: normal;
  font-weight: normal;
}
ol, ul {
  list-style: none;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
 
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  vertical-align: bottom;
}
a img {
  border: none;
}
a {
  color: #333;
  text-decoration: none;
  outline: none;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a.txtlink:link, a.txtlink:visited {
  text-decoration: underline;
}
a:hover, a:hover img {
  opacity: 0.7;
  transition: opacity .20s ease-in-out;
}
a:focus {
  outline: none;
}
dt {
  font-weight: bold;
}
.clear {
  clear: both;
}
/*	general
--------------------------------------------*/ 
:root {
  --key-c: #0063B9;
  --key-c-rgb: 0 99 185;
  --key-plc: #E2F2FE /*#C7E8FA*/ ;
    --key-plc2:#EDF7FF;
  --line-g: #ddd;
  --font-med: 500;
  --font-bold: 700;
  --font-heavy: 900;
}
html {
  font-size: 100%;
}
body {
  font-family: "Roboto", 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HiraKakuPro-W3", "メイリオ", Meiryo, "MS PGothic", Osaka, sans-serif;
  color: #333;
  font-size: 1rem;
  line-height: 1.6;
  background: #FFF;
  font-weight: 400;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.875rem;
  }
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#wrapper {
  width: 100%;
}
main {
  text-align: left;
}
.inner {
  width: min(96%, 980px);
  margin: 0 auto;
}
/*	clearfix
--------------------------------------------
.cf:after{
	content: "";
	display: block;
	clear: both;
}
.cf{
	min-height: 1%;  
	zoom: 1;
}*/
/*	header
--------------------------------------------*/
.header-inner {
  display: flex;
  padding: 10px;
  justify-content: space-between;
}
.header-logo-sect {
  display: flex;
  width: 40%;
}
.header-logo {
  display: flex;
  gap: 20px;
}
.logo img {
  width: 43px;
}
.header-title {
  flex: 1;
}
.sp-btn {
  display: none;
}
.header-title {
  font-weight: var(--font-bold);
}
.header-subttl {
  display: inline-block;
  background: var(--key-plc);
  font-size: 0.875rem;
}
.nav-sect {
  flex: 1;
  background: #FFF;
}
#gnav {
  position: relative;
  z-index: 20;
}
#gnav ul {
  display: flex;
  gap: 1em;
  justify-content: space-between;
}
#gnav ul li a {
  display: flex;
  padding: .5rem 1rem;
  font-weight: var(--font-bold);
  line-height: 1.4;
}
#gnav ul li:last-child a {
  color: #fff;
  background: var(--key-c);
  border-radius: .5rem;
}
@media screen and (max-width: 1000px) {
  .header-logo-sect {
    width: 100%;
    justify-content: space-between;
  }
  .sp-btn {
    display: block;
    position: absolute;
	padding:0;
    top: 15px;
    right: 16px;
    width: 32px;
    height:	32px;
    cursor: pointer;
    z-index: 999;
    border: none;
	  
    background: none;
  }
	.sp-btn.open{
	    position: fixed;
		}
  .sp-btnline {
    display: block;
    position: relative;
    width: 100%;
    height: 2px;
    background-color: #333;
    transition: .2s;
  }
  .sp-btnline::before, .sp-btnline::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    background-color: #333;
    transition: .5s;
  }
  .sp-btnline::before {
    transform: translateY(-10px);
  }
  .sp-btnline::after {
    transform: translateY(10px);
  }
  .sp-btnline.open {
    background-color: transparent;
  }
  .sp-btnline.open::before, .sp-btnline.open::after {
    content: "";
    background-color: #fff;
    transition: .2s;
  }
  .sp-btnline.open::before {
    transform: rotate(45deg);
  }
  .sp-btnline.open::after {
    transform: rotate(-45deg);
  }
  .nav-sect {
        width: 100%;
	  display: none;
  }
  .nav-sect.open {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: 50%;
    height: 100vh;
    background: rgb(var(--key-c-rgb) / .95);
    z-index: 990;
/* overflow-y: scroll;*/
  }

  #gnav ul {
    display: flex;
    gap: .8rem 2rem;
    flex-direction: column;
  }
  #gnav {
    width: 100%;
    margin-top: 80px;
    flex-direction: column;
    padding: 5%;
  }
  #gnav .navi {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  #gnav .navi a {
    padding: 1.3rem 1rem;
    background: #fff;
    border-radius: 1em;
  }
  #gnav ul li:last-child a {
    background: #102E48;
  }

			.member-info .header-inner {
			margin-bottom:0;
    padding: 10px 0;
			gap:1rem;
			border:none;
}
	.member-info .header-logo {
    gap: 5px;
}
		.member-info  .header-ttl,
	.member-info  .header-subttl {
		font-size: 0.75rem;
	}
			
	.member-info .header-membinfo{
		margin-right: 70px;
		flex-direction: column;
		gap:.5rem;
		align-items:  flex-start;
			font-size: 0.75rem;
	}
	.member-info #gnav ul li:last-child a {
  color: #333;
  background: #fff;
    border-radius: 1em;
}
		
}
@media screen and (min-width: 1001px) {
  .nav-sect {
    display: block !important;
  }
}




/*	contents
--------------------------------------------*/
#contents {
  padding: 30px 0 80px;
}
.cmain-titlebox {
  padding: 40px 0;
  text-align: center;
}
.cmain-title {
  font-size: clamp(1.375rem, 0.958rem + 1.39vw, 2rem);
  font-weight: var(--font-bold);
  letter-spacing: .04em;
}
.cmain-title span {
  display: block;
  font-size: 0.6em;
}
.c-title {
  display: flex;
  gap: 10px;
  margin-bottom: 1em;
  padding-bottom: .5em;
  font-size: clamp(1.25rem, 1.083rem + 0.56vw, 1.5rem);
  font-weight: var(--font-bold);
  border-bottom: 1px solid #ddd;
}
.c-title::before {
  content: "";
  display: block;
  background: var(--key-c);
  width: 8px;
  height: 1.5em;
  border-radius: .5em;
  flex-shrink: 0;
}
.c-stitle {
  margin: 1.563em 0 0.875em;
  padding: .5em;
  font-size: 1.125rem;
  /*clamp(1.125rem, 1.042rem + 0.28vw, 1.25rem)*/
  font-weight: var(--font-bold);
  background: var(--key-plc);
}
.sec {
  margin-top: 80px;
}
.sec:first-child {
  margin-top: 0;
}
.sec-md {
  margin-top: 2em;
}
.flx {
  display: flex;
}
.cmtitle {
  font-weight: bold;
  font-size: 1.7em;
  padding: 0 3%;
}
.cmtitle:after {
  content: "";
  display: block;
  width: 40px;
  border-bottom: 2px solid #EE786B;
  margin: 0 auto 20px;
  height: 20px;
}
.hojin .cmtitle:after {
  border-bottom: 2px solid #5AB646;
}
.sub .cmtitle:after {
  border-bottom: 2px solid #8796DE;
}
.cmtitle span {
  display: block;
  font-size: 0.7em;
}
.mypage-wrapper {
  background: var(--key-plc);
}
.mypage-cont {
  padding: 50px;
  background: #fff;
  border-radius: 2em;
}
.ctitle-box {
  margin: 2em;
  text-align: center;
}
.ctitle {
  font-size: clamp(1.375rem, 0.958rem + 1.39vw, 2rem);
  font-weight: 700;
}
.ph_l {
  float: left;
  margin: 0 30px 20px 0;
}
.ph_r {
  float: right;
  margin: 0 0 20px 30px;
}
.ph_c {
  text-align: center;
}
.ph_ib {
  display: inline-block;
  padding: 0 10px;
  vertical-align: top;
}
@media (max-width: 480px) {
  #contents {
    padding: 0px 0 80px;
  }
  .member #contents {
    padding: 0;
  }
}
/*---	footer
--------------------------------------------*/
.ftr-contents {
  padding: 1.5em 0;
}
.ftr-contents .inner {
  display: flex;
  gap: 1em 3em;
  align-items: flex-end;
  flex-wrap: wrap;
}
.ftr-note, .copy {
  font-size: 0.75rem;
}
.ftr-note {
  margin-top: 1em;
}
.ftr-nm {
  font-weight: 700;
}
.ftr-nm span {
  padding-right: 1em;
  font-size: 0.85rem;
}
@media (max-width: 1100px) {
  .ftr-contents .inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
/*	link icon
--------------------------------------------
.pdf:after, 
#contents a[href$=".pdf"]:after, 
.topnewsinner a[href$=".pdf"]:after,
#contents:not(.home) a[href$=".pdf"]:after {
  display: inline-block;
  content: url(../images/icon_pdf.png);
  margin-left: 7px;
  line-height: 1;
  vertical-align: middle;
}
.word:after, #contents a[href$=".doc"]:after, #contents a[href$=".docx"]:after, .topnewsinner a[href$=".doc"]:after, .topnewsinner a[href$=".docx"]:after {
  display: inline-block;
  content: url(../images/icon_word.png);
  margin-left: 7px;
  line-height: 1;
  vertical-align: middle;
}
.excel:after, #contents a[href$=".xls"]:after, #contents a[href$=".xlsx"]:after, .topnewsinner a[href$=".xls"]:after, .topnewsinner a[href$=".xlsx"]:after {
  display: inline-block;
  content: url(../images/icon_excel.png);
  margin-left: 7px;
  line-height: 1;
  vertical-align: middle;
}
*/
/*
.subwin:after {
  content: url(../images/icon_subwin.png);
  margin-left: 7px;
}
.subwinw:after {
  content: url(../images/icon_subwin_w.png);
  margin-left: 7px;
}*/
#contents .subwin:before,
.mypage #contents:not(.home) a[href^="http"]:before{
  content: url(../images/icon_subwin.png);
  margin-right: 10px;
  line-height: 1;
  vertical-align: middle;
}
#contents a[href^="http"].subwinw:before {
  content: url(../images/icon_subwin_w.png);
  margin-left: 7px;
}

