@charset "UTF-8";

/* # ============================================================
   # Reset
   # ============================================================ */

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%; /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
}

*,
::before,
::after {
  background-repeat: no-repeat; /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
  box-sizing: inherit;
}

::before,
::after {
  text-decoration: inherit; /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0; /* Reset `padding` and `margin` of all elements */
  margin: 0;
}

hr {
  overflow: visible; /* Show the overflow in Edge and IE */
  height: 0; /* Add the correct box sizing in Firefox */
}

details,
main {
  display: block; /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item; /* Add the correct display in all browsers */
}

small {
  font-size: .8rem;
}

[hidden] {
  display: none; /* Add the correct display in IE */
}

abbr[title] {
  border-bottom: none; /* Remove the bottom border in Chrome 57 */
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  text-decoration: underline dotted;
}

a {
  background-color: transparent; /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0; /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace; /* Specify the font family of code elements */
}

pre {
  font-size: 1em; /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder; /* Add the correct font weight in Chrome, Edge, and Safari */
}

table {
    border-collapse:collapse;
    border-spacing:0;
}

sub,
sup {
  font-size: .75rem;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.5em;
}

img {
  border-style: none; /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

ol, ul {
  list-style: none;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}


/* Forms
------------------------------------------------- */
input,
button,
select,
textarea {
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type="checkbox"] {
	width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
	position: relative;
	margin-top: 4px;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], textarea, select {
  padding: 8px 10px;
  border: 1px solid #aaa;
  background: #fff;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], textarea {
  width: 100%;
  outline: none;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="checkbox"]:checked {
	width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
input[type="checkbox"]:checked::after{
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #00a0e9;
  border-right: 3px solid #00a0e9;
}
input[type="text"]:focus, input[type="email"]:focus, input[type="tel"]:focus, input[type="search"]:focus, textarea:focus {
  -webkit-box-shadow: 0 0 7px #08b4cb;
  box-shadow: 0 0 7px #08b4cb;
  border: 1px solid #08b4cb;
}
textarea {
  width: 100%;
  height: 200px;
  overflow: auto; /* Internet Explorer 11+ */
  resize: vertical;
}
select {
  padding-right: 40px;
  padding-left: 10px;
  background-image: url(../img/ico_select_arrow.png);
  background-repeat: no-repeat;
  background-size: 12px 10px;
  background-position: right 10px center;
}

@media only screen and (max-width: 768px) {
  textarea {
    height: 150px;
  }
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
  color: #ccc;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
  color: #ccc;
}
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
  color: #ccc;
}
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  box-shadow: 0 0 0 1000px #fff inset;
}

/* text */
input::-ms-clear {
  visibility: hidden;
}

/* password */
input::-ms-reveal {
  visibility: hidden;
}

/* select */
select::-ms-expand {
  display: none;
}

/* checkbox radio */
.checkbox-input,
.radio-input {
  display: none;
}
.checkbox-text{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.checkbox-text::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 2px;
}
.checkbox-input:checked + .checkbox-text::after{
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  left: 5px;
  width: 7px;
  height: 14px;
  transform: rotate(40deg);
  border-bottom: 3px solid #00a0e9;
  border-right: 3px solid #00a0e9;
}
.radio-input + label{
  padding-left: 20px;
  position:relative;
  margin-right: 20px;
}
.radio-input + label::before{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #999;
  border-radius: 50%;
}
.radio-input:checked + label::after{
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 15px;
  height: 15px;
  background: #00a0e9;
  border-radius: 50%;
}


/* # ============================================================
   # util
   # ============================================================ */

/* text link
------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}
.txt_red {
  color: red;
}
.txt_blue {
  color: #0068b7;
}
.txt_underline {
  text-decoration: underline;
  font-weight: 500;
}
/* span.color_m {
   color: #C02729;
} */
.bold{
	font-weight: bold;
}
.title-blue {
	color: #233b6c;
  font-weight: bold;
}
a {
	color: #000;
	text-decoration: none;
	-webkit-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
a.underline:hover {
	text-decoration: underline;
}
a.color:hover {
	color: #08b4cb;
}
a.hover_img:hover img, .hover_img a:hover img {
  opacity: .8;
}
a[href*="tel:"] {
	cursor: default;
	pointer-events: none;
}

.under-line{
	text-decoration: underline;
}
@media only screen and (max-width: 768px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}



/*clearfix
------------------------------------------------- */
.clearfix::after {
  content: "";
  display: table;
  clear: both;
}


/*img
------------------------------------------------- */
img {
	line-height: 1;
	vertical-align: top;
	width: 100%;
	height: auto;
	-webkit-transition: all 0.3s ease-in-out 0s;
	transition: all 0.3s ease-in-out 0s;
	-ms-transition: 　none;
}
figure a:hover {
  opacity: 0.8;
  transition: all 0.3s ease-in-out 0s;
}
.img-w80 {
  width: 80%;
  margin: auto;
  display: block;
}
@media only screen and (max-width: 980px) {
  .sp-img_w-60 {
    width: 60% !important;
    margin: auto;
  }
}
/* font
------------------------------------------------- */
.font_gothic {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}

.font_mincho {
  font-family: "游明朝","YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font_marugo {
  font-family: "ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
}

.font_gothic_yakuhan {
  font-family: YakuHanJPs, "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}

.font_mincho_yakuhan {
  font-family: YakuHanMPs, "游明朝","YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font_awesome {
  font-family: "Font Awesome 5 Free";
}

.font_awesome_brand {
  font-family: "Font Awesome 5 Brands";
}

.font_poppins {
  font-family: 'Poppins', sans-serif;
}


/* br
------------------------------------------------- */
.sp_only {
	display: none;
}
.tab_show {
  display: none;
}

@media only screen and (max-width: 980px) {
  .tab_none {
  display: none;
}
.tab_show {
  display: block;
}
}

@media only screen and (max-width: 767px) {
  .sp_only {
    display: inline-block;
  }
  .pc_only {
    display: none !important;
  }
}


/* align
------------------------------------------------- */
.align_l {
  text-align: left !important; }

.align_r {
  text-align: right !important; }

.align_c {
  text-align: center !important; }



/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
.animation.fast {
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -ms-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}
.animation.slow {
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
.animation.cubic {
  -webkit-transition: all 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}


/* IE,Edge用のハック
------------------------------------------------- */
/* IE11 */
_:-ms-lang(x)::-ms-backdrop, .css_hack {
	margin: 0;
}

/* Edge */
_:-ms-lang(x)::backdrop, .css_hack {
	margin: 0;
}

/* Safari */
_::-webkit-full-page-media, _:future, :root .css_hack {
	margin: 0;
}


/* # ============================================================
   # layout
   # ============================================================ */


/* html
------------------------------------------------- */

html {
	overflow-y: scroll;
	line-height: 1;
	font-size: 62.5%;
  -webkit-text-size-adjust: 100%; /* iOS 8+ */
}


/* body layout
------------------------------------------------- */

body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  background-color: #f1f2f6;
  color: #333;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-size: 1.5rem;
  line-height: 1.8;
}
body *, body *::before, body *::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ieで游font使用時、文字が上に行くので他の書体を使用する */
_:lang(x)::-ms-backdrop, body {
  font-family: "メイリオ", Meiryo, sans-serif;
}

.inner {
  max-width: calc(1920px + 3.57vw + 3.57vw);
  padding: 0 3.57vw;
  margin: 0 auto;
}

.w-100 {
  width: 100%;
}
.w-90,
input.w-90 {
  width: 90%;
}
.w-80,
input.w-80 {
  width: 80%;
}
.w-70,
input.w-70 {
  width: 70%;
}
.w-60,
input.w-60 {
  width: 60%;
}
.w-50,
input.w-50 {
  width: 50%;
}
.w-40,
input.w-40 {
  width: 40%;
}
.w-30,
input.w-30 {
  width: 30%;
}
.w-20,
input.w-20 {
  width: 20%;
}
.w-10,
input.w-10 {
  width: 10%;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mb-10 {
  margin-bottom: 10px !important;
}
.mb-20 {
  margin-bottom: 20px !important;
}
.mb-30 {
  margin-bottom: 30px !important;
}
.mb-40 {
  margin-bottom: 40px !important;
}
.mb-60 {
  margin-bottom: 60px !important;
}
.mb-80 {
  margin-bottom: 80px !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mt-10 {
  margin-top: 10px !important;
}
.mt-20 {
  margin-top: 20px !important;
}
.mt-30 {
  margin-top: 30px !important;
}
.mt-40 {
  margin-top: 40px !important;
}
.mt-60{
  margin-top: 60px !important;
}
.mt-80 {
  margin-top: 80px !important;
}
.pl-0 {
  padding-left: 0 !important;
}
.unit-box {
	display: flex;
}
.unit20 {
	width:19.4%;
}
.unit30 {
	width:29.1%;
}
.unit40 {
	width:38.8%;
}
.unit50 {
	width:48.5%;
}
.unit60 {
	width:58.2%;
}
.unit70 {
	width:67.9%;
}
.unit80 {
	width:77.6%;
}
.unit100 {
	width:100%;
}
@media only screen and (max-width: 979px) {
.unit-box {
	display: block;
}
.unit20,
.unit30,
.unit40,
.unit50,
.unit60,
.unit70,
.unit80 {
	width:100%;
}
}
/* header
------------------------------------------------- */
header {
	position: fixed;
	z-index: 100;
	transition: .3s;
	/*height: 115px;*/
	top: 0;
	left: 0;
  margin: 0;
  width: 100%;
  background-color: #fff;
}
header .logo {
  float: left;
  margin: 25px 0 0 25px;
}
header .logo img {
  width: 165px;
}
.nav-global-sub {
  float: right;
  width: calc(100% - 190px);
  display: flex;
  justify-content: flex-end;
  margin-bottom: 15px;
}
.nav-global-sub .nav-sub {
  display: flex;
}
.nav-global-sub .nav-sub li {
  margin-right: 2rem;
  font-size: 1.2rem;
}
.nav-global-sub .nav-sub li:last-child {
  margin-right: 1.6rem;
}
.nav-global-sub .nav-sub li a {
  position: relative;
  display: inline-block;
  padding-top: 14px;
}
.nav-global-sub .nav-sub li a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 2px;
  background: #233b6c;
  transform: scale(0, 1);
  transform-origin: center top;
  transition: transform .3s;
}
.nav-global-sub .nav-sub li a:hover::after {
  transform: scale(1, 1);
}
.nav-global-sub .nav-btn_red a {
  font-size: 1.2rem;
  color: #fff;
  background-color: #932e44;
  border: 1px solid #932e44;
  display: inline-block;
  height: 45px;
  padding: 11px 8px 10px !important;
}
.nav-global-sub .nav-btn_red a:hover {
  color: #932e44;
  background-color: #fff;
}
.nav-global-sub .nav-btn_red a.external {
  padding-right: 26px !important;
}
.nav-global-sub .nav-btn_red a.external::after {
  top: 17px;
  right: 10px;
  background: url(../img/ico_external_white.png) no-repeat;
}
.nav-global-sub .nav-btn_red a.external:hover::after {
  background: url(../img/ico_external_red.png) no-repeat;
}
.nav-global-sub .nav-lang {
  display: flex;
  justify-content: center;
  background-color: #233b6c;
  width: 100px;
  height: 45px;
}
.nav-global-sub .nav-lang li {
  color: #06d3ff;
  font-size: 1.3rem;
  padding-top: 10px;
}
.nav-global-sub .nav-lang li:first-child:after {
  content: "/";
  color: #fff;
  margin:0 4px;
  font-size: 1.2rem;
}
.nav-global-sub .nav-lang li a {
  color: #fff;
}
.nav-global-sub .nav-lang li a:hover {
  color: #06d3ff;
}
.head-nav {
  float: right;
  width: calc(100% - 190px);
  display: flex;
  justify-content: flex-end;
  z-index: 100;
}
.head-nav > ul {
  display: flex;
}
.head-nav > ul li.dropmenu > a {
  cursor: pointer;
}
.head-nav > ul li a {
  display: inline-block;
  padding: 10px 15px 12px;
}
.head-nav > ul li a:hover {
  border-bottom: #233b6c 5px solid;
}
a.external {
  position: relative;
}
.head-nav > ul li a.external {
  padding-right: 40px;
}
a.external::after {
  position: absolute;
  content: "";
  width: 13px;
  height: 10px;
  top: 17px;
  right: 20px;
  background: url(../img/ico_external.png) no-repeat;
}

.menu_open_pc {
  display: none;
  width: 100%;
  position: absolute;
  left: 0;
  max-height: calc(80vh - 75px);
  overflow-y: auto;
  letter-spacing: normal;
  padding: 0;
  margin: 0;
}
.menu_open_pc .openpc_nav {
  width: 100%;
  margin: 0;
  padding: 30px 1%;
  background: #f1f2f6;
  display: flex;
  justify-content: center;
}
.menu_open_pc .openpc_nav ul {
  flex-basis: 33%;
  line-height: 1.5;
  max-width: 350px;
}
/*
.menu_open_pc .openpc_nav ul.buck_list {
margin-right: auto;
}
*/
div.col2_lineup::after {
    content: '';
    display: block;
    width: 33%;
    margin-left: 2.5%;
    max-width: 350px;
}
	
/*
.menu_open_pc .openpc_nav.seminar_menu{
padding-left: 4%;
}
*/
.dropmenu select.seminar_backnumber {
padding: 2px 30px 2px 10px;
display: block;
padding-top: 2px;
padding-bottom: 2px;
margin-top: 10px;
margin-left: 2rem;
}
.menu_open_pc .openpc_nav ul:not(:last-child) {
  margin: 0 2.5% 0 0;
}
.menu_open_pc .openpc_nav ul li {
  display: block;
  padding: 6px 0;
}
.head-nav .menu_open_pc .openpc_nav ul li a {
  display: inline-block;
  padding: 0;
  text-indent: -2rem;
  margin-left: 2rem;
}

.head-nav .menu_open_pc .openpc_nav ul li a::before , .head-nav .menu_open_pc .openpc_nav ul li span::before {
  content: "－";
  color: #233b6c;
  margin-right: 5px;
}
.head-nav .menu_open_pc .openpc_nav ul li a:hover {
  color: #00a0e9;
  border-bottom: none;
}
/* .head-nav .menu_open_pc .openpc_nav ul li a:hover span.color_m {
  color: #00a0e9;
} */
.head-nav .menu_open_pc .openpc_nav ul li ul {
  border-top: #233b6c 1px solid;
  margin: 7px 0 0;
  padding-top: 10px;
}
.acodion_back_pc.active {
    background: rgba(0,0,0,0.4);
    height: 100vh;
    position: fixed;
    width: 100%;
    display: block;
    left: 0;
    top: 100px;
    z-index: 5;
}

div#header_sp{
  display: none;
}
.menu_open {
  display: none;
}
.nav_toggle {
  display: none;
}



/* mainvisual bread
------------------------------------------------- */
.mainvisual {
  /*margin-top: 115px;*/
  margin-bottom: 15px;
  position: relative;
}
.mainvisual::after {
  content: "";
  height: 100px;
  width: 100%;
  top: 0;
  display: block;
  background: #fff;
  position: absolute;
  z-index: -1;
}
.mainvisual .inner > div {
  background: no-repeat center top/cover;
  height: 300px;
  display: flex;
  align-items: center;
}
.mainvisual .inner .cat-about {
  background-image: url(/about/img/cat_mainvisual.jpg);
}
.mainvisual .inner .cat-arbitration {
  background-image: url(/arbitration/img/cat_mainvisual.jpg);
}
.mainvisual .inner .cat-mediation {
  background-image: url(/mediation/img/cat_mainvisual.jpg);
}
.mainvisual .inner .cat-contact {
  background-image: url(/common/img/mainvisual.jpg);
}
.mainvisual .inner .cat-seminar {
  background-image: url(/common/img/mainvisual.jpg);
}
.mainvisual .inner .cat-publication {
  background-image: url(/publication/img/cat_mainvisual.jpg);
}
.mainvisual .inner .cat-member {
  background-image: url(/common/img/mainvisual.jpg);
}
.mainvisual .inner .cat-news {
  background-image: url(/common/img/mainvisual.jpg);
}
.mainvisual .inner > div h2 {
  background-color: rgba(34,58,108,.9);
  flex-basis: 520px;
  height: 100px;
  display: flex;
  align-items: center;
  color: #fff;
  font-size: 3.6rem;
  padding-left: 2%;
}

.breadcrumbs {
  margin-bottom: 40px;
  font-size: 1.2rem;
  color: #000;
}
.breadcrumbs ul li {
  display: inline-block;
}
.breadcrumbs ul li:not(:last-child)::after {
  content: ">";
  margin: 0 3px 0 7px;
}
.breadcrumbs ul li a:hover {
  text-decoration: underline;
}



/*  side
------------------------------------------------- */
aside {
  position: absolute;
  left: 0;
  width: 23vw;
  min-width: 200px;
  padding-left: calc((100% - 1920px - 7.5vw) / 2);
  background-color: #233b6c;
  text-align: left;
}
@media only screen and (min-width: 2090px) {
aside {
}
}
aside.active{
	position: fixed;
}
_:-ms-lang(x)::-ms-backdrop, aside {
  padding-left: 0;
}
aside .side-nav {
  margin-left: 3.57vw;
  margin-right: 2.5vw;
  padding: 30px 0 30px 0;
}
.side-title {
  color: #fff;
  font-size: 1.7rem;
  font-weight: bold;
  border-bottom: #fff 1px solid;
  margin-bottom: 10px;
}
aside .side-nav li {
  padding-top: 10px;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
}
aside .side-nav li:not(:last-child) ul {
  margin-bottom: 20px;
}
aside .side-nav ul.linklist > li {
  font-weight: normal;
  text-indent: -1.8rem;
  margin-left: 1.8rem;
}
aside .side-nav ul.linklist > li::before {
  content: "－";
  color: #fff;
  margin-right: .5rem;
}
aside .side-nav li a {
  color: #fff;
  font-weight: normal;
}
aside .side-nav li a:hover {
  text-decoration: underline;
}

/* --- サイド セミナー＆イベント検索 --- */
.seminar-search {
  margin-top: 25px;
  display: flex;
}
.seminar-search input[type="search"] {
  width: calc(100% - 55px);
  border-color: #233b6c;
  padding: 2px 10px;
}
.seminar-search input[type="submit"] {
  width: 55px;
  padding: 2px 0;
  background-color: #fff;
  text-align: center;
  color: #233b6c;
  border: #233b6c 1px solid;
  cursor: pointer;
	-webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.seminar-search input[type="submit"]:hover {
  background-color: #00a0e9;
}




/*  text style
------------------------------------------------- */
a.text-link, a.text-link-blank {
  color: #0068b7;
  text-decoration: underline;
}
a.text-link:hover, a.text-link-blank:hover {
  color: #00a0e9;
}
a.text-link-blank {
  padding-right: 3px;
}
a.text-link-blank::after {
  display: inline-block;
  margin-left: 3px;
  content: "";
  width: 13px;
  height: 10px;
  background: url(../img/ico_external_txt.png) no-repeat;
}
a.text-link-blank:hover::after {
  background-image: url(../img/ico_external_txt_hover.png);
}
.text-link-more a {
    color: #233b6c;
    background: url(../img/back_arrow.png) no-repeat 50% 50%;
    background-position: right;
    padding-right: 44px;
}
.text-link-more a:hover {
	color: #00a0e9;
	background: url("../img/back_arrow_hover.png") no-repeat 50% 50%;
	background-position: right;
}
.text-link-more a {
    color: #233b6c;
    background: url(../img/back_arrow.png) no-repeat 50% 50%;
    background-position: right;
    padding-right: 44px;
}
.text-link-more a:hover {
	color: #00a0e9;
	background: url("../img/back_arrow_hover.png") no-repeat 50% 50%;
	background-position: right;
}
/*検索、送信ボタン*/
.btn-area {
    max-width: 1300px;
    display: flex;
    justify-content: center;
    margin: 0 auto 40px auto;
    font-size: 1.7rem;
}
.btn-confirm {
  height: 60px;
  background: #233b6c;
  color: #ffffff;
  text-align: center;
	-webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.btn-confirm:hover {
  background: #00a0e9;
  color: #ffffff;
}
.btn-confirm:disabled,
.btn-confirm:disabled:hover {
  background: #eeeeee;
  color: #aaaaaa;
}
.btn-cancel {
  height: 60px;
  background: #aaaaaa;
  color: #ffffff;
  font-size: 1.7rem;
}
.btn-cancel:hover {
  height: 60px;
  background: #777777;
  color: #ffffff;
}

/*リンクボタン*/
.btn-link {
  display: inline-block;
  position: relative;
  font-weight: bold;
}
.btn-link a, .btn-link a:link, .btn-link a:visited {
  background: #fff;
  border: 1px solid #233b6c;
  display: inline-block;
  position: relative;
  color: #233b6c;
  vertical-align: text-top;
  text-align: center;
  text-decoration: none;
  margin-top: -4px;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.8;
  padding: 5px 30px 4px 30px;
}
.btn-link a::after {
  content: "";
  background: #233b6c;
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  height: 100%;
  width: 100%;
  z-index: -1;
}
.btn-link a:hover {
  background: #233b6c;
  color: #fff;
  text-decoration: none;
}
.btn-link a:hover::after {
  background: #233b6c;
  top: 0;
  left: 0;
}
.icon-mail a::before {
  content: "";
  display: inline-block;
  background: url(../img/ico_mail.png) no-repeat;
  width: 21px;
  height: 15px;
  margin: 0 8px 0 0;
}
.icon-mail a:hover::before {
  background: url(../img/ico_mail_hover.png) no-repeat;
}
.icon-blank::after {
  content: "";
  display: inline-block;
  background: url(../img/ico_external.png) no-repeat;
  width: 13px;
  height: 10px;
  margin: 0 0 0 8px;
}
a:hover .icon-blank::after {
  background: url(../img/ico_external_white.png) no-repeat;
}
/*.btn-text-link {
  padding: 10px 40px 8px 40px;
}*/
a.link-inpage {
  display: block;
  padding-top: 120px;
  margin-top: -120px;
}
/*アイコン ファイル、カテゴリー*/
span.icon-pdf, span.icon-xlsx, span.icon-docx, span.icon-cat {
  display: inline-block;
  width: 60px;
  margin: 0 3px;
  color: #fff;
  background-color: #d42e30;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.4rem;
  text-decoration: none;
  line-height: 1;
	-webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  font-weight: normal;
}
span.icon-pdf, span.icon-xlsx, span.icon-docx {
  font-family: 'Poppins', sans-serif;
}

span.icon-xlsx {
  background-color: #217346;
}
span.icon-docx {
  background-color: #2b579a;
}
span.icon-cat {
  width: 90px;
  background-color: #233b6c;
}

span.special-number {
    background: #233B6C;
    padding: 0 .75em 0 .5rem;
    color: #fff;
  display: inline-block;
  position: relative;
  height: 1.5em;
  line-height: 1.5em;
}
span.special-number:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  top: 0;
  right: 0;
  border-width: .75em 5px .75em 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
  z-index: 1;
}
li.special {
    display: flex;
}
li.special:not(:last-child) {
   margin-bottom: .5em;
}

li.special > div {
  flex-basis: 10rem;
  margin-right: 1rem;
}
li.special > div + div.w-100 {
  flex-basis: initial;
  margin-right: 1rem;
}
.special > .w-100 > ul:last-of-type {
  margin-bottom: 0;
}

.box-title-page {
  margin-top: 40px;
  position: relative;
  padding: 0 0 20px;
}
.box-title-page .title-page {
  width: 90%;
  margin: 0 0 50px 5%;
  padding: 22px 1em 16px 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.0rem;
  line-height: 1.4;
  background-color: #233b6c;
  color: #fff;
  font-weight: bold;
  position: relative;
  z-index: 3;
}
.heading {
  position: relative;
  width: 105.5%;
  border-bottom: #233b6c 1px solid;
  font-size: 2.6rem;
  line-height: 1.5;
  padding: 0 5px 14px 5.25%;
  font-weight: bold;
  margin-top: 80px;
  margin-left: -5.5%;
  margin-bottom: calc(46px - (((2.4rem * 1.8) - 2.4rem) / 2));
}
.heading::after {
  position: absolute;
  content: "";
  background-color: #dddddd;
  width: 100%;
  height: 2px;
  bottom: -5px;
  left: 0;
}
.heading-m {
  color: #233b6c;
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: bold;
  margin-bottom: calc(30px - (((1.7rem * 1.8) - 1.7rem) / 2));
}
.heading-s {
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: calc(24px - (((1.6rem * 1.8) - 1.6rem) / 2));
}
.title-item {
  color: #233b6c;
  font-size: 1.7rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.title-item a.text-link, .title-item a.text-link-blank {
  font-size: 1.5rem;
  font-weight: normal;
}
.title-item::before {
  content: "◆";
}
.title-item.no-ico::before {
  content: none;
}
.contents-2col .text-note, .contents-1col .text-note {
  font-size: 1.2rem;
  margin-bottom: calc(40px - (((1.6rem * 1.8) - 1.6rem) / 2));
}

.txt-note_list {
  display: flex;
  font-size: 1.2rem;
}
.txt-note_list span{
  display: inline-block;
  padding-right: .2em;
}

.list-circle-heading {
  position: relative;
  margin-left: 2rem;
  margin-top: 30px;
}
.list-circle-heading:first-child {
  margin-top: 0;
}
.list-circle-heading::before {
  position: absolute;
  top: 2px;
  left: -1.8rem;
  content: "●";
  font-size: 1.4rem;
  color: #999;
}
.list-circle {
  margin-bottom: calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2));
}
.list-circle li {
  position: relative;
  margin-left: 2rem;
}
.list-circle > li::before {
  position: absolute;
  top: 4px;
  left: -1.6rem;
  content: "●";
  font-size: 1.1rem;
  color: #233b6c;
}
.list-circle li.txt_red::before {
  color: red;
}
.list-number {
  list-style: decimal;
  margin: 0 0 calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2)) 2rem;
}
p em,
.text-b-blue {
  color: #233b6c;
  font-weight: bold;
}
.topic {
  border: #233b6c 1px solid;
  border-left: #233b6c 5px solid;
  padding: 36px 40px 30px;
}
.topic *:last-child {
  margin-bottom: 0;
}
.title-topic {
  color: #233b6c;
  font-weight: bold;
  font-size: 1.7rem;
  margin-bottom: 20px;
}

table.table-item {
  width: 100%;
  border-collapse:collapse;
}
table.table-auto {
    border-collapse: collapse;
}
table.table-item th, table.table-item td,
table.table-auto th, table.table-auto td {
  border: #999999 1px solid;
  text-align: left;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item th,
table.table-auto th {
  background-color: #f1f2f6;
}
table.table-auto th, 
table.table-auto td {
    padding-left: 1em;
    padding-right: 1em;
}
table.table-item-small {
  width: 100%;
}
table.table-item-small th, table.table-item-small td {
  border: #999999 1px solid;
  text-align: center;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item-small th {
  background-color: #f1f2f6;
}
.table-performance tr td:first-child,
.table-performance tr td:nth-child(3),
.table-performance tr td:nth-child(4),
.table-performance tr td:nth-child(5) {
  white-space: nowrap;
}
table.table-item-big {
  width: 100%;
  table-layout: fixed;
}
table.table-item-big th,
table.table-item-big td {
  border: #999999 1px solid;
  text-align: center;
  vertical-align: top;
  padding: 8px 1%;
}
table.table-item-big th {
  background-color: #f1f2f6;
}
table.table-item.th-color th,
table.table-auto.th-color th,
table.table-item-small.th-color th,
table.table-performance.th-color th,
table.table-item-big.th-color th {
  background-color: #233b6c;
  color: #fff;
}

.msg-error p {
  color: #f00;
  background: #ffeced;
  padding: 10px;
}

.font-l {
  font-size: 1.7rem;
}
.font-s {
  font-size: 1.4rem;
}
.font-ss {
  font-size: 1.2rem;
}
ul.list-lower-roman {
    list-style: lower-roman;
    padding-left: 32px;
	margin-bottom: calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2));
}

.box_border01 {
  border: 1px solid #233b6c;
  padding: 20px 3%;
  margin-bottom: calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2));
}


/* contents
------------------------------------------------- */
main.contents-1col,
main.contents-2col {
  font-feature-settings: "palt";
  letter-spacing : 0.05em;
}
/* main.contents-1col .inner {
} */
main.contents-2col {
  position: relative;
}
main.contents-2col .inner {
  display: flex;
  justify-content: flex-start;
  padding: 0 3.57vw 0 0;
}
article {
  background-color: #fff;
  margin-bottom: 100px;
}
main.contents-1col article {
  margin: 0 0 60px 0;
  min-height: 500px;
  z-index: 1;
}
main.contents-2col article {
  max-width: 1570px;
  min-width: 400px;
  min-height: 500px;
  margin: 0 0 60px 26vw;
  width: 74vw;
  z-index: 1;
}
main.contents-1col article::before,
main.contents-2col article::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 40px;
  background: #f1f2f6;
  z-index: 2;
}
/* .cnt-padding {
} */
.contents-2col p, .contents-1col p {
  margin-bottom: calc(30px - (((1.6rem * 1.8) - 1.6rem) / 2));
}
section {
  margin-bottom: 40px;
}
article > section,
article > div {
  width: 90%;
  margin-left: 5%;
}


/* footer
------------------------------------------------- */
footer::before {
  content: "";
  height: 120px;
  width: 100%;
  display: block;
  background: #fff;
}
.footer-address {
  background-color: #f1f2f6;
  padding: 30px 0 50px;
}
.footer-address .ft-logo {
  display: flex;
  margin-bottom: 20px;
  font-size: 1.7rem;
  font-weight: bold;
}
.footer-address .ft-logo p {
  margin-top: 10px;
}
.footer-address .ft-logo a {
  margin-right: 15px;
}
.footer-address .ft-logo a img {
  width: 120px;
}
.footer-address dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.4rem;
}
.footer-address dl dt {
  flex-basis: 110px;
  font-weight: bold;
}
.footer-address dl dd {
  flex-basis: calc(100% - 110px);
}

.footer-banner {
  background: #d7e4f1;
  padding: 60px 0;
}
.footer-banner ul {
  display: flex;
  justify-content: center;
}
.footer-banner ul li {
  width: 30%;
  max-width: 300px;
  margin: 0 10px;
}

.nav-footer {
  background-color: #233b6c;
  padding: 25px 0;
}
.nav-footer ul {
  display: flex;
  justify-content: center;
  font-size: 1.2rem;
}
.nav-footer ul li a {
  color: #fff;
}
.nav-footer ul li a:hover {
  color: #06d3ff;
}

.copyright {
  background-color: #0c2044;
  color: #fff;
  text-align: center;
  padding: 15px 0;
}
.copyright small {
    font-size: 1.1rem;
}


/* pagination
------------------------------------------------- */
.pagination.wrap {
    margin: 30px auto 20px;
}
.pager-pc {
  display: block;
}
.pager-sp {
  display: none;
}
.pagination ul {
    display: flex;
    justify-content: center;
}
.pagination ul li {
  background: #fff;
  line-height: 36px;
  text-align: center;
  text-decoration: none;
}
.pagination ul li a {
	background-color: #fff;
  color: #233b6c;
  display: block;
}
.pagination ul li a:hover {
	background-color: #233b6c;
	color: #fff;
}
.pagination ul li ul li {
  margin: 0 5px;
  width: 36px;
  border: 1px solid #233b6c;
}
.pagination ul li.prev,
.pagination ul li.next {
  margin: 0;
  width: 60px;
  border: 1px solid #233b6c;
}
.pagination ul li.prev {
	margin-right: 5px;
}
.pagination ul li.next {
	margin-left: 5px;
}
.pagination > div > ul > li > ul > li.active {
  background-color: #233b6c;
  border: 1px solid #233b6c;
  font-weight: bold;
}
.pagination > div > ul > li > ul > li.active {
	color: #fff;
}
.pagination > div > ul > li > ul > li.dot3-box {
  border: none;
  margin: 0;
}

/* 目次
------------------------------------------------- */
.cat-list {
  width: 100%;
  padding: 0;
  margin: 0 auto;
	max-width: 1300px;
}
.cat-list .cat-list-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
}
.cat-list .cat-list-wrap > ul {
  flex-basis: 30%;
  line-height: 1.5;
  border-left: 2px solid #233b6c;
  padding-left: 1.5em;
}
.cat-list .cat-list-wrap ul li {
    display: block;
    padding: 6px 0;
}
.cat-list .cat-list-wrap ul li ul {
    margin: 7px 0 20px;
    padding-top: 10px;
}
.cat-list .cat-list-wrap ul li a {
    display: inline-block;
    padding: 0;
}
.list-text-link.col3-2 {
margin-right: auto;
margin-left: 5%;
}
.cat-list .cat-list-wrap ul.list-text-link > li > a::before {
  content: "－";
  color: #bbb;
  margin-right: 3px;
}
.cat-list .cat-list-wrap ul li a:hover {
  color: #00a0e9;
}
/* .cat-list .cat-list-wrap ul li a:hover span.color_m {
  color: #00a0e9;
} */
ul.list-text-link li {
  text-indent: -1.8rem;
  margin-left: 3.8rem;
}
ul.list-text-link.buck_list li {
margin-left: 1.9rem;
}
.list-text-link.buck_list li select.seminar_backnumber {
display: block;
margin-top: 10px;
padding: 1px 40px 1px 10px;
}

/* 出版物 メニュー
------------------------------------------------- */
.publication-cat-list ul.list-text-link li {
  text-indent: -0.8rem;
  margin-left: 2rem;
}
/*
.cat-list.publication-cat-list .cat-list-wrap ul li a {
  margin-left: 8px;
}
*/
.cat-list.publication-cat-list .cat-list-wrap ul li a::before {
  display: inline-block;
}
.publication-cat-list ul.list-text-link .link-ttl li {
  margin-left: 0;
  text-indent: 0;
}
.link-ttl span {
  font-weight: bold;
}
.publication-cat-list ul.list-text-link .link-ttl li a{
  margin-left: 0;
}
ul.list-text-link .list-circle > li {
  display: flex;
}
.cat-list .cat-list-wrap ul.link-ttl ul {
  padding-top: 0;
  margin-top: 2px;
  margin-bottom: 10px;
  position: relative;
  padding-left: 1.4rem;
}
ul.list-text-link .list-circle > li::before {
  position: absolute;
  display: inline-block;
  content: "●";
  font-size: 1.1rem;
  color: #233b6c;
  top: 8px;
  left: -1.4rem;
}
/* リンク先の見出しがヘッダーに隠れてしまう場合
------------------------------------------------- */
.anc_link-inpage{
  padding-top: 120px;
  margin-top: -120px;
}

/* # ============================================================
   # 768px~979pxここから
   # ============================================================ */
@media only screen and (max-width: 979px) and (min-width: 768px){

/* header
------------------------------------------------- */
header {
  /*height: 140px;*/
}
.head-nav {
  float: none;
  width: 100%;
}
.head-nav > ul li a {
  padding: 10px 11px 12px;
}
.mainvisual {
  /*margin-top: 140px;*/
}
/*.menu_open_pc {
  top: 140px;
}*/

/* side
------------------------------------------------- */
.fix-box {
   position: fixed;
   top: 140px;
   right: 0px;
}

  
  a.link-inpage {
  display: block;
  padding-top: 140px;
  margin-top: -140px;
}

}



/* # ============================================================
   # 0~767pxここから
   # ============================================================ */

@media only screen and (max-width: 767px) {

/* body layout
------------------------------------------------- */

.inner {
  width:100%;
  margin: 0;
  padding: 0 5%;
}
.w-100,
.w-90,
input.w-90,
.w-80,
input.w-80,
.w-70,
input.w-70,
.w-60,
input.w-60,
.w-50,
input.w-50,
.w-40,
input.w-40 {
  width: 100%;
}
.w-30,
input.w-30,
.w-20,
input.w-20,
.w-10,
input.w-10 {
  width: 50%;
}


/* hamburger button
------------------------------------------------- */
.nav_toggle {
  display: block;
  position: absolute;
  /*top: 16px;*/
  right: 12px;
  width: 40px;
  height: 40px;
  margin-top: 16px;
  cursor: pointer;
  z-index: 100;
}
.nav_toggle span {
  display: block;
  position: absolute;
  top: 50%;
  width: 100%;
  height: 2px;
  background-color: #233b6c;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.nav_toggle span:nth-of-type(1) {
  margin-top: -12px;
}
.nav_toggle span:nth-of-type(3){
  margin-top: 12px;
}
/* nav open */
.sp_menu.active .nav_toggle {
  position: fixed;
}
.sp_menu.active .nav_toggle span:nth-of-type(1) {
  top: 20px;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  margin-top: 0;
}
.sp_menu.active .nav_toggle span:nth-of-type(2) {
  left: 50%;
  width: 0;
}
.sp_menu.active .nav_toggle span:nth-of-type(3) {
  top: 20px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
  margin-top: 0;
}



/* header
------------------------------------------------- */
div#header{
	display: none;
}
div#header_sp {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 60;
  width: 100%;
  background-color: #fff;
}
div#header_sp .logo {
  margin: 10px 0 10px 3%;
}
div#header_sp .logo img {
  width: 150px;
}
.menu_in {
  display: none;
  position: absolute;
  left: 0;
  z-index: 10;
  width: 100%;
  margin-top: 75px;
  overflow: auto;
}
.acd-menu {
  background-color: #f1f2f6;
}
.menu_in .menu_cat > ul > li {
  border-bottom: solid 1px #ddd;
}
.menu_in .menu_cat li a.icon, .menu_in .menu_cat li a.icon-no {
  padding: 10px 5%;
  font-size: 1.7rem;
  display: block;
  font-weight: bold;
  cursor: pointer;
  color: #333333;
}

.menu_in .menu_cat li a.icon:after {
  content: "∨";
  color: #333333;
  position: absolute;
  right: 4%;
  font-size: 1.6rem;
	padding-top: 4px;
}
.menu_in .menu_cat li a.icon.active:after {
  content: "∧";
}
.menu_cat .menu_open {
  padding: 0 4% 0 7%;
}
.menu_cat .menu_open ul li {
  font-size: 1.6rem;
  font-weight: bold;
}
.menu_cat .menu_open ul li ul {
  margin-bottom: 10px;
}
.menu_cat .menu_open ul li a {
  font-weight: normal;
  padding: 4px 0;
  display: block;
  text-indent: -2rem;
  margin-left: 2rem;
}
.menu_cat .menu_open ul li a::before {
  content: "－";
  color: #233b6c;
  font-size: 2rem;
}
.menu_in .menu_cat li a.external::after {
  top: 24px;
  right: 16px;
}
.menu_in .nav-sub {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
  width: 94%;
  margin: 0 auto;
}
.menu_in .menu_cat .nav-sub li {
  flex-basis: 48%;
  margin: 0 1%;
  border-bottom: none;
}
.menu_in .nav-sub li a {
  display: block;
  text-align: center;
  border-bottom: solid 1px #ddd;
  padding: 10px 0 8px;
}
.menu_in .nav-btn_red {
  display: flex;
  flex-wrap: wrap;
  padding: 0 0 20px;
  width: 94%;
  margin: 0 auto;
}
.menu_in .nav-btn_red li {
  width: 100%;
  text-align: center;
  border-bottom: none;
}
.menu_in .nav-btn_red li:not(:first-of-type) {
 margin-top: 3px;
}
.menu_in .nav-btn_red li a {
  width: 100%;
  color: #fff;
  background-color: #932e44;
  padding: 3px 0;
  display: inline-block;
}
.menu_in .menu_cat .nav-btn_red a.external {
  padding-right: 26px !important;
}
.menu_in .menu_cat .nav-btn_red a.external::after {
  top: calc((100% - .5em) / 2);
  right: 10px;
  background: url(../img/ico_external_white.png) no-repeat;
}
.menu_in .nav-lang {
  display: flex;
  padding: 0 0 20px;
  width: 94%;
  margin: 0 auto;
}
.menu_in .nav-lang li {
  flex-basis: 49%;
  background-color: #233b6c;
  color: #06d3ff;
  text-align: center;
  padding: 3px 0;
}
.menu_in .nav-lang li:first-child {
  flex-basis: 50%;
  margin-right: 1%;
}
.menu_in .nav-lang li a {
  display: block;
  color: #fff;
}
div.col2_lineup::after {
content: '';
display: none;
}
.btn_close a {
  display: block;
  text-align: center;
  background-color: #fff;
  vertical-align: middle;
}
.btn_close a::before {
  content: "\0d7";
  font-size: 3rem;
}


.acodion_back2.active {
  background: rgba(0,0,0,0.4);
  height: calc(100vh - 75px);
  position: fixed;
  width: 100%;
  display: block;
  left: 0;
  top: 75px;
  z-index: 5;
}
.acodion_back_pc {
    display: none;
}
.acodion_back_pc.active {
    display: none;
}



/* mainvisual bread
------------------------------------------------- */
.mainvisual {
}
.mainvisual .inner {
  padding: 0;
}
.mainvisual .inner > div {
  height: 200px;
}
.mainvisual .inner > div h2 {
  display: block;
  height: auto;
  font-size: 2.4rem;
  flex-basis: 100%;
  text-align: center;
  padding: 10px 5%;
}

.breadcrumbs {
  margin-bottom: 20px;
}



/*  side
------------------------------------------------- */
aside {
  position: relative;
  left: auto;
  width: 100%;
  margin-bottom: 60px;
}
aside .side-nav {
  max-width: none;
  margin-left: 0;
  padding: 20px 5%;
}
	
aside.active{
	position: relative;
}



/*  text style
------------------------------------------------- */
a.link-inpage {
  display: block;
  padding-top: 20px;
  margin-top: -20px;
}
.box-title-page {
  margin-top: 40px;
  position: relative;
  padding: 0 0 20px;
}
.box-title-page .title-page {
  display: block;
  font-size: 2rem;
  text-align: left;
  margin-bottom: 25px;
  padding: 12px .5em 10px .5em;
}
.heading {
  width: auto;
  font-size: 1.8rem;
  padding: 0 0 8px 5%;
  margin-bottom: 24px;
}
.heading-m {
  font-size: 1.7rem;
}
.heading-s {
  font-size: 1.6rem;
}
.title-item {
  font-size: 1.6rem;
}
.topic {
  padding: 20px 5%;
}
table.table-auto {
	width: 100%;
    border-collapse: collapse;
}
table.table-item th, table.table-item td,
table.table-auto th, table.table-auto td {
  display: block;
}
table.table-auto th, table.table-auto td {
  border-bottom: none;
}
table.table-auto tr:last-child td:last-child {
  border-bottom: #999999 1px solid;
}
table.table-item-big th{
  display: block;
}
table.table-item-big thead {
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
table.table-item-big tr {
  display: block;
  margin-bottom: 10px;
}
table.table-item-big td {
  display: block;
  text-align: right;
  position: relative;
  border-top: none;
}
table.table-item-big td::before {
  content: attr(data-label);
  font-weight: bold;
  position: absolute;
  left: 10px;
}
.table-item-small .w-100 {
  width: 100%;
}
.table-item-small .w-90{
  width: 90%;
}
.table-item-small .w-80 {
  width: 80%;
}
.table-item-small .w-70 {
  width: 70%;
}
.table-item-small .w-60 {
  width: 60%;
}
.table-item-small .w-50 {
  width: 50%;
}
.table-item-small .w-40 {
  width: 40%;
}
.table-item-small .w-30 {
  width: 30%;
}
.table-item-small .w-20 {
  width: 20%;
}
.table-item-small .w-10 {
  width: 10%;
}
	
span.special-number {

}

li.special {
    display: block;
}

li.special > div {

}

/*  contents
------------------------------------------------- */
main.contents-1col,
main.contents-2col {
  line-height: 1.6;
}
main.contents-2col .inner {
  display: block;
  padding: 0 3%;
}
main.contents-1col article {
  min-height: inherit;
}
main.contents-2col article {
  max-width: none;
  min-width: auto;
  margin: 0 0 60px 0;
  width: auto;
}
main.contents-1col article::before,
main.contents-2col article::before {
  height: 25px;
}


/* footer
------------------------------------------------- */
footer::before {
  height: 80px;
}
.footer-address dl {
  display: block;
  font-size: 1.4rem;
}
.footer-address dl dd:not(:last-child) {
  margin-bottom: 10px;
}
.footer-banner ul {
  display: block;
}
.footer-banner ul li {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.footer-banner ul li:not(:last-child) {
  margin-bottom: 10px;
}




/* pagination
------------------------------------------------- */
.pagination.wrap {
  margin: 30px auto 10px;
}
.pager-pc {
  display: none;
}
.pager-sp {
  display: block;
}

.pagination ul li ul li {
  margin: 0;
}
.pagination > div > ul > li > ul > li.dot3-box {
  font-size: 1.2rem;
  line-height: 3;
  width: 26px;
}

/* 目次
------------------------------------------------- */
.cat-list .cat-list-wrap {
    display: block;
}
.list-text-link.col3-2 {
margin-left: 0;
}

/* リンク先の見出しがヘッダーに隠れてしまう場合
------------------------------------------------- */
.anc_link-inpage{
  padding-top: 20px;
  margin-top: -20px;
}
}


/* # ============================================================
   # クッキー同意設定
   # ============================================================ */
/* 可変
------------------------------------------------- */
.cookie-description {
  display: none;
  background: #d7e4f1;
  padding: 1em;
}
.cookie-description.is-hidden {
  display: none;
}
.cookie-description > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cookie-ok {
  line-height: 40px !important;
  height: 40px;
  width: 120px;
  margin-left: 1em;
}

@media only screen and (max-width: 767px) {
.cookie-description {
  padding: 1em 2em;
}
.cookie-description > div {
  flex-direction: column;
}
.cookie-ok {
  line-height: 40px !important;
  height: 40px;
  width: 100%;
  margin-left: 0;
  margin-top: 10px;
}

}


/* # ============================================================
   # 印刷用設定
   # ============================================================ */
@media print {
  * {
    box-shadow: none !important;
    text-shadow: none !important; }
  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }
  thead {
    display: table-header-group; }
  tr, img {
    page-break-inside: avoid; }
  img {
    max-width: 100% !important; }
  h2, h3, h4 {
    page-break-after: avoid; }
  .head-nav {
    width: max-content;
  }
  header {
  	position:absolute;
  }
  .top-mainvisual {
  	margin-top:auto;
  	height:600px;
  }
  .bkg-top-visual {
  	max-height: 600px;
  }
  @page {
    size:a3; }
}

