@charset "UTF-8";
@import "base.css";
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap');

:root {
    --mcolor: #96191c;
    --scolor: #fff;
}
h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
  font-size: 14px;
  -webkit-text-size-adjust: none;
}
header, section, footer, aside, nav, main, article, figure {
  display: block;
}
img {
  vertical-align: bottom;
}
a {
  color: var(--mcolor);
}
a:hover, a:active {
  text-decoration: none;
}
table {
  width: 100%
}
p {
  margin: 0 0 1.5em;
}
.section {
  padding: 0 0 30px;
}
p, dd, td, th, li {
  line-height: 1.8em;
}
#totop {
  position: fixed;
  bottom: 60px;
  right: 50px;
  z-index: 10;
  width: 40px;
  margin-bottom: 0;
}
#totop a {
  display: block;
  transition: all 0.5s;
  -webkit-animation: slide-top 0.8s ease-in infinite alternate-reverse;
  animation: slide-top 0.8s ease-in infinite alternate-reverse;
}
#totop a:hover {
  opacity: 0.7;
}
@-webkit-keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
@keyframes slide-top {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
.bold {
  font-weight: bold;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
*, *:before, *:after {
  box-sizing: border-box;
  outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
body {
  font-family: 'Roboto', sans-serif;
  color: #666666;
}
#wrapper {
  min-width: 1200px;
  overflow: hidden;
  padding-top: 143px;
}

.container, .under #main {
  max-width: 1200px;
  width: 100%;
  /* padding: 0 5%; */
  margin: 0 auto;
  position: relative;
}
img {
  max-width: 100%;
}
.sp {
  display: none;
}
h1 {
  display: none;
}
#header {
  position: fixed;
  width: 100%;
  z-index: 999;
  background: rgba(255,255,255,0.9);
  top: 0;
  left: 0;
}
#header.fixed .h-top {
  display: none;
}
#header.fixed {
  border-bottom: 1px solid #ccc;
}
.h-top {
  background: var(--mcolor);
  color: #fff;
  padding: 5px 0;
}
.h-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.h-top-time {
  margin: 0;
  font-size: 13px;
}
.h-top-link {
  display: flex;
}
.h-top-link a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  display: block;
  line-height: 1em;
  border-right: 1px solid #fff;
  padding: 0 10px;
}
.h-top-link li:last-child a {
  border-right: none;
}
.h-top-link a:hover {
  text-decoration: underline;
}
.h-main {
  padding: 15px 0 10px;
  transition: all 0.3s;
}
#header.fixed .h-main {
  padding: 5px 0;
}
.h-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  margin: 0;
  width: 85px;
  transition: all 0.3s;
}
#header.fixed .logo {
  width: 100px;
}
.h-right-top {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  transition: all 0.3s;
  justify-content: flex-end;
}
#header.fixed .h-right-top {
  margin: 0;
}
.h-search {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.h-search .form {
  width: 360px;
  display: flex;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 7px;
  transition: all 0.3s;
}
#header.fixed .h-search .form {
  width: 300px;
}
.h-search .form .button {
    text-decoration:none;
  flex-shrink: 0;
  border: none;
  border-left: 1px solid #ccc;
  background: transparent;
  padding: 0 5px 0 10px;
}
.h-search .form input {
  border: none;
  background: transparent;
  width: 100%;
  font-size: 15px;
  color: #d0d0d0;
  padding: 0 15px;
  font-style: italic;
}
#header.fixed .h-search .form input, #header.fixed .h-search-txt, #header.fixed .h-tel {
  font-size: 13px;
}
.h-search .form input::-webkit-input-placeholder {
  color: #d0d0d0;
}
.h-search .form input::-moz-placeholder {
  color: #d0d0d0;
}
.h-search .form input:-ms-input-placeholder {
  color: #d0d0d0;
}
.h-search .form input:-moz-placeholder {
  color: #d0d0d0;
}
.h-search-txt {
  margin: 0 0 0 15px;
  color: #d0d0d0;
  font-style: italic;
  transition: all 0.3s;
}
.h-search-txt span {
  text-decoration: underline;
}
.h-tel {
  margin: 0;
  font-size: 15px;
  color: var(--mcolor);
  transition: all 0.3s;
}
.h-tel span {
  color: #666;
  text-decoration: underline;
}
.gnavi {
  display: flex;
  justify-content: flex-end;
}
.gnavi > li {
  position: relative;
}
.gnavi > li > a {
  text-decoration: none;
  font-size: 15px;
  display: block;
  text-transform: uppercase;
  padding: 7px 0;
  transition: all 0.3s;
}
#header.fixed .gnavi > li > a {
  font-size: 14px;
}
.gnavi > li.over > a:after {
  content: '';
  position: relative;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 3px 0 3px;
  border-color: var(--mcolor) transparent transparent transparent;
  margin-left: 5px;
  top: -2px;
}
.gnavi > li:not(:last-child) {
  margin-right: 23px;
}
.gnavi > li:before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background: var(--mcolor);
  transform: scale(0, 1);
  transition: all 0.5s;
}
.gnavi > li.active:before, .gnavi > li:hover:before {
  transform: scale(1, 1);
}
.submenu {
  position: absolute;
  z-index: 99;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
.submenu a {
  text-decoration: none;
  display: block;
  white-space: nowrap;
  background: var(--mcolor);
  color: #fff;
  padding: 10px 15px;
  margin-top: 1px;
  transition: all 0.5s;
}
.submenu a:hover {
  opacity: 0.7;
}
.main-slide p {
  margin: 0;
}
.main-slide p img {
  width: 100%;
  max-width: none;
}
.main-slide .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 60%;
  display: flex;
}
.main-slide .slick-dots button {
  width: 24px;
  height: 24px;
  border: 1px solid transparent;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  margin: 0 5px;
  text-indent: -50000px;
  background: transparent;
  transition: all 0.5s;
}
.main-slide .slick-dots button:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  top: calc(50% - 3px);
  left: calc(50% - 3px);
  transition: all 0.5s;
}
.main-slide .slick-dots .slick-active button {
  border-color: var(--mcolor);
}
.main-slide .slick-dots .slick-active button:before {
  background: var(--mcolor);
}
.box01 {
  padding: 50px 0 30px;
}
.box01 .container {
  /* max-width: 1200px; */
  display: flex;
  justify-content: space-between;
}
.b01-left {
  width: calc(66.67% - 15px);
}
.b01-bnr {
  width: calc(33.33% - 15px);
}
.idx-ttl {
  font-size: 24px;
  color: var(--mcolor);
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.5em;
  margin: 0 0 10px;
  border-bottom: 2px solid #ddd;
  position: relative;
}
.idx-ttl:after {
  content: '';
  position: absolute;
  width: 220px;
  height: 2px;
  background: var(--mcolor);
  left: 0;
  bottom: -2px;
}
.b01-cont {
  display: flex;
  justify-content: space-between;
}
.b01-main {
  width: 68%;
}
.b01-list {
  width: 30%;
  height: 480px;
}
.b01-main a {
  display: block;
  text-decoration: none;
  color: #666;
  transition: all 0.5s;
}
.b01-main a:hover {
  opacity: 0.7;
}
.b01-main-img {
  margin: 0 0 10px;
}
.b01-main-img img {
  width: 100%;
}
.b01-main-auth {
  font-size: 13px;
  margin: 0 0 5px;
}
.b01-main-auth span, .b01-list-itm-auth span {
  background: url("../W_images/date.png") no-repeat left center;
  display: inline-block;
  margin-left: 15px;
  padding-left: 17px;
}
.b01-main-ttl {
  font-size: 20px;
  color: var(--mcolor);
  line-height: 1.3em;
  margin: 0 0 10px;
}
.b01-main-txt {
  margin: 0;
  font-size: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5em;
}
.b01-list-item a {
  text-decoration: none;
  color: #333;
  display: block;
}
.b01-list-itm-ttl {
  font-size: 15px;
  font-weight: bold;
  line-height: 1.3em;
  margin: 0 0 5px;
  transition: all 0.5s;
}
.b01-list-itm-auth {
  font-size: 13px;
  margin: 0;
  color: #63676b;
}
.b01-list-item li {
  border-bottom: 1px dotted #acacac;
  padding: 0 0 8px;
  margin: 0 0 8px;
}
.b01-list-item {
  margin-right: 5px;
}
.b01-list-item a:hover .b01-list-itm-ttl {
  color: var(--mcolor);
}
.b01-bnr img {
  width: 100%;
}
.b02-main {
  border-top: 1px dashed #ccc;
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
}
.b02-left {
  width: 44%;
}
.b02-right {
  width: 55%;
  border-left: 1px dashed #ccc;
  padding-left: 1.5%;
}
.b02-left-itm-ttl {
  font-size: 15px;
  color: var(--mcolor);
  font-weight: 700;
  line-height: 1.3em;
  margin: 0 0 10px;
}
.b02-left-itm-main {
  display: flex;
}
.b02-left-item a {
  text-decoration: none;
  display: block;
  transition: all 0.5s;
  color: #666;
}
.b02-left-item a:hover {
  opacity: 0.7;
}
.b02-left-itm-img {
    width: 145px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.b02-left-itm-txt {
  margin: 0;
  font-size: 16px;
  line-height: 1.4em;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.b02-left-item:not(:last-child) {
  border-bottom: 1px dashed #ccc;
  padding: 0 0 10px;
  margin: 0 0 12px;
}
.tab-content > .tab-pane {
  display: none;
}
.tab-content > .tab-pane.current {
  display: inherit;
}
.nav-tabs {
  display: flex;
  background: #f0f0f0;
  margin-bottom: 10px;
}
.nav-tabs li:first-child {
  text-decoration: none;
  display: block;
  color: #666666;
  padding: 7px 15px;
  font-size: 13px;
  transition: all 0.5s;
  cursor: pointer;
}
.nav-tabs li a{
  text-decoration: none;
  display: block;
  color: #666666;
  padding: 7px 15px;
  font-size: 13px;
  transition: all 0.5s;
  cursor: pointer;
}
.nav-tabs li:first-child.current{ color: #fff;}
.nav-tabs .current {
  background: var(--mcolor);
  text-transform: uppercase;
  color: #fff;
}
/*.nav-tabs li:hover {
  background: var(--mcolor);
  color: #fff;
}*/
.nav-tabs li a:hover {
  background: var(--mcolor);
  color: #fff;
}
.news-tab-cnt {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.news-tab-item {
  width: 65%;
}
.news-tab-cnt .news-tab-link {
  width: 33%;
}
.news-tab-item a {
  text-decoration: none;
  color: #666;
}
.news-tab-ttl {
  font-size: 15px;
  color: var(--mcolor);
  font-weight: 700;
  line-height: 1.3em;
  margin: 0 0 5px;
}
.news-tab-flex {
  display: flex;
  align-items: flex-start;
}
.news-tab-img {
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.news-tab-txt {
  font-size: 16px;
  line-height: 1.5em;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-tab-link a {
  display: block;
  text-decoration: none;
  font-size: 13px;
  color: #666;
  line-height: 1.3em;
  font-style: italic;
  padding-left: 15px;
  position: relative;
}
.news-tab-link a:hover {
  color: var(--mcolor);
}
.news-tab-link a:before {
  content: '';
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--mcolor);
  border-radius: 50%;
  left: 0;
  top: 4px;
}
.news-tab-link li:not(:last-child) {
  margin-bottom: 8px;
}
.news-tab:not(:last-child) {
  margin: 0 0 30px;
}
#footer {
  padding: 50px 0 0;
}
.f-main {
  border-top: 1px solid #ccc;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}
.f-mod {
  width: calc(33% - 50px);
}

.f-mod .f-logo{
  /* padding: 0 25%; */
}
.f-logo {
  width: 100%;
  margin: 0 0 10px;
}
.f-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
  font-style: italic;
  text-align: justify;
}
.f-ttl {
  font-size: 20px;
  color: #333333;
  text-transform: uppercase;
  margin: 0 0 10px;
}
.f-info {
  margin: 0 0 5px;
  background: url("../W_images/f_add.png") no-repeat left center;
  padding-left: 20px;
  font-size: 15px;
}
.f-mail {
  background-image: url("../W_images/f_mail.png");
}
.f-tel {
  background-image: url("../W_images/f_tel.png");
}
.f-form {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.f-form input {
  width: calc(100% - 45px);
  border: 1px solid #f1f1f1;
  padding: 10px 15px;
  opacity: 0.5;
  font-size: 13px;
  font-style: italic;
}
.f-form button {
  background: var(--mcolor);
  border: none;
  width: 45px;
  color: #fff;
  text-transform: uppercase;
}
.f-form-txt {
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
}
.f-social a {
  display: inline-block;
  margin-right: 10px;
}

.f-social img{
  border-radius: 5px;
}
.copyright {
  margin: 0;
  font-size: 15px;
  line-height: 1.5em;
}
.copyright a, .f-info a {
  text-decoration: none;
  color: #666;
}
.f-hotline {
  line-height: 2em;
  background: var(--mcolor);
  text-align: center;
  color: #fff;
  margin: 30px 0 0;
  padding: 5px 0;
  font-size: 13px;
  text-transform: uppercase;
}
.f-hotline a {
  text-decoration: none;
  color: #fff;
  display: inline-block;
  background: url("../W_images/f_call.png") no-repeat left center;
  padding-left: 30px;
  margin-left: 10px;
}
.topic-path{margin:20px 0;}
.topic-path li {
	display: inline-block;
	font-size: 15px;
    font-style: italic;
	line-height: 1.3em;
}
.topic-path li a {
	text-decoration: none;
}
.topic-path li:after {
	content: '>';
	margin-right: 5px;
	padding-left: 10px;
}
.topic-path li:last-child:after{content:"";}
.topic-path li a:hover {
	text-decoration: underline;
}
.under-section{
     display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.under #content {
    width: 810px;
}
.sidebar {
    position:relative;
    width: 320px;
}
.under-main-ttl{
    font-size: 24px;
    color: #bb2513;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 15px;
}
@media screen and (max-width: 1200px) {
  .container {
    padding: 0 3%;
  }
}
@media screen and (max-width: 768px) {
.under #content{width:100%;}
  #wrapper {
    min-width: 100%;
    margin: 0;
    padding-top: 100px;
  }
  .sidemode p{
    text-align: center;

  }
  #main, #footer {
    min-width: 100%;
  }
  .container, .under #main {
    padding: 0 3%;
    width: 100%;
  }
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  /* MENU-ICON */
  .menu-icon {
    width: 50px;
    height: 43px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px 0;
    z-index: 99999;
    background: var(--mcolor);
  }
  .menu-icon span {
    display: block;
    margin: 0 auto 15px;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-duration: 0;
    -moz-transition-duration: 0;
    -ms-transition-duration: 0;
    -o-transition-duration: 0;
    transition-duration: 0;
    -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
    -ms-transition-delay: 0.2s;
    -o-transition-delay: 0.2s;
    transition-delay: 0.2s;
    top: 12px;
    left: 0;
    position: relative;
  }
  .menu-icon span::after, .menu-icon span::before {
    display: block;
    content: '';
    position: absolute;
    width: 30px;
    height: 3px;
    background-color: #fff;
    -webkit-transition-property: margin, -webkit-transform;
    -webkit-transition-duration: 0.2s;
    -moz-transition-duration: 0.2s;
    -ms-transition-duration: 0.2s;
    -o-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-delay: 0.2s, 0;
    -moz-transition-delay: 0.2s, 0;
    -ms-transition-delay: 0.2s, 0;
    -o-transition-delay: 0.2s, 0;
    transition-delay: 0.2s, 0;
  }
  .menu-icon span::before {
    margin-top: -10px;
  }
  .menu-icon span::after {
    margin-top: 10px;
  }
  .menu-icon.active span {
    background-color: transparent;
  }
  .menu-icon.active span::before, .menu-icon.active span::after {
    margin-top: 0px;
    -webkit-transition-delay: 0, 0.2s;
    -moz-transition-delay: 0, 0.2s;
    -ms-transition-delay: 0, 0.2s;
    -o-transition-delay: 0, 0.2s;
    transition-delay: 0, 0.2s;
  }
  .menu-icon.active span::before {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  .menu-icon.active span::after {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .gnv-ico {
    width: 50px;
    height: 56px;
    position: absolute;
    background: rgba(255, 255, 255, 0.3);
    right: 0;
    top: 0 !important;
    transform: none !important;
    border: none !important;
  }
  .gnv-ico:before {
    content: '';
    position: absolute;
    border: solid #fff;
    border-width: 0 1px 1px 0;
    display: inline-block;
    padding: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    left: calc(50% - 3px);
    top: calc(50% - 3px);
    transition: all 0.5s ease;
  }
  .gnavi li.active > .gnv-ico:before {
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .sidebar{
    width: 100%;
  }
  #totop {
    width: 50px;
    right: 3%;
    bottom: 50px;
    line-height: 0;
  }
  .h-top, .h-search, .h-tel, .gnavi > li:before, .b01-bnr {
    display: none;
  }
  #gnavi {
    position: fixed;
    top: 80px;
    width: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.9);
    height: calc(100% - 80px);
    padding: 40px 3%;
    overflow: auto;
    display: none;
  }
  .h-right {
    position: fixed;
  }
  .gnavi {
    display: block;
  }
  .gnavi > li > a {
    background: var(--mcolor);
    color: #fff;
    font-size: 14px;
    padding: 15px 20px;
    border-bottom: 1px solid #fff;
  }
  .gnavi > li:not(:last-child) {
    margin-right: 0;
  }
  .submenu {
    position: relative;
    left: 0;
    transform: none;
  }
  .submenu a {
    padding: 15px 20px;
    margin: 0;
    border-bottom: 1px solid #fff;
    background: #811;
    text-transform: uppercase;
  }
  .logo {
    width: 70px;
  }
  #header {
    border-bottom: 1px solid #eaeaea;
  }
  .main-slide p img {
    height: 250px;
    width: auto;
  }
  .main-slide.slick-initialized p.slick-slide {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .box01 {
    padding: 40px 0;
  }
  .box01 .container {
    display: block;
  }
  .b01-left {
    width: 100%;
    margin: 0;
  }
  .b01-main-ttl {
    font-size: 16px;
  }
  .b01-main-txt, .b01-list-itm-ttl {
    font-size: 14px;
  }
  .b01-list {
    height: 420px;
  }
  .b02-main {
    display: block;
  }
  .b02-left {
    width: 100%;
    margin: 0 0 30px;
  }
  .b02-right {
    width: 100%;
    border-left: 0;
    padding: 30px 0 0;
    border-top: 1px dashed #ccc;
  }
  .f-main {
    flex-wrap: wrap;
  }
  .f-mod {
    width: calc(50% - 15px);
    margin-bottom: 20px;
  }

  .f-mod .f-logo{
    width: 100%;
    text-align: center;

  }
  .f-txt, .f-info, .f-form-txt, .copyright, .b02-left-itm-txt, .news-tab-txt {
    font-size: 14px;
  }
  .copyright{
    text-align: center; 
  }

  .f-ttl {
    font-size: 16px;
  }
  .f-hotline {
    margin-top: 10px;
  }
  .idx-ttl {
    font-size: 18px;
  }
  .idx-ttl:after {
    width: 165px;
  }
}
@media screen and (max-width: 640px) {
  .b01-cont, .news-tab-cnt {
    display: block;
    margin: 0;
  }
  .b01-main, .news-tab-item {
    width: 100%;
    margin: 0 0 20px;
  }
  .b01-list {
    width: 100%;
    height: 188px;
  }
  .news-tab-cnt .news-tab-link {
    width: 100%;
  }
  .tab-pane > .news-tab-link {
    display: none;
  }
  #footer {
    padding: 30px 0 0;
  }
  .nav-tabs {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 480px) {
  .main-slide p img {
    height: auto;
    width: 100%;
  }
  .f-mod {
    width: 100%;
  }
  .news-tab-img {
    width: 150px;
  }
  .news-tab-txt {
    -webkit-line-clamp: 3;
  }
}