@charset "UTF-8";
/*==========基本構造==========
1.共通設定
2.基本構造
3.共通パーツ
4.ヘッダー
5.フッター
==============================*/
/* --------------------------------------------------- 
1.共通設定
---------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200&display=swap');
html {
  font-size: 62.5%; /* font-size 1em = 10px */
  height: 100%;
  /*	min-width: 1280px;*/
  scroll-behavior: smooth;
}
body {
  width: 100%;
  position: relative;
  height: auto !important; /*IE6対策*/
  height: 100%; /*IE6対策*/
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  color: #222;
  min-height: 100vh;
  background: url("/images/common/bg.gif");
  background-size: cover;
  background-repeat: repeat-y;
  background-position: center 480px
}
.bgother {
  background-position: center 130px
}
.bgtop {
  background-position: center 610px
}
h2 {
  font-size: 2.2rem;
}
p {
  font-size: 1.6rem;
  line-height: 2.0em;
}
figcaption {
  font-size: 1.4rem;
}
.mincho {
  font-family: 'Noto Serif JP', serif;
  font-weight: 200
}
/*clearfix*/
.clearfix:before, .clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
.clearfix {
  zoom: 1;
}
/*flex*/
.flexBox {
  display: flex !important;
}
.between {
  justify-content: space-between;
}
.flex-2 {
  flex-basis: calc(50%/2);
}
/*float*/
.float_r {
  float: right;
}
.float_l {
  float: left;
}
/*text*/
.note, .font_s {
  font-size: 1.2em;
}
.txt_c {
  text-align: center !important;
}
.txt_r {
  text-align: right !important;
}
.txt_l {
  text-align: left !important;
}
sup {
  vertical-align: super;
  font-size: .5rem;
}
sub {
  vertical-align: sub;
  font-size: .5rem;
}
.tsume0 {
  letter-spacing: 0px !important
}
.tsume1 {
  letter-spacing: 1px !important
}
.tsume2 {
  letter-spacing: 2px !important
}
@media screen and (max-width: 769px) {
  html {
    min-width: inherit;
  }
  .float_r {
    float: none;
    margin: 0 auto;
    text-align: center;
  }
  .flex-2 {
    flex-basis: 100%;
  }
}
/*margin*/
.mt0 {
  margin-top: 0px !important;
}
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt30 {
  margin-top: 30px !important;
}
.mt35 {
  margin-top: 35px !important;
}
.mt40 {
  margin-top: 40px !important;
}
.mt50 {
  margin-top: 50px !important;
}
.mb0 {
  margin-bottom: 0px !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.secmrgnL {
  margin-bottom: 110px !important;
}
.secmrgnM {
  margin-bottom: 60px !important;
}
/*link*/
a {
  text-decoration: none;
}
a:hover {
  color: #BD1C10;
  text-decoration: underline;
  transition: 0.1s;
}
a:link {
  color: #000000;
}
a:visited {
  color: #000000;
}
a:active {
  color: #000000;
}
img {
  width: auto;
  max-width: 100%;
}
/*breadcrumbs*/
.breadcrumbs {
  display: block;
  position: relative;
  background-color: #E8E8E8;
}
.breadcrumbs ul {
  width: 87%;
  margin: 0 auto;
  padding: 15px 0;
  font-size: 1.1rem;
  max-width: 980px;
}
.breadcrumbs ul > li {
  display: inline;
  padding: 0 5px;
}
.breadcrumbs ul > li:first-child {
  padding-left: 0;
}

@media print, screen and (max-width: 769px) {
  .breadcrumbs ul {
    padding: 0 0 15px 0;
  }
}
@media print, screen and (max-width: 480px) {
  .breadcrumbs {
    display: none;
  }
}
.bgGray {
  background-color: #E8E8E8;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media print, screen and (max-width: 480px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
.back-to-top {
  position: fixed;
  right: 5%;
  bottom: 5%;
  color: #fff !important;
  padding: 2rem;
  border-radius: 50%;
  display: inline-block;
  text-decoration: none;
  font-size: 15px;
  text-align: center;
  line-height: 1.2;
z-index: 50;
	
}
.back-to-top a {
  text-decoration: none;
}
.back-to-top a:hover {
  text-decoration: none;
}
.back-to-top::before {
  content: "";
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 70px;
  height: 70px;
  background-color: #BD1C10;
  border-radius: 50%;
  z-index: -1;
}
.back-to-top::after {
  content: '';
  position: absolute;
  top: 20%;
  right: 50%;
  width: 9px;
  height: 9px;
  border-top: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  -webkit-transform: rotate(-45deg)translate(50%, 0%);
  transform: rotate(-45deg)translate(50%, 0%);
  z-index: 2;
}
@media print, screen and (max-width: 769px) {
.back-to-top {
  right: 0px;
  bottom: 0px;
}
.back-to-top::before {
  top: 40%;
  left: 50%;
  width: 50px;
  height: 50px;
}
	.back-to-top::after {
  right: 50%;
  width: 6px;
  height: 6px;
}
}
/* --------------------------------------------------- 
2.基本構造
---------------------------------------------------- */
/*inner*/
.inner {
  /*	max-width: 1280px;*/
  max-width: 980px;
  margin: 0 auto;
}
/*mainCol,subCol*/
.colWrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.mainCol {
  width: 74%;
}
.subCol {
  width: 23%;
}
/*subNav*/
.subCol {
  list-style: none;
}
.subCol nav dl dt {
  color: #D10000;
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  text-align: center;
  margin-bottom: 50px;
}
.subCol nav dl dt::after {
  content: url("/images/common/line.jpg");
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -65%;
}
.subCol nav dl dd.detail {
  font-size: 1.4rem;
  font-weight: 400;
  display: block;
}
.subCol nav dl dd.detail ul li {}
.subCol nav dl dd.detail ul li a {
  position: relative;
  display: block;
  padding: 20px 50px 7px 10px;
  border-bottom: 1px #EDEFF2 solid;
}
.subCol nav dl dd.detail ul li a::after {
  content: '';
  position: absolute;
  top: 48%;
  right: 10px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.subCol nav.subNav-lv3 .subNav_lv3_ttl {
  text-align: center;
  background-color: #EDEFF2;
  border-top: 1px solid #000000;
  border-bottom: 1px solid #000000;
}
.subCol nav.subNav-lv3 .subNav_lv3_ttl a {
  font-size: 1.4rem;
  display: block;
  padding: 10px 0;
}
.subCol nav.subNav-lv3 .subNav_lv3_ttl a::after {
  display: none;
}
.subCol nav dl dd.detail ul li a:hover {
  border-bottom: 1px #D10000 solid;
  transition: .15s;
  text-decoration: none;
}
.subCol nav.subNav-lv3 .subNav_lv3_ttl a:hover {
  transition: .15s;
  text-decoration: none;
  opacity: .8;
}
.subCol nav dl dd.detail ul li.active a {
  font-weight: bold;
  border-bottom: 3px #D10000 solid;
}
.subCol nav dl dd.detail ul li.active a:hover {
  font-weight: bold;
  border-bottom: 3px #D10000 solid;
  text-decoration: none;
}
.subCol .img-menu {
  position: relative;
}
.subCol .img-menu::after {
  content: '';
  color: #D10000;
  position: absolute;
  bottom: 18px;
  right: 16px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg), translate(-50%, -50%);
  z-index: 3;
}
.subCol .img-menu::before {
  content: '';
  display: block;
  position: absolute;
  bottom: 12px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: #D10000;
  border-radius: 50%;
  z-index: 2;
}
.subCol .img-menu p {
  font-size: 1.2rem;
  position: absolute;
  color: #FFFFFF;
  bottom: 7px;
  left: 7px;
  width: 80%;
  line-height: 1.5;
}
.subCol .img-menu p span {
  font-size: 1rem;
}
.subCol .img-menu a img:hover {
  opacity: .8;
  transition: .15s;
}
@media print, screen and (max-width: 769px) {
  .colWrapper {
    min-width: inherit;
  }
  .mainCol {
    width: 100%;
  }
  .subCol {
    width: 100%;
    margin-top: 30px;
  }
  .subCol nav dl {}
  .subCol nav dl dt, .subCol nav.subNav-lv3 .subNav_lv3_ttl {
    font-size: 1.6rem;
    padding: 10px;
    position: relative;
    color: #ffffff;
    background-color: #D10000;
    border-radius: 50px;
    margin-bottom: 0;
    border-top: none;
    border-bottom: none;
    font-weight: bold;
  }
  .subCol nav dl dt::after, .subCol nav.subNav-lv3 .subNav_lv3_ttl::after {
    position: absolute;
    top: 50%;
    right: 8%;
    left: auto;
    content: '';
    width: 15px;
    height: 2px;
    background: #ffffff;
    transform: rotate(90deg);
    transition: all .3s ease-in-out;
  }
  .subCol nav dl dt::before, .subCol nav.subNav-lv3 .subNav_lv3_ttl::before {
    position: absolute;
    top: 50%;
    right: 8%;
    content: '';
    width: 15px;
    height: 2px;
    background: #ffffff;
    transition: all .2s ease-in-out;
  }
  .subCol nav dl dd.detail {
    display: none;
  }
  .subCol nav dl dt.open::after, .subCol nav.subNav-lv3 .subNav_lv3_ttl.open::after {
    transform: rotate(0deg);
  }
  .subCol nav.subNav-lv3 .subNav_lv3_ttl a {
    border-bottom: none;
    color: #ffffff;
	pointer-events: none;
	padding: 0;
  }
  .subCol nav.subNav-lv3 dt:first-child {
    display: none;
  }
  .subCol nav.subNav-lv3 .subNav_lv3_ttl a:hover {
    border-bottom: none;
    opacity: 1;
  }
}
/* --------------------------------------------------- 
3.共通パーツ
---------------------------------------------------- */
/*mainVisual*/
.company .mainVisual {
  position: relative;
  background: url("/images/company/mv.jpg") center 85% / 100% no-repeat;
  width: 100%;
  height: 300px;
}
.ir .mainVisual {
  position: relative;
  background: url("/images/ir/mv.jpg") center 45% / 100% no-repeat;
  width: 100%;
  height: 300px;
}
.mainVisual .title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.90);
  border-radius: 15px;
  padding: 3em 10em;
/*  width: -84px;*/
}
.mainVisual .title .h1-1 {
  font-size: 3.6rem;
  color: #D10000;
  text-align: center;
	    line-height: 1.3;

}
.mainVisual .title .h1-2 {
  font-size: 3.6rem;
  color: #2E2E2E;
  text-align: center;
	    line-height: 1.3;

}
h1.h1-2{margin-top: 0px;
	padding-top: 0px}
.mainVisual .title .h1-2 span {
  font-size: 1.6rem;
  color: #D10000;
  position: relative;
	line-height: 1.3;
	display: inline-block;
	margin-bottom: 30px;
	vertical-align: top

}
.mainVisual .title .h1-2 span::after {
  content: url("/images/common/line.jpg");
  position: absolute;
  left: 50%;
  bottom: -20px;
  transform: translateX(-50%);
}

.mainVisual .title .h1-2 small {
  font-size: 2.5rem;
	line-height: 1.3
}
@media print, screen and (max-width: 980px) {
.mainVisual .title {
  padding: 3em 6em;

}	
	
	}
@media print, screen and (max-width: 769px) {
  .mainVisual {
    height: 50vw !important;
  }
  .company .mainVisual {
    background-size: 150% !important;
  }
  .mainVisual .title {
    padding: 2.5em;
	  width: 70%;
	  max-width: 70%
  }
  .mainVisual .title h1 {
    font-size: 3.6rem;
  }
}
@media print, screen and (max-width: 480px) {
  .company .mainVisual {
    background-size: 170%;
    height: 60vw !important;
  }
  .ir .mainVisual {
    background-size: 180%;
    height: 60vw !important;
  }
  .mainVisual .title {
    padding: 2em;
  }
  .mainVisual .title .h1-1, .mainVisual .title .h1-2 {
    font-size: 2.4rem;
  }
  .mainVisual .title .h1-2 span::after {
  }
  .mainVisual .title .h1-2 small {
    font-size: 1.4rem;
  }
}
/*cont*/
.contBg {
  background-size: contain;
  background-repeat: repeat-y;
  padding: 6% 0 6% 0 !important;
}
.contBg .contBox {
  background-color: rgba(255, 255, 255, 0.90);
  max-width: 1080px;
  height: 100%;
  margin: 0 auto;
  position: relative;
}
.contBg .contBox::before {
  content: '';
  border: #D10000 1px solid;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
}
.contBg .contBox::after {
  content: '';
  border: #000000 1px solid;
  position: absolute;
  bottom: 0;
  width: 50%;
}
.contBg .contBox .contInner-8p {
  padding: 8% !important;
}
.contBg .contBox .contInner-3p {
  /*	padding: 3%!important;*/
  padding: 5% !important;
}
@media print, screen and (max-width: 1480px) {
  .contBg .contBox {
    width: 87%;
  }
}
@media print, screen and (max-width: 769px) {
  .contBg {
    padding: 5% 0 10% 0;
  }
  .contBg .contBox {
    min-width: inherit;
  }
  .contBg .contBox .contInner-3p {
    padding: 8% !important;
  }
}
/*col*/

.colBox-1, .colBox-2{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	align-items: flex-start
}
.colBox-1 li,
.colBox-2 li{
  flex-basis: calc(100%/2 - 20px);
  border: 1px solid #C8C8C8;
  border-radius: 3px;
  margin-bottom: 40px
}

.colBox-1 *,
.colBox-2 *{
  text-decoration: none !important
}


.colBox-1 li img,
.colBox-2 li img{
  border-radius: 3px 3px 0px 0px;
}
.colBox-1 li .img:hover,
.colBox-2 li .img:hover{
  opacity: .8;
  transition: .15s;
}

.colBox-1 li .img h2,
.colBox-2 li .img h2 {
  position: relative;
  font-size: 2.4rem;
  font-weight: bold;
  display: flex;
  padding: 15px 15px;
  z-index: 3;
  align-items: center;
  text-align: center;
  justify-content: center;
	color: #000!important;
	line-height: 1.1
}

.colBox-1 li .img h2::before,
.colBox-2 li .img h2::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 9px;
  height: 9px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg) translateX(-50%);
  z-index: 2;
}

@media print, screen and (max-width: 769px) {
  .colBox-2 li p {
    margin-bottom: 20px;
  }
  .colBox-1 li .img h2, .colBox-2 li .img h3 {
    font-size: 2.2rem;
  }
  .colBox-1 li, .colBox-2 li {
    flex-basis: 100%;
  }
}





/*ttl*/
.contBox .ttl-1 {
  width: 81%;
  margin: 0 auto 100px auto;
}
.contBox .ttl-1 h2 {
  /*	font-size: 1.9rem;*/
  font-size: 1.7rem;
  font-weight: bold;
  position: relative;
}
.contBox .ttl-1 h2::after {
  content: url("/images/common/line.jpg");
  position: absolute;
  bottom: -70px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contBox .ttl-2 {
  position: relative;
  margin-bottom: 25px;
  font-size: 2.3rem;
}
.contBox .ttl-2::before {
  content: '';
  border-bottom: 2px solid #000000;
  width: 100%;
  position: absolute;
  bottom: -10px;
  right: 0;
}
.contBox .ttl-2::after {
  content: '';
  border-bottom: 2px solid #D10000;
  width: 10%;
  position: absolute;
  bottom: -10px;
  left: 0;
}
.contBox .ttl-3 {
  font-size: 1.8rem;
  font-weight: normal;
  background-color: #F0F0F0;
  border-radius: 5px;
  padding: 5px 15px;
  margin-bottom: 10px;
  color: #000000
}
.contBox .ttl-3num {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 0px;
  padding-bottom: 10px;
  border-bottom: 1px solid #B4BBC3;
}
.contBox .ttl-4 {
  font-size: 2rem;
  font-weight: bold;
  background: -webkit-linear-gradient(left, #FFF, #E6E6E6, #FFF);
  background: -o-linear-gradient(left, #FFF, #E6E6E6, #FFF);
  background: linear-gradient(to right, #FFF, #E6E6E6, #FFF);
  padding: 5px 20px;
  margin-bottom: 10px;
}
.contBox .ttl-4sub {
  font-size: 1.8rem;
  font-weight: normal;
  border-radius: 5px;
  margin-bottom: 10px;
  color: #000000;
}
.contBox .ttl-4sub:before {
  content: "●";
  padding-right: 5px;
  color: #BD1C12;
}
.contBox .ttl-5 {
  font-size: 2rem;
  font-weight: bold;
  padding: 0px 10px;
  background: linear-gradient(transparent 50%, rgba(189, 28, 18, 0.20) 95%);
}
.contBox .ttl-6 {
  font-size: 1.8rem;
  font-weight: bold;
  color: #BD1C12;
  padding: 5px 10px;
  margin-bottom: 10px;
}
@media print, screen and (max-width: 769px) {
  .contBox .ttl-1 {
    width: 100%;
    margin: 0 auto 60px auto;
  }
  .contBox .ttl-1 h2 {
    font-size: 1.6rem;
  }
  .contBox .ttl-1 h2::after {
    bottom: -50px;
  }
  .contBox .ttl-2 {
    font-size: 1.8rem
  }
  .contBox .ttl-3 {
    font-size: 1.6rem
  }
  .contBox .ttl-4 {
    font-size: 1.6rem
  }
  .contBox .ttl-5 {
    font-size: 1.2rem
  }
  .contBox .ttl-6 {
    font-size: 1.2rem
  }
}
/*btn*/
.btn-1 a {
  background-color: #FBF0F0;
  border: #F0C7C5 1px solid;
  border-radius: 3px;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  padding: 1em 2.7em 1em 1em;
  height: 50px;
  font-weight: bold;
  line-height: 1.3
}
.btn-1 a span {
  font-size: 1.3rem;
}
.btn-1 a::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: 47%;
  right: 18px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg), translate(-50%, -50%);
}
.btn-1 a::before {
  content: '';
  display: block;
  position: absolute;
  top: 40%;
  right: 10px;
  width: 20px;
  height: 20px;
  background: #D10000;
  border-radius: 50%;
}
.btn-1 a:hover {
  text-decoration: none;
  opacity: .7;
  transition: .15s;
}
.btn-2 a {
  font-size: 1.7rem;
  position: relative;
  text-decoration: underline;
  padding-left: 25px;
}
.btn-2 a::before {
  content: '';
  display: block;
  position: absolute;
  top: .3em;
  left: 0;
  width: 18px;
  height: 18px;
  background: #D10000;
  border-radius: 50%;
}
.btn-2 a::after {
  content: '';
  display: block;
  position: absolute;
  top: 10.5px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg), translate(-50%, -50%);
}
.btn-2 a:hover {
  color: #D10000;
  transition: .15s;
}
.btn-3 {
  display: inline-block;
  background-color: #D10000;
  border-radius: 100vh;
  position: relative;
}
.btn-3::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: 45%;
  right: 20px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #ffffff;
  border-right: 2px solid #ffffff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.btn-3 a {
  display: block;
  padding: 10px 45px;
  font-size: 1.8rem;
  color: #ffffff;
}
.btn-3:hover {
  opacity: .8;
  transition: .15s;
}
.btn-3 a:hover {
  text-decoration: none;
}
.btn-4 {
  background-color: #ffffff;
  position: relative;
  text-align: right;
  margin-bottom: 10px
}
.btn-4::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: 50%;
  right: 12px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #ffff;
  border-right: 2px solid #ffff;
  -webkit-transform: rotate(45deg) translate(-50%);
  ;
  transform: rotate(45deg) translate(-50%);
}
.btn-4::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 10px;
  width: 16px;
  height: 16px;
  -webkit-transform: translate(-45%);
  ;
  transform: translateY(-45%);
  background-color: #D10000;
  border-radius: 8px
}
.btn-4 a {
  display: block;
  padding: 5px 30px 5px 15px;
  font-size: 1.7rem;
  color: #D10000;
  font-weight: bold
}
.btn-4:hover {
  opacity: .8;
}
.btn-4 a:hover {
  text-decoration: none;
}
@media print, screen and (max-width: 480px) {
  .btn-2 a, .btn-3 a {
    font-size: 1.4rem;
  }

}
/*listItems*/
.listItems {
  font-size: 1.5rem
}
table .listItems {
  width: 100%
}
.listItems > tbody > tr.detail {
  border-bottom: 1px #B4BBC3 solid;
  width: 100%;
}
.listItems > tbody > tr.badge > th {
  font-weight: bold;
  background-color: #FBF0F0;
  display: inline-block;
  text-align: center;
  width: 160px;
  margin-top: 30px;
  padding: 1px 0;
}
.listItems tr td a {
  text-decoration: none;
}
.listItems tr td a:hover {
  opacity: .8;
  transition: .15s;
}
.listItems tr .txt {
  padding: 12px 20px;
}

.listItems tr .pdf_size {
  text-align: right;
  display: inline-block
}
.listItems > tbody > tr.detail > th {
  padding: 0 20px;
  font-weight: normal;
}
@media print, screen and (max-width: 769px) {
  .listItems > tbody > tr.detail > th {
    font-size: 1.2rem;
    text-align: left;
    padding: 30px 0 0 0;
    display: block;
  }
  .listItems tr .txt {
    display: block;
    font-size: 1.5rem;
    padding: 5px 0 10px;
  }
  .listItems tr .img {
    display: inline-block;
    padding: 0 0 30px 0;
  }
  .listItems tr .size {
    font-size: 1.5rem;
    display: inline-block;
    padding: 0 0 30px 0;
  }
}
/*listTable*/
.listTable {
  font-size: 1.6rem;
  width: 100%;
}
.listTable dl {
  display: flex;
  justify-content: space-between;
}

.listTable dl dt {
  flex: 0 0 180px;
  padding: 30px 0 30px 0px;
	border-top: 1px solid #D10000;
		margin-right: 20px

}
.listTable dl dd {
  flex: 1 1 auto ;
  padding: 30px 0 30px 0px;
  border-top: 1px #B4BBC3 solid;
}
.listTable dl dd ul li {
  position: relative;
  padding-left: 1em;
}
.listTable dl dd ul li::before {
  content: '';
  display: block;
  position: absolute;
  top: .7em;
  left: 0;
  width: 8px;
  height: 8px;
  background: #D10000;
  border-radius: 50%;
}
.listTable dl dd ul li a {
  text-decoration: underline;
}
.listTable dl dd ul li a:hover {
  color: #D10000;
}
@media print, screen and (max-width: 769px) {
.listTable {
  font-size: 1.5rem;
  width: 100%;
}.listTable dl dt {
  flex: 0 0 90px;
  padding: 20px 0 20px 0px;
		margin-right: 20px

}
.listTable dl dd {
  flex: 1 1 auto ;
  padding: 20px 0 20px 0px;
}
}


/*目次よう*/
/*ankerLink*/
.ankerLink-1,.ankerLink-2,.ankerLink-3{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	font-size: 1.4rem;
	margin-bottom: 40px

}

.ankerLink-1 li,
.ankerLink-2 li,
.ankerLink-3 li{
	position: relative;
	margin-bottom: 13px;
	background-color: #EDEFF2;
	border: #B4BBC3 1px solid;
	text-align: center;
	display: flex;
	align-items: center;
}
.ankerLink-1 li{
	flex-basis: calc(100%/2 - 10px);
}.ankerLink-2 li{
	flex-basis: calc(100%/3 - 10px);
}
.ankerLink-3 li{
	flex-basis: calc(100%/4 - 10px);
}
.ankerLink-1 li a,
.ankerLink-2 li a,
.ankerLink-3 li a{
	font-weight: bold;
	padding: 8px 28px 8px 8px ;
	width: 100%;
	align-items: center
}
.ankerLink-1 li.active,
.ankerLink-2 li.active,
.ankerLink-3 li.active{
	background-color: #FBF0F0;
}
.ankerLink-1 li::after,
.ankerLink-2 li::after,
.ankerLink-3 li::after{
	content: '';
	color: #D10000;
	position: absolute;
	top: calc(50% - 5px);
    right: 15px;
    width: 6px;
    height: 6px;
    border-top: 2px solid #ffffff;
    border-right: 2px solid #ffffff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}
.ankerLink-1 li::before,
.ankerLink-2 li::before,
.ankerLink-3 li::before{
	content: ' ';
	position: absolute;
	top: calc(50% - 7.5px);
    right: 11px;
    width: 16px;
    height: 16px;
	background-color:  #D10000;
	border-radius:50%
}


.ankerLink-2 li a span{
    text-align: center;
}
.ankerLink-1 li a:hover,
.ankerLink-2 li a:hover,
.ankerLink-3 li a:hover{
	text-decoration: none;
	opacity: .7;
	transition: .15s;
}	
/*長いURLを折り返す*/
.longurl{word-break: break-all;}

@media print, screen and (max-width: 769px) {
.ankerLink-1,.ankerLink-2,.ankerLink-3{
	margin-bottom: 20px
}

.ankerLink-1 li,
.ankerLink-2 li,
.ankerLink-3 li{
	flex-basis: calc(100%/2 - 10px);
}
}






.page-disc p {
  font-weight: bold
}
.mokuji {
  display: block;
  background-color: #F7F7F7;
  padding: 15px;
  margin: 20px 0 40px 0;
  line-height: 1.2
}
.mokujiLink-1 {
  font-size: 1.5rem;
}
.mokujiLink-1 li {
  position: relative;
  margin-bottom: 7px;
  margin-left: 0px;
  text-align: left;
  padding: 5px 0px;
  text-indent: 0px
}

.mokujiLink-1 li a {
	display: inline-block;
	margin-left: 1.5em
}
.mokujiLink-1 li::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: calc(50% - 5px);
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mokujiLink-1 li a:hover {
  text-decoration: none;
  opacity: .7;
  transition: .15s;
}
.mokujiLink-2 {
  font-size: 1.4rem;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center
}

.mokujiLink-2 li {
  position: relative;
  margin-bottom: 0px;
  margin-left: 0px;
  text-align: left;
  padding: 5px 0px;
  text-indent: 0px;
	width:50%
}
@media print, screen and (max-width: 769px) {
.mokujiLink-2 li {

	width:100%
}
}
.mokujiLink-2 li a {
	display: inline-block;
	margin-left: 1.5em;
	
}
.mokujiLink-2 li::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: calc(50% - 5px);
  left: 0px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mokujiLink-2 li a:hover {
  text-decoration: none;
  opacity: .7;
  transition: .15s;
}
@media print, screen and (max-width: 769px) {
  .mokujiLink-1 li {
    margin-bottom: 5px;
  }
}
.mokujiLink-sub {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  line-height: 1.2
}
.mokujiLink-sub li {
  position: relative;
  margin-bottom: 5px;
  text-align: left;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
.mokujiLink-sub li a {
  padding: 8px 28px 8px 12px;
  width: 100%;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 25px;
  border: #E9E9E9 1px solid;
}
.mokujiLink-sub li::after {
  content: '';
  color: #D10000;
  position: absolute;
  top: calc(50% - 5px);
  right: 11px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.mokujiLink-sub li a:hover {
  text-decoration: none;
  opacity: .7;
  transition: .15s;
}
@media print, screen and (max-width: 769px) {
  .mokujiLink-sub li {
    margin-bottom: 5px;
  }
}





/* --------------------------------------------------- 
4.ヘッダー
---------------------------------------------------- */
header {
  background-color: #E8E8E8
}
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999 !important;
}
#header .inner {
  position: relative;
}
#header .logo {
  position: absolute;
  top: 65px;
  left: 0px;
  width: 195px;
}
#header #gnav {
  position: absolute;
  top: 0px;
  left: 0px;
}
.global-nav {
  margin: 0;
  position: relative;
  display: block;
  padding: 0;
  background: #D10000;
}
.global-nav .nav-list {
  display: flex;
  justify-content: flex-end;
  list-style: none;
  padding: 0;
  margin-left: auto;
}
.global-nav .nav-list .nav-item {
  flex: 1;
}
.global-nav > .nav-list > .nav-item > a {
  color: #FFFFFF;
  font-size: 16px;
  padding: 15px 5px;
  text-decoration: none;
  display: block;
  text-align: center;
  font-feature-settings: "palt";
}
.global-nav .nav-list .nav-item:hover {
  background: #FFFFFF;
}
.global-nav .nav-list .nav-item:hover > a {
  color: #D10000;
}
.global-nav li.active {
  border-bottom: 5px #FFFFFF solid;
}
.header {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}
.headerTools {
  text-align: right;
}
.headerTools > ul {
  display: flex;
  align-items: center;
}
.headerTools > ul > li:nth-child(2) {
  position: relative;
  font-size: 18px;
  font-weight: bold;
  padding-right: 30px;
}
.headerTools > ul > li {
  padding-right: 20px;
}
.headerTools > ul > li:last-child {
  padding-right: 0;
}
.headerTools > ul > li:nth-child(2)::after {
  content: '';
  position: absolute;
  top: 0;
  right: 14px;
  border-right: 1px #000 solid;
  height: 34px;
}
.logo img {
  display: block;
  width: 350px;
  max-width: 350px;
}
#fontSize {
  display: flex;
}
#fontSize input:first-child {
  margin-right: 5px;
  font-size: 12px;
  line-height: 2;
  padding: 1px; 
}
#fontSize input:last-child{
  font-size: 15px;
  line-height: 1.4;
  padding: 1px; 
}
#fontSize input {
  display: block;
  text-align: center;
  width: 24px;
  height: 24px;
  border: #D10000 1px solid;
  color: #D10000;
}
#fontSize input:hover {
  cursor: pointer;
  background: #D10000;
  color: #ffffff;
  transition: .15s;
  text-decoration: none;
}
/* サブナビゲーション */
.nav-item_sub {
  background: #FFFFFF;
  left: 0;
  margin: 0 calc(50% - 50vw);
  opacity: 0;
  position: absolute;
  top: 58px;
  transition: all 0.2s ease;
  visibility: hidden;
  width: 100vw;
  z-index: 2;
}
.nav-item_sub > .contWrap {
  display: flex;
  justify-content: space-between;
  margin: 40px auto 20px;
}
/*left*/
.nav-item_sub > .contWrap > .left {
  font-size: 1.4rem;
  flex-basis: calc(30% - 20px);
  display: flex;
  flex-wrap: wrap;
}
.nav-item_sub > .contWrap > .left img {
  border-radius: 3px;
}
.nav-item_sub > .contWrap > .left p {
  font-size: 14px;
  position: relative;
  margin-top: 5px;
}
.nav-item_sub > .contWrap > .left p::after {
  content: '';
  position: absolute;
  top: 38%;
  left: 35%;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -ms-transform: translateY(-50%);
}
/*right*/
.nav-item_sub > .contWrap > .right {
  flex-basis: calc(70% - 20px);
}
.nav-item_sub > .contWrap > .right > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  flex-direction: row;
	align-items: center
}
.nav-item_sub > .contWrap > .right > ul > li {
  flex-basis: calc(100%/3 - 25px);
  margin-bottom: 20px;
  text-align: left;
  font-size: 14px;
  position: relative;
}
.nav-item_sub > .contWrap > .right > ul > li::after {
  content: '';
  position: absolute;
  top: 38%;
  right: 0;
  width: 6px;
  height: 6px;
  border-top: 2px solid #D10000;
  border-right: 2px solid #D10000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.nav-item_sub > .contWrap > .right > ul > li > a {
  display: block;
  padding-right: 15px;
}
.nav-item_sub > .contWrap > .right > ul > li > a:hover {
  opacity: .8;
  transition: .15s;
}
.nav-item:hover .nav-item_sub {
  opacity: 1;
  visibility: visible;
}
.global-nav-icon {
  display: none;
}
@media print, screen and (max-width: 769px) {
  .nav-item_sub {
    display: none;
  }
  .global-nav-header {
    height: 50px;
  }
  .global-nav .nav-list {
    background: rgba(0, 0, 0, 0.8);
    left: 50%;
    padding: 10px;
    position: absolute;
    transform: translate(-50%, 0%);
    width: 100%;
  }
  .global-nav .nav-list li {
    display: block;
  }
  .global-nav .nav-list .nav-item a {
    border-bottom: 1px solid #ccc;
    border-right: none;
    color: #fff;
    padding: 1rem 1rem;
    text-align: left;
  }
  .global-nav .nav-list .nav-item:last-child a {
    border-bottom: none;
  }
  .global-nav-icon {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-size: 28px;
    position: absolute;
    right: 5px;
    top: 15px;
    z-index: 2;
  }
  /*後で消すココカラ*/
  .global-nav {
    display: none;
  }
  .menu-trigger {
    display: block;
    position: fixed;
    z-index: 999999999999999;
    top: 25px;
    right: 20px;
    width: 26px;
    height: 26px;
  }
  .menu-trigger span {
    display: block;
    width: 26px;
    height: 1px;
    background: #D10000;
  }
  .menu-trigger span:before {
    display: block;
    width: 26px;
    height: 1px;
    content: '';
    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-transform: translateY(9px);
    -ms-transform: translateY(9px);
    transform: translateY(9px);
    background: #D10000;
  }
  .menu-trigger span:after {
    display: block;
    width: 26px;
    height: 1px;
    content: '';
    -webkit-transition: all .6s;
    transition: all .6s;
    -webkit-transform: translateY(-9px);
    -ms-transform: translateY(-9px);
    transform: translateY(-9px);
    background: #D10000;
  }
  .menu-trigger span.open {
    background: #f4f4f4;
  }
  .menu-trigger span.open:before {
    -webkit-transform: rotate(45deg) translateY(0);
    -ms-transform: rotate(45deg) translateY(0);
    transform: rotate(45deg) translateY(0);
  }
  .menu-trigger span.open:after {
    -webkit-transform: rotate(-45deg) translateY(0);
    -ms-transform: rotate(-45deg) translateY(0);
    transform: rotate(-45deg) translateY(0);
  }
  .headerTools {
    display: none;
  }
}
.spHeadNav {
  display: none;
}
@media print, screen and (max-width: 769px) {
  .spHeadNav {
    display: block;
    position: fixed;
    z-index: 99999999;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    -webkit-transition: all .6s;
    transition: all .6s;
    vertical-align: middle;
    opacity: 0;
    background: #f4f4f4;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
  }
  .spHeadNav.open {
    left: 0;
    display: block;
    -webkit-transition: all .6s;
    transition: all .6s;
    opacity: 1;
    text-align: center;
  }
  .spHeadNav ul {
    vertical-align: middle;
    width: 100% !important;
    height: 100%;
    padding: 40px 0 20px 0;
  }
  .spHeadNav ul li {
    padding: 0;
    text-align: center;
  }
  .spHeadNav ul li a {
    font-size: 1.6rem;
    display: block;
    padding: 15px 0;
    color: #D10000;
    box-sizing: border-box;
    text-decoration: none;
    margin: 0 70px
  }
  .spHeadNav ul li a span {
    font-size: 1.1rem;
    display: block;
    padding-top: 10px;
  }
  .spHeadNav ul li a:hover {
    background-color: #F3E4E5
  }

  .spHeadNav ul li.sp_code {
    float: left;
    width: 50%;
    height: 58px;
    vertical-align: middle;
    margin-top: 20px;
    padding: 24px 0;
    background: #fff;
    font-size: 1.4rem;
    line-height: 2.0;
  }
  .spHeadNav ul li.sp_contact a {
    float: right;
    width: 50%;
    margin-top: 20px;
    display: block;
    background: #454545;
    color: #fff;
    font-size: 1.2rem;
    line-height: 2.2;
    padding: 24px;
  }
  .spHeadNav ul li.sp_contact a i {
    color: #fff;
    font-size: 2.8rem;
  }
  .spHeadNav ul li.sp_contact a:hover {
    background: #429cd6;
    color: #ffffff;
  }
}
/*後で消すココマデ*/
@media print, screen and (max-width: 480px) {
  .logo img {
    width: 250px;
    max-width: 250px;
  }
}

/*検索ウインドウ*/

.search_container{
  box-sizing: border-box;
  position: relative;
  border: 1px solid #999;
  display: block;
padding: 0px 10px;
  border-radius: 20px;
  height: 30px;
width: 200px;
  overflow: hidden;
	background-color: #FFFFFF;
	margin: 0 auto;
}
.search_container input[type="text"]{
  border: none;
  position: absolute;
	left: 10px;
	top: 0;
	height: 30px;
	width:  100%;

}
.search_container input[type="text"]:focus {
  outline: 0;
}
.search_container button[type="submit"]{
  cursor: pointer;
  font-family: FontAwesome;
  border: none;
  background: #D10000;
  color: #fff;
  position: absolute;
  width:40px;
  height: 30px;
  right:0px;
  top: 0px;
  outline : none;
}
.search_container button img{
height: 18px;
	width: 18px;

}
#headsearch{
	padding: 0px!important
}
#headsearch a{
	padding: 10px;
	background-color: #D10000;
	border-radius: 3px
}
#headsearch_sp{
	padding: 10px 0px 0px 0px;
	display: inline-block
}
#headsearch_sp a{
	padding: 5px 10px;
	background-color: #D10000;
	border-radius: 3px;
	color: #FFFFFF;
	font-size: 1.6rem;
}
#headsearch_sp a img{
	width: 16px;
	margin-left: 6px;
		vertical-align: middle

}



/*検索ウインドウ*/
/* siteSearchTable */
.siteSearchTable{
	width: 100%;
	border: 1px #BABABA solid;
	border-collapse: collapse;
    border-spacing: 0;
		font-size: 1.6rem;

}

.siteSearchTable th{
	width: 30%;
	background-color: #F5F5F5;
	font-weight: normal;
	padding: 1em;
	vertical-align: middle;
		border: 1px #BABABA solid;

}

.siteSearchTable td{
	width: 70%;
	border: 1px #BABABA solid;
	vertical-align: middle;
	padding: 1em;

}
.siteSearchTable td span{
	font-size: 1.4rem;
	line-height: 1.2

}

.siteSearchTable td .mt-site-search-form {
	margin: 0;
	width: 80%
}

.siteSearchTable td .mt-site-search-form__query {
	margin: 0;
	width: 100%
}

.siteSearchTable .searchBlock {
    position: relative;
    width: 80%;
    height: 40px;
}
.siteSearchTable .searchBlock > input {
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    border-radius: 0;
    background: none;
}
.siteSearchTable .searchBlock > input[type="text"] {
    width: 100%;
    padding: 5px 110px 5px 10px;
    border: 1px solid #cccccc;
    background-color: #ffffff;
}
.siteSearchTable .searchBlock > .submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    background-color: #003391;
    color: #ffffff;
    text-align: center;
    cursor: pointer;
}
.siteSearchTable .inputList > li {
    float: left;
    margin-right: 1em;
}
.siteSearchTable .inputList > li > input[type="radio"],
.siteSearchTable .inputList > li > input[type="checkbox"] {
    position: relative;
    margin: 0 5px 0 0;
}

@media print, screen and (max-width: 769px) {
	.siteSearchTable{
		font-size: 1.4rem;

}
	.siteSearchTable th,
.siteSearchTable td{
	padding: 0.5em;

}
	.siteSearchTable td span{
	font-size: 1.2rem;

}
	.siteSearchTable .searchBlock {
    width: 100%;
}
.siteSearchTable td .mt-site-search-form {
	margin: 0;
	width: 100%
}

.siteSearchTable td .mt-site-search-form__query {
	margin: 0;
	width: 100%
}

	}








/*検索結果画面*/

.mt-site-search-form {
	width: 190px;
	margin: 0 auto;
	display: flex;
	border: 1px solid #BCBCBC;
	border-radius: 16px
}

.mt-site-search-form__query {
	width: 150px;
	height: 32px;
	padding: 0 8px;
	border: 1px solid #cccccc;
	font-size: 1.6rem;
	border-radius: 16px 0 0 16px

}

.mt-site-search-form__button {
    width: 40px;
    height: 32px;
    font-size: 1rem;
    margin-left: 0px;
    background-color: #D10000;
    border: none;
    border-radius: 0 16px 16px 0;
    background-image: url("/images/common/search_w.svg");
    text-indent: -9000px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 17px 17px ;
}
.mt-site-search-result__message{
	text-align: center;
	font-size: 1.5rem;
	color: #9A9A9A;
	font-weight: bold;
	margin-bottom: 1.5em;
	
}
.mt-site-search-result-item{
	padding:20px;
	border: 1px solid #9A9A9A;
	border-radius: 4px
}
.mt-site-search-result-item__label{
	font-size: 1.5rem
}
.mt-site-search-result-item__url cite{
	color: #D10000
}
.mt-site-search-result__list{
	margin-bottom: 1em;
	padding-bottom: 1em;
	border-bottom: 1px solid #CECECE;
}
.mt-site-search-result-item__excerpt{
		font-size: 1.5rem;

}
.mt-site-search-pagination-item {
	list-style: none;
	display: inline-block;
	padding: 0.6rem;
	font-size: 1.6rem
}




/* --------------------------------------------------- 
5.フッター
---------------------------------------------------- */
#footer_nav_sp {
  display: none;
}
footer {
  width: 100%;
  height: auto;
  padding-top: 30px;
  background: #E8E8E8;
  border-top: #54191A solid 3px;
}
.fnav {
  width: 100%;
  display: block;
}
.fnav nav {
  max-width: 1200px;
  display: flex;
  margin: auto;
  justify-content: space-between;
/*	text-align: center*/
}
.fnav nav > ul {
  width: 40%;
  margin: 50px 10px 50px 0;
}
.fnav nav > ul:last-child {
  margin-right: 0px;
}
.fnav nav > ul > li > a {
  display: block;
  color: #000000;
  text-decoration: none;
  font-size: 16px;
  margin-bottom: 10px;
/*  margin-bottom: 20px;*/
  font-weight: bold;
/*	text-align: center*/
	border-bottom: 1px solid #000000;
	padding-bottom: 5px
}
.fnav nav > ul > li > a {
  padding-right: 0px;
}
.fnav nav > ul > li > ul > li > a {
  display: block;
  color: #000000;
  font-size: 13px;
  letter-spacing: 0rem;
  margin-bottom: 7px;
}
.fnav nav ul li a:hover {
  text-decoration: underline;
}
.copyright {
  margin: 0;
  padding-top: 10px;
  text-align: center;
  font-family: Meiryo, メイリオ, Arial, Helvetica, " sans-serif";
  font-size: 12px;
  color: #fff;
}
.copyright nav ul {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.copyright nav ul li {
  font-size: 12px;
  padding-left: 25px;
  padding-right: 25px;
}
.copyright p {
  font-size: 8px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  padding: 8px;
}
@media print, screen and (max-width: 769px) {
  .fnav nav {}
  .fnav > nav {
    flex-wrap: wrap;
    margin: 0px 20px 50px 20px;
  }
  .fnav > nav > ul {
    width: 100%;
    flex-basis: calc(100%/2 - 20px);
    margin: 40px 0 0 0;
  }
  .sns_bnr {
    width: 100%;
    float: none;
  }
  .copyright nav ul {
    flex-wrap: wrap;
  }
}
@media print, screen and (max-width: 480px) {
  .fnav nav {
    margin-bottom: 0;
  }
  .fnav > nav > ul {
/*    flex-basis: 100%;*/
    margin: 20px 0 0 0;
  }
  .fnav > nav > ul:first-child {
/*    margin-top: 30px;*/
  }
  .fnav nav > ul > li {
    text-align: center;
  }
  .fnav nav > ul > li:nth-child(2) {
    display: none;
  }
  .fnav nav > ul:last-child > li {
    display: block;
  }
  .fnav nav > ul > li > a {
    padding: 0;
  }
  .copyright nav ul {
    margin: 0 40px 20px 40px;
    justify-content: space-around;
  }
  .copyright nav ul li {
    padding-left: 10px;
    padding-right: 10px;
  }
}