@charset "UTF-8";
/*
Theme Name: Katou-wp
Author: zama
Description: Katougiken
Version: 1.0
*/
/*---------------------------------------reset-css */
/* ------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans Jp", sans-serif;
  color: #333333;
}

h1,
h2,
h3,
h4,
h5,
h6,
label {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

ul {
  margin: 0;
  padding: 0;
}

li {
  margin: 0;
  padding: 0;
  list-style: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s, opacity 0.3s;
  cursor: pointer;
  display: block;
}

a:hover {
  color: inherit;
  opacity: 0.5;
  text-decoration: none;
}

img {
  vertical-align: bottom;
}

/*------------------------------------------header */
/* ------------------------------------------------*/
header {
  height: 60px;
  width: 100%;
  position: fixed;
  z-index: 100;
}

/* topページ以外 */
.header-color {
  background-color: #fff;
}

.js-header {
  transition: 0.4s ease-out;
  /* 元の色 */
}

.js-header.invert {
  background: #ffffff;
  /* スクロール後の色 */
  transition: 0.4s ease-out;
}

/* topページ以外 */
.logo-header {
  display: block;
  margin-left: 10px;
  width: 120px;
}

.logo {
  margin-left: 10px;
  width: 120px;
}

.logo2 {
  margin-left: 10px;
  width: 120px;
  display: none;
}

.logo.none {
  display: none;
}

.logo2.block {
  display: block;
}

.header-logo-menu {
  height: 60px;
  position: relative;
}

.logo-area {
  width: 200px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
}

#nav-drawer {
  position: relative;
}

/*チェックボックス等は非表示に*/
.nav-unshown {
  display: none;
}

/*アイコンのスペース*/
#nav-open {
  position: fixed;
  top: 0;
  right: 0;
  display: flex;
  height: 60px;
  width: 60px;
  justify-content: center;
  align-items: center;
  z-index: 30;
  cursor: pointer;
}

.js-open-btn,
.js-open-btn::before,
.js-open-btn::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  position: absolute;
}

.js-open-btn::before {
  bottom: 8px;
}

.js-open-btn::after {
  top: 8px;
}

.js-open-btn.nav-color,
.js-open-btn.nav-color::before,
.js-open-btn.nav-color::after {
  background-color: #333;
}

/* topページ以外 */
.open-btn,
.open-btn::before,
.open-btn::after {
  content: "";
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #333;
  position: absolute;
}

#nav-input:checked ~ #nav-open span {
  background-color: rgba(255, 255, 255, 0);
  /*メニューオープン時は真ん中の線を透明にする*/
}

#nav-input:checked ~ #nav-open span::before {
  bottom: 0;
  transform: rotate(45deg);
  background-color: #FFF;
}

#nav-input:checked ~ #nav-open span::after {
  top: 0;
  transform: rotate(-45deg);
  background-color: #FFF;
}

/*閉じる用の薄黒箇所*/
#nav-close {
  display: none;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

/*メニューの中身*/
#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 20;
  width: 70%;
  height: 100%;
  background: black;
  transition: 0.3s ease-in-out;
  transform: translateX(105%);
}

.content {
  position: relative;
}

/*チェックがついたら表示させる*/
#nav-input:checked ~ #nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked ~ #nav-content {
  transform: translateX(0%);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

.side-navbar {
  position: absolute;
  top: 40%;
  left: 50%;
  text-align: left;
  transform: translate(-50%, -40%);
  font-size: 18px;
}
.side-navbar .nav-item {
  position: relative;
  color: #ffffff;
  margin: 0 0 30px 30px;
}
.side-navbar .nav-item:last-child {
  margin-bottom: 60px;
}
.side-navbar .nav-item::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 20px;
  background-color: #3FA9F5;
  position: absolute;
  top: 12px;
}
.side-navbar .nav-item:hover {
  opacity: 0.5;
  transition: all 1.5;
}

.contact-btn {
  width: 150px;
  padding: 5px 0;
  text-align: center;
  color: #ffffff;
  background: #3FA9F5;
}

.top-navbar {
  display: none;
}

/*-------------------------------------------footer*/
/* ------------------------------------------------*/
.footer {
  background-color: black;
  padding: 40px 0 20px 0;
}
.footer .item-left {
  padding: 40px;
  background-color: #DBDBDB;
  width: 350px;
  border-radius: 50px;
  margin: 0px auto 40px auto;
}
.footer .item-left .logo {
  width: 120px;
  margin-bottom: 20px;
}
.footer .item-right {
  margin: 0 auto;
}
.footer .nav-list {
  width: 300px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  color: #FFF;
  margin: 0 auto 60px auto;
}
.footer .nav-item {
  border-left: 2px solid #3FA9F5;
  line-height: 1;
  margin: 20px 10px;
}
.footer .nav-item a {
  padding: 0 0 0 10px;
}
.footer .footer-btn {
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  font-size: 20px;
  border: 1px solid #FFF;
  margin-bottom: 40px;
  border-radius: 50px;
  width: 280px;
  padding: 10px;
}
.footer .footer-btn:nth-last-child(1) {
  margin-bottom: 60px;
  cursor: pointer;
}
.footer .footer-btn:hover {
  background-color: #333;
}
.footer .link {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer .tel-icon {
  width: 25px;
  margin-right: 10px;
}
.footer .text {
  margin-bottom: 5px;
}
.footer .copyright {
  color: #FFF;
  text-align: center;
  margin-bottom: 30px;
}

/*---------------------------------------topic-path*/
/* ------------------------------------------------*/
.topic-path {
  display: flex;
  justify-content: center;
  font-size: 14px;
  margin-top: 50px;
  color: gray;
}

.topic-path span {
  margin: 0 10px;
}

.topic-recruit,
.topic-contact {
  padding-bottom: 60px;
}

/* -----------------------------------------------*/
/* -----------------------------------------------*/
/* -------------------------------　＠media(768px) */
@media (min-width: 768px) {
  /* ------------------------------------------header*/
  .logo-area {
    margin-left: 10px;
  }
  .top-navbar {
    display: flex;
    position: absolute;
    width: 800px;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .top-navbar .nav-list {
    color: #FFF;
    width: 400px;
    font-size: 16px;
    margin-right: 10px;
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    right: 20%;
    transform: translateY(-50%);
  }
  .top-navbar .nav-black {
    color: #333;
  }
  .top-navbar .nav-link {
    padding: 0;
    position: relative;
  }
  .top-navbar .nav-link::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background: #3FA9F5;
    bottom: -2px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
  }
  .top-navbar .nav-link:hover::after {
    transform: scale(1, 1);
  }
  .top-navbar .nav-link:hover {
    opacity: 1;
  }
  .top-navbar .nav-list.top-nav-color {
    color: #333;
  }
  .top-navbar .top-contact-btn {
    width: 120px;
    padding: 5px;
    margin: 0 10px;
    text-align: center;
    color: #ffffff;
    background: #3FA9F5;
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
  }
  #nav-content,
#nav-open {
    display: none;
  }
  #nav-input:checked ~ #nav-close {
    display: none;
  }
  /*---------------------------------------------footer*/
  .footer .inner {
    display: flex;
    padding: 0 40px;
    margin: 0 auto 30px auto;
  }
  .footer .item-left {
    margin-right: 30px;
  }
  .footer .copyright {
    margin-bottom: 10px;
  }
}
/* 768px */
@media (min-width: 1200px) {
  /*------------------------------------------footer */
  .footer .inner {
    width: 70%;
  }
}/*# sourceMappingURL=style.css.map */