@charset "utf-8";
/* スマホ */
@media (width < 768px) {
}
@media (max-width: 767.99px) {
}
/* タブレット */
@media (width >= 768px) {
}
@media (width >= 1024px) {
}
@media (width >= 768px) and (width < 1024px) {
}
@media (width >= 768px) and (width < 1280px) {
}
@media (width >= 1024px) and (width < 1280px) {
}
@media (min-width: 768px) {
}
@media (min-width: 1024px) {
}
@media (min-width: 768px) and (max-width: 1023.99px) {
}
@media (min-width: 768px) and (max-width: 1279.99px) {
}
@media (min-width: 1024px) and (max-width: 1279.99px) {
}
/* PC */
@media (width >= 1280px) {
}
@media (min-width: 1280px) {
}
/* *****************************************************************************
// BaseのCSS
***************************************************************************** */
/* *************************************
// 変数定義
************************************* */
:root {
  --main-color: #226bc1;
  --sub-color: #004284;
  --text-color: #333;
  --sub2-color: #5f67ff;
  --base-color: #e9f4ff;
  --recruit-color: #c90000;
  --default-space: 2rem;
}
/* *************************************
// Base
************************************* */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, "游ゴシック", "Yu Gothic",
    "游ゴシック体", "YuGothic", "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-color);
  background-color: #fff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
b,
strong {
  font-weight: 600;
}
a {
  color: var(--link-color);
}
img,
video {
  max-width: 100%;
  height: auto;
}
pre {
  white-space: pre-wrap;
}
/* フォーム用 パーツ*/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  width: 100%;
  max-width: 450px;
  background-color: #eaedf2;
  padding: 0 0.75rem;
  line-height: 2.5rem;
  border-radius: 3px;
  min-height: 40px;
}
textarea {
  max-height: 120px;
}
select {
  background-image: linear-gradient(
      -45deg,
      transparent 0%,
      transparent 50%,
      #ccc 50%,
      #ccc 100%
    ),
    linear-gradient(45deg, transparent 0%, transparent 50%, #ccc 50%, #ccc 100%);
  background-position: right 0.25em center, right 0.75em center;
  background-size: 0.5em 0.5em, 0.5em 0.5em;
  background-repeat: no-repeat, no-repeat;
  padding-right: 2em;
}
input[type="radio"] + span,
input[type="checkbox"] + span {
  position: relative;
  cursor: pointer;
  padding-left: 1.5em;
  line-height: 2.5rem;
}
input[type="radio"] + span:before,
input[type="radio"] + span:after {
  content: "";
  display: block;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}
input[type="radio"] + span:before {
  border: 1px solid var(--text-color);
  width: 1.2em;
  left: 0;
}
input[type="radio"] + span:after {
  background-color: var(--text-color);
  opacity: 0;
  width: 0.8em;
  left: 0.2em;
}
input[type="radio"]:checked + span::after {
  opacity: 1;
}
input[type="checkbox"] + span:before,
input[type="checkbox"] + span:after {
  content: "";
  display: block;
  position: absolute;
}
input[type="checkbox"] + span:before {
  aspect-ratio: 1 / 1;
  border: 1px solid var(--text-color);
  width: 1.2em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
input[type="checkbox"] + span:after {
  border-bottom: 2px solid var(--text-color);
  border-left: 2px solid var(--text-color);
  opacity: 0;
  width: 0.8em;
  height: 0.4em;
  top: calc(50% - 0.3em);
  left: 0.2em;
  transform: rotate(-45deg);
}
input[type="checkbox"]:checked + span::after {
  opacity: 1;
}
input[type="date"] {
  align-items: center;
}
.wpcf7-list-item {
  line-height: 2.5rem;
}
.wpcf7-not-valid-tip {
  font-size: 0.8rem;
  font-weight: bold;
  margin: 0.5em 0 0;
}
::placeholder {
  color: #999;
}

/* *************************************
// 汎用ID・Class
************************************* */
#container {
  max-width: 100%;
}
.wrap {
  width: 96%;
  max-width: 1040px;
  margin: 0 auto;
}
.cf,
.clearfix {
  display: flow-root;
}
/* 旧clearfixの手法(必要があればコメントアウトを外す) */
.cf:after,
.clearfix:after {
  /*content: "";*/
  /*clear: both;*/
  /*display: block;*/
}

/* 行間 */
#content p {
  margin-bottom: 1rem;
}
/* PC・SPの表示 / 非表示 */
@media (width < 768px) {
  .pc_only {
    display: none;
  }
}
@media (width >= 768px) {
  .sp_only {
    display: none;
  }
}
/*電話番号リンク*/
a[href^="tel:"] {
  text-decoration: none;
  color: inherit;
}
@media (width >= 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* テーブル */
@media (width < 768px) {
  table.two_column tbody th,
  table.two_column tbody td {
    display: block;
  }
}
/* 分割 */
.flex,
.two_in_one,
.three_in_one,
.four_in_one,
.five_in_one,
.six_in_one {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flex.reverse,
.two_in_one.reverse,
.three_in_one.reverse,
.four_in_one.reverse,
.five_in_one.reverse,
.six_in_one.reverse {
  flex-direction: row-reverse;
}
.flex > div,
.two_in_one > div,
.three_in_one > div,
.four_in_one > div,
.five_in_one > div,
.six_in_one > div {
  width: 100%;
}
@media (width >= 768px) {
  /* 2分割 */
  .two_in_one > div {
    width: calc(100% / 2);
  }
  .flex > div:where(:nth-child(1):nth-last-child(2)),
  .flex > div:where(:nth-child(2):nth-last-child(1)) {
    width: calc(100% / 2);
  }
  /* 3分割 */
  .three_in_one > div {
    width: calc(100% / 3);
  }
  .flex > div:where(:nth-child(1):nth-last-child(3)),
  .flex > div:where(:nth-child(2):nth-last-child(2)),
  .flex > div:where(:nth-child(3):nth-last-child(1)) {
    width: calc(100% / 3);
  }
  /* 4分割 */
  .four_in_one > div {
    width: calc(100% / 4);
  }
  .flex > div:where(:nth-child(1):nth-last-child(4)),
  .flex > div:where(:nth-child(2):nth-last-child(3)),
  .flex > div:where(:nth-child(3):nth-last-child(2)),
  .flex > div:where(:nth-child(4):nth-last-child(1)) {
    width: calc(100% / 4);
  }
  /* 5分割 */
  .five_in_one > div {
    width: calc(100% / 5);
  }
  .flex > div:where(:nth-child(1):nth-last-child(5)),
  .flex > div:where(:nth-child(2):nth-last-child(4)),
  .flex > div:where(:nth-child(3):nth-last-child(3)),
  .flex > div:where(:nth-child(4):nth-last-child(2)),
  .flex > div:where(:nth-child(5):nth-last-child(1)) {
    width: calc(100% / 5);
  }
  /* 6分割 */
  .six_in_one > div {
    width: calc(100% / 6);
  }
  .flex > div:where(:nth-child(1):nth-last-child(6)),
  .flex > div:where(:nth-child(2):nth-last-child(5)),
  .flex > div:where(:nth-child(3):nth-last-child(4)),
  .flex > div:where(:nth-child(4):nth-last-child(3)),
  .flex > div:where(:nth-child(5):nth-last-child(2)),
  .flex > div:where(:nth-child(6):nth-last-child(1)) {
    width: calc(100% / 6);
  }
}
/* youtube レスポンシブ */
.youtube_wrap {
  /*position: relative;*/
  /*width: 100%;*/
  /*padding-top: 56.25%;*/
}
.youtube_wrap iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  /*position: absolute;*/
  /*top: 0;*/
  /*left: 0;*/
  /*width: 100%;*/
  /*height: 100%;*/
}
/* アニメーション用 */
.animation {
  opacity: 0;
}
.animation.animated {
  opacity: 1;
}
/* *****************************************************************************
// 各種パーツ
***************************************************************************** */
/* *************************************
// 見出し(head line)
************************************* */
.hl001 {
  position: relative;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    radial-gradient(circle, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 100% 100%, 5px 5px;
  color: #fff;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  text-align: center;
  padding: 2.5em 0.5em;
  font-size: clamp(18px, 4.5vw, 40px);
  height: 350px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hl001 > *:first-child:nth-last-child(2) {
  line-height: 1.6;
}
.hl001 > *:nth-child(2):last-child {
  display: block;
  font-size: max(0.4em, 12px);
  line-height: 1;
}
.hl001:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/901.jpg");
  background-size: cover;
  background-position: center;
}
.page-news .hl001:before {
  background-image: url("../images/top/home-image.jpg");
}
/* *************************************
// ボタン(button)
************************************* */
.btn001 {
  margin: var(--default-space) 0;
}
.btn001 input[type="submit"],
.btn001 a {
  display: block;
  width: fit-content;
  padding: 0.5em 3em;
  margin: 0 auto;
  border-radius: 2em;
  white-space: nowrap;
  transition: all 0.5s;
  background: var(--main-color);
  color: #fff;
  cursor: pointer;
}
.btn001 input[type="submit"]:hover,
.btn001 a:hover {
  opacity: 0.7;
}
/* *************************************
// ローダー(loader)
************************************* */
#loader-bg.l001 {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l001 .spinner {
  margin: 100px 0 0;
  width: 70px;
  text-align: center;
}
.l001 .spinner > div {
  width: 18px;
  height: 18px;
  background: var(--main-color);

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.l001 .spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.l001 .spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* *************************************
// ヘッダー(header)
************************************* */
#container {
  padding-top: 60px;
}
.h001.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 60px;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
}
.h001.header #inner-header {
  padding: 10px 60px 10px 10px;
}
.h001.header .logo {
  position: relative;
  z-index: 100;
  height: 40px;
}
.h001.header .logo a {
  color: inherit;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100%;
}
.h001.header .menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.h001.header label.buMenu {
  position: relative;
  z-index: 102;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 22px;
  width: 25px;
}
.h001.header label.buMenu .icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 5px;
  margin-top: 0px;
  background-color: var(--main-color);
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  position: absolute;
  left: 0;
}
.h001.header label.buMenu .icon-bar:nth-child(2) {
  top: calc(50% - 1px);
}
.h001.header label.buMenu .icon-bar:nth-child(3) {
  bottom: 0;
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
  transform-origin: center;
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(2) {
  transform: scaleX(0);
}
.h001.header .menu.open label.buMenu .icon-bar:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotate(135deg);
  transform-origin: center;
}
.h001.header .menu .menu_text {
  font-size: 11px;
  text-align: center;
  color: var(--main-color);
  line-height: 1;
  margin: 7px 0 0;
  font-weight: bold;
}
.h001.header .menu_box {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 100%;
  margin: 0;
  padding-top: 60px;
  z-index: 99;
  overflow-y: scroll;
  transition: left 0.8s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.h001.header .menu.open + .menu_box {
  left: 0;
}
.h001.header .menu_box nav {
}
.h001.header .menu_box nav ul {
  border-bottom: 2px dashed lightblue;
}
.h001.header .menu_box nav ul li {
  border-top: 2px dashed lightblue;
}
.h001.header .menu_box nav ul li a {
  display: block;
  color: inherit;
  padding: 0.75rem;
  line-height: 1.5;
}
.h001.header .menu_box nav ul li a > span {
  font-size: 0.8rem;
  margin-left: 0.5em;
}
.h001.header a.tel_box {
  display: block;
  margin-top: var(--default-space);
  color: inherit;
  text-align: center;
}
.h001.header a.tel_box .number {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.2;
  white-space: nowrap;
}
.h001.header a.tel_box .number img {
  display: block;
  height: 1.2em;
  width: auto;
  margin-right: 0.5rem;
}
.h001.header a.tel_box .time {
  display: block;
  font-size: 12px;
  font-weight: normal;
  width: 100%;
  margin-top: 4px;
  white-space: nowrap;
}
.h001.header a.contact_box {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: var(--default-space);
  padding: 1rem;
  color: #fff;
  background: var(--main-color);
  font-size: 14px;
  font-weight: bold;
  white-space: nowrap;
}
.h001.header a.contact_box img {
  display: block;
  height: 1.2em;
  width: auto;
  margin-right: 0.5rem;
}
.h001.header a.contact_box .text {
  letter-spacing: 0.075em;
}
/* PC */
@media (width >= 799px) {
  #container {
    padding: 0;
  }
  .h001.header {
    position: sticky;
    height: auto;
  }
  .h001.header #inner-header {
    display: flex;
    justify-content: space-between;
    padding: 0;
  }
  .h001.header .logo {
    height: auto;
    display: flex;
    padding: 0 calc(var(--default-space) / 2);
  }

  /* PCではハンバーガーを消し、通常ナビを横並びに */
  .h001.header .menu {
    display: none;
  }
  .h001.header .menu_box {
    position: static;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 0;
    padding: 0;
  }
  .h001.header .menu_box nav ul {
    display: flex;
  }
  .h001.header .menu_box nav ul li {
  }
  .h001.header .menu_box nav ul li a {
  }
  .h001.header .menu_box nav ul li a > span {
    display: block;
    margin: 0;
  }
  .h001.header a.tel_box,
  .h001.header a.contact_box {
    margin-top: 0;
    margin-left: calc(var(--default-space) / 2);
  }
  .h001.header a.contact_box {
    align-self: stretch;
  }
}
@media (max-width: 798px) {
  #container {
    padding-top: 0;
  }
}

/* -------------------------------------
// ヘッダー(header002)
---------------------------------------- */
.h002.header {
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: var(--sub-color);
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.5);
  position: sticky;
  z-index: 999;
  animation: none !important;
}
.h002.header #inner-header {
  padding: 10px 60px 10px 20px;
}
.h002.header .logo {
  position: relative;
  z-index: 100;
  height: 40px;
}
.h002.header .logo a {
  color: inherit;
  font-weight: bold;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  width: fit-content;
  height: 100%;
}
.h002.header .logo img {
  height: 40px;
}
.h002.header .menu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 101;
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.h002.header label.buMenu {
  position: relative;
  z-index: 102;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 22px;
  width: 25px;
}
.h002.header label.buMenu .icon-bar {
  display: block;
  width: 25px;
  height: 2px;
  border-radius: 5px;
  margin-top: 0px;
  background-color: var(--main-color);
  transition: transform 0.3s ease-in-out, top 0.5s ease;
  position: absolute;
  left: 0;
}
.h002.header label.buMenu .icon-bar:nth-child(2) {
  top: calc(50% - 1px);
}
.h002.header label.buMenu .icon-bar:nth-child(3) {
  bottom: 0;
}
.h002.header .menu.open label.buMenu .icon-bar:nth-child(1) {
  top: calc(50% - 1px);
  transform: rotate(45deg);
  transform-origin: center;
}
.h002.header .menu.open label.buMenu .icon-bar:nth-child(2) {
  transform: scaleX(0);
}
.h002.header .menu.open label.buMenu .icon-bar:nth-child(3) {
  bottom: calc(50% - 1px);
  transform: rotate(135deg);
  transform-origin: center;
}
.h002.header .menu .menu_text {
  font-size: 11px;
  text-align: center;
  color: var(--main-color);
  line-height: 1;
  margin: 7px 0 0;
  font-weight: bold;
  letter-spacing: 0;
}
.h002.header .menu_box {
  position: absolute;
  width: 100%;
  min-height: 100vh;
  top: 0;
  left: 0;
  background: #fff;
  margin: 0;
  padding-top: 60px;
  padding-left: 30px;
  padding-right: 30px;
  z-index: 99;
  overflow-y: auto;
  transition: opacity 0.5s;
  opacity: 0;
  pointer-events: none;
}
.h002.header .menu.open + .menu_box {
  opacity: 1;
  pointer-events: all;
}
.h002.header .menu_box nav {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.h002.header .menu_box nav ul {
  border-bottom: 1px dashed #ccc;
}
.h002.header .menu_box nav ul li {
  border-top: 1px dashed #ccc;
}
.h002.header .menu_box nav ul li a {
  display: block;
  color: inherit;
  padding: 0.5rem 0.75rem;
  line-height: 1.5;
  min-width: 130px;
  font-size: 12px;
  letter-spacing: 1px;
}
.h002.header .menu_box nav ul li a > span {
  font-size: 18px;
}
.h002.header .menu_box nav a.insta_icon {
  margin: 0 50px;
}
.h002.header .menu_box nav a.insta_icon img {
  width: 30px;
  height: 30px;
  min-width: 30px;
  object-fit: contain;
  vertical-align: bottom;
}
@media (width <= 1400px) {
  .h002.header.HeightMin .menu_box nav ul li a {
    min-width: 140px;
  }
}
@media (width >= 1280px) {
  .h002.header {
    padding-top: 0;
    position: relative;
    height: auto;
  }
  .h002.header #inner-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }
  .h002.header .logo {
    height: auto;
    display: flex;
    padding: 0 calc(var(--default-space) / 2);
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .h002.header .logo img {
    height: 55px;
  }
  .h002.header .header_box {
    width: 100%;
  }
  .h002.header .menu {
    display: none;
  }
  .h002.header .menu_box {
    position: static;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  .h002.header .menu_box nav {
    justify-content: center;
    align-items: center;
    flex-direction: row;
  }

  .h002.header .menu_box nav ul {
    display: flex;
    justify-content: center;
    border-bottom: none;
  }
  .h002.header .menu_box nav ul li {
    border-top: none;
    position: relative;
    padding: 5px;
  }
  .h002.header .menu_box nav ul li:after {
    content: "";
    display: block;
    width: 1px;
    height: 40%;
    background: #333;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .h002.header .menu_box nav ul li:last-child:after {
    display: none;
  }
  .h002.header .menu_box nav ul li a {
    text-align: center;
    min-width: 180px;
    transition: background 0.3s;
  }
  .h002.header .menu_box nav ul li a:hover {
    background: #eff8f8;
  }
  .h002.header .menu_box nav ul li a > span {
    display: block;
    margin: 0;
  }
  .h002.header.HeightMin {
    position: fixed;
    z-index: 999; /*最前面へ*/
    animation: DownAnime 0.5s forwards !important;
  }
  .h002.header.HeightMin > #inner-header {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .h002.header.HeightMin .header_box {
    width: auto;
  }
  .h002.header.HeightMin .logo img {
    height: 40px;
  }
}

@media (width < 1280px) {
  .h002.header .menu_box nav {
    margin-top: 50px;
    align-items: flex-start;
  }
  .h002.header .menu_box nav ul {
    border: none;
  }
  .h002.header .menu_box nav ul li {
    border: none;
  }
  .h002.header .menu_box nav ul li a {
    font-size: 20px;
  }
  .h002.header .menu_box nav ul li a > span {
    font-size: 80%;
    margin-left: 1em;
    color: var(--main-color);
  }
  .h002.header .menu_box nav a.insta_icon {
    margin: 50px 0.75rem 0 0.75rem;
  }
}
@media (max-width: 767px) {
  .h002.header .menu_box {
    padding-left: 10px;
    padding-right: 10px;
  }
  .h002.header .menu_box nav {
    margin-top: 20px;
  }
  .h002.header .menu_box nav ul li a {
    font-size: 16px;
  }
  .h002.header .menu_box nav ul li a > span {
    font-size: 24px;
    margin-right: 0.5em;
  }
}
@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-170px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* *************************************
// フッター(footer)
************************************* */
.f001 {
  background-color: var(--text-color);
  color: #fff;
}
.f001 #inner-footer {
  padding-top: 50px;
  padding-bottom: 50px;
  padding-left: 5%;
  padding-right: 5%;
}
.f001 .logo {
  padding: 0;
  margin-bottom: 30px;
}
.f001 .logo a {
  color: #fff;
  font-size: 1.2rem;
  white-space: nowrap;
  font-weight: bold;
}
.f001 a.tel_box {
  background: #fff;
  display: inline-block;
  padding: 10px 30px;
  border-radius: 10px;
}
.f001 .address > span {
  margin-right: 0.5em;
}
.f001 nav {
  margin: var(--default-space) 0;
}
.f001 ul.nav {
  border-bottom: 1px dashed #ccc;
}
.f001 ul.nav > li {
  border-top: 1px dashed #ccc;
}
.f001 .nav li a {
  display: block;
  color: inherit;
  padding: 0.75rem;
  line-height: 1.5;
}
.f001 .nav li ul.sub-menu,
.f001 .nav li ul.children {
  position: static;
  visibility: visible;
  border: none;
}
.f001 .nav li ul.sub-menu li,
.f001 .nav li ul.children li {
  padding: 0.25rem 0.5rem;
  line-height: 1.5;
}
.f001 .nav li ul.sub-menu a:before,
.f001 .nav li ul.children a:before {
  content: "-";
  margin-right: 0.5em;
  display: inline;
}
.f001 .img_box {
  margin-left: auto;
}
.f001 .sns_box {
  display: flex;
}
.f001 .sns_box a {
  display: block;
  margin: 0 5px;
}
.f001 .sns_box a img {
  display: block;
  width: 40px;
}
.f001 .copyright {
  margin: 0;
  padding: 0.4rem;
  text-align: center;
  font-size: 0.8rem;
  background: #fff;
  color: var(--text-color);
  @media(max-width:798px ) {
    padding-bottom: 65px;
  }
 
}
@media (width >= 768px) {
  .f001 #inner-footer {
    display: flex;
    justify-content: flex-start;
    gap: 80px;
  }
  .f001 #inner-footer > * {
  }
  .f001 nav {
    margin: 0;
  }
  .f001 ul.nav {
    width: 350px;
    border-bottom: none;
  }
  .f001 ul.nav > li {
    border-top: none;
  }
  .f001 .nav li a {
    padding: 0.5rem;
  }
}

.f001 nav {
  width: 100%;
}

.f001 .company_info {
  flex: 0 0 400px;
  min-width: 400px;
  @media (min-width: 767px) and (max-width: 1200px) {

  }
}

.f001 ul.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  @media (min-width: 767px) and (max-width: 1200px) {
    display: grid;
    grid-template-columns: 1fr;
    width: 80%;
    padding: 0px 0 0 60px;
  }
}

.f001 #inner-footer {
  @media (min-width: 767px) and (max-width: 1200px) {
    gap: 20px;
    width: 100%;

  }
}

.f001 ul.footer-nav > li {
  border-top: none;
}

.f001 ul.footer-nav a {
  color: #fff;
  text-decoration: none;
  display: block;
  padding: 5px 0;
}

.f001 ul.footer-nav a:hover {
  opacity: 0.7;
}

/* レスポンシブ対応 */
@media (max-width: 767px) {
  .f001 ul.footer-nav {
    grid-template-columns: 1fr 1fr;
  }
  .f001 ul.nav {
    border-bottom: none;
  }
  .f001 .company_info {
    min-width: auto;
  }
}

/* *************************************
// 記事リスト(post list)
************************************* */
.pl001 {
  padding: calc(var(--default-space) * 2) 0;
  @media(max-width: 798px) {
    padding: 0;
  }
}
.pl001 .post_item {
  border-bottom: 1px dashed #ccc;
  display: block;
  padding: calc(var(--default-space) / 4) calc(var(--default-space) / 2);
  margin-bottom: calc(var(--default-space) / 2);
}
.pl001 .post_item a {
  color: inherit;
}
.pl001 .post_item .date {
  width: 100px;
  color: var(--main-color);
}
.pl001 .post_item .category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  margin-right: 20px;
}
.pl001 .post_item .category > span {
  background: var(--main-color);
  color: #fff;
  padding: 0 15px;
  width: 120px;
  text-align: center;
  border-radius: 20px;
}

@media (width >= 768px) {
  .pl001 .post_item a {
    display: flex;
  }
  .pl001 .post_item .date {
    flex-shrink: 0;
  }
}
/* *************************************
// 記事個別(post single)
************************************* */
.post_single {
  padding: calc(var(--default-space) * 2) 0;
}
.post_single .date {
  color: var(--main-color);
  opacity: 0.7;
}
.post_single .title {
  font-size: clamp(18px, 4.5vw, 36px);
  font-weight: bold;
  margin-bottom: calc(var(--default-space));
}

/* *************************************
// 記事リスト2(post list)
************************************* */
.pl002 {
  margin: calc(var(--default-space) * 2) 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}

.pl002 > a {
  width: 100%;
  display: grid;
  gap: 0;
  grid-template-rows: subgrid;
  grid-row: span 4;
  color: var(--text-color);
  background: #fff;
  padding-bottom: 15px;
}

.pl002 > a .image {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.pl002 > a .image > img {
  width: 100%;
  transition: scale 0.3s;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: top;
}
.pl002 > a:hover .image > img {
  scale: 1.15;
}

.pl002 > a .date {
  color: var(--main-color);
}

.pl002 > a .category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px 10px;
  align-items: center;
  margin-top: 5px;
}
.pl002 > a .category > span {
  background: var(--main-color);
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 5px 10px;
}
.pl002 > a .title {
  padding: 0;
  background-size: 12px;
  background-position: center right 15px;
  background-repeat: no-repeat;
  line-height: 1.5;
  font-size: 20px;
  font-weight: bold;
}

@media (max-width: 991px) {
  .pl002 {
    width: 90%;
    max-width: 350px;
    grid-template-columns: 100%;
    row-gap: 20px;
    margin: auto;
  }
}

/* *************************************
// カテゴリー一覧リンク
************************************* */

.cat_list001 {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px 20px;
  margin: calc(var(--default-space) * 2) 0;
}
.cat_list001 > a {
  border: 1px solid var(--main-color);
  color: var(--main-color);
  padding: 5px 20px;
  line-height: 1.5;
  text-align: center;
  min-width: 150px;
}
.cat_list001 > a.current {
  background: var(--main-color);
  color: #fff;
}

@media (max-width: 767px) {
  .cat_list001 > a {
    width: calc(50% - 10px);
  }
}

/* *************************************
// 固定ページ(page single)
************************************* */
/* .page_single {
	padding: calc(var(--default-space) * 2) 0;
} */
/* *************************************
// メールフォーム
************************************* */
table.mail_form {
  margin: auto;
  min-width: 80%;
  table-layout: fixed;
}
table.mail_form tr:first-child {
  border-top: 1px solid #ccc;
}
table.mail_form tr {
  border-bottom: 1px solid #ccc;
}
table.mail_form th,
table.mail_form td {
  margin: calc(var(--default-space) / 2);
  vertical-align: middle;
}
table.mail_form th {
  text-align: left;
  font-weight: bold;
}
table.mail_form tr th.required:after {
  content: "\5fc5\9808";
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0 0.4rem;
  border-radius: 0.2rem;
  font-size: 0.75rem;
  white-space: nowrap;
  color: white;
  background: var(--main-color);
}
@media (width >= 768px) {
  table.mail_form th,
  table.mail_form td {
    margin: 0;
    padding: calc(var(--default-space) / 2);
  }
}
/* *************************************
// ページネーション
************************************* */
.pagination ul {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
.pagination li {
  margin: 0 5px;
  border: none;
}
.pagination li > a,
.pagination li > span {
  padding: 5px 8px;
}
.pagination li > a {
  border: 1px solid #cbcbcb;
  color: #000;
  background: #fff;
}
.pagination li > .page-numbers.current {
  border: 1px solid #cbcbcb;
  color: #fff;
  background: var(--main-color);
}
.pagination li > a:hover,
.pagination li > a:focus {
  background: var(--sub-color);
  color: #fff;
}

/* *************************************
// 会社案内パーツ
************************************* */

.p002 .title {
  margin-bottom: 40px;
}
.p002 .jp {
  font-size: 35px;
  font-weight: bold;
}
.p002 .en {
  font-size: 20px;
  font-weight: bold;
}
.p002 .two_in_one .image {
  height: 100%;
}
.p002 .two_in_one .image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 30px 0 0 30px;
  display: block;
}
.p002 .two_in_one > div.right {
  width: 45%;
  position: relative;
}
.p002 .two_in_one > div.left {
  width: 55%;
  display: flex;
  justify-content: center;
}
.p002 .two_in_one > div.left > .inner {
  max-width: 90%;
  width: auto;
}
.p002 .text p {
  line-height: 2;
}

@media (max-width: 1029px) {
  .p002 .two_in_one > div.right,
  .p002 .two_in_one > div.left {
    width: 100%;
  }

  .p002 .two_in_one .image {
    width: 90%;
    margin-left: auto;
  }

  .p002 .two_in_one .image > img {
    aspect-ratio: 3 / 2;
    object-fit: cover;
  }
}

@media (max-width: 767px) {
  .p002 .jp {
    font-size: 28px;
  }
}

.p003 .title {
  text-align: center;
  margin-bottom: 40px;
}
.p003 .jp {
  font-size: 35px;
  font-weight: bold;
}
.p003 .en {
  font-size: 20px;
  font-weight: bold;
}
.p003 .subtitle {
  text-align: center;
  font-weight: bold;
  margin-bottom: 40px;
}

.p003 .text_center {
  text-align: center;
}

@media (max-width: 767px) {
  .p003 .jp {
    font-size: 28px;
  }

  .p003 .text_center {
    text-align: left;
  }
}

.p004 .title {
  text-align: center;
  margin-bottom: 40px;
}
.p004 .jp {
  font-size: 35px;
  font-weight: bold;
}
.p004 .en {
  font-size: 20px;
  font-weight: bold;
}

.p004 table {
  margin-left: auto;
  margin-right: auto;
  min-width: 80%;
}

.p004 table tr th {
  border-bottom: 1px solid #ccc;
  padding: 10px;
}
.p004 table tr td {
  border-bottom: 1px solid #ccc;
  padding: 10px;
}

@media (max-width: 767px) {
  .p004 .jp {
    font-size: 28px;
  }
}

/* セクション */
#company_message {
  padding-bottom: 50px;
}

#company_philosophy {
  padding-top: 50px;
  padding-bottom: 50px;
}

#company_profile {
  padding-top: 50px;
  padding-bottom: 50px;
}
#company_history {
  padding-top: 50px;
  padding-bottom: 50px;
}

/* 背景黒 */
.bg_black {
  position: relative;
  z-index: 0;
  color: #fff;
}

.bg_black:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.4;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
/* *************************************
// 採用ページ
************************************* */
