@charset "utf-8";


/* ---------------------------------------------
base modules
------------------------------------------------ */

.body {
  min-width: 980px; /* コンテンツ幅に書き直す */
  clear:both;
}
.wrap{ clear:both; }

.inner {
  width: 980px; /* コンテンツ幅に書き直す */
  margin: 0 auto;
}

.pc { display: block; }
.sp { display: none; }

/* ---------------------------------------------
header
------------------------------------------------ */

.header{
  width:100%;
  height:140px;
  margin:0 auto;
  position:relative;
  border-bottom: 1px solid #d2d2d2;
}
.header .inner {
  height: 140px;
  position: relative;
}

.header .logo{
  position:absolute;
  left:0;
  top:20px;
  vertical-align: middle;
}
.header .logo img { vertical-align: middle; margin-left: 7px; }


.header .global-dc,
.header .global-jcb {
  width: 100%;
  border-bottom: solid 1px #d2d2d2;
}
.header .global-dc ul,
.header .global-jcb ul {
  display: none;
  width: 980px;
  margin: 0 auto;
}
.header .global-dc ul li,
.header .global-jcb ul li {
  float: left;
  width: 139.7px;
  height: 47px;
  padding: 7px 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .global-dc ul li a,
.header .global-jcb ul li a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 33px;
  border-right: solid 1px #d2d2d2;
  font-family: "Noto Sans Japanese";
  font-weight: bold;
  font-size: 15px;
  text-decoration: none;
  color: #333;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.header .global-dc ul li:first-child a,
.header .global-jcb ul li:first-child a { border-left: solid 1px #d2d2d2; }
.header .global-dc ul li:hover,
.header .global-jcb ul li:hover { border-bottom: solid 4px #e60000; }
.header .global-dc ul li:hover a,
.header .global-jcb ul li:hover a { color: #e60000; }

.header .utility-nav {
  display: none;
  position: absolute;
  top: 20px;
  right: 0;
}
.header .utility-nav li a {
  display: block;
  padding: 2px 25px 2px 10px;
  border: solid 1px #d2d2d2;
  border-radius: 3px;
  font-family: "Noto Sans Japanese";
  font-size: 14px;
  text-decoration: none;
  color: #333;
  position: relative;
  margin-bottom: 5px;
}
.header .utility-nav li a i {
  color: #fccd12;
}
.header .utility-nav li a:hover {
  text-decoration: underline;
}
.header .utility-nav li a::after {
  content: '';
	display: block;
	width: 5px;
	height: 5px;
	border-top: solid 1px #333;
	border-right: solid 1px #333;
	position: absolute;
	top: 50%;
	right: 12px;
	margin-top: -3px;
	transform: rotate(45deg);
}
.header .btn-dc,
.header .btn-jcb {
  float: left;
  width: 49%;
  height: 50px;
  line-height: 50px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  text-align: center;
  vertical-align: middle;
  position: absolute;
  bottom: 0;
  transition: all 0.5s;
}
.header .btn-dc img,
.header .btn-jcb img { vertical-align: sub; margin-right: 7px; }

.header .btn-dc {
  background: #e60000;
  vertical-align: middle;
  margin-right: 1%;
  left: 0;
}
.header .btn-jcb {
  background: #008de6;
  vertical-align: middle;
  right: 0;
}

.header .btn-dc:hover,
.header .btn-jcb:hover { opacity: 0.5; }

.header .btn-dc a {
  display: block;
  width: 100%;
  height: 0%;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
  font-family: "Noto Sans Japanese";
  font-size: 22px;
}

.header .btn-jcb a {
  display: block;
  width: 100%;
  height: 100%;
  line-height: 50px;
  text-decoration: none;
  color: #fff;
  vertical-align: middle;
  font-family: "Noto Sans Japanese";
  font-size: 22px;
}

/* ---------------------------------------------
container
------------------------------------------------ */

.container{
  width:100%;
  margin:0 auto 20px;
}

/* ------ title -------------------------------- */

.page-title {
  width: 100%;
  height: 120px;
  background: url(/themes/main/images/bg_page-title.png) no-repeat center top;
}
.page-title h1{
  width: 980px;
  height: 120px;
  line-height: 120px;
  text-align:center;
  font-family: "Noto Sans Japanese";
  font-weight:bold;
  font-size:170%;
  color: #e60000;
  margin:0 auto;
}

/* ------ topic-path --------------------------- */

.container .topic-path {
  text-align:left;
  margin:10px 0;
  color:#333;
  list-style: none;
}
.topic-path li {
  display: inline-block;
  margin-right: 25px;
  padding: 0;
  text-indent: 0;
}
.topic-path li::before {
  content: none;
}
.topic-path li a {
  position: relative;
}
.topic-path li a::after {
  content: '';
  display: block;
  width: 7px;
  height: 7px;
  border-top: solid 2px #e60000;
  border-right: solid 2px #e60000;
  position: absolute;
  top: 50%;
  right: -15px;
  margin-top: -6px;
  transform: rotate(45deg);
}
.topic-path li:first-child::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: '\f015';
  color: #e60000;
  margin-right: 4px;
}

.topic-path a,
.topic-path a:link,
.topic-path a:hover,
.topic-path a:visited,
.topic-path a:active {
  color:#333;
  text-decoration:none;
}

/* content
------------------------------------------------ */

.content {
  width:680px;
  margin: 0 0 40px;
  float:left;
  text-align:left;
}

/* sidebar
------------------------------------------------ */

.sidebar{
  width:270px;
  float:right;
  text-align:left;
}


/* ------ local-navigation --------------------- */

.sidebar .local-navigation{
  margin-bottom:30px;
}

.sidebar .local-navigation h2{
  background:#e60000;
  margin:0;
  padding:8px 15px;
  font-weight:bold;
  color: #fff;
}

.sidebar .local-navigation ul{
  margin:0 0 10px;
}

.sidebar .local-navigation ul span{
  font-size:78%;
}

.sidebar .local-navigation li {
  font-size:87%;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.sidebar .local-navigation li a::after{
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-top: solid 2px #e60000;
  border-right: solid 2px #e60000;
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -3px;
  transform: rotate(45deg);
}

.sidebar .local-navigation li a{
  display: block;
  padding: 10px 30px 10px 15px;
  border-bottom: solid 1px #d2d2d2;
  font-weight: bold;
  color: #333;
  position: relative;
}
.sidebar .local-navigation li a[href$='pdf']{
  background: none;
}
.sidebar .local-navigation li a:hover{ background: #f6f6f6; }

.sidebar .local-navigation li.nest ul {
  margin: 0 0 0 20px;
}

.sidebar .local-navigation li a:link,
.sidebar .local-navigation li a:visited,
.sidebar .local-navigation li a:hover,
.sidebar .local-navigation li a:active{
  text-decoration:none;
}

/* ------ banner ------------------------------- */

.sidebar .banner{
  margin-top:0;
}

.sidebar .banner li{
  margin-bottom:10px;
}

/* ------ pagetop ------------------------------ */

.pagetop{
  width: 980px;
  height: 0;
  margin: 0 auto;
  position: relative;
}
.pagetop p {
  width: 50px;
  height: 50px;
  background: #999;
  position: absolute;
  bottom: -54px;
  right: 0;
  text-indent: -9999px;
}
.pagetop p a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}
.pagetop p a::after {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  position: absolute;
  top: 62%;
  left: 50%;
  transform:translate(-50%,-50%) rotate(-45deg);
}

.pagetop a,
.pagetop a:link,
.pagetop a:hover,
.pagetop a:visited,
.pagetop a:active {
  text-decoration:none;
  padding:0;
}

/* ---------------------------------------------
footer
------------------------------------------------ */

.footer{
  background:#fff;
  clear:both;
}
.footer .footer_dc,
.footer .footer_jcb {
  float: left;
  width: 50%;
}
.footer .footer_dc { border-top: solid 4px #e60000; }
.footer .footer_jcb { border-top: solid 4px #008de6; }

.footer .footer_dc .wrap,
.footer .footer_jcb .wrap {
  width: 470px;
}
.footer .footer_dc .wrap ul,
.footer .footer_jcb .wrap ul {
  height: 355px;
}
.footer .footer_dc .wrap { margin: 20px 0 0 auto; padding-right: 20px; border-right: solid 1px #d2d2d2; }
.footer .footer_jcb .wrap { margin: 20px auto 0 0; padding-left: 20px; }
.footer .footer_dc .wrap .logo img,
.footer .footer_jcb .wrap .logo img {
  vertical-align: middle;
  margin-right: 8px;
}

.footer .footer_dc .wrap .logo img:first-child {
  margin-right: 10px;
}

.footer .footer_jcb .wrap .logo img:first-child {
  margin-right: 30px;
}

.footer .footer_dc .wrap .logo img:nth-child(2),
.footer .footer_jcb .wrap .logo img:nth-child(2) {
  height: 24px;
  width: auto;
}

.footer .link2 {
  margin-top: 10px;
}
.footer .link2 li {
  text-align: left;
  margin-bottom: 6px;
}
.footer .link2 li a {
  color: #333;
  text-decoration: none;
}
.footer .link2 li a:hover { text-decoration: underline; }
.footer .link2 li i { margin-right: 6px; }

.footer .footer_dc .link2 li i { color: #e60000; }
.footer .footer_jcb .link2 li i { color: #008de6; }

.footer .btn {
  margin-bottom: 15px;
}
.footer .btn a {
  width: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer address {
  text-align: left;
}

.footer .regist-area {
  float: left;
  width: 300px;
  margin-top: 10px;
  padding-right: 10px;
  font-size: 14px;
  border-right: solid 1px #d2d2d2;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer .regist-area .title {
  float: left;
  width: 70px;
  height: 30px;
  line-height: 30px;
  margin: 7px 7px 0 0;
  background: #666;
  color: #fff;
  text-align: center;
}

.footer .contact-area {
  float: left;
  width: 165px;
  margin-top: 22px;
  padding-left: 10px;
  font-size: 13px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer .contact-area .tel,
.footer .contact-area .tel img,
.footer .contact-area .mail,
.footer .contact-area .mail img {
  vertical-align: middle;
  white-space: nowrap;
}
.footer .contact-area .tel img,
.footer .contact-area .mail img {
  margin-right: 4px;
}
.footer .contact-area .tel a,
.footer .contact-area .mail a {
  text-decoration: none;
  color: #333;
}
.footer .contact-area .mail a:hover {
  text-decoration: underline;
}

.footer .copyright {
  width: 100%;
  height: 40px;
  line-height: 40px;
  margin-top: 10px;
  background: #e60000;
  color: #fff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.footer .footer_dc .copyright {
  padding-right: 35px;
  text-align: right;
}
.footer .footer_jcb .copyright {
  padding-left: 35px;
  background: #008de6;
}


.mb-20 {
  margin-bottom: 20px;
}

.bn_gift {
  width: 234px !important;
  margin: 0 auto;
}