@charset "UTF-8";
/*
Theme Name : 伸栄工業 株式会社
Theme URI : https://yonebayashi.co.jp/
Author: SCARAMANGA INC.
Author URI: https://scaramanga.jp
Description:
Version: 1.0
*/
/*---base------------------------------------------------------------------*/
/* reset
========================================================================== */
body,
div,
pre,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
fieldset,
th,
td,
figure,
figcaption {
  margin: 0;
  padding: 0;
  font: inherit;
  vertical-align: baseline;
}

input,
textarea {
  margin: 0;
  font-size: 100%;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
}

fieldset,
img {
  border: 0;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

q:after,
q:before {
  content: "";
}

a,
input {
  outline: none;
}

input,
textarea {
  border-radius: 0;
}

input[type=button],
input[type=submit] {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

abbr,
acronym {
  border: 0;
}

* {
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  background-color: #FFFFFF;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
  line-height: 2.2;
  position: relative;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.79;
  }
}

a {
  color: #000;
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.5s;
}
a img {
  transition-property: all;
  transition-duration: 0.5s;
}
a:hover {
  text-decoration: none;
}
a:active {
  text-decoration: none;
}
a:visited {
  text-decoration: none;
}

/* all
---------------------------------------------------------------------------------------*/
.text_center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

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

@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}

/* animate
---------------------------------------------------------------------------------------*/
.fade_in {
  opacity: 0;
}

.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animated_bounce {
  -webkit-animation-duration: 0.95s;
  animation-duration: 0.95s;
  -webkit-animation-delay: 0.1s;
  animation-delay: 0.1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*!------------------------------------*
fadeIn
\*!------------------------------------*/
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  10% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

/* _header
---------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    margin: auto;
  }
  .header .header_inr {
    background: #FFFFFF;
    width: 97%;
    margin: 1.5% auto 0;
    padding: 10px 20px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  }
  .header .header_inr .header_logo {
    width: 200px;
    transition-property: all;
    transition-duration: 0.5s;
  }
  .header .header_inr .header_logo a {
    display: block;
  }
  .header .header_inr .header_logo a:hover {
    opacity: 0.6;
  }
}
@media screen and (max-width: 1023px) {
  .header .header_inr .header_logo {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
    position: fixed;
    top: 0;
    left: 0;
    background: #FFFFFF;
    width: 100%;
    z-index: 999;
    padding: 8px 10px;
  }
  .header .header_logo {
    width: 55%;
    max-width: 150px;
  }
  .header .header_logo a {
    display: block;
  }
  .header .header_logo a:hover {
    opacity: 0.6;
  }
}

@media screen and (min-width: 768px) {
  .g_nav .g_nav_inr {
    display: flex;
  }
  .g_nav .g_nav_inr .nav {
    display: flex;
    align-items: center;
  }
  .g_nav .g_nav_inr .nav li {
    margin: 0 0 0 20px;
  }
  .g_nav .g_nav_inr .nav li a {
    font-size: 1.5rem;
    position: relative;
    font-weight: 600;
  }
  .g_nav .g_nav_inr .nav li a:after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    display: block;
    width: 0;
    height: 2px;
    background: #186CCC;
    transition-property: all;
    transition-duration: 0.5s;
  }
  .g_nav .g_nav_inr .nav li a:hover {
    color: #186CCC;
  }
  .g_nav .g_nav_inr .nav li a:hover:after {
    width: 100%;
  }
  .g_nav .g_nav_inr .nav li.current_page_item a, .g_nav .g_nav_inr .nav li.current_page_parent a {
    color: #186CCC;
  }
  .g_nav .g_nav_inr .nav li.current_page_item a:after, .g_nav .g_nav_inr .nav li.current_page_parent a:after {
    width: 100%;
  }
  .g_nav .g_nav_inr .nav .nav_contact {
    margin-left: 20px;
  }
  .g_nav .g_nav_inr .nav .nav_contact a {
    display: block;
    background: linear-gradient(135deg, #186CCC 40%, #00378E 100%);
    color: #FFFFFF !important;
    padding: 8px 25px;
    border-radius: 50px;
  }
  .g_nav .g_nav_inr .nav .nav_contact a:hover {
    border-radius: 10px;
    color: #FFFFFF !important;
  }
  .g_nav .g_nav_inr .nav .nav_contact a:after {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .g_nav .g_nav_inr .nav li {
    margin: 0 0 0 10px;
  }
  .g_nav .g_nav_inr .nav li a {
    font-size: 1.4rem;
    font-weight: 500;
  }
  .g_nav .g_nav_inr .nav .nav_recruit {
    margin-left: 15px;
  }
  .g_nav .g_nav_inr .nav .nav_recruit a {
    padding: 12px 25px;
  }
}
@media screen and (max-width: 767px) {
  .g_nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background: rgba(255, 255, 255, 0.95);
    z-index: 998;
    padding: 20px 20px;
    overflow-x: scroll;
  }
  .g_nav .g_nav_btn_contact {
    display: none;
  }
  .g_nav li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid #E4E4E4;
    position: relative;
  }
  .g_nav li a:after {
    content: "";
    position: absolute;
    top: 22px;
    right: 5px;
    width: 10px;
    height: 6px;
    border-bottom: 1px solid #186CCC;
    border-right: 1px solid #186CCC;
    transform: skew(45deg);
    transition-property: all;
    transition-duration: 0.5s;
  }
  .g_nav .nav_recruit a {
    display: block;
    background: #186CCC;
    color: #FFFFFF;
    padding: 20px;
    text-align: center;
    margin-top: 20px;
  }
  .g_nav .nav_recruit a:after {
    display: none;
  }
}

/*----------ハンバーガーアイコン----------*/
.hamburger_area {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  width: 60px;
  height: 60px;
  transition: 0.5s;
  background: linear-gradient(135deg, #186CCC 40%, #00378E 100%);
  color: #FFFFFF;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .hamburger_area {
    display: none;
  }
}
.hamburger_area:hover {
  cursor: pointer;
}

.hamburger {
  display: block;
  position: absolute;
  top: 22px;
  right: 14px;
  width: 30px;
  height: 16px;
  z-index: 999;
}
.hamburger:hover {
  cursor: pointer;
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #FFFFFF;
}
.hamburger span:nth-of-type(1) {
  top: 0;
}
.hamburger span:nth-of-type(2) {
  top: 7px;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
}
.hamburger p {
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-family: "Roboto", sans-serif;
  font-weight: bold;
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hamburger p {
    display: none;
  }
}

.active span:nth-of-type(1) {
  top: -4px;
}
.active span:nth-of-type(3) {
  bottom: 0 !important;
}

.hamburger span:nth-of-type(1) {
  -webkit-animation: menu-ber01 0.75s forwards;
  animation: menu-ber01 0.75s forwards;
}
.hamburger span:nth-of-type(2) {
  transition: all 0.25s 0.25s;
  opacity: 1;
}
.hamburger span:nth-of-type(3) {
  -webkit-animation: menu-ber02 0.75s forwards;
  animation: menu-ber02 0.75s forwards;
}

.active span:nth-of-type(1) {
  -webkit-animation: active-menu-ber01 0.75s forwards;
  animation: active-menu-ber01 0.75s forwards;
}
.active span:nth-of-type(2) {
  opacity: 0;
}
.active span:nth-of-type(3) {
  -webkit-animation: active-menu-ber03 0.75s forwards;
  animation: active-menu-ber03 0.75s forwards;
}

@-webkit-keyframes menu-ber01 {
  0% {
    -webkit-transform: translateY(8px) rotate(30deg);
  }
  50% {
    -webkit-transform: translateY(8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-ber01 {
  0% {
    transform: translateY(8px) rotate(30deg);
  }
  50% {
    transform: translateY(8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes menu-ber02 {
  0% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes menu-ber02 {
  0% {
    transform: translateY(-8px) rotate(-30deg);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-ber01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(10px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(10px) rotate(30deg);
  }
}
@keyframes active-menu-ber01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(10px) rotate(0);
  }
  100% {
    transform: translateY(10px) rotate(30deg);
  }
}
@-webkit-keyframes active-menu-ber03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-8px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(-30deg);
  }
}
@keyframes active-menu-ber03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-8px) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-30deg);
  }
}
/* _page
---------------------------------------------------------------------------------------*/
/*---base------------------------------------------------------------------*/
.container {
  max-width: 1680px;
  margin: auto;
  padding: 0 5%;
}
.container_md {
  max-width: 1280px;
  margin: auto;
}
.container_sm {
  max-width: 780px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page_wrapper {
    margin: 60px 0 0;
  }
}
.page_wrapper .page_title .page_title_inr {
  padding: 160px 5% 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title .page_title_inr {
    padding: 40px 5% 20px;
    text-align: center;
  }
}
.page_wrapper .page_title .page_title_inr h1 {
  font-size: 1.8rem;
  position: relative;
  z-index: 9;
  color: #186CCC;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title .page_title_inr h1 {
    font-size: 1.4rem;
  }
}
.page_wrapper .page_title .page_title_inr p {
  font-size: 7.2rem;
  font-weight: 100;
  line-height: 1.5;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title .page_title_inr p {
    font-size: 5rem;
  }
}
.page_wrapper .page_title_img .page_title_inr {
  padding: 210px 5% 120px;
  color: #FFFFFF;
  position: relative;
}
.page_wrapper .page_title_img .page_title_inr:after {
  content: "";
  background: #186CCC;
  position: absolute;
  mix-blend-mode: soft-light;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title_img .page_title_inr {
    background: linear-gradient(110deg, #186CCC 0%, #186CCC 55%, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0) 100%);
    padding: 40px 5%;
  }
}
.page_wrapper .page_title_img .page_title_inr h1 {
  font-size: 1.8rem;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title_img .page_title_inr h1 {
    font-size: 1.2rem;
  }
}
.page_wrapper .page_title_img .page_title_inr p {
  font-size: 7.2rem;
  font-weight: 100;
  line-height: 1.5;
  position: relative;
  z-index: 9;
}
@media screen and (max-width: 767px) {
  .page_wrapper .page_title_img .page_title_inr p {
    font-size: 3rem;
  }
}
.page_wrapper .breadcrumbs {
  font-size: 1.2rem;
  padding: 20px 5%;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .page_wrapper .breadcrumbs {
    font-size: 1rem;
    text-align: right;
    display: none;
  }
}
.page_wrapper .breadcrumbs a {
  color: #999999;
}

.about-us .page_title_img {
  background: url(../images/tit_about.jpg) center no-repeat;
  background-size: cover;
}

.company .page_title_img {
  background: url(images/tit_company.jpg) center no-repeat;
  background-size: cover;
}

.contact .page_title_img {
  background: url(images/tit_contact.jpg) center no-repeat;
  background-size: cover;
}

.page_section {
  margin: 90px auto 160px;
}
@media screen and (max-width: 767px) {
  .page_section {
    margin: 30px auto 90px;
  }
}
.page_section .page_section_inr {
  margin: 45px auto 60px;
}
@media screen and (max-width: 767px) {
  .page_section .page_section_inr {
    margin: 30px auto 60px;
  }
}

.page_section_nav {
  margin: 100px auto 160px;
  padding-top: 100px;
  margin-top: -100px;
}
@media screen and (max-width: 767px) {
  .page_section_nav {
    margin: 30px auto 90px;
    padding-top: 0;
    margin-top: 0;
  }
}
.page_section_nav .page_section_inr {
  margin: 45px auto 60px;
}
@media screen and (max-width: 767px) {
  .page_section_nav .page_section_inr {
    margin: 30px auto 60px;
  }
}

.section_title {
  margin-bottom: 45px;
}
@media screen and (max-width: 767px) {
  .section_title {
    margin-bottom: 30px;
  }
}
.section_title h2 {
  font-size: 1.4rem;
  font-weight: 600;
  color: #186CCC;
}
@media screen and (max-width: 767px) {
  .section_title h2 {
    font-size: 1.2rem;
  }
}
.section_title p {
  font-size: 6rem;
  font-weight: 100;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .section_title p {
    font-size: 3.6rem;
  }
}

.page_section_top {
  margin: 60px 0 90px;
}
@media screen and (max-width: 767px) {
  .page_section_top {
    margin: 30px 0 45px;
  }
}
.page_section_top .reed_area {
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_section_top .reed_area {
    text-align: left;
    margin-bottom: 45px;
  }
}
.page_section_top .page_nav ul {
  display: flex;
  justify-content: space-between;
  border-right: 1px solid #000;
}
@media screen and (max-width: 1023px) {
  .page_section_top .page_nav ul {
    border-top: 1px solid #E4E4E4;
    border-right: none;
    display: block;
  }
}
.page_section_top .page_nav ul li {
  border-left: 1px solid #000;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .page_section_top .page_nav ul li {
    border-left: none;
    border-bottom: 1px solid #E4E4E4;
  }
}
.page_section_top .page_nav ul li a {
  padding: 0 0 5px 0;
  width: 100%;
  display: block;
  position: relative;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page_section_top .page_nav ul li a {
    font-size: 1.2rem;
    text-align: left;
    padding: 12px 0;
  }
}
.page_section_top .page_nav ul li a:after {
  content: "";
  display: block;
  margin: 5px auto 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(135deg);
}
@media screen and (max-width: 767px) {
  .page_section_top .page_nav ul li a:after {
    position: absolute;
    right: 2%;
    top: 50%;
    margin-top: -5px;
  }
}
.page_section_top .page_nav ul li a:hover {
  color: #999999;
}
.page_section_top .page_nav ul .current a {
  color: #186CCC;
}
.page_section_top .page_nav ul .current a:after {
  content: "";
  display: block;
  margin: 5px auto 0;
  width: 6px;
  height: 6px;
  border-top: 1px solid #186CCC;
  border-right: 1px solid #186CCC;
  transform: rotate(135deg);
}

.btn_more {
  margin: 45px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn_more {
    margin: 30px auto 0;
  }
}
.btn_more.btn_center a {
  margin: auto;
}
.btn_more a {
  display: block;
  color: #FFFFFF;
  background: linear-gradient(135deg, #186CCC 40%, #00378E 100%);
  max-width: 310px;
  padding: 16px 35px;
  position: relative;
  border-radius: 50px;
}
@media screen and (max-width: 767px) {
  .btn_more a {
    width: 90%;
    margin: auto;
  }
}
.btn_more a .outlink {
  background: url(images/outlink.svg) left center no-repeat;
  background-size: 20px;
  padding-left: 25px;
}
.btn_more a:hover:after {
  right: 25px;
}
.btn_more a:after {
  transition-property: all;
  transition-duration: 0.5s;
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid #FFFFFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.btn_more_back {
  margin: 60px auto 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn_more_back {
    margin: 45px auto 0;
  }
}
.btn_more_back.btn_center a {
  margin: auto;
}
.btn_more_back a {
  display: block;
  color: #FFFFFF;
  background: #999999;
  max-width: 310px;
  padding: 16px 35px;
  position: relative;
  border-radius: 50px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .btn_more_back a {
    width: 90%;
    margin: auto;
  }
}
.btn_more_back a:hover:after {
  left: 25px;
}
.btn_more_back a:after {
  transition-property: all;
  transition-duration: 0.5s;
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  margin-top: -5px;
  display: inline-block;
  vertical-align: middle;
  color: #FFFFFF;
  line-height: 1;
  width: 0.6em;
  height: 0.6em;
  border: 0.1em solid #FFFFFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(225deg);
}

.row {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 45px 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .row {
    gap: 35px 0;
  }
}
.row .col_3 {
  width: 30%;
}
@media screen and (max-width: 1023px) {
  .row .col_3 {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .row .col_3 {
    width: 100%;
  }
}
.row .col_2 {
  width: 47.5%;
}
@media screen and (max-width: 767px) {
  .row .col_2 {
    width: 100%;
  }
}
.row a {
  display: block;
}
.row a .thum {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .row a .thum {
    margin: auto;
  }
}
.row a .thum img {
  transition-property: all;
  transition-duration: 0.5s;
  transition-timing-function: ease;
  width: 100%;
}
.row a:hover .thum img {
  transform: scale(1.05);
}

.cat_list {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin: 30px 0 60px;
}
@media screen and (max-width: 767px) {
  .cat_list {
    width: 100%;
    gap: 5px;
    margin: 30px 0 60px;
  }
}
.cat_list li:last-child a:after {
  display: none;
}
.cat_list li.current a {
  background: #999999;
  color: #FFFFFF;
}
.cat_list li.current:nth-child(2) a {
  background: #186CCC;
  color: #FFFFFF;
}
.cat_list li.current:nth-child(3) a {
  background: #c9ad36;
  color: #F5F8F8;
}
.cat_list li.current:nth-child(4) a {
  background: #a91012;
  color: #F5F8F8;
}
.cat_list li.current:nth-child(5) a {
  background: #0c385d;
  color: #F5F8F8;
}
.cat_list li:nth-child(2) a:hover {
  background: #186CCC;
  color: #FFFFFF;
}
.cat_list li:nth-child(3) a:hover {
  background: #c9ad36;
  color: #F5F8F8;
}
.cat_list li:nth-child(4) a:hover {
  background: #a91012;
  color: #F5F8F8;
}
.cat_list li:nth-child(5) a:hover {
  background: #0c385d;
  color: #F5F8F8;
}
.cat_list li a {
  border-radius: 50px;
  padding: 8px 25px;
  font-size: 1.2rem;
  display: block;
  background: #FFFFFF;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 4px 12px;
}
@media screen and (max-width: 767px) {
  .cat_list li a {
    padding: 6px 25px;
    font-size: 1rem;
  }
}
.cat_list li a:hover {
  background: #999999;
  color: #FFFFFF;
}

.topics_list {
  display: flex;
  flex-wrap: wrap;
  gap: 45px 5%;
  width: 100%;
}
.topics_list .topics_card {
  width: 21.25%;
}
@media screen and (max-width: 1023px) {
  .topics_list .topics_card {
    width: 47.5%;
  }
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card {
    width: 47.5%;
  }
}
.topics_list .topics_card a:hover .thum img {
  transform: scale(1.05);
}
.topics_list .topics_card a .thum {
  overflow: hidden;
  margin-bottom: 1.2em;
  border-radius: 10px;
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card a .thum {
    margin-bottom: 0.6em;
  }
}
.topics_list .topics_card a .inr {
  margin: 1em 0 0.5em;
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card a .inr {
    margin: 0.6em 0 0.2em;
  }
}
.topics_list .topics_card a .inr .post_meta .date {
  display: inline-block;
  width: 90px;
  color: #999999;
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card a .inr .post_meta .date {
    width: 55px;
  }
}
.topics_list .topics_card a .inr .post_meta .cat {
  display: inline-block;
  border-radius: 30px;
  text-align: center;
  font-size: 1.3rem;
  margin: 0 23px;
  width: 90px;
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card a .inr .post_meta .cat {
    font-size: 1rem;
  }
}
.topics_list .topics_card a .inr .post_meta .cat.news {
  background: #186CCC;
  color: #F5F8F8;
}
.topics_list .topics_card a .inr .post_meta .cat.event {
  background: #c9ad36;
  color: #F5F8F8;
}
.topics_list .topics_card a .inr .post_meta .cat.media {
  background: #a91012;
  color: #F5F8F8;
}
.topics_list .topics_card a .inr .post_meta .cat.recruit {
  background: #0c385d;
  color: #F5F8F8;
}
.topics_list .topics_card a .inr .title {
  font-size: 1.8rem;
  margin: 0.35em 0 0;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .topics_list .topics_card a .inr .title {
    font-size: 1.4rem;
    margin-top: 0.1em;
  }
}

.article_404 {
  margin: 120px auto;
  text-align: center;
}

.scroll_area {
  margin: 90px 0 0;
}
.scroll_area .simply-scroll-container {
  position: relative;
}
.scroll_area .simply-scroll-clip {
  position: relative;
  overflow: hidden;
}
.scroll_area .simply-scroll-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  /* 崩れる場合にはこちらも設定 */
}
.scroll_area .simply-scroll-list li {
  list-style: none !important;
  width: 190px;
  height: auto;
  margin: 0 15px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .scroll_area .simply-scroll-list li {
    width: 120px;
  }
}
.scroll_area .simply-scroll-list li img {
  display: block;
}

/* _footer
---------------------------------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #186CCC 40%, #00378E 100%);
  color: #FFFFFF;
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 45px 0;
  }
}
.footer .footer_logo {
  max-width: 180px;
  margin-bottom: 45px;
}
.footer .footer_nav {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .footer .footer_nav {
    display: none;
  }
}
.footer .footer_nav .nav {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer_nav .nav li {
  margin: 10px 15px 10px 0;
  font-size: 85%;
}
.footer .footer_nav .nav li a {
  color: #FFFFFF;
}
.footer .footer_nav .nav li a:hover {
  color: #186CCC;
  opacity: 0.6;
}
.footer .footer_address {
  margin-bottom: 45px;
}
.footer .footer_address p {
  font-size: 80%;
}
.footer .copyright {
  text-align: right;
  font-size: 1.2rem;
}