@charset "UTF-8";
/* CSS Document */
/* ============================================ */

/* リセット */
/*! destyle.css v1.0.15 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* 上記css改変ver 2025 */

/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%; /* iOSの向き変更後のフォントサイズ調整 */
  -webkit-tap-highlight-color: transparent; /* iOSリンクの灰色*/
	font-size: 62.5%;
	word-wrap: break-word;
}
body,
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}
main {
  display: block;
}

/* リセット-見出し */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

/* リセット-テキスト関連 */
/* ============================================ */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
	transition: .6s;
	text-underline-offset:4px; /*下線位置調整*/
}
a:hover {
	transition: .6s;
	text-decoration-color: transparent;
}
a::before,
a::after {
	transition: .6s;
}
abbr[title] {
  border-bottom: none; /* Chromeの下枠削除 */
  text-decoration: underline; /* テキスト装飾を追加 */
  text-decoration: underline dotted; /* テキスト装飾を追加 */
}
strong {
  font-weight: bold;
}
code,
kbd,
samp {
  font-family: monospace, monospace; /* ブラウザでフォントサイズの継承とスケーリングを修正 */
  font-size: inherit; /* ブラウザで奇数の `em`フォントサイズを修正 */
}
small {
  font-size: 85%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

/* リセット-リスト */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}
dd {
  margin-left: 0;
}

/* リセット-フォーム */
/* ============================================ */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: auto;
  appearance: auto;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}
::placeholder {
  color: var(--gray-dark);
}
:-ms-input-placeholder {
  color: var(--gray-dark);
}
::-ms-input-placeholder  {
  color: var(--gray-dark);
}
select {
  appearance: none;
  padding-right: 3em;
}

/* ラジオとチェックボックスの外観をリセットして、iOSでの外観を維持 */
[type="checkbox"] {
  -webkit-appearance: checkbox;
  appearance: checkbox;
}
[type="radio"] {
  -webkit-appearance: radio;
  appearance: radio;
}

/** Edge、IEでオーバーフローを表示. */
button,
input {
  overflow: visible;
}

/* Edge, Firefox, and IEのテキスト変換の継承を削除 */
button,
select {
  text-transform: none;
}

/* iOSおよびSafariのクリッカブルタイプの設定 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type="button"][disabled],
[type="reset"][disabled],
[type="submit"][disabled] {
  cursor: default;
}

/* Firefox：内側の境界線とパディングを削除 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/* フォーカススタイルを復元 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/* フォーカススタイルを復元 */
select::-ms-expand {
  display: none;
}

/* パディングリセット */
option {
  padding: 0;
}

/* 非表示にリセット */
fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit; /* Correct the color inheritance from `fieldset` elements in IE. */
  display: table; /* EdgeおよびIEでのテキストの折り返し修正 */
  max-width: 100%; /* EdgeおよびIEでのテキストの折り返し修正 */
  padding: 0; /*  `fieldset`要素をゼロにしたときに引っ掛からないように */
  white-space: normal; /* EdgeおよびIEでのテキストの折り返し修正 */
}

/* Chrome、Firefox、Operaで正しい垂直方向の配置 */
progress {
  vertical-align: baseline;
}

/* IEのデフォルトの垂直スクロールバーを削除. */
textarea {
  overflow: auto;
}

/* Chromeの増分ボタンと減分ボタンのカーソルスタイルを修正 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px; /* Safariのアウトラインスタイルを修正 */
}

/* macOSのChromeとSafariの内側のパディングを削除 */
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button; /* iOSおよびSafariのクリッカブルタイプの設定 */
  font: inherit; /* Safariでフォントのプロパティを「継承」に変更 */
}

label[for] {
  cursor: pointer;
}

/* リセット-テーブル */
/* ============================================ */
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th, td {
	padding: 0;
	font-weight: normal;
}
caption {
  text-align: left;
}


hr {
  box-sizing: content-box; /* Firefoxで正しいボックスサイズ */
  height: 0; /* Firefoxで正しいボックスサイズ */
  overflow: visible; /* EdgeとIEでオーバーフロー */
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}
address {
  font-style: inherit;
}
img {
  border-style: none;
  vertical-align: bottom;
}
embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}
/* Edge、IE +、Firefoxで正しいディスプレイを追加 */
details {
  display: block;
}
summary {
  display: list-item;
}
/* IEで正しいディスプレイを追加. */
template,
[hidden] {
  display: none;
}
/*　リセットcss終了　*/


/* ============================================ */
body {
	color: var(--black);
	font-size:  1.8em;
	font-family: Meiryo,メイリオ,Hiragino Kaku Gothic Pro,ヒラギノ角ゴ Pro W3,Osaka,MS PGothic,arial,helvetica,sans-serif;
	font-weight: 400;
	overflow-wrap: break-word;
	word-wrap: break-word;
	-webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}
@media (min-width: 960px) and (max-width: 1920px) {
body {
font-size: calc(1.6rem + ((1vw - (960 / 100 * 0.1rem)) * 100 * (18 - 16) / (1920 - 960)));
	}
}

header {
	background: var(--white);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
main {
	text-align: justify;
	position: relative;
}
main p {
  line-height: 2;
}
main *:not(li):not(td) > p:not(:last-child) {
	margin-bottom: 1em;
}
main dl,
main li {
	line-height: 1.75;
}
img {
	width: 100%;
	height: auto;
}
main table {
	width: 100%;
	border-collapse: collapse;
	border-top: 1px solid var(--gray);
	line-height: 1.75;
}
main th p, main td p {
	line-height: 1.75;
}
main th, main td {
	padding: 1.25em 1em;
	border-right: 1px solid var(--gray);
	border-bottom: 1px solid var(--gray);
	text-align: left;
	vertical-align: baseline;
}
main th:first-child,
main td:first-child {
	border-left: 1px solid var(--gray);
}
main thead tr th {
	background: var(--gray);
	text-align: center;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  body {
    font-size: 1.5rem;
  }
		main {
	}
}
@media screen and (max-width: 767px) {
	main {
		padding-top: 0;
	}
	main p {
		line-height: 1.8;
	}
  main table {
  border-collapse:separate;
  }
main th, main td {
	padding: .5em;
  }
.sp-noborder {
  border-left: none !important;
}
}
.sticky {
  position: -webkit-sticky;
  position: sticky;
}
.logo_site {
  max-width: 16rem;
	z-index: 110;
	position: relative;
}


/* PC-header */
/* ============================================ */
@media print, screen and (min-width: 960px) {
.active .logo_site {
  max-width: 8rem;
  }
	header {
		height: 12rem;
	  transition: all 0.3s ease;
		top: -6rem;
		z-index: 100;
	}
	header.active {
		height: 6rem;
		align-items: center;
		box-shadow: 0 0 12px rgba(0, 0, 0, 0.2);
		position: fixed;
		top: 0;
  }
header.active + main {
	padding-top: 12rem;
}
  .wrap-g-nav {
		display: flex;
		flex-direction: column-reverse;
		justify-content: space-between;
		width: calc(100% - 18rem);
  }
	header.active .wrap-g-nav {
		width: calc(100% - 10rem);
	}
	.header-inner {
		display: flex;
		justify-content: space-between;
		width: calc(100% - 4vw);
    max-width: var(--con-l);
	}
	header.active .header-inner {
		top: -4rem;
	}
/* PC-メニュー表示 
----------------------------------------*/
  .btn-g-nav {
    display: none;
  }
.g-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
	.wrap-g-nav-sub {
		display: flex;
		flex-direction: column-reverse;
	}
.lang-nav {
}
.g-nav {
	display: flex;
	align-items: center;
	transition: all 0.3s ease;
	width: 100%;
  }
.active .lang-nav {
  display: none;
}
	.g-nav > li:first-child {
		margin-left: auto;
	}
	.g-nav > li:last-child {
		margin-left: auto;
	}
	.g-nav > li:last-child a {
		color: var(--white);
		padding: 0 1.5em;
		margin: 0;
		height: 2.5em;
		position: relative;
	}
.g-nav > li a {
	font-size: 1.8rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0);
  display: flex;
	align-items: center;
	height: 36px;
  margin: 0 1.25em;
  position: relative;
  text-align: center;
		z-index: 1;
}
.g-nav > li:last-child a::before,
.g-nav > li a::after {
	content: '';
	background: var(--red);
	width: 0%;
	height: 2px;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transition: .3s;
	z-index: -1;
}
	.g-nav > li:last-child a::before {
	background: var(--blue);
	width: 100%;
		z-index: -2;
	}
	.g-nav > li:last-child a::before,
	.g-nav > li:last-child a::after {
	height: 100%;
	}
.g-nav > li a:hover::before,
	.g-nav > li a:hover::after {
	width: 100%;
}
}

.lang-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 1.4rem;
}
.lang-nav li {
  position: relative;
}
.lang-nav li:first-child {
	margin-right: 2em;
}
.lang-nav li a {
	display: block;
  padding: .25em 0 .25em 1em;
	position: relative;
}
.lang-nav li a::before {
	content: '';
	background: var(--gray);
	border-radius: 50%;
	width: .6em;
	height: .6em;
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto 0;
}
.lang-nav li a:hover {
	color: var(--blue);
}
.lang-nav li a:hover::before {
	background: var(--blue);
}
.lang-nav li a.active {
	color: var(--blue) !important;
	pointer-events: none;
}
.lang-nav li a.active::before {
	background: var(--blue);
}
@media (min-width: 960px) and (max-width: 1920px) {
.g-nav > li a {
font-size: calc(1.6rem + ((1vw - (960 / 100 * 0.1rem)) * 100 * (18 - 16) / (1920 - 960)));
	}
}

/* SP-header */
/* ============================================ */
@media screen and (max-width: 959px) {
	header {
		height: 50px;
    position: relative;
	}
	header .pc-only {
		display: none;
	}
	.header-inner {
		align-items: center;
		display: flex;
    justify-content: space-between;
		margin: 0 auto;
		height: 100%;
		width: calc(100% - 1em - 1em);
	}

/* SP-ハンバーガーメニュー 
----------------------------------------*/
  .btn-g-nav {
  background: var(--blue);
  width: 50px;
  height: 50px;
  display: block;
  margin-left: auto;
  position: fixed;
  right: 0;
  top: 0;
  padding: 12px;
  cursor: pointer;
  z-index: 1500;
		transition: .3s;
}
.btn-g-nav:hover {
  background: var(--blue);
	}
.btn-g-nav.active .btn-g-nav_line {
    background-color: transparent;
}
.btn-g-nav.active .btn-g-nav_line::before {
    top: 0;
    transform: rotate(45deg);
}
.btn-g-nav.active .btn-g-nav_line::after {
    top: 0;
    transform: rotate(-45deg);
}
.btn-g-nav_line {
    display: block;
    height: 1px;
    position: absolute;
    top: 18px;
    left: 50%;
    transform: translateX(-50%);
    width: 26px;
    background-color: var(--white);
    transition: all 0.3s ease;
}
.btn-g-nav_line:before,
.btn-g-nav_line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: var(--white);
    transition: inherit;
}
.btn-g-nav_line:before {
    top: -8px;
}
.btn-g-nav_line:after {
    top: 8px;
}
.btn-g-nav_text {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}
.btn-g-nav_text::before {
    content: 'メニュー';
    color: var(--white);
    position: absolute;
    width: 50px;
    right: 0;
    bottom: .5em;
    font-size: 1rem;
    text-align: center;
}
  
/* SP-メニュー表示 
----------------------------------------*/
.logo_site {
    width: 8rem;
  }
.logo_daicel {
		max-width: 160px;
		margin: 1em auto;
		padding: 1em 2em;
  }
.wrap-g-nav {
	background: rgba(256, 256, 256, .5);
	backdrop-filter: blur(16px);
  position: fixed;
  padding: 7rem 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transition: all 0.6s ease;
	z-index: 200;
  overflow: auto;
	opacity: 0;
	visibility: hidden;
}
.wrap-g-nav.active {
	opacity: 1;
	visibility: visible;
}
.g-nav,
.lang-nav {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	text-align: center;
	justify-content: center;
	font-weight: bold;
}
.wrap-g-nav-sub {
	max-width: 480px;
	width: 100%;
	margin: 0 auto;
	padding-top: 2em;
	font-size: 1.5rem;
}
.g-nav > li {
	width: 100%;
	font-size: 1.8rem;
  display: inline-block;
  padding: 1em .5em;
  margin-bottom: 2px;
}
	.g-nav > li a {
		padding-bottom: .25em;
		position: relative;
	}
.g-nav > li a::after {
	content: '';
	background: var(--red);
	width: 0%;
	height: 2px;
	margin: auto;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	transition: .3s;
}
.g-nav > li a:hover::after {
	width: 100%;
}
}



/* フッター領域 */
/* ============================================ */
footer {
  padding: 0 0 4rem;
}
.nav-footer {
	background: var(--blue);
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2em 1em;
}
.nav-footer a {
	margin: 0 1em;
	color: var(--white);
}
.nav-footer-sub {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	padding: 2em 1em 4em;
}
.nav-footer-sub a {
	color: var(--blue);
  font-size: .85em;
  margin: 0 1em;
}
.nav-footer a:hover,
.nav-footer-sub a:hover {
	text-decoration: underline;
}
footer .copy {
  font-size: 1.2rem;
	text-align: center;
}
@media screen and (max-width: 797px) {
	.nav-footer,
	.nav-footer-sub {
		gap: 1.5em 0;
		justify-content: flex-start;
	}
	.nav-footer li,
	.nav-footer-sub li {
		width: 50%;
	}
	.nav-footer a,
	.nav-footer-sub a {
		margin: 0;
	}
}

/* コンテンツ領域 */
/* ============================================ */
main:not(.index) {
}
.con-inner-l,
.con-inner-m,
.con-inner-s,
.con-inner-xs {
	width: calc(100% - 4vw);
	margin-left: auto;
	margin-right: auto;
}
.con-inner-l {
	max-width: var(--con-l);
}
.con-inner-m {
	max-width: var(--con-m);
}
.con-inner-s {
	max-width: var(--con-s);
}
.con-inner-xs{
	max-width: var(--con-xs);
}
.wrap-bread {
  background: rgba(var(--blue-rgb), .1);
  font-size: .8em;
	line-height: 1.5;
  margin-top: 10rem;
  padding: 1em 2vw;
	display: flex;
	justify-content: center;
}
.wrap-bread ul {
  max-width: var(--con-l);
	width: 100%;
  display: inline-block;
}
.wrap-bread ul li {
  position: relative;
  display: inline;
}
.wrap-bread ul li:not(:last-child)::after {
  content: ' / ';
  display: inline-block;
  margin: 0 .75em;
}
.wrap-bread ul li a {
	color: var(--blue);
	border-bottom:  1px solid  rgba(51, 51, 51, 0);
	font-weight: bold;
}
.wrap-bread ul li a:hover {
	color:  var(--black);
	border-bottom:  1px solid  rgba(51, 51, 51, 1);
}

@media screen and (max-width: 797px) {
.con-inner-l,
.con-inner-m,
.con-inner-s,
.con-inner-xs {
	width: calc(100% - 2em);
	}
.wrap-bread {
  margin-top: 8rem;
}
}


/* テキスト */
/* ============================================ */
.heading-page {
	background: linear-gradient(90deg,rgba(200, 228, 240, 1) 0%, rgba(229, 215, 243, 1) 100%);
	position: relative;
	margin-bottom: 10rem;
	font-family: 'Noto Serif', serif;
	font-size: 3.6rem;
	padding: 1.5em 0;
	text-align: center;
	letter-spacing: .15em;
	line-height: 1.2;
}
.heading-page::before {
	content: '';
	width: 1px;
	height: 30%;
	background: var(--black);
	margin: auto;
	top: 0;
	left: 0;
	right: 0;
	position: absolute;
}
.heading-1 {
	color: var(--blue);
	font-size: 4.8rem;
  margin-bottom: 1em;
  line-height: 1.4;
}
.heading-2 {
	font-size: 2.4rem;
	font-weight: bold;
  margin-bottom: 1em;
  line-height: 1.4;
	padding-left: 1.5em;
	position: relative;
}
.heading-2::before {
	content: '';
	background: var(--red);
	width: 1em;
	height: 4px;
	position: absolute;
	top: .5em;
	left: 0;
}
.heading-3 {
	font-size: 2rem;
	font-weight: bold;
  margin-bottom: .75em;
  line-height: 1.4;
}
.text-bold {
	font-weight: bold;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
.font-s,
figcaption {
	font-size: .85em;
}
@media screen and (min-width: 960px) {
}
@media screen and (max-width: 959px) {
.heading-page {
	font-size: 2.4rem;
	margin-bottom: 8rem;
}
.heading-1 {
	font-size: 3rem;
	text-align: initial;
}
.heading-2 {
	font-size: 2.2rem;
	text-align: initial;
}
.heading-3 {
	font-size: 1.6rem;
}
.font-s,
figcaption {
/*	font-size: 1.1rem;*/
}
}
/*　リンク　*/
/* ============================================ */
/*　アイコンフォント　*/
@font-face {
  font-family: 'iconset';
  src:
    url('../fonts/iconset.ttf?olw93l') format('truetype'),
    url('../fonts/iconset.woff?olw93l') format('woff'),
    url('../fonts/iconset.svg?olw93l#iconset') format('svg');
  font-weight: normal !important;
  font-style: normal;
  font-display: block;
}

[class*="icon-"]::after, 
main a[target="_blank"]::after,
[class*="icon-"]::before, 
main a:not(.link-btn):not(.link-btn-s)[href^="#anc-"]::before,
main a:not(.link-btn):not(.link-btn-s)[href*=".pdf"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".docx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".doc"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".xlsx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".xls"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".pptx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".ppt"]::after {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'iconset' !important;
  speak: never;
  font-style: normal;
  font-weight: normal !important;
  font-variant: normal;
  text-transform: none;
	text-decoration: none !important;
  vertical-align: middle;
	position: relative;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
main a:not(.link-btn):not(.link-btn-s)[target="_blank"]::after,
.icon-blank::after {
  content: "\e900";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
main a:not(.link-btn):not(.link-btn-s)[href*=".pdf"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".docx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".doc"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".xlsx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".xls"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".pptx"]::after,
main a:not(.link-btn):not(.link-btn-s)[href*=".ppt"]::after,
.icon-file::after {
  content: "\e901";
	font-size: 1em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-link::after {
  content: "\e902";
	font-size: .9em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-up::after {
  content: "\e903";
	font-size: .9em;
	margin-left: .25em;
	margin-right: .25em;
	display: inline-block;
}
.icon-down::after {
  content: "\e904";
	font-size: .8em;
	margin-left: .4em;
	margin-right: .4em;
	display: inline-block;
}

/*
.wrap-btn > .icon-lang::after,
.wrap-btn > .icon-blank::after,
.wrap-btn > .icon-link::after,
.wrap-btn > .icon-up::after,
.wrap-btn > .icon-down::after,
.wrap-btn > .icon-file::after {
	color: var(--green);
	position: absolute;
	right: .5em;
	margin: auto;
}
.wrap-btn > .icon-lang:hover::after,
.wrap-btn > .icon-blank:hover::after,
.wrap-btn > .icon-link:hover::after,
.wrap-btn > .icon-up:hover::after,
.wrap-btn > .icon-down:hover::after,
.wrap-btn > .icon-file:hover::after {
	color: var(--white);
}
*/
/*テキストリンク*/
.link-text {
  color: var(--blue);
	text-decoration: underline;
	position: relative;
}
.link-text:hover {
	color: var(--red);
	text-decoration: underline;
}
/*リンクボタン*/
.link-btn-s {
	align-items: center;
	justify-content: center;
	background: var(--white);
	border: 1px solid var(--gray);
	border-radius: 2em;
	font-size: .85em;
	display: inline-flex;
	padding: .5em 1em !important;
	position: relative;
	line-height: 1.2;
  min-height: 40px;
	min-width: 20rem;
}
.link-btn {
	align-items: center;
	justify-content: center;
	color: var(--white);
	background: var(--blue);
	border-radius: 2em;
	border: 1px solid var(--blue);
	font-weight: bold;
	display: inline-flex;
	padding: .5em 1em !important;
	position: relative;
	line-height: 1.2;
  min-height: 48px;
	min-width: 20rem;
}
.link-btn > span {
	z-index: 1;
}
.link-btn-s:hover,
.link-btn:hover {
	background: var(--white);
	border-radius: 0;
	border: 1px solid var(--blue);
	color: var(--blue);
}
main:not(.index) * + * > .link-btn-s,
main:not(.index) * + * > .link-btn {
	margin-top: .5em;
}

/*アンカーリンク*/
/*
.link-anc {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 4em;
}
.link-anc a {
	padding: 1em 1.5em;
	margin-left: .5em;
	position: relative;
	display: block;
}
.link-anc a::before {
	content: '';
	background: var(--blue);
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: 0;
	left: 0;
	transition: .3s;
}
.link-anc a:hover::before {
	background: var(--light-green);
	height: 100%;
}
.link-anc a > span {
	z-index: 1;
	padding-right: 1em;
	position: relative;
	font-weight: bold;
}
*/
@media screen and (max-width: 767px) {
main:not(.index) .link-btn,
main:not(.index) .link-btn-s {
	width: 100%;
	max-width: 48rem;
}
}

/* リスト */
/* ============================================ */
.list-topics p {
	line-height: 1.6;
}
.list-topics li {
	border-bottom: 1px solid var(--gray);
	font-size: 1.8rem;
	line-height: 1.5;
	font-weight: bold;
	padding: 1em 0;
	margin-bottom: 0 !important;
}
.topics-day {
	color: var(--dark);
	font-size: .9em;
	font-weight: normal;
}
@media screen and (max-width: 767px) {
.list-topics li {
	font-size: inherit;
	}
}
main ul,
main ol {
	line-height: 1.6;
}
main li > ul,
main li > ol {
/*  margin-top: .75em;*/
}
ol{
  counter-reset: item;
}
main ol > li:not(:last-child),
main ul > li:not(:last-child) {
/*    margin-bottom: .25em;*/
}
main ol li > ul > li:not(:last-child),
main ol li > ol > li:not(:last-child),
main ul li > ul > li:not(:last-child),
main ul li > ol > li:not(:last-child) {
/*    margin-bottom: .5em;*/
}
[class^="list-"] li:not(:last-child) {
/*	margin-bottom: 1em;*/
}
ol.list-num > li {
	counter-increment: item;
	position: relative;
	padding-left: 1.25em;
}
ol.list-num > li:before {
	position: absolute;
	left: 0;
	content: counter(item);
}
ol.list-brackets > li {
	counter-increment: item;
	position: relative;
	padding-left: 2.25em;
}
ol.list-brackets > li:before {
	position: absolute;
	left: -.5em;
	content: "（" counter(item) "）";
}
ol.list-notes-num > li {
	counter-increment: item;
	position: relative;
	padding-left: 2.5em;
}
ol.list-notes-num > li:before {
	position: absolute;
	left: 0;
	content: "※" counter(item) " ";
}
.list-notes > li {
	position: relative;
	padding-left: 1.5em;
}
.list-notes > li::before {
	content: '※';
	position: absolute;
	top: 0;
	left: 0;
}
.list-dot > li {
	position: relative;
	padding-left: 1.25em;
}
.list-dot > li::before {
	content: '';
	border-radius: 50%;
	width: .6em;
	height: .6em;
	display: inline-block;
	background: var(--dark);
	position: absolute;
	top: .5em;
	left: .15em;
}
.list-dot.blue > li::before {
    background: var(--blue);
}
.item-dl {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	border-top: 1px solid var(--dark);
}
.item-dl dt {
	width: 12em;
	background: var(--gray-dark);
	padding: 1em;
}
.item-dl dd {
	width: calc(100% - 13.5em);
	padding: 1em 0;
	position: relative;
}
.item-dl dd::after {
	content: '';
	border-bottom: 1px solid var(--dark);
	position: absolute;
	bottom: 0;
	left: -13.5em;
	width: calc(100% + 13.5em);
}
.item-dl.item-dl-documents dt {
	width: 21em;
}
.item-dl.item-dl-documents dd {
	width: calc(100% - 22.5em);
	padding: 1em 0;
	position: relative;
}
.item-dl.item-dl-documents dd::after  {
	content: '';
	border-bottom: 1px solid var(--dark);
	position: absolute;
	bottom: 0;
	left: -22.5em;
	width: calc(100% + 22.5em);
}
@media screen and (max-width: 959px) {
.item-dl {
	border-top: none;
	}
.item-dl dt {
	width: 100%;
	border-top: 1px solid var(--gray);
	font-weight: bold;
	padding: .25em .5em;
}
.item-dl dd {
	width: 100%;
	padding: .5em 0 1em;
}
.item-dl dd:last-child {
	padding-bottom: 0;
}
.item-dl dd::after {
	width: 0;
}
.item-dl.item-dl-documents dt {
	width: 100%;
	border-top: 1px solid var(--gray);
	font-weight: bold;
	padding: .25em .5em;
}
.item-dl.item-dl-documents dd {
	width: 100%;
	padding: .5em 0 1em;
}
.item-dl.item-dl-documents dd::after  {
	width: 0;
}
}

/* ページトップボタン */
/* ============================================ */
.btn-pagetop {
	position: fixed;
	bottom: 1em;
	right: 1em;
	display: none;
  z-index: 10;
}
.link-pagetop {
	display: block;
	width: 60px;
	height: 60px;
	background: var(--white);
	border-top: 2px solid var(--blue);
	color: var(--blue);
}
.link-pagetop:hover {
	background: var(--blue);
  color: var(--white);
}
.link-pagetop:after {
  position: absolute;
  content: "\e905";
  font-family: 'iconset' !important;
  font-size: 1.5em;
  top: calc(50% - .5em);
  left: calc(50% - .5em);
  display: block;
  width: 1em;
  height: 1em;
}
@media screen and (max-width: 959px) {
  .btn-pagetop {
	right: .25em;
  }
	.link-pagetop {
		width: 50px;
		height: 50px;
	}
}

/* PC・SPの表示・非表示　 */
@media screen and (min-width: 960px) {
	.sp-only {
		display: none;
	}
}
@media screen and (min-width: 768px) {
	.sp-s-only {
		display: none;
	}
}
@media screen and (max-width: 959px) {
	.pc-only {
		display: none;
	}
  .sp-scroll {
    overflow-x: auto;
  }
}
@media screen and (max-width: 768px) {
	.pc-s-only {
		display: none;
	}
	.sp-s-scroll {
	overflow-x: auto;
}
}
.max-360 {
  max-width: 36rem;
}
.max-460 {
  max-width: 46rem;
}
.max-600 {
  max-width: 60rem;
}
.max-800 {
  max-width: 80rem;
}
.width-100 {
	width: 100%;
}
.width-90 {
	width: 90%;
}
.width-85 {
	width: 85%;
}
.width-80 {
	width: 80%;
}
.width-75 {
	width: 75%;
}
.width-70 {
	width: 70%;
}
.width-65 {
	width: 65%;
}
.width-60 {
	width: 60%;
}
.width-55 {
	width: 55%;
}
.width-50 {
	width: 50%;
}
.width-45 {
	width: 45%;
}
.width-40 {
	width: 40%;
}
.width-35 {
	width: 35%;
}
.width-25 {
	width: 25%;
}
.width-20 {
	width: 20%;
}
.width-15 {
	width: 15%;
}
.width-10 {
	width: 10%;
}
.width-1w {
  width: 1em;
}
.width-2w {
  width: 2em;
}
.width-3w {
  width: 3em;
}
.width-4w {
  width: 4em;
}
.width-5w {
  width: 5em;
}
.width-6w {
  width: 6em;
}
.width-7w {
  width: 7em;
}
.width-8w {
  width: 8em;
}
.width-9w {
  width: 9em;
}
.width-10w {
  width: 10em;
}



/* フォーム */
/* ============================================ */
form button {
	padding: .5em;
	background: var(--gray);
}
input,
select,
textarea {
	border: 1px solid var(--gray-dark);
	padding: .5em .75em;
}
form [type="submit"],
form [type="submit"]:hover {
  transition: .6s;
}
.wrap-select {
  display: inline;
  position: relative;
}
.wrap-select::after {
    content: '';
    right: 1em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-bottom: 1px solid var(--black);
    border-right: 1px solid var(--black);
    position: absolute;
    display: inline-block;
    width: .6em;
    height: .6em;
}


/* margin/padding */
/* ============================================ */
.mt-0 {
	margin-top: 0 !important;
}
.mt-05 {
	margin-top: .5em !important;
}
.mt-1 {
	margin-top: 1em !important;
}
.mt-2 {
	margin-top: 2em !important;
}
.mt-3 {
	margin-top: 3em !important;
}
.mt-4 {
	margin-top: 4em !important;
}
.mt-5 {
	margin-top: 5em !important;
}
.mb-0 {
	margin-bottom: 0 !important;
}
.mb-05 {
	margin-bottom: .5em !important;
}
.mb-1 {
	margin-bottom: 1em !important;
}
.mb-2 {
	margin-bottom: 2em !important;
}
.mb-3 {
	margin-bottom: 3em !important;
}
.mb-4 {
	margin-bottom: 4em !important;
}
.mb-5 {
	margin-bottom: 5em !important;
}
.ml-0 {
	margin-left: 0 !important;
}
.ml-1 {
	margin-left: 1em !important;
}
.ml-2 {
	margin-left: 2em !important;
}
.ml-3 {
	margin-left: 3em !important;
}
.mr-0 {
	margin-right: 0 !important;
}
.mr-1 {
	margin-right: 1em !important;
}
.mr-2 {
	margin-right: 2em !important;
}
.mr-3 {
	margin-right: 3em !important;
}
.ml-auto {
	margin-left: auto !important;
}
.mr-auto {
	margin-right: auto !important;
}
.pt-0 {
	padding-top: 0 !important;
}
.pt-05 {
	padding-top: .5em !important;
}
.pt-1 {
	padding-top: 1em !important;
}
.pt-2 {
	padding-top: 2em !important;
}
.pt-3 {
	padding-top: 3em !important;
}
.pt-4 {
	padding-top: 4em !important;
}
.pt-5 {
	padding-top: 5em !important;
}
.pb-0 {
	padding-bottom: 0 !important;
}
.pb-05 {
	padding-bottom: .5em !important;
}
.pb-1 {
	padding-bottom: 1em !important;
}
.pb-2 {
	padding-bottom: 2em !important;
}
.pb-3 {
	padding-bottom: 3em !important;
}
.pb-4 {
	padding-bottom: 4em !important;
}
.pb-5 {
	padding-bottom: 5em !important;
}
.pl-0 {
	padding-left: 0 !important;
}
.pl-1 {
	padding-left: 1em !important;
}
.pl-2 {
	padding-left: 2em !important;
}
.pl-3 {
	padding-left: 3em !important;
}
.pr-0 {
	padding-right: 0 !important;
}
.pr-1 {
	padding-right: 1em !important;
}
.pr-2 {
	padding-right: 2em !important;
}
.pr-3 {
	padding-right: 3em !important;
}


/*　色　*/
/* ============================================ */
.color-red {
	color: var(--red);
}

/*　各種変数　*/
/* ============================================ */
:root {
	--white: #fff;
	--white-rgb: 256, 256, 256;
	--black: #333;
	--black-rgb: 0, 0, 0;
	--dark: #666;
	--gray-dark: #999;
	--gray: #ccc;
  --blue: #0131aa;
  --blue-rgb: 1, 49, 170;
	--dark-blue: #1b4481;
	--dark-blue-rgb: 27, 68, 129;
	--red: #d8232b;
	--red-rgb: 216, 35, 43;
	--con-l: 150rem;
	--con-m: 120rem;
	--con-s: 100rem;
	--con-xs: 80rem;
}


/* print CSS*/
/* ============================================ */
@media print {
	body {
    width: 130rem;
/*    zoom: 0.8;*/
    -webkit-print-color-adjust: exact;
    }
  header {
    position: relative;
		top: 0;
  }
  .btn-pagetop {
    display: none;
  }
}
  