@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: inherit;
  padding: 0;
  margin: 0;
}

html {
  line-height: 1.15;
  box-sizing: border-box;
  font-family: sans-serif;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

p + p {
  margin-top: 1rem;
}

a {
  background-color: transparent;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

button,
input,
optgroup,
select,
textarea {
  line-height: inherit;
  border: 1px solid currentColor;
}

button {
  overflow: visible;
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  padding: 1px 6px;
}

input {
  overflow: visible;
}

input,
textarea {
  padding: 1px;
}

fieldset {
  border: 1px solid currentColor;
  margin: 0 2px;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

progress {
  display: inline-block;
  vertical-align: baseline;
}

select {
  text-transform: none;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=color] {
  background: inherit;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.5;
}

::-webkit-search-decoration,
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

::-moz-focus-inner {
  border: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

:-moz-ui-invalid {
  box-shadow: none;
}

hr {
  box-sizing: content-box;
  height: 0;
  color: inherit;
  overflow: visible;
}

dl,
ol,
ul {
  margin: 1em 0;
}

ol ol,
ol ul,
ol dl,
ul ol,
ul ul,
ul dl,
dl ol,
dl ul,
dl dl {
  margin: 0;
}

b,
strong {
  font-weight: bolder;
}

audio,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

table {
  text-indent: 0;
  border-color: inherit;
}

details {
  display: block;
}

dialog {
  background-color: inherit;
  border: solid;
  color: inherit;
  display: block;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

summary {
  display: list-item;
}

canvas {
  display: inline-block;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/**
* 変数
*/
/**
* ボタン
*
* @param $width       ボタンの幅
* @param $height      ボタンの高さ
* @param $textcolor   文字の色
* @param $bgcolor     背景色
* @param $bordercolor 線の色
*/
/**
* 画面の高さを基準としたフォントサイズのclamp関数を返す
* 最小フォントサイズと最大フォントサイズ、可変にする画面の高さの範囲を指定
* 例）m-fontsize__h(12, 24, 480, 768) とした場合、
* 　　高さ480px以下は12px、768px以上は24px、480～768pxの間は可変となる。
* 　　font-size: clamp(12px, -8px + 0.0417 * 100vw, 24px);
*
* @param  $minSize    最小フォントサイズ
* @param  $maxSize    最大フォントサイズ
* @param  $minHeight  フォントサイズを可変にする画面サイズの範囲（開始）
* @param  $maxHeight  フォントサイズを可変にする画面サイズの範囲（終了）
* @return clamp(最小値, 基準値, 最大値)　
*/
/**
* 画面の幅を基準としたフォントサイズのclamp関数を返す
* 最小フォントサイズと最大フォントサイズ、可変にする画面幅の範囲を指定
* 例）m-fontsize__w(12, 24, 480, 768) とした場合、
* 　　幅480px以下は12px、768px以上は24px、480～768pxの間は可変となる。
* 　　font-size: clamp(12px, -8px + 0.0417 * 100vw, 24px);
*
* @param  $minSize    最小フォントサイズ
* @param  $maxSize    最大フォントサイズ
* @param  $minWidth   フォントサイズを可変にする画面サイズの範囲（開始）
* @param  $maxWidth   フォントサイズを可変にする画面サイズの範囲（終了）
* @return clamp(最小値, 基準値, 最大値)　
*/
/**
* 2つの数値からパーセンテージを求める（小数点第一位以下四捨五入）
*
* @param  $num  数値1
* @param  $max  数値2
* @return 数値2を100%とした場合の数値1の割合
*/
/**
* 値から単位を取り除く
*
* @param  $num  値
* @return 数値
*/
html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, a {
  font-weight: 400;
  font-size: 16px;
  font-family: "Noto Sans JP";
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #333333;
  position: relative;
}

ul, ol {
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

body > svg {
  display: none;
}

/**
* 共通
*/
@media screen and (min-width: 768px) {
  a:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    transition: 0.3s ease-in-out;
  }
}
@media (max-width: 900px), (max-height: 900px) {
  :target {
    scroll-margin-top: 96px;
  }
}
#l-wrapper {
  width: 100%;
  display: grid;
  grid-template-areas: "article nav";
  grid-template-columns: 1fr auto;
  z-index: 20;
}
#l-wrapper article {
  grid-area: article;
  min-width: 0;
}
#l-wrapper > nav {
  grid-area: nav;
}
#l-wrapper .l-layer {
  opacity: 0;
  visibility: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  width: 100%;
  height: 0;
  min-height: 100%;
  overflow: hidden;
}
#l-wrapper .l-layer.--active {
  visibility: visible;
  z-index: 100;
  transition: 0.3s cubic-bezier(0.77, 0, 0.175, 1);
  height: auto;
  overflow: initial;
}

#l-totop {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  color: #767676;
  position: fixed;
  bottom: 20px;
  right: 14px;
  z-index: 20;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  #l-totop {
    right: 23px;
    display: none;
  }
}
@media screen and (max-width: 480px) {
  #l-totop {
    font-size: 10px;
  }
}
#l-totop::before {
  content: "";
  display: block;
  width: 1px;
  height: 15px;
  background-color: #767676;
  position: absolute;
  top: -18px;
  left: -50%;
  right: -50%;
  margin: auto;
}

#l-banner {
  padding: 80px 0;
  box-sizing: border-box;
  background-color: #051622;
  position: relative;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  #l-banner {
    padding: 6% 0;
  }
}
@media screen and (max-width: 480px) {
  #l-banner {
    padding: 40px 0;
  }
}
#l-banner > ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 144px);
  margin: auto;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  #l-banner > ul {
    width: 88%;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #l-banner > ul {
    width: 94%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 580px) {
  #l-banner > ul {
    width: calc(100% - 50px);
  }
}
#l-banner > ul li {
  border: 1px solid #fff;
  background-color: #051622;
  margin-right: 47px;
  width: calc((99.9% - 94px) / 3);
  position: relative;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  #l-banner > ul li {
    margin-right: 4%;
    width: 30.6333333333%;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #l-banner > ul li {
    margin-right: 3%;
    width: 31.3%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 580px) {
  #l-banner > ul li {
    margin-bottom: 16px;
  }
}
#l-banner > ul li:last-child {
  margin-right: 0;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li:last-child {
    margin-bottom: 0;
  }
}
#l-banner > ul li figure {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
}
#l-banner > ul li figure figcaption {
  padding: 26px;
  box-sizing: border-box;
}
@media screen and (max-width: 480px) {
  #l-banner > ul li figure figcaption {
    padding: 18px;
  }
}
#l-banner > ul li figure figcaption h3 {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  #l-banner > ul li figure figcaption h3 {
    font-size: clamp(12px, -0.2727272727px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  #l-banner > ul li figure figcaption h3 {
    font-size: clamp(12px, -4.2272727273px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  #l-banner > ul li figure figcaption h3 {
    font-size: clamp(12px, 1.7142857143px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure figcaption h3 {
    font-size: clamp(12px, -5.5714285714px + 0.0214 * 100vw, 21px);
  }
}
#l-banner > ul li figure figcaption p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  #l-banner > ul li figure figcaption p {
    font-size: clamp(18px, 9.8181818182px + 0.0091 * 100vw, 24px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  #l-banner > ul li figure figcaption p {
    font-size: clamp(18px, 7.1818181818px + 0.0091 * 100vw, 24px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  #l-banner > ul li figure figcaption p {
    font-size: clamp(18px, 11.1428571429px + 0.0143 * 100vw, 24px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure figcaption p {
    font-size: clamp(18px, 6.2857142857px + 0.0143 * 100vw, 24px);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure figcaption p br {
    display: none;
  }
}
@media (max-width: 480px) {
  #l-banner > ul li figure figcaption p br {
    display: inline;
  }
}
#l-banner > ul li figure picture {
  margin-top: auto;
  width: 100%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure picture {
    position: relative;
    overflow: hidden;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure picture::before {
    content: "";
    display: block;
    padding-top: 46%;
  }
}
@media (max-width: 480px) {
  #l-banner > ul li figure picture::before {
    content: none;
  }
}
#l-banner > ul li figure picture img {
  width: 100%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li figure picture img {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    width: 100%;
    height: auto;
    margin: auto;
  }
}
@media (max-width: 480px) {
  #l-banner > ul li figure picture img {
    width: 100%;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
}
#l-banner > ul li > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 86%;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: 26px;
  margin: auto;
  font-size: 17px;
}
@media screen and (max-width: 480px) {
  #l-banner > ul li > a {
    font-size: 14px;
  }
}
#l-banner > ul li > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#l-banner > ul li > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#l-banner > ul li > a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  #l-banner > ul li > a {
    font-size: clamp(12px, 5.1818181818px + 0.0076 * 100vw, 17px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  #l-banner > ul li > a {
    font-size: clamp(12px, 2.9848484848px + 0.0076 * 100vw, 17px);
  }
}
@media (max-width: 1480px) and (max-width: 1300px), (max-width: 1480px) and (min-height: 900px) {
  #l-banner > ul li > a {
    bottom: 20px;
    height: 40px;
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  #l-banner > ul li > a {
    width: 360px;
    height: 50px;
    font-size: clamp(12px, 6.2857142857px + 0.0119 * 100vw, 17px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  #l-banner > ul li > a {
    width: 360px;
    height: 50px;
    font-size: clamp(12px, 2.2380952381px + 0.0119 * 100vw, 17px);
  }
}
@media (max-width: 480px) {
  #l-banner > ul li > a {
    width: calc(100% - 80px);
    height: 32px;
    bottom: 16px;
  }
}
#l-banner > ul li > a::before {
  width: 30px;
}

/**
* header
*/
header {
  display: none;
}
@media screen and (max-width: 900px), screen and (max-height: 900px) {
  header {
    display: flex;
    height: 48px;
    width: 100%;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 100;
    padding: 14px 0 0 10px;
    background-color: #051622;
  }
}
header a {
  display: block;
  margin-right: 15px;
}
header a img {
  width: 65px;
}
header .p-home__mainvisual__soundsp {
  width: 120px;
  height: 17px;
  display: flex;
  position: relative;
  margin-top: 2px;
}
header .p-home__mainvisual__soundsp::after {
  content: "";
  display: block;
  width: 1px;
  height: 17px;
  background-color: #fff;
  position: absolute;
  left: -50%;
  right: -50%;
  margin: auto;
}
header .p-home__mainvisual__soundsp span {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  height: 100%;
  font-size: 11px;
  font-weight: 600;
  color: #767676;
  position: relative;
  padding-left: 37px;
  box-sizing: border-box;
  cursor: pointer;
}
header .p-home__mainvisual__soundsp span:nth-of-type(1) svg {
  width: 42.6px;
  left: 0;
}
header .p-home__mainvisual__soundsp span:nth-of-type(2) svg {
  width: 22.2px;
  left: 8px;
}
header .p-home__mainvisual__soundsp span.--active {
  color: #fff;
}
header .p-home__mainvisual__soundsp span.--active svg {
  fill: #fff;
}
header .p-home__mainvisual__soundsp span svg {
  fill: #767676;
  height: 15px;
  position: absolute;
  top: 1px;
}

/*----------------------------------------
footerに適用するスタイル
----------------------------------------*/
footer {
  width: 100%;
  height: 90px;
  border-top: 1px solid #051622;
  background-color: #fff;
  position: relative;
}
@media screen and (max-width: 900px) {
  footer {
    height: 300px;
  }
}
@media screen and (max-width: 480px) {
  footer {
    height: 360px;
  }
}
footer > div {
  display: flex;
  height: 50px;
  width: calc(100% - 24px - 52px);
  position: absolute;
  top: -50%;
  bottom: -50%;
  margin: auto 52px auto 24px;
  /*& > a{
    @include m-button(300px, 50px, $subcolor6, #fff, $subcolor6);

    &:hover{
      background-color: $maincolor;
    }

    @media screen and (max-width: $switch2width){
      margin: 40px auto 0 auto;
      font-size: 14px;
    }
  }*/
}
@media screen and (max-width: 900px) {
  footer > div {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    top: auto;
    bottom: auto;
    margin: auto;
    text-align: center;
    padding-top: 50px;
  }
}
footer > div div {
  width: calc(100% - 300px);
}
@media screen and (max-width: 900px) {
  footer > div div {
    width: 100%;
  }
}
footer > div div a {
  height: 100%;
  display: flex;
}
@media screen and (max-width: 900px) {
  footer > div div a {
    display: inline-block;
  }
}
footer > div div a picture {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 900px) {
  footer > div div a picture img {
    margin: auto;
  }
}
footer > div div a p {
  font-size: 19px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-left: 13px;
}
@media screen and (max-width: 900px) {
  footer > div div a p {
    display: inline-block;
    margin-left: auto;
    margin-top: 22px;
    font-size: 14px;
  }
}
footer > div div a p span {
  display: none;
}
@media screen and (max-width: 900px) {
  footer > div div a p span {
    display: inline;
    font-size: 14px;
    font-weight: 600;
  }
}
footer > div small {
  display: none;
}
@media screen and (max-width: 900px) {
  footer > div small {
    display: inline-block;
    margin-top: 20px;
    font-size: 11px;
  }
}

/**
* nav
*/
#l-wrapper > nav {
  position: sticky;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 240px;
  background-color: #F4F4F4;
  padding-top: 30px;
  box-sizing: border-box;
  overflow: hidden;
}
#l-wrapper > nav .l-nav__body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 16px;
}
@media screen and (max-width: 900px), screen and (max-height: 900px) {
  #l-wrapper > nav {
    display: none;
  }
}
@media screen and (max-width: 900px), screen and (max-height: 900px) {
  #l-wrapper > nav.l-nav__active {
    display: flex;
    flex-direction: column;
    aspect-ratio: auto;
    position: fixed;
    z-index: 110;
    top: 0;
    right: 0;
    height: 100%;
    height: 100dvh;
    width: 240px;
    padding-top: 51px;
    box-sizing: border-box;
    overflow: hidden;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__menu {
  margin-top: 0;
}
#l-wrapper > nav.l-nav__active #l-nav__menu li a {
  padding: 18px 15px;
}
@media (max-width: 1260px) and (max-width: 1024px), (max-width: 1260px) and (min-height: 900px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a {
    padding-top: 14px;
    padding-bottom: 14px;
  }
}
@media screen and (max-height: 700px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a {
    padding: 14px 15px;
  }
}
@media screen and (max-height: 660px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a {
    padding: 12px 15px;
  }
}
@media screen and (max-height: 620px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a {
    padding: 10px 15px;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__menu li a span {
  font-size: 14.6px;
  /*br{
    @media screen and (max-height: 600px) {
      display: none;
    }
  }*/
}
@media screen and (max-height: 800px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span {
    font-size: 14px;
  }
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span::before {
    top: 8px;
  }
}
@media screen and (max-height: 700px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span {
    font-size: 13px;
  }
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span::before {
    top: 6px;
  }
}
@media screen and (max-height: 660px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span {
    font-size: 12px;
  }
}
@media screen and (max-height: 620px) {
  #l-wrapper > nav.l-nav__active #l-nav__menu li a span {
    font-size: 11px;
  }
}
@media screen and (max-height: 480px) {
  #l-wrapper > nav.l-nav__active #l-nav__sitemap {
    display: none;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__sitemap li a {
  font-size: 11.4px;
}
@media screen and (max-height: 630px) {
  #l-wrapper > nav.l-nav__active #l-nav__sitemap li a {
    font-size: 11px;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__affiliate > p {
  font-size: 12px;
}
@media screen and (max-height: 600px) {
  #l-wrapper > nav.l-nav__active #l-nav__affiliate > p {
    font-size: 11px;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__affiliate > ul li {
  width: 100%;
  margin-right: 0;
}
#l-wrapper > nav.l-nav__active #l-nav__affiliate > ul + ul li {
  width: calc((99.9% - 22px) / 4);
}
#l-wrapper > nav.l-nav__active small {
  position: static;
  flex-shrink: 0;
  margin-top: 0;
  font-size: 9px;
  letter-spacing: 0.5px;
}
#l-wrapper > nav.l-nav__active #l-nav__mailform {
  position: static;
  flex-shrink: 0;
  height: 92px;
  margin-top: 0;
}
@media screen and (max-height: 740px) {
  #l-wrapper > nav.l-nav__active #l-nav__mailform {
    height: 41px;
  }
}
@media screen and (max-height: 600px) {
  #l-wrapper > nav.l-nav__active #l-nav__mailform {
    height: 30px;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__mailform li:nth-of-type(1) a {
  background-position: center 20px;
}
@media screen and (max-height: 740px) {
  #l-wrapper > nav.l-nav__active #l-nav__mailform li:nth-of-type(1) a {
    background-image: none;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__mailform li:nth-of-type(2) a {
  background-position: center 18px;
}
@media screen and (max-height: 740px) {
  #l-wrapper > nav.l-nav__active #l-nav__mailform li:nth-of-type(2) a {
    background-image: none;
  }
}
#l-wrapper > nav.l-nav__active #l-nav__mailform li a span {
  font-size: 13px;
  /*@media screen and (max-height: 740px) {
    bottom: 10px;
  }

  @media screen and (max-height: 700px) {
    bottom: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }*/
}
@media screen and (max-height: 740px) {
  #l-wrapper > nav.l-nav__active #l-nav__mailform li a span {
    bottom: auto;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
  }
}
#l-wrapper > nav > a,
#l-wrapper > nav .l-nav__body > a {
  display: block;
  width: 83%;
  margin-left: 15px;
}
@media screen and (max-width: 900px), screen and (max-height: 900px) {
  #l-wrapper > nav > a,
  #l-wrapper > nav .l-nav__body > a {
    display: none;
  }
}
#l-wrapper > nav > a img {
  width: 100%;
}
#l-wrapper > nav #l-nav__menu {
  border-top: 1px solid #707070;
  margin-top: 30px;
}
#l-wrapper > nav #l-nav__menu li {
  border-bottom: 1px solid #707070;
}
#l-wrapper > nav #l-nav__menu li a {
  display: block;
  padding: 15px 10px;
  box-sizing: border-box;
}
#l-wrapper > nav #l-nav__menu li a:hover span {
  color: #767676;
}
#l-wrapper > nav #l-nav__menu li a:hover span::before {
  left: 198px;
}
#l-wrapper > nav #l-nav__menu li a span {
  font-size: 14.6px;
  font-weight: 600;
  position: relative;
  display: block;
  padding: 0 18px;
  box-sizing: border-box;
  line-height: 130%;
  letter-spacing: -0.8px;
}
#l-wrapper > nav #l-nav__menu li a span::before {
  content: "";
  width: 11px;
  height: 2px;
  background-color: #707070;
  position: absolute;
  left: 0;
  top: 9px;
  transition: all 0.4s ease-in-out;
}
#l-wrapper > nav #l-nav__recruit {
  width: calc(99.9% - 46px);
  margin: 20px auto 0;
  display: flex;
}
#l-wrapper > nav #l-nav__recruit li {
  width: calc((99.9% - 10px) / 2);
}
#l-wrapper > nav #l-nav__recruit li:first-child {
  margin-right: 10px;
}
#l-wrapper > nav #l-nav__recruit li a {
  display: block;
  width: 100%;
}
#l-wrapper > nav #l-nav__recruit li a img {
  width: 100%;
}
#l-wrapper > nav #l-nav__sitemap {
  display: flex;
  width: calc(99.9% - 46px);
  margin: 12px auto 0;
}
#l-wrapper > nav #l-nav__sitemap li {
  display: flex;
  line-height: 100%;
}
#l-wrapper > nav #l-nav__sitemap li:first-child {
  margin-right: 3.3%;
  padding-right: 3.3%;
  border-right: 1px solid #000;
}
#l-wrapper > nav #l-nav__sitemap li a {
  font-size: 11.4px;
  font-weight: 600;
  letter-spacing: -1px;
  line-height: 100%;
}
#l-wrapper > nav #l-nav__affiliate {
  width: calc(99.9% - 46px);
  margin: 20px auto 0;
}
#l-wrapper > nav #l-nav__affiliate > p {
  font-size: 12px;
  font-weight: 600;
}
#l-wrapper > nav #l-nav__affiliate > ul {
  width: 100%;
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 6px;
}
#l-wrapper > nav #l-nav__affiliate > ul li {
  width: 100%;
  margin-right: 0;
}
#l-wrapper > nav #l-nav__affiliate > ul + ul {
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px 11px;
  margin-top: 10px;
}
#l-wrapper > nav #l-nav__affiliate > ul + ul li {
  width: calc((99.9% - 22px) / 4);
}
#l-wrapper > nav #l-nav__affiliate > ul li a {
  display: block;
  width: 100%;
}
#l-wrapper > nav #l-nav__affiliate > ul li a img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
#l-wrapper > nav small {
  display: block;
  flex-shrink: 0;
  width: 100%;
  padding: 8px 23px;
  box-sizing: border-box;
  font-size: 9px;
  letter-spacing: 0.5px;
  line-height: 140%;
  position: static;
  margin-top: 0;
  background-color: #F4F4F4;
}
#l-wrapper > nav #l-nav__mailform {
  display: flex;
  flex-shrink: 0;
  width: 100%;
  height: 92px;
  position: static;
}
#l-wrapper > nav #l-nav__mailform li {
  width: 49.95%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(1) {
  background-color: #051622;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(1):hover {
  background-color: #001E4D;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(1) a {
  background-image: url(../img/common/ico_contact.png);
  background-position: center 20px;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(2) {
  background-color: #DB9000;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(2):hover {
  background-color: #D66C03;
}
#l-wrapper > nav #l-nav__mailform li:nth-of-type(2) a {
  background-image: url(../img/common/ico_recruit.png);
  background-position: center 18px;
}
#l-wrapper > nav #l-nav__mailform li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
}
#l-wrapper > nav #l-nav__mailform li a span {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 14px;
}

.l-nav__hamburger {
  display: none;
}
@media screen and (max-width: 900px), screen and (max-height: 900px) {
  .l-nav__hamburger {
    display: block;
    width: 26px;
    height: 18px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 120;
    transform: matrix(1, 0, 0, 1, 0, 0);
    cursor: pointer;
  }
}
.l-nav__hamburger div {
  width: 100%;
  height: 100%;
}
.l-nav__hamburger div .l-nav__border {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  opacity: 1;
  transition: 0.2s ease 0.1s;
}
.l-nav__hamburger div .l-nav__border.l-nav__border--top {
  top: 0;
  transform: translateX(0);
  transition: top 0.1s ease-in-out, margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.3s, transform 0.25s ease 0s;
}
.l-nav__hamburger div .l-nav__border.l-nav__border--middle {
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  margin: auto;
  z-index: 100;
  transition: width 0.25s ease 0.36s, background-color 0.25s ease 0.36s, transform 0.25s ease 0.36s;
}
.l-nav__hamburger div .l-nav__border.l-nav__border--bottom {
  bottom: 0;
  transform: translateX(0);
  transition: bottom 0.1s ease-in-out, margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.3s, transform 0.25s ease 0s;
}
.l-nav__hamburger.--active div .l-nav__border {
  background-color: #363636;
  transform: translateX(0);
  transition: top 0.1s ease-in-out, margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.3s, transform 0.25s ease 0s;
}
.l-nav__hamburger.--active div .l-nav__border.l-nav__border--top {
  margin-top: 8px;
  transform: rotateZ(45deg);
  transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
}
.l-nav__hamburger.--active div .l-nav__border.l-nav__border--middle {
  width: 6px;
  background-color: transparent;
  transform: rotateZ(-45deg);
  transition: transform 0.25s ease 0.36s, width 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, background-color 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s;
}
.l-nav__hamburger.--active div .l-nav__border.l-nav__border--bottom {
  margin-bottom: 8px;
  transform: rotateZ(-45deg);
  transition: margin 0.2s cubic-bezier(0.36, 0, 0.59, 0.99) 0.1s, transform 0.25s ease 0.36s;
}

.l-nav__footer {
  display: none;
  width: 100%;
  height: 58px;
  background-color: #051622;
  position: fixed;
  bottom: -80px;
  left: 0;
  z-index: 100;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 480px) {
  .l-nav__footer {
    display: flex;
  }
}
.l-nav__footer.--active {
  bottom: 0;
}
.l-nav__footer #l-nav__footer__mailform {
  display: flex;
  width: 39%;
}
.l-nav__footer #l-nav__footer__mailform li {
  width: 49.95%;
  height: 100%;
  transition: all 0.4s ease-in-out;
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(1) {
  background-color: #051622;
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(1):hover {
  background-color: #001E4D;
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(1) a {
  background-image: url(../img/common/ico_contact.png);
  background-position: center 10px;
  background-size: 24px;
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__mailform li:nth-of-type(1) a {
    background-position: center 12px;
  }
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(2) {
  background-color: #DB9000;
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(2):hover {
  background-color: #D66C03;
}
.l-nav__footer #l-nav__footer__mailform li:nth-of-type(2) a {
  background-image: url(../img/common/ico_recruit.png);
  background-position: center 6px;
  background-size: 27px;
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__mailform li:nth-of-type(2) a {
    background-position: center 8px;
  }
}
.l-nav__footer #l-nav__footer__mailform li a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  background-repeat: no-repeat;
}
.l-nav__footer #l-nav__footer__mailform li a span {
  font-size: clamp(11px, 8.7142857143px + 0.0048 * 100vw, 13px);
  font-weight: 600;
  color: #fff;
  text-align: center;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 10px;
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__mailform li a span {
    bottom: 6px;
  }
}
.l-nav__footer #l-nav__footer__recruit {
  width: 61%;
  display: flex;
  padding: 0 9px;
  position: absolute;
  right: 0;
  bottom: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__recruit {
    padding: 0 6px;
  }
}
.l-nav__footer #l-nav__footer__recruit li {
  width: calc((99.9% - 9px) / 2);
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__recruit li {
    width: calc((99.9% - 6px) / 2);
  }
}
.l-nav__footer #l-nav__footer__recruit li:first-child {
  margin-right: 9px;
}
@media screen and (max-width: 375px) {
  .l-nav__footer #l-nav__footer__recruit li:first-child {
    margin-right: 6px;
  }
}
.l-nav__footer #l-nav__footer__recruit li a {
  display: block;
  width: 100%;
  position: relative;
  bottom: 5px;
}
.l-nav__footer #l-nav__footer__recruit li a img {
  width: 100%;
}

/**
* button
*/
.c-br__u768 {
  display: none;
}
@media (max-width: 768px) {
  .c-br__u768 {
    display: inline;
  }
}

.c-br__u900 {
  display: none;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .c-br__u900 {
    display: inline;
  }
}

.c-br__u1300 {
  display: none;
}
@media (max-width: 1480px) and (max-width: 1300px), (max-width: 1480px) and (min-height: 900px) {
  .c-br__u1300 {
    display: inline;
  }
}

.c-br__o900 {
  display: inline;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .c-br__o900 {
    display: none;
  }
}

.c-br__o1300 {
  display: inline;
}
@media (max-width: 1480px) and (max-width: 1300px), (max-width: 1480px) and (min-height: 900px) {
  .c-br__o1300 {
    display: none;
  }
}

/**
* button
*/
.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 40px;
  margin: 20px;
}
.c-btn.--forward {
  border: 1px solid #001E4D;
  color: #001E4D;
}
.c-btn.--back {
  border: 1px solid #FFBE43;
  color: #FFBE43;
}

/**
* h1～6
*/
.c-hd__title {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin: auto;
}
.c-hd__title div::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #fff;
  position: absolute;
  top: 12px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .c-hd__title div::after {
    top: 10px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__title div::after {
    top: 9px;
  }
}
.c-hd__title div span {
  display: inline-block;
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  padding-right: 10px;
  position: relative;
  z-index: 1;
  background-color: #DB9000;
}
@media screen and (max-width: 900px) {
  .c-hd__title div span {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__title div span {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__title div span {
    font-size: 16px;
  }
}
.c-hd__title p {
  margin-top: 14px;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .c-hd__title p {
    margin-top: 12px;
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__title p {
    margin-top: 8px;
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__title p {
    margin-top: 6px;
    font-size: 24px;
  }
}

.c-hd__subtitle {
  position: relative;
  overflow: hidden;
}
.c-hd__subtitle::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  border-top: 1px solid #fff;
  position: relative;
  top: 17px;
  left: 56px;
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle::after {
    content: none;
  }
}
.c-hd__subtitle svg {
  width: 55px;
  aspect-ratio: 47/40;
  fill: #fff;
  float: left;
  position: relative;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle svg {
    top: 5px;
    width: 52px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__subtitle svg {
    width: 49px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__subtitle svg {
    top: 5px;
    width: 44px;
  }
}
.c-hd__subtitle div {
  height: 100%;
  padding: 0 10px 0 54px;
  position: relative;
  z-index: 1;
  background-color: #DB9000;
  float: left;
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle div {
    padding-left: 48px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__subtitle div {
    padding-left: 46px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__subtitle div {
    padding-left: 30px;
  }
}
.c-hd__subtitle div::before {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  border-left: 1px solid #fff;
  position: absolute;
  top: 4px;
  left: 27px;
  transform: rotate(30deg);
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle div::before {
    top: 3px;
    left: 23px;
    height: 48px;
    transform: rotate(25deg);
  }
}
@media screen and (max-width: 768px) {
  .c-hd__subtitle div::before {
    top: 4px;
    left: 22px;
    height: 46px;
    transform: rotate(20deg);
  }
}
@media screen and (max-width: 480px) {
  .c-hd__subtitle div::before {
    top: 2px;
    left: 13px;
    height: 46px;
    transform: rotate(16deg);
  }
}
.c-hd__subtitle div p {
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle div p {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__subtitle div p {
    font-size: 23px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__subtitle div p {
    font-size: 21px;
  }
}
.c-hd__subtitle div span {
  font-size: 21px;
  color: #fff;
}
@media screen and (max-width: 900px) {
  .c-hd__subtitle div span {
    font-size: 19px;
  }
}
@media screen and (max-width: 768px) {
  .c-hd__subtitle div span {
    font-size: 17px;
  }
}
@media screen and (max-width: 480px) {
  .c-hd__subtitle div span {
    font-size: 15px;
  }
}

/**
* span
*/
.c-spn__label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 30px;
  color: #fff;
}
.c-spn__label.--topic {
  background-color: #001E4D;
}
.c-spn__label.--event {
  background-color: #FFBE43;
}
.c-spn__label.--work {
  background-color: #F4F4F4;
}

/**
* svg
*/
.c-svg__copy__color1 {
  fill: #001E4D;
}

.c-svg__copy__color2 {
  fill: #051622;
}

.c-svg__copy__color3 {
  fill: #F5DD34;
}

.c-svg__kakeru__color1 {
  fill: #fff;
}

.c-svg__kakeru__color2 {
  fill: #FFBE43;
}

.c-svg__kakeru__color3 {
  fill: none;
}

/**
* ul, ol
*/
.c-lst__news {
  box-sizing: border-box;
  border-top: 1px solid #000;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .c-lst__news {
    margin-top: 30px;
  }
}
.c-lst__news li {
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #000;
}
.c-lst__news li a {
  display: flex;
  flex-wrap: wrap;
}
.c-lst__news li a time {
  width: 90px;
  height: 28px;
  font-size: 15px;
  letter-spacing: 0;
}
@media screen and (max-width: 560px) {
  .c-lst__news li a time {
    justify-content: flex-start;
  }
}
.c-lst__news li a span {
  margin-left: 10px;
}
@media screen and (max-width: 560px) {
  .c-lst__news li a span {
    margin-left: 0;
  }
}
.c-lst__news li a p {
  margin-left: 25px;
  width: calc(100% - 90px - 10px - 64px - 25px);
  padding-right: 10px;
  box-sizing: border-box;
}
@media screen and (max-width: 560px) {
  .c-lst__news li a p {
    width: 100%;
    margin-top: 6px;
    margin-left: 0;
    line-height: 140%;
  }
}
.c-lst__news li a p em {
  font-weight: 600;
  font-style: normal;
  margin-right: 2px;
}
.c-lst__news li a p i {
  display: inline-block;
  width: 34px;
  height: 20px;
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0;
  border: 1px solid #000;
  box-sizing: border-box;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .c-lst__news li a p i {
    line-height: 160%;
  }
}

/**
* WordPress / 一覧ページ
*/
.wp-pagenavi {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 860px;
  margin: 25px auto 0 auto;
}
.wp-pagenavi a, .wp-pagenavi span {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #000;
  min-width: 30px;
  height: 30px;
  padding: 0 8px;
  margin-right: 8px;
}
.wp-pagenavi a:last-child, .wp-pagenavi span:last-child {
  margin-right: 0;
}
.wp-pagenavi a {
  background-color: #fff;
}
.wp-pagenavi span.current {
  color: #333333;
  background-color: #001E4D;
}

/**
* WordPress / 詳細ページ
*/
.p-single__editor {
  width: 100%;
  overflow: hidden;
}
.p-single__editor h1, .p-single__editor h2, .p-single__editor h3, .p-single__editor h4, .p-single__editor h5, .p-single__editor h6, .p-single__editor ul, .p-single__editor ol, .p-single__editor dl, .p-single__editor li, .p-single__editor dt, .p-single__editor dd, .p-single__editor p, .p-single__editor div, .p-single__editor span, .p-single__editor img, .p-single__editor a, .p-single__editor table, .p-single__editor tr, .p-single__editor th, .p-single__editor td {
  margin: 0;
  padding: 0;
  border: 0;
  letter-spacing: 1px;
  font-weight: inherit;
  font-size: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
  line-height: 170%;
  word-wrap: break-word;
  max-width: 100%;
}
.p-single__editor h1, .p-single__editor h2, .p-single__editor h3, .p-single__editor h4, .p-single__editor h5, .p-single__editor h6 {
  clear: both;
  font-weight: 600;
  margin: 10px 0;
}
.p-single__editor h1:first-child,
.p-single__editor h2:first-child,
.p-single__editor h3:first-child,
.p-single__editor h4:first-child,
.p-single__editor h5:first-child,
.p-single__editor h6:first-child {
  margin-top: 0;
}
.p-single__editor h1 {
  font-size: xx-large;
}
.p-single__editor h2 {
  font-size: x-large;
}
.p-single__editor h3 {
  font-size: large;
}
.p-single__editor h4 {
  font-size: medium;
}
.p-single__editor h5 {
  font-size: small;
}
.p-single__editor h6 {
  font-size: x-small;
}
.p-single__editor ul {
  padding-left: 23px;
}
.p-single__editor ul li {
  list-style-type: disc;
}
.p-single__editor ol {
  padding-left: 23px;
}
.p-single__editor ol li {
  list-style-type: decimal;
}
.p-single__editor p {
  line-height: 170%;
}
.p-single__editor a {
  color: #FFFF00;
}
.p-single__editor img {
  border: 0;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
.p-single__editor .alignleft {
  float: left;
  margin: 7px 28px 28px 0;
}
.p-single__editor .alignright {
  float: right;
  margin: 7px 0 28px 28px;
}
.p-single__editor .aligncenter {
  clear: both;
  display: block;
  margin: 7px auto;
}
.p-single__editor .wp-caption {
  background: transparent;
  border: none;
  margin: 0 0 28px 0;
  max-width: 100%;
  padding: 0;
  text-align: inherit;
}
.p-single__editor .wp-caption.alignleft {
  margin: 7px 28px 21px 0;
}
.p-single__editor .wp-caption.alignright {
  margin: 7px 0 21px 28px;
}
.p-single__editor .wp-caption.aligncenter {
  margin: 7px auto;
}
.p-single__editor .wp-caption .wp-caption-text,
.p-single__editor .wp-caption-dd {
  font-size: 14px;
  line-height: 170%;
  padding: 7px 0;
}

/**
* トップページ
*/
#p-home__mainvisual {
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  #p-home__mainvisual {
    height: fit-content;
    aspect-ratio: 1920/1080;
  }
}
#p-home__mainvisual > svg {
  margin: auto;
  z-index: 1;
  fill: transparent;
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 275px;
  height: 353px;
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 900px) {
  #p-home__mainvisual > svg {
    display: none;
  }
}
#p-home__mainvisual > div {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #000;
}
@media screen and (max-width: 900px) {
  #p-home__mainvisual > div {
    padding-top: 48px;
  }
}
#p-home__mainvisual > div video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: -50%;
  right: -50%;
  bottom: -50%;
  left: -50%;
  margin: auto;
}
@media screen and (max-width: 900px) {
  #p-home__mainvisual > div video {
    object-fit: contain;
    height: auto;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }
}

.p-home__mainvisual__sound {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 143px;
  height: 31px;
  border-style: solid;
  border-width: 1px;
  box-sizing: border-box;
  position: fixed;
  bottom: 20px;
  left: 15px;
  z-index: 1;
  padding-left: 6px;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  .p-home__mainvisual__sound {
    display: none;
  }
}
.p-home__mainvisual__sound.--off {
  background-color: #051622;
  border-color: #767676;
}
.p-home__mainvisual__sound.--off svg {
  fill: #767676;
}
.p-home__mainvisual__sound.--off span {
  color: #767676;
}
.p-home__mainvisual__sound.--on {
  background-color: #363636;
  border-color: #767676;
}
.p-home__mainvisual__sound.--on svg {
  fill: #fff;
}
.p-home__mainvisual__sound.--on span {
  color: #fff;
}
.p-home__mainvisual__sound::after {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #707070;
  position: absolute;
  right: -10px;
  top: -50%;
  bottom: -50%;
  margin: auto;
}
.p-home__mainvisual__sound svg {
  width: 30px;
  height: 19px;
  margin-right: 6px;
}
.p-home__mainvisual__sound span {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0;
}

#p-home__about {
  position: relative;
  padding-top: 50px;
  padding-bottom: 160px;
  text-align: center;
}
#p-home__about::before {
  content: "";
  display: none;
  width: 100%;
  height: 50%;
  background-color: #051622;
  position: fixed;
  z-index: -1;
}
@media screen and (max-width: 900px) {
  #p-home__about::before {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  #p-home__about {
    padding-top: 0;
    padding-bottom: 0;
  }
}
#p-home__about #p-home__about__overlay {
  background: linear-gradient(180deg, rgba(12, 30, 57, 0) 0%, rgba(7, 22, 44, 0.71) 16%, rgb(15, 38, 74) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 580px) {
  #p-home__about #p-home__about__overlay {
    background: linear-gradient(180deg, rgba(12, 30, 57, 0) 0%, rgba(7, 22, 44, 0.64) 16%, rgba(15, 38, 74, 0.64) 100%);
  }
}
#p-home__about > span {
  display: block;
  width: 62px;
  height: 83px;
  font-size: 14px;
  color: #fff;
  position: absolute;
  right: -50%;
  left: -50%;
  top: -83px;
  margin: auto;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 900px) {
  #p-home__about > span {
    position: fixed;
    height: 80px;
    top: auto;
    left: auto;
    bottom: 0;
    right: 6px;
    font-size: 12px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__about > span {
    font-size: 7px;
  }
}
#p-home__about > span::after {
  content: "";
  display: block;
  width: 1px;
  height: 52px;
  background-color: #fff;
  position: absolute;
  right: -50%;
  left: -50%;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 900px) {
  #p-home__about > span::after {
    height: 63px;
    animation: pathmove 1.4s ease-in-out infinite;
    opacity: 0;
    bottom: auto;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 17px;
    opacity: 0;
  }
  30% {
    height: 0;
    top: 17px;
    opacity: 1;
  }
  60% {
    height: 63px;
    top: 17px;
    opacity: 1;
  }
  100% {
    height: 63px;
    top: 63px;
    opacity: 1;
  }
}
#p-home__about > div {
  position: relative;
  padding: 0 72px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__about > div {
    background: linear-gradient(180deg, rgba(12, 30, 57, 0) 0%, rgba(7, 22, 44, 0.71) 16%, rgb(15, 38, 74) 100%);
    padding: 180px 50px 60px 50px;
    box-sizing: border-box;
    text-align: left;
  }
}
@media (max-width: 580px) {
  #p-home__about > div {
    padding: 180px 50px 40px 25px;
  }
}
#p-home__about > div svg {
  display: block;
  width: 411px;
  height: 353px;
  margin: 95px auto;
  fill: #fff;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__about > div svg {
    display: block;
    position: absolute;
    z-index: 10;
    top: -17px;
    left: 50px;
    fill: #fff;
    width: 188px;
    height: 161px;
    margin: auto;
  }
}
@media (max-width: 580px) {
  #p-home__about > div svg {
    left: 25px;
    top: -10px;
  }
}
#p-home__about > div h1 {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  line-height: 160%;
}
@media screen and (max-width: 900px) {
  #p-home__about > div h1 {
    font-size: clamp(21px, -3px + 0.05 * 100vw, 42px);
  }
}
#p-home__about > div p {
  margin-top: 74px;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  line-height: 160%;
}
@media screen and (max-width: 900px) {
  #p-home__about > div p {
    margin-top: 30px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__about > div p {
    font-size: 14px;
  }
}
#p-home__about > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 311px;
  height: 50px;
  background-color: #001E4D;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin-top: 74px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  #p-home__about > div > a {
    font-size: 14px;
  }
}
#p-home__about > div > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__about > div > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  background-color: #fff;
  color: #001E4D;
}
#p-home__about > div > a:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 480px) {
  #p-home__about > div > a {
    width: 84%;
    max-width: 300px;
  }
}
#p-home__about > div > a:hover {
  border-color: #363636;
}
#p-home__about > div > a:hover::before {
  background-color: #363636;
}
@media screen and (max-width: 900px) {
  #p-home__about > div > a {
    margin-top: 60px;
  }
}

#p-home__carousel {
  position: relative;
}
#p-home__carousel::before {
  content: "";
  display: block;
  padding-top: 18%;
  /*@media screen and (max-width: $switch1width) {
    //padding-top: 22.6%;
    padding-top: 61.6%;
  }*/
}
@media screen and (max-width: 900px) {
  #p-home__carousel::before {
    padding-top: 61.6%;
  }
}
#p-home__carousel ul {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 900px) {
  #p-home__carousel ul {
    display: flex;
    flex-wrap: wrap;
  }
}
#p-home__carousel ul li {
  height: auto;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 900px) {
  #p-home__carousel ul li {
    width: 33.3%;
  }
}
#p-home__carousel ul li::before {
  content: "";
  display: block;
  padding-top: 90%;
}
#p-home__carousel ul li img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: auto;
  margin: auto;
}

#p-home__department {
  background-color: #fff;
  overflow: hidden;
  position: relative;
  height: 100vh;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department {
    height: auto;
    padding: 34px 50px 44px 50px;
    display: flex;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1240px) and (max-width: 580px) {
  #p-home__department {
    padding: 40px 25px;
  }
}
#p-home__department #p-home__department__title {
  display: none;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department #p-home__department__title {
    display: block;
    width: 100%;
    padding-bottom: 34px;
  }
}
#p-home__department #p-home__department__title::after {
  content: none;
}
#p-home__department #p-home__department__title svg {
  fill: #001E4D;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  #p-home__department #p-home__department__title svg {
    width: 52px;
  }
}
#p-home__department #p-home__department__title div {
  background-color: #fff;
}
#p-home__department #p-home__department__title div::before {
  content: "";
  border-left: 1px solid #001E4D;
}
#p-home__department #p-home__department__title div p {
  color: #001E4D;
}
#p-home__department #p-home__department__title div span {
  color: #333333;
}
#p-home__department .p-home__department__page {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page {
    position: relative;
    left: auto;
    top: auto;
    width: calc((100% - 40px) / 2);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page {
    width: calc((100% - 22px) / 2);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page.--1, #p-home__department .p-home__department__page.--3 {
    margin-right: 40px;
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page.--1, #p-home__department .p-home__department__page.--3 {
    margin-right: 22px;
  }
}
#p-home__department .p-home__department__page.--active .p-home__department__half {
  opacity: 1;
}
#p-home__department .p-home__department__page.--active .p-home__department__half.--left > div {
  opacity: 1;
}
#p-home__department .p-home__department__page.--active .p-home__department__half.--right {
  transform: translate(0, 0);
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page.--active .p-home__department__half.--right {
    transform: none;
  }
}
#p-home__department .p-home__department__page .p-home__department__half {
  position: absolute;
  top: 0;
  width: 50%;
  height: 100vh;
  background-color: #fff;
  opacity: 0;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half {
    position: relative;
    top: auto;
    width: 100%;
    height: auto;
    transition: none;
    opacity: 1;
    transform-origin: 50% 50%;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left {
  left: 0;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left {
    left: auto;
    order: 2;
    padding-bottom: 40px;
    height: 100%;
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left {
    padding-bottom: 20px;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div {
  background-color: #fff;
  width: 324px;
  height: 400px;
  margin: auto;
  position: absolute;
  left: -50%;
  right: -50%;
  top: -50%;
  bottom: -50%;
  transition: all 1.6s ease-in-out;
  opacity: 0;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    background-color: #fff;
    width: 100%;
    height: 220px;
    margin: auto;
    position: relative;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    transition: none;
    opacity: 1;
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 170px;
  }
}
@media screen and (max-width: 540px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 150px;
  }
}
@media screen and (max-width: 500px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 140px;
  }
}
@media screen and (max-width: 440px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 130px;
  }
}
@media screen and (max-width: 375px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 140px;
  }
}
@media screen and (max-width: 360px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div {
    height: 144px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 {
    display: none;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2::after {
  content: none;
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2 svg {
  fill: #001E4D;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 svg {
    width: 52px;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div {
  background-color: #fff;
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div::before {
  content: "";
  border-left: 1px solid #001E4D;
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div p {
  color: #001E4D;
}
@media (max-width: 1360px) and (max-width: 1040px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div p {
    font-size: clamp(24px, -8.1428571429px + 0.0357 * 100vw, 29px);
  }
}
@media (max-width: 1360px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div p {
    font-size: clamp(24px, -19.5714285714px + 0.0357 * 100vw, 29px);
  }
}
@media (max-width: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div p {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div p {
    font-size: clamp(21px, 16px + 0.0104 * 100vw, 24px);
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div span {
  color: #333333;
}
@media (max-width: 1360px) and (max-width: 1040px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div span {
    font-size: clamp(18px, -1.2857142857px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 1360px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div span {
    font-size: clamp(18px, -8.1428571429px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 768px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h2 div span {
    font-size: clamp(15px, 10px + 0.0104 * 100vw, 18px);
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
  font-size: 45px;
  font-weight: 600;
  color: #001E4D;
  margin: 50px 0 45px 0;
}
@media (max-width: 1300px) and (max-width: 980px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    font-size: clamp(30px, -82.5px + 0.125 * 100vw, 40px);
  }
}
@media (max-width: 1300px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    font-size: clamp(30px, -176.6666666667px + 0.1667 * 100vw, 40px);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    margin: 30px 0;
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    font-size: clamp(24px, -10.9090909091px + 0.0455 * 100vw, 30px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    font-size: clamp(24px, 14.2372881356px + 0.0127 * 100vw, 30px);
  }
}
@media (max-width: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    font-size: clamp(17px, -4.6666666667px + 0.0451 * 100vw, 30px);
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div h3 {
    margin: 15px 0;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div > p {
  font-size: 17px;
  font-weight: 600;
  color: #051622;
  line-height: 160%;
}
@media (max-width: 580px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div > p {
    font-size: clamp(12px, -12px + 0.05 * 100vw, 17px);
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out 0s;
  margin-top: 68px;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a {
    font-size: 14px;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-home__department .p-home__department__page .p-home__department__half.--left > div a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a {
    width: 90%;
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    margin: auto;
  }
}
@media (max-width: 720px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a {
    width: 100%;
    color: #fff;
  }
}
@media screen and (max-width: 580px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a {
    width: 90px;
    height: 30px;
    font-size: 10px;
    left: 0;
    right: auto;
  }
}
@media (max-width: 720px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a:hover {
    color: #001E4D;
  }
}
@media (max-width: 720px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a:hover::after {
    color: #fff;
  }
}
@media (max-width: 720px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a::before {
    content: none;
  }
}
@media (max-width: 720px) {
  #p-home__department .p-home__department__page .p-home__department__half.--left > div a::after {
    content: "もっと見る";
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(11px, -1px + 0.025 * 100vw, 17px);
    font-weight: 600;
    color: #001E4D;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--right {
  left: 50%;
  transform: translate(0, 40vh);
  transform-origin: 0 100%;
  transition: all 1.4s ease-in-out;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--right {
    left: auto;
    transform: none;
    transform-origin: 50% 50%;
    transition: none;
    order: 1;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--right picture {
  height: 100%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--right picture {
    overflow: hidden;
    width: 100%;
    position: relative;
    display: block;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--right picture::before {
    content: "";
    display: block;
    padding-top: 79%;
  }
}
#p-home__department .p-home__department__page .p-home__department__half.--right picture img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__department .p-home__department__page .p-home__department__half.--right picture img {
    object-fit: fill;
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    width: auto;
    height: 100%;
    margin: auto;
  }
}

#p-home__recruit {
  padding: 150px 0 160px 0;
  box-sizing: border-box;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit {
    background-color: rgba(5, 22, 34, 0.64);
    padding: 127px 10px 10px 10px;
  }
}
#p-home__recruit > div {
  width: calc(100% - 144px);
  margin: auto;
  background-color: rgba(219, 144, 0, 0.7);
  padding: 200px 84px 62px 84px;
  box-sizing: border-box;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div {
    width: 100%;
    padding: 40px 25px 40px 25px;
  }
}
@media (max-width: 580px) {
  #p-home__recruit > div {
    background-color: rgba(219, 144, 0, 0.93);
  }
}
#p-home__recruit > div h2 {
  position: absolute;
  left: 84px;
  top: 75px;
  width: calc(100% - 84px);
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h2 {
    left: 40px;
    top: -86px;
  }
}
@media (max-width: 580px) {
  #p-home__recruit > div h2 {
    left: 15px;
  }
}
#p-home__recruit > div h2::after {
  left: 0;
  margin-left: 322px;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h2::after {
    content: none;
  }
}
#p-home__recruit > div h2 div {
  background-color: transparent;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h2 div {
    background-color: transparent;
  }
}
#p-home__recruit > div > picture {
  display: none;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div > picture {
    display: block;
  }
}
#p-home__recruit > div > picture img {
  margin: auto;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div > picture img {
    width: 88%;
    max-width: 400px;
  }
}
#p-home__recruit > div h3, #p-home__recruit > div h3 span {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  letter-spacing: -0.5px;
  line-height: 160%;
}
@media (max-width: 1600px) and (min-height: 900px) {
  #p-home__recruit > div h3, #p-home__recruit > div h3 span {
    font-size: clamp(30px, -22px + 0.04 * 100vw, 42px);
  }
}
@media (max-width: 1600px) and (max-height: 899px) {
  #p-home__recruit > div h3, #p-home__recruit > div h3 span {
    font-size: clamp(40px, 31.3333333333px + 0.0067 * 100vw, 42px);
  }
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h3, #p-home__recruit > div h3 span {
    font-size: clamp(21px, -3px + 0.05 * 100vw, 42px);
  }
}
#p-home__recruit > div h3 {
  margin-bottom: 78px;
  box-sizing: border-box;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h3 {
    text-align: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h3 span {
    display: none;
  }
}
#p-home__recruit > div h3 br {
  display: none;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div h3 br {
    display: inline;
  }
}
#p-home__recruit > div #p-home__recruit__message {
  display: flex;
  box-sizing: border-box;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__message {
    display: block;
  }
}
#p-home__recruit > div #p-home__recruit__message picture {
  width: 400px;
}
@media screen and (max-width: 1440px) {
  #p-home__recruit > div #p-home__recruit__message picture {
    width: 40%;
    min-width: 320px;
  }
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__message picture {
    display: none;
  }
}
#p-home__recruit > div #p-home__recruit__message picture img {
  width: 100%;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__message picture img {
    width: 400px;
    margin: auto;
  }
}
@media screen and (max-width: 900px) {
  #p-home__recruit > div #p-home__recruit__message picture img {
    width: 90%;
  }
}
#p-home__recruit > div #p-home__recruit__message p {
  width: calc(100% - 400px);
  padding-left: 80px;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: 600;
  line-height: 160%;
  color: #fff;
}
@media screen and (max-width: 1440px) {
  #p-home__recruit > div #p-home__recruit__message p {
    width: 60%;
    padding-left: 6%;
  }
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__message p {
    width: 100%;
    padding-left: 0;
  }
}
#p-home__recruit > div #p-home__recruit__staff {
  display: flex;
  margin: 80px auto 0 auto;
  width: calc(100% + 144px);
  height: auto;
  position: absolute;
  left: -50%;
  right: -50%;
}
@media screen and (max-width: 1300px) {
  #p-home__recruit > div #p-home__recruit__staff {
    width: calc(100% + 20px);
  }
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__staff {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__staff {
    margin-top: 35px;
  }
}
#p-home__recruit > div #p-home__recruit__staff .slick-track {
  display: flex;
}
#p-home__recruit > div #p-home__recruit__staff .slick-slide {
  width: auto;
  height: auto;
}
#p-home__recruit > div #p-home__recruit__staff li {
  margin-right: 40px;
  margin-left: 40px;
  display: flex;
}
@media screen and (max-width: 1070px) {
  #p-home__recruit > div #p-home__recruit__staff li {
    margin-right: 30px;
    margin-left: 30px;
  }
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__staff li {
    margin-right: 25px;
    margin-left: 25px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__staff li {
    margin-right: 20px;
    margin-left: 20px;
    display: block;
  }
}
#p-home__recruit > div #p-home__recruit__staff li figure {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: column;
  overflow: hidden;
}
#p-home__recruit > div #p-home__recruit__staff li figure div {
  height: 100%;
  width: auto;
  /*display: block;
  overflow: hidden;

  &::before{
    content: "";
    display: block;
    padding-top: 79%;
    background-color: #fff;
  }*/
}
#p-home__recruit > div #p-home__recruit__staff li figure div picture {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 323/256;
  background-color: #fff;
  /*&::before{
    content: "";
    display: block;
    padding-top: 79%;
    background-color: #fff;
  }*/
}
#p-home__recruit > div #p-home__recruit__staff li figure div picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: auto;
  height: 100%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__recruit > div #p-home__recruit__staff li figure figcaption {
  display: block;
  height: 100%;
  padding: 30px 20px 70px 20px;
  box-sizing: border-box;
  background-color: #051622;
  position: relative;
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__staff li figure figcaption {
    width: calc(100% - 80px);
    padding: 20px 40px 20px 20px;
    top: -60px;
  }
}
#p-home__recruit > div #p-home__recruit__staff li figure figcaption span {
  color: #fff;
  position: absolute;
  top: -9px;
  left: 20px;
  font-size: 18px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__staff li figure figcaption span {
    top: -7px;
    font-size: 14px;
  }
}
#p-home__recruit > div #p-home__recruit__staff li figure figcaption p {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 160%;
}
@media screen and (max-width: 580px) {
  #p-home__recruit > div #p-home__recruit__staff li figure figcaption p {
    font-size: 17px;
  }
}
#p-home__recruit > div #p-home__recruit__staff li figure figcaption a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.4s ease-in-out;
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__staff li figure figcaption a {
    width: 90px;
    height: 30px;
    background-color: #fff;
    bottom: auto;
    top: 45px;
    right: -65px;
    margin: auto;
    box-sizing: border-box;
    border: 1px solid #051622;
    color: #051622;
  }
}
#p-home__recruit > div #p-home__recruit__staff li figure figcaption a:hover {
  background-color: #fff;
  color: #051622;
}
#p-home__recruit > div #p-home__recruit__menu {
  display: flex;
  flex-wrap: wrap;
  margin-top: 80px;
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu {
    width: 94%;
    max-width: 360px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__menu {
    width: 88%;
  }
}
#p-home__recruit > div #p-home__recruit__menu li {
  width: calc((99.9% - 160px) / 3);
  margin-right: 80px;
  position: relative;
}
@media (max-width: 1600px) and (max-width: 1070px), (max-width: 1600px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu li {
    width: 30.6333333333%;
    margin-right: 4%;
  }
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu li {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__menu li {
    margin-top: 10px;
  }
}
#p-home__recruit > div #p-home__recruit__menu li:last-child {
  margin-right: 0;
}
#p-home__recruit > div #p-home__recruit__menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: calc(100% - 21px);
  height: 97px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #051622;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  position: relative;
  left: 21px;
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__menu li a {
    font-size: 14px;
  }
}
#p-home__recruit > div #p-home__recruit__menu li a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #051622;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__recruit > div #p-home__recruit__menu li a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-home__recruit > div #p-home__recruit__menu li a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu li a {
    width: 100%;
    height: 60px;
    left: 0;
  }
}
@media screen and (max-width: 480px) {
  #p-home__recruit > div #p-home__recruit__menu li a {
    height: 50px;
  }
}
@media (max-width: 1600px) and (max-width: 1070px), (max-width: 1600px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu li a::before {
    width: 34px;
  }
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  #p-home__recruit > div #p-home__recruit__menu li a::before {
    width: 47px;
  }
}
#p-home__recruit > div #p-home__recruit__menu li a:hover {
  border-color: #051622;
}

#p-home__construction {
  padding: 156px 0 103px 0;
  background-color: #001E4D;
}
@media screen and (max-width: 1300px) {
  #p-home__construction {
    padding-top: 40px;
  }
}
@media (max-width: 1300px) and (max-width: 900px), (max-width: 1300px) and (min-height: 900px) {
  #p-home__construction {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 580px) {
  #p-home__construction {
    padding-bottom: 40px;
  }
}
#p-home__construction #p-home__construction__header {
  width: 100%;
  height: 58px;
  position: relative;
}
@media screen and (max-width: 580px) {
  #p-home__construction #p-home__construction__header {
    height: 48px;
  }
}
#p-home__construction #p-home__construction__header h2 {
  width: calc((100% - (100% - 144px)) / 2 + 100% - 144px - 84px);
  position: absolute;
  top: 0;
  right: 0;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__construction #p-home__construction__header h2 {
    width: calc(100% - 50px);
    left: 50px;
    right: auto;
  }
}
@media screen and (max-width: 580px) {
  #p-home__construction #p-home__construction__header h2 {
    width: calc(100% - 25px);
    left: 25px;
  }
}
@media screen and (max-width: 1300px) {
  #p-home__construction #p-home__construction__header h2::after {
    content: none;
  }
}
#p-home__construction #p-home__construction__header h2 div {
  background-color: #001E4D;
}
@media screen and (max-width: 1300px) {
  #p-home__construction #p-home__construction__header h2 div {
    background-color: transparent;
  }
}
#p-home__construction #p-home__construction__slider {
  position: relative;
  width: 100%;
  height: 380px;
  margin-top: 77px;
}
@media screen and (max-width: 1300px) {
  #p-home__construction #p-home__construction__slider {
    margin-top: 44px;
  }
}
#p-home__construction #p-home__construction__slider > ul {
  display: flex;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
#p-home__construction #p-home__construction__slider > ul .slick-track {
  display: flex;
}
#p-home__construction #p-home__construction__slider > ul .slick-slide {
  height: auto;
}
#p-home__construction #p-home__construction__slider > ul li {
  margin: 0 40px;
  display: block;
}
@media (max-width: 1340px) and (max-width: 1100px), (max-width: 1340px) and (min-height: 900px) {
  #p-home__construction #p-home__construction__slider > ul li {
    margin: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  #p-home__construction #p-home__construction__slider > ul li {
    margin: 0 10px;
  }
}
#p-home__construction #p-home__construction__slider > ul li figure {
  height: 100%;
  display: flex;
  flex-flow: column;
  /*@media (max-width: 1300px){
    @media (max-width: $switch1width), (min-height: $switch1height){
      position: relative;
    }
  }*/
}
#p-home__construction #p-home__construction__slider > ul li figure div {
  display: block;
}
#p-home__construction #p-home__construction__slider > ul li figure div::before {
  content: "";
  display: block;
  padding-top: 75%;
  background-color: #fff;
}
#p-home__construction #p-home__construction__slider > ul li figure div img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: auto;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption {
  display: block;
  width: calc(100% - 50px);
  height: 100%;
  padding: 44px 61px 40px 16px;
  box-sizing: border-box;
  background-color: #fff;
  position: relative;
  top: -28px;
}
@media (max-width: 580px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption {
    width: calc(100% - 80px);
    padding: 40px 40px 13px 20px;
  }
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption > div {
  width: 100%;
  height: 25px;
  line-height: 25px;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption em, #p-home__construction #p-home__construction__slider > ul li figure figcaption span {
  width: 50%;
  padding-left: 5px;
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption em, #p-home__construction #p-home__construction__slider > ul li figure figcaption span {
    justify-content: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption em, #p-home__construction #p-home__construction__slider > ul li figure figcaption span {
    width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption em, #p-home__construction #p-home__construction__slider > ul li figure figcaption span {
    font-size: 12px;
  }
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption em {
  background-color: #001E4D;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption .p-home__construction__label.--pc {
  background-color: #07ACD3;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption .p-home__construction__label.--metal {
  background-color: #767676;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption .p-home__construction__label.--repair {
  background-color: #DB9000;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption .p-home__construction__label.--other {
  background-color: #FFE943;
  color: #363636;
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption p {
  color: #001E4D;
  font-size: 20px;
  font-weight: 600;
  line-height: 160%;
}
@media (max-width: 1300px) and (max-width: 1024px), (max-width: 1300px) and (min-height: 900px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption p {
    font-size: 18px;
  }
}
@media screen and (max-width: 900px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption p {
    font-size: 17px;
  }
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 32px;
  border: 1px solid #051622;
  background-color: #fff;
  color: #051622;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 26px;
  right: -50px;
  transition: all 0.4s ease-in-out;
  margin: auto;
}
@media (max-width: 579px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption a {
    width: 90px;
    height: 30px;
    font-size: 11px;
    bottom: auto;
    top: 38px;
    right: -65px;
  }
}
@media screen and (max-width: 380px) {
  #p-home__construction #p-home__construction__slider > ul li figure figcaption a {
    top: 50px;
  }
}
#p-home__construction #p-home__construction__slider > ul li figure figcaption a:hover {
  background-color: #051622;
  color: #fff;
}
#p-home__construction > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 311px;
  height: 50px;
  background-color: #001E4D;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin-top: 74px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 480px) {
  #p-home__construction > a {
    font-size: 14px;
  }
}
#p-home__construction > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__construction > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  background-color: #fff;
  color: #001E4D;
}
#p-home__construction > a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1300px) and (max-width: 1024px), (max-width: 1300px) and (min-height: 900px) {
  #p-home__construction > a {
    margin-top: 60px;
  }
}
@media (max-width: 1300px) and (max-width: 900px), (max-width: 1300px) and (min-height: 900px) {
  #p-home__construction > a {
    margin-top: 40px;
  }
}
@media screen and (max-width: 580px) {
  #p-home__construction > a {
    margin-top: 12px;
    color: #001E4D;
    background-color: #fff;
    border-color: #001E4D;
  }
}
@media screen and (max-width: 480px) {
  #p-home__construction > a {
    width: 84%;
    max-width: 300px;
  }
}
@media screen and (max-width: 580px) {
  #p-home__construction > a::before {
    background-color: #001E4D;
  }
}
#p-home__construction > a:hover {
  border-color: #363636;
}
@media screen and (max-width: 580px) {
  #p-home__construction > a:hover {
    border-color: #001E4D;
  }
}
#p-home__construction > a:hover::before {
  background-color: #363636;
}
@media screen and (max-width: 580px) {
  #p-home__construction > a:hover::before {
    background-color: #001E4D;
  }
}

#p-home__technology {
  padding: 150px 0 160px 0;
  box-sizing: border-box;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__technology {
    padding: 52px 20px 70px 20px;
  }
}
@media (max-width: 900px) {
  #p-home__technology {
    background-color: rgba(5, 22, 34, 0.64);
  }
}
#p-home__technology #p-home__technology__wrapper {
  display: flex;
  flex-wrap: wrap;
  background-color: #051622;
  width: calc(100% - 144px);
  margin: auto;
}
@media (max-width: 1400px) and (max-width: 1300px), (max-width: 1400px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper {
    width: 100%;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left {
  width: 50%;
  padding: 100px 60px 96px 84px;
  box-sizing: border-box;
  position: relative;
  /*@media (max-width: 900px){
    @media (max-width: 700px), (min-height: $switch1height){
      width: 100%;
      padding: 11px 10px 20px 10px;
    }
  }*/
}
@media (max-width: 1800px) and (max-width: 1160px), (max-width: 1800px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left {
    padding: 80px 40px 60px 60px;
  }
}
@media (max-width: 960px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left {
    padding-top: 60px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left {
    width: 100%;
    padding: 30px;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 {
  position: absolute;
  top: 90px;
  left: 84px;
  height: 58px;
  width: calc(100% - 84px);
  /*@media (max-width: 900px){
    @media (max-width: 700px), (min-height: $switch1height){
      top: 11px;
      left: 10px;
    }
  }*/
}
@media (max-width: 1800px) and (max-width: 1160px), (max-width: 1800px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 {
    top: 80px;
    left: 60px;
    width: calc(100% - 60px);
  }
}
@media screen and (max-width: 960px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 {
    top: 60px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 {
    height: 48px;
    top: 30px;
    left: 30px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 1240px) and (max-width: 1160px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2::after {
    content: none;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 svg {
    top: 8px;
    width: 52px;
    height: 44px;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div {
  background-color: #051622;
}
@media screen and (max-width: 1160px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div {
    background-color: transparent;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div {
    padding-left: 48px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div::before {
    top: 3px;
    left: 23px;
    height: 48px;
    transform: rotate(25deg);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div p {
    font-size: 26px;
  }
}
@media (max-width: 440px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div p {
    font-size: 24px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h2 div span {
    font-size: 19px;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
  margin-top: 118px;
  font-size: clamp(30px, -30px + 0.0462 * 100vw, 42px);
  font-weight: 600;
  color: #fff;
  line-height: 160%;
}
@media (max-width: 1800px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
    font-size: clamp(21px, 4.6875px + 0.0141 * 100vw, 30px);
  }
}
@media screen and (max-width: 1160px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
    margin-top: 98px;
    font-size: clamp(24px, -21.1764705882px + 0.0441 * 100vw, 30px);
  }
}
@media screen and (max-width: 960px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
    margin-top: 88px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
    margin-top: 68px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 {
    font-size: 21px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left h3 br {
    display: inline;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #001E4D;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin: 60px 0 0 12px;
}
@media screen and (max-width: 480px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
    font-size: 14px;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  background-color: #fff;
  color: #001E4D;
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 1160px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
    margin-top: 50px;
  }
}
@media screen and (max-width: 960px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
    margin-top: 40px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
    position: absolute;
    bottom: 0;
    left: -50%;
    right: -50%;
    margin: auto;
    z-index: 1;
  }
}
@media screen and (max-width: 400px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__left > a {
    width: calc(100% - 40px);
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a:hover {
  border-color: #363636;
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__left > a:hover::before {
  background-color: #363636;
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__right {
  display: block;
  width: 50%;
  overflow: hidden;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__right {
    width: 100%;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__right::before {
  content: "";
  display: block;
  padding-top: 75%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__right::before {
    padding-top: 58%;
  }
}
#p-home__technology #p-home__technology__wrapper #p-home__technology__right img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 110%;
  height: auto;
  margin: auto;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__technology #p-home__technology__wrapper #p-home__technology__right img {
    width: 100%;
  }
}

#p-home__news {
  background-color: #fff;
  padding: 160px 144px;
  /*@media screen and (max-width: $switch4width) {
    padding: 0 50px 60px 25px;
  }*/
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__news {
    padding: 36px 50px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-home__news {
    padding: 36px 25px 60px 25px;
  }
}
#p-home__news > div {
  width: 100%;
}
#p-home__news > div h2::after {
  border-top: 1px solid #001E4D;
}
#p-home__news > div h2 svg {
  fill: #001E4D;
}
#p-home__news > div h2 div {
  background-color: #fff;
}
#p-home__news > div h2 div::before {
  border-left: 1px solid #001E4D;
}
#p-home__news > div h2 div p {
  color: #001E4D;
}
#p-home__news > div h2 div span {
  color: #001E4D;
}
#p-home__news > div ul {
  margin-top: 55px;
  border-top: 1px solid #707070;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__news > div ul {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__news > div ul {
    margin-top: 18px;
  }
}
#p-home__news > div ul li {
  border-bottom: 1px solid #707070;
}
#p-home__news > div ul li a {
  display: flex;
  flex-wrap: wrap;
  padding: 26px 10px;
  align-items: baseline;
}
@media screen and (max-width: 480px) {
  #p-home__news > div ul li a {
    padding: 20px 0;
  }
}
#p-home__news > div ul li a time, #p-home__news > div ul li a p {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: #333;
  line-height: 1.6;
}
#p-home__news > div ul li a time {
  width: 110px;
  transition: all 0.3s ease-in-out;
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  #p-home__news > div ul li a time {
    width: 100%;
    font-size: 11px;
    color: #363636;
  }
}
#p-home__news > div ul li a p {
  width: calc(100% - 120px);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  #p-home__news > div ul li a p {
    width: 100%;
    font-size: 14px;
    margin-top: 2px;
  }
}
#p-home__news > div ul li a p.p-home__news__openpdf::after {
  content: "";
  background-color: #df5656;
  display: inline-block;
  margin-left: 5px;
  height: 26px;
  width: 26px;
  -webkit-mask: url("../img/common/ico_pdf.svg");
  mask: url("../img/common/ico_pdf.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: text-bottom;
  position: relative;
  bottom: -2px;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  #p-home__news > div ul li a p.p-home__news__openpdf::after {
    height: 20px;
    width: 20px;
    bottom: -1px;
  }
}
#p-home__news > div ul li:hover time {
  color: #767676;
}
#p-home__news > div ul li:hover p {
  color: #767676;
}
#p-home__news > div ul li:hover p.p-home__news__openpdf::after {
  opacity: 0.7;
}
#p-home__news > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin-top: 60px;
  margin-left: 10px;
}
@media screen and (max-width: 480px) {
  #p-home__news > div > a {
    font-size: 14px;
  }
}
#p-home__news > div > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-home__news > div > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-home__news > div > a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-home__news > div > a {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  #p-home__news > div > a {
    margin: 30px auto 0 auto;
    width: calc(100% - 10px);
    max-width: 300px;
  }
}

/**
* ひな型
*/
#p-page {
  height: 100vh;
  width: 100%;
  position: relative;
  background-color: #DB9000;
}
#p-page > div {
  padding: 60px;
}
#p-page > div h2 {
  margin-top: 60px;
}
#p-page > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 311px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  #p-page > div a {
    font-size: 14px;
  }
}
#p-page > div a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-page > div a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-page > div a:hover::before {
  left: auto;
  right: -12px;
}

/**
* プライバシーポリシー
*/
#p-privacy {
  width: 100%;
  position: relative;
}
#p-privacy .p-privacy__title {
  width: 100%;
  height: 215px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-privacy .p-privacy__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-privacy .p-privacy__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-privacy .p-privacy__title {
    padding-left: 25px;
  }
}
#p-privacy .p-privacy__title h1 div::after {
  border-top: 1px solid #001E4D;
}
#p-privacy .p-privacy__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
#p-privacy .p-privacy__title h1 p {
  color: #001E4D;
}
#p-privacy .p-privacy__wrapper {
  padding: 0 72px 80px 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-privacy .p-privacy__wrapper {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-privacy .p-privacy__wrapper {
    height: auto;
    padding: 20px 50px 80px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-privacy .p-privacy__wrapper {
    padding-right: 25px;
    padding-left: 25px;
  }
}
@media screen and (max-width: 480px) {
  #p-privacy .p-privacy__wrapper {
    padding-top: 4px;
  }
}
#p-privacy .p-privacy__wrapper .p-privacy__policy {
  margin-bottom: 70px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #p-privacy .p-privacy__wrapper .p-privacy__policy {
    margin-bottom: 32px;
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media screen and (max-width: 480px) {
  #p-privacy .p-privacy__wrapper .p-privacy__policy {
    font-size: 14px;
    line-height: 1.8;
  }
}
#p-privacy .p-privacy__wrapper h3 {
  width: fit-content;
  padding: 0 10px;
  margin-bottom: 37px;
  color: #001E4D;
  font-size: 28px;
  font-weight: 600;
}
#p-privacy .p-privacy__wrapper h3::before {
  content: "【";
  width: fit-content;
  height: fit-content;
  color: #001E4D;
  display: block;
  position: absolute;
  left: -16px;
}
#p-privacy .p-privacy__wrapper h3::after {
  content: "】";
  width: fit-content;
  height: fit-content;
  color: #001E4D;
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
}
@media screen and (max-width: 768px) {
  #p-privacy .p-privacy__wrapper h3 {
    font-size: clamp(18px, 1.3333333333px + 0.0347 * 100vw, 28px);
  }
}
@media screen and (max-width: 480px) {
  #p-privacy .p-privacy__wrapper h3 {
    margin-bottom: 27px;
    font-size: 18px;
  }
  #p-privacy .p-privacy__wrapper h3::before {
    left: -8px;
  }
  #p-privacy .p-privacy__wrapper h3::after {
    right: -8px;
  }
}
#p-privacy .p-privacy__wrapper ul {
  margin-bottom: 35px;
}
#p-privacy .p-privacy__wrapper ul:last-of-type {
  margin-bottom: 0;
}
#p-privacy .p-privacy__wrapper ul li {
  padding-left: 24px;
  color: #363636;
  line-height: 1.32;
  position: relative;
}
#p-privacy .p-privacy__wrapper ul li:first-of-type {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #p-privacy .p-privacy__wrapper ul li:first-of-type {
    font-size: clamp(16px, 7.6666666667px + 0.0174 * 100vw, 21px);
  }
}
#p-privacy .p-privacy__wrapper ul li:first-of-type::before {
  content: "●";
  width: fit-content;
  color: #001E4D;
  display: block;
  position: absolute;
  left: 0;
}
#p-privacy .p-privacy__wrapper ul li:last-of-type {
  font-weight: 500;
  font-size: 17px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #p-privacy .p-privacy__wrapper ul li:last-of-type {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media screen and (max-width: 480px) {
  #p-privacy .p-privacy__wrapper ul {
    margin-bottom: 30px;
  }
  #p-privacy .p-privacy__wrapper ul li {
    padding-left: 18px;
  }
  #p-privacy .p-privacy__wrapper ul li:first-of-type {
    margin-bottom: 7px;
  }
  #p-privacy .p-privacy__wrapper ul li:last-of-type {
    line-height: 1.5;
  }
}

/**
* サイトマップ
*/
#p-sitemap {
  width: 100%;
  position: relative;
}
#p-sitemap .p-sitemap__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-sitemap .p-sitemap__title {
    padding-left: 25px;
  }
}
#p-sitemap .p-sitemap__title h1 div::after {
  border-top: 1px solid #001E4D;
}
#p-sitemap .p-sitemap__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
#p-sitemap .p-sitemap__title h1 p {
  color: #001E4D;
}
#p-sitemap .p-sitemap__wrapper {
  padding: 45px 0 0 112px;
  height: 90vh;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__wrapper {
    padding-left: 80px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__wrapper {
    height: auto;
    padding: 34px 0 240px 80px;
  }
}
@media (max-width: 768px) {
  #p-sitemap .p-sitemap__wrapper {
    padding-top: 0;
  }
}
@media screen and (max-width: 580px) {
  #p-sitemap .p-sitemap__wrapper {
    padding-left: 25px;
  }
}
@media (max-width: 1240px) and (max-width: 1000px), (max-width: 1240px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 {
    display: inline-block;
  }
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 .p-sitemap__item01 {
  width: fit-content;
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 .p-sitemap__item02 {
  width: fit-content;
  margin-top: 60px;
  margin-left: 15%;
  display: inline-block;
  vertical-align: top;
}
@media (max-width: 1400px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 .p-sitemap__item02 {
    margin-left: 8%;
  }
}
@media (max-width: 1240px) and (max-width: 1000px), (max-width: 1240px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 .p-sitemap__item02 {
    margin-top: 40px;
    margin-left: 0;
    display: block;
  }
}
@media (max-width: 900px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 .p-sitemap__item02 {
    margin-top: 24px;
  }
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 ul {
  width: fit-content;
  display: inline-block;
  vertical-align: top;
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 ul li:last-of-type {
  margin-bottom: 0;
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 900px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li {
    margin-bottom: 24px;
  }
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li a span {
  padding: 0 9px 0 18px;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li a span {
    font-size: clamp(14px, 7.3333333333px + 0.0139 * 100vw, 18px);
  }
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li a span::before {
  content: "";
  width: 11px;
  height: 2px;
  border-top: solid 2px #707070;
  position: absolute;
  inset: 0;
  margin: auto 0;
  transition: all 0.4s ease-in-out;
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li a span:hover {
  color: #767676;
}
#p-sitemap .p-sitemap__wrapper .p-sitemap__container01 li a span:hover::before {
  left: 100%;
}
#p-sitemap .p-sitemap__container02 {
  margin-top: 60px;
  margin-left: 15%;
  display: inline-block;
}
@media (max-width: 1400px) {
  #p-sitemap .p-sitemap__container02 {
    margin-left: 8%;
  }
}
@media (max-width: 1240px) and (max-width: 1000px), (max-width: 1240px) and (min-height: 900px) {
  #p-sitemap .p-sitemap__container02 {
    vertical-align: top;
  }
}
@media (max-width: 900px) {
  #p-sitemap .p-sitemap__container02 {
    margin-top: 45px;
  }
}
@media (max-width: 768px) {
  #p-sitemap .p-sitemap__container02 {
    display: block;
    margin-top: 24px;
    margin-left: 0;
  }
}
#p-sitemap .p-sitemap__container02 li {
  margin-bottom: 40px;
  position: relative;
}
@media (max-width: 900px) {
  #p-sitemap .p-sitemap__container02 li {
    margin-bottom: 24px;
  }
}
#p-sitemap .p-sitemap__container02 li:last-of-type {
  margin-bottom: 0;
}
#p-sitemap .p-sitemap__container02 li a span {
  padding: 0 9px 0 18px;
  font-size: 18px;
  font-weight: 600;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #p-sitemap .p-sitemap__container02 li a span {
    font-size: clamp(14px, 7.3333333333px + 0.0139 * 100vw, 18px);
  }
}
#p-sitemap .p-sitemap__container02 li a span::before {
  content: "";
  width: 11px;
  height: 2px;
  border-top: solid 2px #707070;
  position: absolute;
  inset: 0;
  margin: auto 0;
  transition: all 0.4s ease-in-out;
}
#p-sitemap .p-sitemap__container02 li a span:hover {
  color: #767676;
}
#p-sitemap .p-sitemap__container02 li a span:hover::before {
  left: 100%;
}

/**
* 思い
*/
.p-about {
  display: flex;
  flex-wrap: wrap;
}
.p-about.--primary .p-about__text {
  padding-top: 75px;
  padding-bottom: 90px;
  padding-right: 0;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about.--primary .p-about__text {
    padding-top: 6%;
    padding-bottom: 6%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--primary .p-about__text {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
.p-about.--primary .p-about__text svg {
  width: 60%;
  max-width: 395px;
  aspect-ratio: 76/68;
  margin-top: 85px;
  margin-bottom: 82px;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about.--primary .p-about__text svg {
    margin-top: 9.8%;
    margin-bottom: 9.4%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--primary .p-about__text svg {
    display: block;
    width: 50%;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-about.--primary .p-about__text > p {
  padding-right: 72px;
  box-sizing: border-box;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about.--primary .p-about__text > p {
    padding-right: 6%;
  }
}
.p-about.--primary .p-about__image img {
  width: 200%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--primary .p-about__image img {
    width: 100%;
  }
}
.p-about.--secondary .p-about__text {
  padding-top: 80px;
  padding-bottom: 64px;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about.--secondary .p-about__text {
    padding-top: 5%;
    padding-bottom: 5%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--secondary .p-about__text {
    padding-top: 8%;
    padding-bottom: 8%;
    order: 1;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--secondary .p-about__image {
    order: 2;
  }
}
.p-about.--tertiary .p-about__text {
  padding-top: 80px;
  padding-bottom: 0;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about.--tertiary .p-about__text {
    padding-top: 5%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about.--tertiary .p-about__text {
    padding-top: 8%;
    padding-bottom: 8%;
  }
}
.p-about > div {
  width: 50%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about > div {
    width: 100%;
  }
}
.p-about .p-about__text {
  padding-right: 72px;
  padding-left: 72px;
  box-sizing: border-box;
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about .p-about__text {
    padding-right: 6%;
    padding-left: 6%;
  }
}
.p-about .p-about__text h1 div::after {
  border-top: 1px solid #363636;
}
.p-about .p-about__text h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-about .p-about__text h1 > p {
  color: #001E4D;
  font-size: 42px;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-about .p-about__text h1 > p {
    font-size: clamp(28px, 8.9090909091px + 0.0212 * 100vw, 42px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-about .p-about__text h1 > p {
    font-size: clamp(28px, 2.7575757576px + 0.0212 * 100vw, 42px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-about .p-about__text h1 > p {
    font-size: clamp(24px, 12.5714285714px + 0.0238 * 100vw, 34px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-about .p-about__text h1 > p {
    font-size: clamp(24px, 4.4761904762px + 0.0238 * 100vw, 34px);
  }
}
.p-about .p-about__text > p {
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
  color: #333333;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-about .p-about__text > p {
    font-size: clamp(14px, 8.5454545455px + 0.0061 * 100vw, 18px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-about .p-about__text > p {
    font-size: clamp(14px, 6.7878787879px + 0.0061 * 100vw, 18px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-about .p-about__text > p {
    font-size: clamp(14px, 9.4285714286px + 0.0095 * 100vw, 18px);
    text-align: center;
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-about .p-about__text > p {
    font-size: clamp(14px, 6.1904761905px + 0.0095 * 100vw, 18px);
    text-align: center;
  }
}
@media (max-width: 380px) {
  .p-about .p-about__text > p {
    text-align: justify;
  }
  .p-about .p-about__text > p br {
    display: none;
  }
}
.p-about .p-about__text > p span {
  font-size: 21px;
  font-weight: 600;
  color: #333333;
  line-height: 2;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-about .p-about__text > p span {
    font-size: clamp(14px, 4.4545454545px + 0.0106 * 100vw, 21px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-about .p-about__text > p span {
    font-size: clamp(14px, 1.3787878788px + 0.0106 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-about .p-about__text > p span {
    font-size: clamp(14px, 6px + 0.0167 * 100vw, 21px);
    text-align: center;
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-about .p-about__text > p span {
    font-size: clamp(14px, 0.3333333333px + 0.0167 * 100vw, 21px);
    text-align: center;
  }
}
.p-about .p-about__image {
  overflow: hidden;
}
.p-about .p-about__image::before {
  content: "";
  display: block;
  padding-top: 52%;
}
.p-about .p-about__image img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 110%;
  height: auto;
  margin: auto;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about .p-about__image img {
    width: 100%;
  }
}

.p-about__content {
  padding: 80px 0;
  margin-top: 80px;
  box-sizing: border-box;
  background-color: #051622;
  position: relative;
  /*& > ul{
    display: flex;
    flex-wrap: wrap;
    width: calc(100% - (72px * 2));
    margin: auto;

    // 幅1680以下で、且つ幅1330px以下、または高さ900px以上
    @media (max-width: 1680px){
      @media (max-width: 1330px), (min-height: $switch1height){
        width: calc(100% - (6% * 2));
      }
    }

    // 幅1300以下で、且つ幅1100px以下、または高さ900px以上
    @media (max-width: 1300px){
      @media (max-width: 1100px), (min-height: $switch1height){
        width: calc(100% - (3% * 2));
      }
    }

    // 幅1240以下で、且つ幅900px以下、または高さ900px以上
    @media (max-width: 1240px){
      @media (max-width: $switch2width), (min-height: $switch1height){
        width: calc(100% - (50px * 2));
      }
    }

    @media screen and (max-width: 580px) {
      width: calc(100% - (25px * 2));
    }

    li{
      border: 1px solid #fff;
      background-color: $subcolor5;
      margin-right: 47px;
      width: calc((99.9% - (47px * 2)) / 3);
      position: relative;

      // 幅1680以下で、且つ幅1330px以下、または高さ900px以上
      @media (max-width: 1680px){
        @media (max-width: 1330px), (min-height: $switch1height){
          margin-right: 4%;
          width: calc((99.9% - (4% * 2)) / 3);
        }
      }

      // 幅1300以下で、且つ幅1100px以下、または高さ900px以上
      @media (max-width: 1300px){
        @media (max-width: 1100px), (min-height: $switch1height){
          margin-right: 3%;
          width: calc((99.9% - (3% * 2)) / 3);
        }
      }

      // 幅1240以下で、且つ幅900px以下、または高さ900px以上
      @media (max-width: 1240px){
        @media (max-width: $switch2width), (min-height: $switch1height){
          width: 100%;
          margin-right: 0;
          margin-bottom: 50px;
        }
      }

      @media screen and (max-width: 580px) {
        margin-bottom: 16px;
      }

      &:last-child{
        margin-right: 0;

        // 幅1240以下で、且つ幅900px以下、または高さ900px以上
        @media (max-width: 1240px){
          @media (max-width: $switch2width), (min-height: $switch1height){
            margin-bottom: 0;
          }
        }
      }

      figure{
        position: relative;
        height: 100%;
        display: flex;
        flex-wrap: wrap;

        figcaption{
          padding: 26px;
          box-sizing: border-box;

          @media screen and (max-width: $switch4width) {
            padding: 18px;
          }

          h3{
            font-size: 21px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 8px;

            @media (max-width: 1850px){
              @media (max-width: 1560px){
                font-size: m-fontsize__w(12, 21, 900, 1560);
              }

              @media (min-height: $switch1height){
                font-size: m-fontsize__w(12, 21, 1190, 1850);
              }
            }

            @media (max-width: 1240px){
              @media (max-width: $switch2width){
              font-size: m-fontsize__w(12, 21, 480, 900);
              }

              @media (min-height: $switch1height){
              font-size: m-fontsize__w(12, 21, 820, 1240);
              }
            }
          }

          p{
            font-size: 24px;
            font-weight: 600;
            color: #fff;

            @media (max-width: 1850px){
              @media (max-width: 1560px){
                font-size: m-fontsize__w(18, 24, 900, 1560);
              }

              @media (min-height: $switch1height){
                font-size: m-fontsize__w(18, 24, 1190, 1850);
              }
            }

            @media (max-width: 1240px){
              @media (max-width: $switch2width){
                font-size: m-fontsize__w(18, 24, 480, 900);
              }

              @media (min-height: $switch1height){
                font-size: m-fontsize__w(18, 24, 820, 1240);
              }
            }
          }
        }

        picture{
          margin-top: auto;
          width: 100%;

          img{
            width: 100%;
          }
        }
      }

      & > a{
        @include m-button(calc(100% - 14%), 50px, $maincolor, #fff, $maincolor);

        position: absolute;
        left: -50%;
        right: -50%;
        bottom: 26px;
        margin: auto;
        font-size: 17px;

        @media (max-width: 1850px){
          @media (max-width: 1560px){
            font-size: m-fontsize__w(12, 17, 900, 1560);
          }

          @media (min-height: $switch1height){
            font-size: m-fontsize__w(12, 17, 1190, 1850);
          }
        }

        @media (max-width: 1240px){
          @media (max-width: $switch2width){
            width: calc(100% - 80px);
            font-size: m-fontsize__w(12, 17, 480, 900);
          }

          @media (min-height: $switch1height){
            width: calc(100% - 80px);
            font-size: m-fontsize__w(12, 17, 820, 1240);
          }
        }

        &::before{
          width: 30px;
        }
      }
    }
  }*/
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about__content {
    padding: 6% 0;
    margin-top: 6%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about__content {
    margin-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-about__content {
    padding: 10px 0;
  }
}
.p-about__content #p-about__slider {
  overflow: hidden;
  width: 100vw;
}
.p-about__content #p-about__slider picture {
  margin: 0 12px;
}
@media screen and (max-width: 480px) {
  .p-about__content #p-about__slider picture {
    margin: 0 6px;
  }
}
.p-about__content #p-about__slider picture img {
  width: 100%;
}
.p-about__content h2 {
  font-size: 42px;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 72px 0;
  line-height: 160%;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-about__content h2 {
    font-size: clamp(26px, 4.1818181818px + 0.0242 * 100vw, 42px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-about__content h2 {
    font-size: clamp(26px, -2.8484848485px + 0.0242 * 100vw, 42px);
  }
}
@media (max-width: 1680px) and (max-width: 1330px), (max-width: 1680px) and (min-height: 900px) {
  .p-about__content h2 {
    margin: 6% 0;
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-about__content h2 {
    font-size: clamp(21px, 10.7142857143px + 0.0214 * 100vw, 30px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-about__content h2 {
    font-size: clamp(21px, 3.4285714286px + 0.0214 * 100vw, 30px);
  }
}
.p-about__content h2 br {
  display: none;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-about__content h2 br:not(.c-br__o900) {
    display: inline;
  }
}
@media (max-width: 480px) {
  .p-about__content h2 br.c-br__o900 {
    display: inline;
  }
}

/**
* 会社案内
*/
#p-company {
  width: 100%;
  position: relative;
  /*.p-company__container:nth-of-type(8){
    @media (max-width: 1400px){
      @media (max-width: 1200px), (min-height: $switch1height){
        margin-bottom: 174px;
      }
    }

    @media (max-width: 1240px){
      @media (max-width: $switch2width), (min-height: $switch1height){
        margin-bottom: 44px;
      }
    }
  }

  .p-company__container:last-of-type h2{
    @media screen and (max-width: 1400px){
      @media (max-width: 1200px), (min-height: $switch1height){
        height: 108px;
        padding-right: 17px;
        top: -54px;
      }
    }

    @media (max-width: 1240px){
      @media (max-width: $switch2width), (min-height: $switch1height){
        height: 88px;
        top: -44px;
      }
    }

    @media screen and (max-width: 1155px){
      height: 108px;
      top: -54px;
    }

    @media screen and (max-width: 900px){
      height: 88px;
      top: -44px;
    }

    @media screen and (max-width: 450px){
      height: 108px;
      top: -54px;
    }
  }*/
}
#p-company > div a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 311px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  #p-company > div a {
    font-size: 14px;
  }
}
#p-company > div a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-company > div a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-company > div a:hover::before {
  left: auto;
  right: -12px;
}
#p-company dt {
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #p-company dt {
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) {
  #p-company dt {
    font-size: 12px;
  }
}
#p-company dd {
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #p-company dd {
    font-size: 13px;
  }
}
@media screen and (max-width: 580px) {
  #p-company dd {
    font-size: 12px;
  }
}
#p-company .p-company__spbr {
  display: none;
}
@media screen and (max-width: 580px) {
  #p-company .p-company__spbr {
    display: block;
  }
}
#p-company .p-staff__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company .p-staff__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-staff__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-staff__title {
    padding-left: 25px;
  }
}
#p-company .p-staff__title h1 div::after {
  border-top: 1px solid #363636;
}
#p-company .p-staff__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
#p-company .p-staff__title h1 p {
  color: #001E4D;
}
#p-company h2 {
  width: 50%;
  height: 88px;
  padding: 17px 0 17px 85px;
  background-color: #001E4D;
  position: absolute;
  top: -44px;
  left: 0;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company h2 {
    padding: 20px 0 20px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company h2 {
    width: 100%;
  }
}
@media screen and (max-width: 580px) {
  #p-company h2 {
    padding-left: 25px;
  }
}
#p-company h2 svg {
  width: 55px;
  aspect-ratio: 47/40;
  fill: #fff;
  float: left;
  position: relative;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 768px) {
  #p-company h2 svg {
    width: 47px;
  }
}
#p-company h2 div {
  padding-left: 55px;
}
@media screen and (max-width: 768px) {
  #p-company h2 div {
    padding-left: 40px;
  }
}
#p-company h2 div p {
  padding-left: 55px;
  font-size: 25px;
  font-weight: 600;
  color: #fff;
  line-height: 1.15;
  text-indent: unset;
}
@media screen and (max-width: 768px) {
  #p-company h2 div p {
    font-size: 23px;
  }
}
@media screen and (max-width: 580px) {
  #p-company h2 div p {
    font-size: 21px;
  }
}
#p-company h2 div p::before {
  content: "";
  display: block;
  width: 1px;
  height: 46px;
  border-left: 1px solid #fff;
  position: absolute;
  top: 4px;
  left: 27px;
  transform: rotate(30deg);
}
@media screen and (max-width: 768px) {
  #p-company h2 div p::before {
    top: 2px;
  }
}
#p-company h2 div span {
  padding-left: 55px;
  font-size: 17px;
  color: #fff;
  display: block;
}
@media screen and (max-width: 768px) {
  #p-company h2 div span {
    font-size: 16px;
  }
}
@media screen and (max-width: 580px) {
  #p-company h2 div span {
    font-size: 15px;
  }
}
#p-company .p-company__container {
  padding: 84px 85px 60px;
  margin-bottom: 164px;
  background-color: #E8E8E8;
  position: relative;
  /*&:last-of-type{
    padding: 84px 85px 120px;
    margin-bottom: 0;
  }*/
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company .p-company__container {
    padding: 84px 50px 60px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__container {
    padding: 84px 50px 104px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__container {
    padding: 64px 25px 80px 25px;
  }
}
#p-company .p-company__gmap {
  width: 100%;
  height: 413px;
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__gmap {
    height: 304px;
    margin-top: 20px;
  }
}
#p-company .p-company__header img {
  width: 100%;
  height: 574px;
  object-fit: cover;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__header img {
    height: 334px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__header img {
    height: 240px;
  }
}
#p-company .p-company__message {
  padding: 56px 85px 44px;
  display: flex;
  flex-flow: row-reverse nowrap;
  align-items: flex-end;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company .p-company__message {
    padding: 56px 50px 44px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message {
    flex-flow: column nowrap;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message {
    padding: 46px 25px 44px;
  }
}
#p-company .p-company__message div {
  width: 100%;
  padding-bottom: 6%;
  flex: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message div {
    padding-bottom: 3%;
  }
}
#p-company .p-company__message div h3 {
  padding-bottom: 42px;
  font-size: 42px;
  font-weight: 600;
  color: #001E4D;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-company .p-company__message div h3 {
    font-size: clamp(42px, 66.75px + -0.0275 * 100vw, 31px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-company .p-company__message div h3 {
    font-size: clamp(31px, 16.4411764706px + 0.0162 * 100vw, 42px);
  }
}
@media screen and (max-width: 1240px) {
  #p-company .p-company__message div h3 {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message div h3 {
    font-size: clamp(21px, -9.8510638298px + 0.0532 * 100vw, 31px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__message div h3 {
    padding-bottom: 38px;
    font-size: 21px;
  }
}
#p-company .p-company__message div p {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  line-height: 1.8;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-company .p-company__message div p {
    font-size: clamp(17px, 19.25px + -0.0025 * 100vw, 16px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-company .p-company__message div p {
    font-size: clamp(16px, 14.6764705882px + 0.0015 * 100vw, 17px);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message div p {
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message div p {
    font-size: clamp(15px, 18.085106383px + -0.0053 * 100vw, 14px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__message div p {
    font-size: 14px;
    line-height: 1.8;
  }
}
#p-company .p-company__message div p:last-of-type {
  color: #001E4D;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message div p:last-of-type {
    position: absolute;
    bottom: -250px;
    left: 100px;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message div p:last-of-type {
    font-size: 14px;
    bottom: -54%;
    left: 17%;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__message div p:last-of-type {
    font-size: 12px;
    bottom: -40%;
    left: 15%;
  }
}
@media screen and (max-width: 441px) {
  #p-company .p-company__message div p:last-of-type {
    font-size: 12px;
    bottom: -25%;
    left: 10%;
  }
}
#p-company .p-company__message div p span {
  padding-left: 0.5em;
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message div p span {
    padding-left: 0;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message div p span {
    font-size: 23px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__message div p span {
    font-size: 19px;
  }
}
#p-company .p-company__message picture {
  flex: 1;
}
@media (max-width: 1450px) and (max-width: 1210px), (max-width: 1450px) and (min-height: 900px) {
  #p-company .p-company__message picture {
    width: 100%;
    height: 100%;
    padding-left: 85px;
    margin-left: -85px;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company .p-company__message picture {
    padding-left: 50px;
    margin-left: -50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message picture {
    padding-left: 0;
    margin-left: 0;
    justify-content: center;
  }
}
#p-company .p-company__message picture img {
  max-width: 100%;
}
@media (max-width: 1450px) and (max-width: 1210px), (max-width: 1450px) and (min-height: 900px) {
  #p-company .p-company__message picture img {
    max-width: none;
    height: 100%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__message picture img {
    max-width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__message picture img {
    width: 60%;
  }
}
#p-company .p-company__vision h4 {
  padding-bottom: 18px;
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-company .p-company__vision h4 {
    font-size: clamp(28px, 37px + -0.01 * 100vw, 24px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-company .p-company__vision h4 {
    font-size: clamp(24px, 18.7058823529px + 0.0059 * 100vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__vision h4 {
    font-size: clamp(21px, 11.7446808511px + 0.016 * 100vw, 24px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__vision h4 {
    font-size: 21px;
    line-height: 1.4;
  }
}
#p-company .p-company__vision p {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  line-height: 1.8;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-company .p-company__vision p {
    font-size: clamp(17px, 19.25px + -0.0025 * 100vw, 16px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-company .p-company__vision p {
    font-size: clamp(16px, 14.6764705882px + 0.0015 * 100vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__vision p {
    font-size: clamp(15px, 18.085106383px + -0.0053 * 100vw, 14px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__vision p {
    font-size: 14px;
  }
}
#p-company .p-company__policy div:first-of-type {
  padding-bottom: 40px;
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:first-of-type {
    flex-flow: column nowrap;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__policy div:first-of-type {
    gap: 20px;
  }
}
#p-company .p-company__policy div:first-of-type p {
  width: 50%;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-company .p-company__policy div:first-of-type p {
    font-size: clamp(21px, 30px + -0.01 * 100vw, 17px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-company .p-company__policy div:first-of-type p {
    font-size: clamp(17px, 11.7058823529px + 0.0059 * 100vw, 21px);
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:first-of-type p {
    width: 100%;
    font-size: clamp(14px, 4.7446808511px + 0.016 * 100vw, 17px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__policy div:first-of-type p {
    font-size: 14px;
  }
}
#p-company .p-company__policy div:first-of-type p::before {
  content: "● ";
  font-size: 17px;
  color: #FFBE43;
}
#p-company .p-company__policy div:first-of-type p + p {
  margin-top: 0;
}
#p-company .p-company__policy div:last-of-type {
  display: flex;
  flex-flow: row wrap;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:last-of-type {
    flex-flow: column nowrap;
    gap: 20px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__policy div:last-of-type {
    gap: 10px;
  }
}
#p-company .p-company__policy div:last-of-type dl {
  width: calc((100% - 30px) / 2);
  margin: 0;
  display: flex;
  flex-flow: column nowrap;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:last-of-type dl {
    width: 100%;
  }
}
#p-company .p-company__policy div:last-of-type dl dt {
  height: 46px;
  padding: 10px 0 10px 24px;
  font-size: 21px;
  font-weight: 600;
  background-color: #001E4D;
  color: #fff;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:last-of-type dl dt {
    height: 36px;
    padding: 7px 0 7px 17px;
    font-size: 17px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__policy div:last-of-type dl dt {
    height: 26px;
    padding: 4px 0 4px 10px;
    font-size: 14px;
  }
}
#p-company .p-company__policy div:last-of-type dl dd {
  display: block;
  padding: 15px 25px;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  background-color: #fff;
  color: #333333;
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__policy div:last-of-type dl dd {
    padding: 12px 12px 17px;
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__policy div:last-of-type dl dd {
    padding: 10px;
    font-size: 12px;
  }
}
#p-company .p-company__profile {
  display: flex;
  flex-flow: column nowrap;
}
#p-company .p-company__profile .p-company__profileitem {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__profile .p-company__profileitem {
    flex-flow: column nowrap;
    gap: 10px;
  }
}
#p-company .p-company__profile .p-company__profileitem div {
  width: calc((100% - 30px) / 2);
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__profile .p-company__profileitem div {
    width: 100%;
  }
}
#p-company .p-company__profile .p-company__profileitem div dl {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
#p-company .p-company__profile .p-company__profileitem div dl dt {
  width: 112px;
  padding: 9px 0 9px 11px;
  background-color: #fff;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__profile .p-company__profileitem div dl dt {
    padding: 0;
    justify-content: center;
  }
}
#p-company .p-company__profile .p-company__profileitem div dl dd {
  width: calc(100% - 112px);
  padding: 9px 6px;
  background-color: #fff;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__profile .p-company__profileitem div dl dd {
    padding: 9px 10px;
  }
}
#p-company .p-company__profile .p-company__profileitem div dl dd img {
  max-width: 100%;
  height: auto;
}
#p-company .p-company__history {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
#p-company .p-company__history dl {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
#p-company .p-company__history dl dt {
  width: 112px;
  padding: 9px 0 9px 11px;
  background-color: #fff;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__history dl dt {
    padding: 0;
    justify-content: center;
  }
}
#p-company .p-company__history dl dd {
  width: calc(100% - 112px);
  padding: 9px 0 7px 6px;
  background-color: #fff;
  line-height: 1.8;
}
#p-company .p-company__office {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__office {
    flex-flow: column nowrap;
    gap: 10px;
  }
}
#p-company .p-company__office div {
  width: calc((100% - 30px) / 2);
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__office div {
    width: 100%;
  }
}
#p-company .p-company__office div dl {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
#p-company .p-company__office div dl dt {
  width: 112px;
  padding: 9px 0 9px 11px;
  background-color: #fff;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__office div dl dt {
    padding: 0;
    justify-content: center;
  }
}
#p-company .p-company__office div dl dd {
  width: calc(100% - 112px);
  padding: 9px 0 9px 6px;
  background-color: #fff;
  line-height: 1.8;
}
#p-company .p-company__factory .p-company__factoryitem {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__factory .p-company__factoryitem {
    flex-flow: column nowrap;
    gap: 20px;
  }
}
#p-company .p-company__factory .p-company__factoryitem picture {
  width: 50%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__factory .p-company__factoryitem picture {
    width: 100%;
  }
}
#p-company .p-company__factory .p-company__factoryitem picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#p-company .p-company__factory .p-company__factoryitem div {
  width: 50%;
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__factory .p-company__factoryitem div {
    width: 100%;
  }
}
#p-company .p-company__factory .p-company__factoryitem div dl {
  margin: 0;
  display: flex;
  flex-flow: row nowrap;
  gap: 5px;
}
#p-company .p-company__factory .p-company__factoryitem div dl dt {
  width: 112px;
  padding: 9px 0 9px 11px;
  background-color: #fff;
  line-height: 1.8;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__factory .p-company__factoryitem div dl dt {
    padding: 0;
    justify-content: center;
    text-align: center;
  }
}
#p-company .p-company__factory .p-company__factoryitem div dl dd {
  width: calc(100% - 112px);
  padding: 9px 0 9px 6px;
  background-color: #fff;
  line-height: 1.8;
}
#p-company .p-company__factory .p-company__factoryitem div dl dd ul li {
  text-indent: -1em;
  padding-left: 1em;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__factory .p-company__factoryitem div dl dd ul li {
    font-size: 13px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__factory .p-company__factoryitem div dl dd ul li {
    font-size: 12px;
  }
}
#p-company .p-company__factory .p-company__factoryitem div dl:nth-of-type(4) dd ul li::before {
  content: "・";
}
#p-company .p-company__settlement {
  display: flex;
  flex-flow: column nowrap;
  gap: 10px;
  align-items: center;
}
#p-company .p-company__settlement li {
  width: 66%;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__settlement li {
    width: 100%;
  }
}
#p-company .p-company__settlement li a {
  width: 100%;
  margin-top: 0;
}
#p-company .p-company__settlement li:last-of-type {
  padding-top: 20px;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__settlement li:last-of-type {
    padding-top: 10px;
    flex-flow: column nowrap;
    align-items: center;
    gap: 10px;
  }
}
#p-company .p-company__settlement li:last-of-type a {
  width: fit-content;
  height: fit-content;
  border: none;
  background-color: transparent;
  color: #333333;
  display: block;
}
#p-company .p-company__settlement li:last-of-type a::before {
  display: none;
}
#p-company .p-company__settlement li:last-of-type p {
  font-size: 17px;
  font-weight: 500;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__settlement li:last-of-type p {
    font-size: 14px;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__settlement li:last-of-type p {
    font-size: 11px;
  }
}
#p-company .p-company__art {
  width: 100%;
}
#p-company .p-company__art img {
  width: 100%;
}
#p-company .p-company__csr {
  background-color: #fff;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-company .p-company__csr {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__csr {
    padding-left: 25px;
    padding-right: 25px;
  }
}
#p-company .p-company__csr > div {
  display: flex;
  flex-wrap: wrap;
  width: 1255px;
  margin: auto;
}
@media (max-width: 1680px) and (max-width: 1460px), (max-width: 1680px) and (min-height: 900px) {
  #p-company .p-company__csr > div {
    width: 100%;
  }
}
#p-company .p-company__csr > div > div {
  width: 284px;
  margin-right: 56px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__csr > div > div {
    width: 360px;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div > div {
    width: 100%;
    margin-right: 0;
  }
}
#p-company .p-company__csr > div > div h3 {
  font-size: 42px;
  font-weight: 600;
  color: #001E4D;
  line-height: 140%;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div > div h3 {
    text-align: center;
    font-size: clamp(21px, -14px + 0.0729 * 100vw, 42px);
  }
}
@media screen and (max-width: 580px) {
  #p-company .p-company__csr > div > div h3 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div > div h3 br {
    display: none;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__csr > div > div h3 br:nth-of-type(1) {
    display: none;
  }
}
#p-company .p-company__csr > div > div p {
  font-size: 17px;
  font-weight: 600;
  line-height: 160%;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div > div p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
#p-company .p-company__csr > div ul {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 284px - 56px);
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul {
    width: calc(100% - 360px - 56px);
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div ul {
    width: 100%;
    margin-top: 40px;
  }
}
#p-company .p-company__csr > div ul li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 30px;
}
@media (max-width: 1480px) and (max-width: 1260px), (max-width: 1480px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul li {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  #p-company .p-company__csr > div ul li {
    margin-bottom: 20px;
  }
}
#p-company .p-company__csr > div ul li:nth-of-type(3n) {
  margin-right: 0;
}
@media (max-width: 1480px) and (max-width: 1260px), (max-width: 1480px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul li:nth-of-type(3n) {
    margin-right: 30px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media (max-width: 1480px) and (max-width: 1260px), (max-width: 1480px) and (min-height: 900px) {
  #p-company .p-company__csr > div ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
#p-company .p-company__csr > div ul li figure img {
  width: 100%;
}
#p-company .p-company__csr > div ul li figure figcaption {
  margin-top: 10px;
  font-size: 14px;
  text-align: center;
  line-height: 140%;
}
#p-company #p-company__accounts {
  padding: 84px 85px 120px;
  margin-bottom: 0;
}
@media screen and (max-width: 580px) {
  #p-company #p-company__accounts {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 1400px) and (max-width: 1200px), screen and (max-width: 1400px) and (min-height: 900px) {
  #p-company #p-company__accounts h2 {
    height: 108px;
    padding-right: 17px;
    top: -54px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company #p-company__accounts h2 {
    height: 88px;
    top: -44px;
  }
}
@media screen and (max-width: 1155px) {
  #p-company #p-company__accounts h2 {
    height: 108px;
    top: -54px;
  }
}
@media screen and (max-width: 900px) {
  #p-company #p-company__accounts h2 {
    height: 88px;
    top: -44px;
  }
}
@media screen and (max-width: 450px) {
  #p-company #p-company__accounts h2 {
    height: 108px;
    top: -54px;
  }
}
#p-company .p-company__pcbr {
  display: none;
}
@media screen and (max-width: 1400px) and (max-width: 1200px), screen and (max-width: 1400px) and (min-height: 900px) {
  #p-company .p-company__pcbr {
    display: block;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-company .p-company__pcbr {
    display: none;
  }
}
@media screen and (max-width: 1155px) {
  #p-company .p-company__pcbr {
    display: block;
  }
}
@media screen and (max-width: 900px) {
  #p-company .p-company__pcbr {
    display: none;
  }
}
@media screen and (max-width: 450px) {
  #p-company .p-company__pcbr {
    display: block;
  }
}

/**
* 業務案内
*/
.p-department__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-department__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-department__title {
    padding-left: 25px;
  }
}
.p-department__title h1 div::after {
  border-top: 1px solid #001E4D;
}
.p-department__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-department__title h1 p {
  color: #001E4D;
}

.p-department {
  margin-bottom: 40px;
}
@media (max-width: 580px) {
  .p-department {
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .p-department.--quaternary .p-department__description {
    padding-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .p-department.--quaternary .p-department__description {
    padding-bottom: 40px;
  }
}
.p-department .p-department__header {
  display: grid;
  grid-template-areas: "title picture" "content picture";
  grid-template-columns: 43.8% 1fr;
  grid-template-rows: 88px 1fr;
  background-color: #051622;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__header {
    grid-template-areas: "title" "picture" "content";
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr auto;
  }
}
.p-department .p-department__header .p-department__subtitle {
  grid-area: title;
  background-color: #001E4D;
  padding: 15px 0 15px 85px;
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__subtitle {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-department .p-department__header .p-department__subtitle {
    padding-left: 25px;
  }
}
.p-department .p-department__header .p-department__subtitle h2 {
  display: flex;
  align-items: center;
}
.p-department .p-department__header .p-department__subtitle h2::after {
  content: none;
}
.p-department .p-department__header .p-department__subtitle h2 svg {
  top: 2px;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__subtitle h2 svg {
    width: 52px;
  }
}
.p-department .p-department__header .p-department__subtitle h2 div {
  background-color: #001E4D;
}
.p-department .p-department__header .p-department__subtitle h2 div::before {
  content: "";
  top: 7px;
  height: 50px;
  transform: rotate(15deg);
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__subtitle h2 div::before {
    top: 5px;
  }
}
.p-department .p-department__header .p-department__subtitle h2 div p {
  margin-bottom: 2px;
}
@media (max-width: 1360px) and (max-width: 1040px) {
  .p-department .p-department__header .p-department__subtitle h2 div p {
    font-size: clamp(24px, -8.1428571429px + 0.0357 * 100vw, 29px);
  }
}
@media (max-width: 1360px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__subtitle h2 div p {
    font-size: clamp(24px, -19.5714285714px + 0.0357 * 100vw, 29px);
  }
}
@media (max-width: 900px) {
  .p-department .p-department__header .p-department__subtitle h2 div p {
    margin-bottom: 5px;
  }
}
@media (max-width: 768px) {
  .p-department .p-department__header .p-department__subtitle h2 div p {
    font-size: clamp(21px, 16px + 0.0104 * 100vw, 24px);
  }
}
@media (max-width: 1360px) and (max-width: 1040px) {
  .p-department .p-department__header .p-department__subtitle h2 div span {
    font-size: clamp(18px, -1.2857142857px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 1360px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__subtitle h2 div span {
    font-size: clamp(18px, -8.1428571429px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 768px) {
  .p-department .p-department__header .p-department__subtitle h2 div span {
    font-size: clamp(15px, 10px + 0.0104 * 100vw, 18px);
  }
}
.p-department .p-department__header .p-department__content {
  grid-area: content;
  padding: 33px 72px 35px 85px;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__content {
    padding: 33px 50px 35px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__content {
    padding: 33px 50px 35px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-department .p-department__header .p-department__content {
    padding: 25px 25px 25px 25px;
  }
}
.p-department .p-department__header .p-department__content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 150%;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-department .p-department__header .p-department__content h3 {
    font-size: clamp(24px, 15px + 0.01 * 100vw, 28px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__content h3 {
    font-size: clamp(24px, 12.2px + 0.01 * 100vw, 28px);
  }
}
@media (max-width: 768px) {
  .p-department .p-department__header .p-department__content h3 {
    font-size: clamp(21px, 16px + 0.0104 * 100vw, 24px);
  }
}
.p-department .p-department__header .p-department__content em {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  height: 24px;
  padding-left: 5px;
  margin: 22px 0 17px 0;
  background-color: #fff;
  box-sizing: border-box;
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: #001E4D;
}
.p-department .p-department__header .p-department__content p {
  font-style: normal;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 150%;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-department .p-department__header .p-department__content p {
    font-size: clamp(14px, 9.5px + 0.005 * 100vw, 16px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-department .p-department__header .p-department__content p {
    font-size: clamp(14px, 8.1px + 0.005 * 100vw, 16px);
  }
}
.p-department .p-department__header picture {
  grid-area: picture;
  position: relative;
  display: block;
  overflow: hidden;
}
.p-department .p-department__header picture::before {
  content: "";
  display: block;
  padding-top: 46%;
}
.p-department .p-department__header picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 120%;
  height: auto;
  margin: auto;
}
@media (max-width: 1640px) and (max-width: 1300px), (max-width: 1640px) and (min-height: 900px) {
  .p-department .p-department__header picture img {
    width: 140%;
  }
}
@media (max-width: 1480px) and (max-width: 1140px), (max-width: 1480px) and (min-height: 900px) {
  .p-department .p-department__header picture img {
    width: 160%;
  }
}
@media (max-width: 1300px) and (max-width: 960px), (max-width: 1300px) and (min-height: 900px) {
  .p-department .p-department__header picture img {
    width: 180%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__header picture img {
    width: 100%;
  }
}
.p-department .p-department__description {
  display: flex;
  flex-wrap: wrap;
  padding: 60px 72px 160px 72px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-department .p-department__description {
    padding: 60px 50px 160px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description {
    background-color: #051622;
    padding: 0 50px 100px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-department .p-department__description {
    padding: 0 25px 60px 25px;
  }
}
.p-department .p-department__description .p-department__note {
  width: calc(67% - 60px);
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__note {
    width: 100%;
    order: 2;
  }
}
.p-department .p-department__description .p-department__note p {
  font-size: 17px;
  font-weight: 600;
  line-height: 180%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__note p {
    color: #fff;
  }
}
@media (max-width: 768px) {
  .p-department .p-department__description .p-department__note p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-department .p-department__description .p-department__image {
  width: 33%;
  margin-left: 60px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__image {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
    order: 1;
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__image > picture {
    width: calc((100% + 40px) / 3 - 40px);
    margin-right: 20px;
    position: relative;
    display: block;
    overflow: hidden;
  }
}
@media (max-width: 480px) {
  .p-department .p-department__description .p-department__image > picture {
    width: 100%;
    margin-right: 0;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__image > picture::before {
    content: "";
    display: block;
    padding-top: 89%;
  }
}
@media (max-width: 480px) {
  .p-department .p-department__description .p-department__image > picture::before {
    content: none;
  }
}
.p-department .p-department__description .p-department__image > picture img {
  width: 100%;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__image > picture img {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    width: 115%;
    height: auto;
    margin: auto;
  }
}
@media (max-width: 480px) {
  .p-department .p-department__description .p-department__image > picture img {
    width: 100%;
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
}
.p-department .p-department__description .p-department__image > div {
  display: flex;
  margin-top: 20px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-department .p-department__description .p-department__image > div {
    width: calc(100% - ((100% + 40px) / 3 - 20px));
    margin-top: 0;
  }
}
@media (max-width: 480px) {
  .p-department .p-department__description .p-department__image > div {
    width: 100%;
    margin-top: 20px;
  }
}
.p-department .p-department__description .p-department__image > div picture {
  width: calc((99.9% - 20px) / 2);
}
.p-department .p-department__description .p-department__image > div picture:nth-of-type(1) {
  margin-right: 20px;
}
.p-department .p-department__description .p-department__image > div picture img {
  width: 100%;
}

/**
* PC製品技術
*/
.p-technology__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 72px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-technology__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology__title {
    padding-left: 25px;
  }
}
.p-technology__title h1 div::after {
  border-top: 1px solid #001E4D;
}
.p-technology__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-technology__title h1 p {
  color: #001E4D;
}

.p-technology__intro > picture img {
  width: 100%;
}
.p-technology__intro > h2 {
  padding: 0 72px 0 140px;
  width: calc(100% - 72px);
  margin: 70px 0;
  font-size: 42px;
  font-weight: 600;
  color: #001E4D;
  line-height: 120%;
  position: relative;
  left: 72px;
}
@media (max-width: 1600px) and (max-width: 1340px) {
  .p-technology__intro > h2 {
    font-size: clamp(28px, -0.6363636364px + 0.0318 * 100vw, 42px);
  }
}
@media (max-width: 1600px) and (min-height: 900px) {
  .p-technology__intro > h2 {
    font-size: clamp(28px, -8.9090909091px + 0.0318 * 100vw, 42px);
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > h2 {
    left: 50px;
    margin: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .p-technology__intro > h2 {
    padding: 0;
    text-align: center;
    line-height: 160%;
    font-size: clamp(21px, 9.3333333333px + 0.0243 * 100vw, 28px);
  }
}
@media screen and (max-width: 580px) {
  .p-technology__intro > h2 {
    width: 100%;
    left: 0;
  }
}
.p-technology__intro > h2 svg {
  position: absolute;
  left: 0;
  top: 6px;
  display: block;
  width: 105px;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-technology__intro > h2 svg {
    display: none;
  }
}
.p-technology__intro > h2 .p-technology__intro__br1 {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-technology__intro > h2 .p-technology__intro__br1 {
    display: inline;
  }
}
@media screen and (max-width: 340px) {
  .p-technology__intro > h2 .p-technology__intro__br1 {
    display: none;
  }
}
@media (max-width: 1600px) and (max-width: 1340px), (max-width: 1600px) and (min-height: 900px) {
  .p-technology__intro > h2 .p-technology__intro__br2 {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-technology__intro > h2 .p-technology__intro__br2 {
    display: inline;
  }
}
@media screen and (max-width: 340px) {
  .p-technology__intro > h2 .p-technology__intro__br2 {
    display: none;
  }
}
.p-technology__intro > div {
  display: grid;
  grid-template-areas: "image text" "image banner";
  grid-template-columns: 50% 50%;
  grid-template-rows: auto 1fr;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div {
    grid-template-areas: "text" "image" "banner";
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
  }
}
.p-technology__intro > div > picture {
  grid-area: image;
  position: relative;
  display: block;
  overflow: hidden;
}
.p-technology__intro > div > picture::before {
  content: "";
  display: block;
  padding-top: 46%;
}
.p-technology__intro > div > picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: auto;
  height: 100%;
  margin: auto;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology__intro > div > picture img {
    left: auto;
    right: -300px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > picture img {
    left: -50%;
    right: -50%;
    width: 100%;
    height: auto;
  }
}
.p-technology__intro > div > p {
  grid-area: text;
  font-size: 17px;
  font-weight: 600;
  line-height: 180%;
  padding: 0 75px 145px 60px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology__intro > div > p {
    padding-right: 40px;
    padding-left: 40px;
    padding-bottom: 100px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > p {
    padding-bottom: 40px;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology__intro > div > p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media screen and (max-width: 580px) {
  .p-technology__intro > div > p {
    padding-right: 25px;
    padding-left: 25px;
  }
}
.p-technology__intro > div > div {
  grid-area: banner;
  background-color: #E8E8E8;
  padding: 0 75px 0 60px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology__intro > div > div {
    padding: 0 40px 0 40px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div {
    padding: 40px 50px;
    margin-bottom: 40px;
    background-color: #051622;
  }
}
@media screen and (max-width: 580px) {
  .p-technology__intro > div > div {
    padding-right: 25px;
    padding-left: 25px;
    margin-bottom: 20px;
  }
}
.p-technology__intro > div > div figure {
  position: relative;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  bottom: 60px;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology__intro > div > div figure {
    bottom: 40px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div figure {
    bottom: auto;
    border: 1px solid #fff;
  }
}
.p-technology__intro > div > div figure figcaption {
  background-color: #051622;
  padding: 26px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .p-technology__intro > div > div figure figcaption {
    padding: 18px;
  }
}
.p-technology__intro > div > div figure figcaption h3 {
  font-size: 21px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-technology__intro > div > div figure figcaption h3 {
    font-size: clamp(12px, -0.2727272727px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-technology__intro > div > div figure figcaption h3 {
    font-size: clamp(12px, -4.2272727273px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-technology__intro > div > div figure figcaption h3 {
    font-size: clamp(12px, 1.7142857143px + 0.0214 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-technology__intro > div > div figure figcaption h3 {
    font-size: clamp(12px, -5.5714285714px + 0.0214 * 100vw, 21px);
  }
}
.p-technology__intro > div > div figure figcaption p {
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1850px) and (max-width: 1560px) {
  .p-technology__intro > div > div figure figcaption p {
    font-size: clamp(18px, 9.8181818182px + 0.0091 * 100vw, 24px);
  }
}
@media (max-width: 1850px) and (min-height: 900px) {
  .p-technology__intro > div > div figure figcaption p {
    font-size: clamp(18px, 7.1818181818px + 0.0091 * 100vw, 24px);
  }
}
@media (max-width: 1240px) and (max-width: 900px) {
  .p-technology__intro > div > div figure figcaption p {
    font-size: clamp(18px, 11.1428571429px + 0.0143 * 100vw, 24px);
  }
}
@media (max-width: 1240px) and (min-height: 900px) {
  .p-technology__intro > div > div figure figcaption p {
    font-size: clamp(18px, 6.2857142857px + 0.0143 * 100vw, 24px);
  }
}
@media screen and (max-width: 580px) {
  .p-technology__intro > div > div figure figcaption p {
    line-height: 140%;
  }
}
.p-technology__intro > div > div figure figcaption p br {
  display: none;
}
@media screen and (max-width: 580px) {
  .p-technology__intro > div > div figure figcaption p br {
    display: inline;
  }
}
.p-technology__intro > div > div figure picture {
  width: 100%;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div figure picture {
    position: relative;
    display: block;
    overflow: hidden;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div figure picture::before {
    content: "";
    display: block;
    padding-top: 36%;
  }
}
@media screen and (max-width: 1300px) and (max-width: 1100px) and (max-width: 580px), screen and (max-width: 1300px) and (min-height: 900px) and (max-width: 580px) {
  .p-technology__intro > div > div figure picture::before {
    padding-top: 46%;
  }
}
.p-technology__intro > div > div figure picture img {
  width: 100%;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div figure picture img {
    position: absolute;
    top: -50%;
    bottom: -50%;
    left: -50%;
    right: -50%;
    height: auto;
    margin: auto;
  }
}
.p-technology__intro > div > div figure > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 320px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  position: absolute;
  left: 20px;
  bottom: 20px;
}
@media screen and (max-width: 480px) {
  .p-technology__intro > div > div figure > a {
    font-size: 14px;
  }
}
.p-technology__intro > div > div figure > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.p-technology__intro > div > div figure > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
.p-technology__intro > div > div figure > a:hover::before {
  left: auto;
  right: -12px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology__intro > div > div figure > a {
    max-width: 320px;
    left: -50%;
    right: -50%;
    margin: auto;
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 768px) {
  .p-technology__intro > div > div figure > a {
    font-size: clamp(12px, 3.6666666667px + 0.0174 * 100vw, 17px);
  }
}

.p-technology .p-technology__header {
  display: grid;
  grid-template-areas: "title picture" "content picture";
  grid-template-columns: 50% 50%;
  grid-template-rows: 88px 1fr;
  background-color: #051622;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology .p-technology__header {
    grid-template-areas: "title" "picture" "content";
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr auto;
  }
}
.p-technology .p-technology__header .p-technology__subtitle {
  grid-area: title;
  background-color: #001E4D;
  padding: 20px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology .p-technology__header .p-technology__subtitle {
    padding-left: 25px;
  }
}
.p-technology .p-technology__header .p-technology__subtitle h2 {
  display: flex;
  align-items: flex-start;
  min-height: 50px;
}
.p-technology .p-technology__header .p-technology__subtitle h2::after {
  content: none;
}
.p-technology .p-technology__header .p-technology__subtitle h2 svg {
  top: 2px;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 svg {
    top: 0;
    width: 52px;
  }
}
.p-technology .p-technology__header .p-technology__subtitle h2 div {
  background-color: #001E4D;
}
.p-technology .p-technology__header .p-technology__subtitle h2 div::before {
  content: "";
  top: 0;
  height: 95%;
  transform: rotate(15deg);
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div::before {
    top: 0;
  }
}
.p-technology .p-technology__header .p-technology__subtitle h2 div p {
  line-height: 1;
  position: relative;
  top: -3px;
  margin-bottom: 3px;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div p {
    margin-bottom: 5px;
    top: -1px;
  }
}
@media (max-width: 768px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div p {
    font-size: clamp(21px, 16px + 0.0104 * 100vw, 24px);
  }
}
.p-technology .p-technology__header .p-technology__subtitle h2 div span {
  line-height: 1;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 768px) {
  .p-technology .p-technology__header .p-technology__subtitle h2 div span {
    font-size: clamp(15px, 10px + 0.0104 * 100vw, 18px);
  }
}
.p-technology .p-technology__header .p-technology__content {
  grid-area: content;
  padding: 33px 72px 35px 72px;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__content {
    padding: 33px 50px 35px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__content {
    padding: 33px 50px 35px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology .p-technology__header .p-technology__content {
    padding: 25px 25px 25px 25px;
  }
}
.p-technology .p-technology__header .p-technology__content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 150%;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology .p-technology__header .p-technology__content h3 {
    font-size: clamp(23px, 1.1818181818px + 0.0227 * 100vw, 28px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__content h3 {
    font-size: clamp(23px, -4.7272727273px + 0.0227 * 100vw, 28px);
  }
}
@media (max-width: 768px) {
  .p-technology .p-technology__header .p-technology__content h3 {
    font-size: clamp(21px, 17.6666666667px + 0.0069 * 100vw, 23px);
  }
}
.p-technology .p-technology__header .p-technology__content p {
  font-style: normal;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 180%;
  margin-top: 9.7%;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-technology .p-technology__header .p-technology__content p {
    font-size: clamp(14px, 9.5px + 0.005 * 100vw, 16px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__content p {
    font-size: clamp(14px, 8.1px + 0.005 * 100vw, 16px);
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology .p-technology__header .p-technology__content p {
    margin-top: 30px;
    line-height: 160%;
  }
}
.p-technology .p-technology__header picture {
  grid-area: picture;
  position: relative;
  display: block;
  overflow: hidden;
}
.p-technology .p-technology__header picture::before {
  content: "";
  display: block;
  padding-top: 46%;
}
.p-technology .p-technology__header picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: auto;
  margin: auto;
}
@media (max-width: 1900px) and (max-width: 1640px), (max-width: 1900px) and (min-height: 900px) {
  .p-technology .p-technology__header picture img {
    width: 110%;
  }
}
@media (max-width: 1800px) and (max-width: 1540px), (max-width: 1800px) and (min-height: 900px) {
  .p-technology .p-technology__header picture img {
    width: auto;
    height: 100%;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology .p-technology__header picture img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .p-technology.--features .p-technology__subtitle h2 div span {
    font-size: 16px;
  }
}
@media screen and (max-width: 440px) {
  .p-technology.--features .p-technology__subtitle h2 div span {
    font-size: 14px;
    letter-spacing: -1px;
  }
}
@media screen and (max-width: 360px) {
  .p-technology.--features .p-technology__subtitle h2 div span {
    font-size: 13px;
  }
}
@media screen and (max-width: 340px) {
  .p-technology.--features .p-technology__subtitle h2 div span {
    font-size: 12px;
  }
}
@media screen and (max-width: 325px) {
  .p-technology.--features .p-technology__subtitle h2 div span {
    letter-spacing: -1.5px;
  }
}
@media screen and (max-width: 450px) {
  .p-technology.--features .p-technology__content h3 {
    font-size: 20px;
  }
}
.p-technology.--features .p-technology__content h3 br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__content h3 br {
    display: inline;
  }
}
@media (max-width: 350px) {
  .p-technology.--features .p-technology__content h3 br {
    display: none;
  }
}
.p-technology.--features .p-technology__detail {
  padding: 60px 72px 160px 72px;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail {
    padding: 60px 50px 60px 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail {
    padding: 40px 25px 60px 25px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__opener {
  position: absolute;
  right: -50%;
  left: -50%;
  bottom: -28px;
  margin: auto;
  width: 70px;
  height: 55px;
  cursor: pointer;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__opener {
    height: 21px;
    bottom: -12px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__opener::after {
  content: "";
  position: absolute;
  right: -50%;
  left: -50%;
  bottom: 0;
  margin: auto;
  width: 1px;
  height: 100%;
  background-color: #001E4D;
}
.p-technology.--features .p-technology__detail .p-technology__opener.--active {
  bottom: -70px;
  height: 95px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__opener.--active {
    height: 61px;
    bottom: -51px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__opener.--active::before {
  content: "閉じる";
  position: absolute;
  right: -50%;
  left: -50%;
  bottom: 0;
  margin: auto;
  height: 40px;
  width: 100%;
  background-color: #fff;
  text-align: center;
  padding-top: 10px;
  font-size: clamp(12px, 2px + 0.0208 * 100vw, 18px);
  z-index: 1;
}
.p-technology.--features .p-technology__detail .p-technology__distribute .p-technology__opener,
.p-technology.--features .p-technology__detail .p-technology__stress .p-technology__opener {
  display: none;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute .p-technology__opener,
.p-technology.--features .p-technology__detail .p-technology__stress .p-technology__opener {
    display: block;
  }
}
.p-technology.--features .p-technology__detail .p-technology__distribute > div,
.p-technology.--features .p-technology__detail .p-technology__stress > div {
  overflow: hidden;
}
.p-technology.--features .p-technology__detail .p-technology__distribute h3,
.p-technology.--features .p-technology__detail .p-technology__stress h3 {
  width: 100%;
  height: 44px;
  background-color: #001E4D;
  font-size: 21px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute h3,
.p-technology.--features .p-technology__detail .p-technology__stress h3 {
    height: 50px;
    background-color: #fff;
    color: #001E4D;
    border: 1px solid #001E4D;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute h3,
.p-technology.--features .p-technology__detail .p-technology__stress h3 {
    font-size: clamp(14px, 2.3333333333px + 0.0243 * 100vw, 21px);
  }
}
@media screen and (max-width: 340px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute h3,
.p-technology.--features .p-technology__detail .p-technology__stress h3 {
    letter-spacing: -1px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul {
  box-sizing: border-box;
  border-left: 1px solid #001E4D;
  border-right: 1px solid #001E4D;
  border-bottom: 1px solid #001E4D;
  display: flex;
  flex-wrap: wrap;
  padding: 60px 86px 48px 86px;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul {
    padding: 52px 70px 0 70px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul {
    padding: 20px 8px 0 8px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul > li {
  width: calc((99.9% - 86px) / 3);
  margin-right: 43px;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li {
    width: calc((99.9% - 40px) / 3);
    margin-right: 20px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul > li:last-child {
  margin-right: 0;
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 {
  text-align: center;
  background-color: #F4F4F4;
  margin-bottom: 21px;
  width: 100%;
  height: 28px;
  position: relative;
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 span {
  position: relative;
  bottom: -3px;
  font-size: 21px;
  font-weight: 600;
  color: #333333;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 span {
    font-size: clamp(14px, -1.75px + 0.0175 * 100vw, 21px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 span {
    font-size: clamp(14px, -6.65px + 0.0175 * 100vw, 21px);
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 span {
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li h4 span {
    font-size: clamp(14px, 2.3333333333px + 0.0243 * 100vw, 21px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__distribute ul > li picture img {
  width: 100%;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__distribute ul > li picture img {
    max-width: 350px;
    margin: auto;
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress {
  margin-top: 60px;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div {
  padding: 52px 70px 110px 70px;
  box-sizing: border-box;
  border-left: 1px solid #001E4D;
  border-right: 1px solid #001E4D;
  border-bottom: 1px solid #001E4D;
  display: grid;
  column-gap: 42px;
  grid-template-areas: "h4_1 h4_2" "p_1 p_2" "h5_1 h5_2" "ol_1 ol_2";
  grid-template-columns: calc((99.9% - 42px) / 2) calc((99.9% - 42px) / 2);
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div {
    padding: 20px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h4 {
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  margin-bottom: 16px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div h4 {
    background-color: #001E4D;
    padding: 10px 0;
    text-align: center;
    color: #fff;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div h4 {
    font-size: clamp(18px, 1.3333333333px + 0.0347 * 100vw, 28px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h4:nth-of-type(1) {
  grid-area: h4_1;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h4:nth-of-type(2) {
  grid-area: h4_2;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div h4:nth-of-type(2) {
    margin-top: 40px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div p {
  font-size: 17px;
  margin-bottom: 16px;
  line-height: 180%;
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div p:nth-of-type(1) {
  grid-area: p_1;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div p:nth-of-type(2) {
  grid-area: p_2;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h5 {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  background-color: #F4F4F4;
  width: 100%;
  height: 30px;
  padding: 0 10px;
  margin-bottom: 20px;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div h5 {
    margin-top: 20px;
    padding: 10px;
    height: auto;
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div h5 {
    font-size: clamp(16px, 7.6666666667px + 0.0174 * 100vw, 21px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h5:nth-of-type(1) {
  grid-area: h5_1;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div h5:nth-of-type(2) {
  grid-area: h5_2;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol:nth-of-type(1) {
  grid-area: ol_1;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol:nth-of-type(2) {
  grid-area: ol_2;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li {
  position: relative;
  padding-left: 20px;
  line-height: 160%;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li {
    font-size: clamp(12px, 5.3333333333px + 0.0139 * 100vw, 16px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li::before {
  position: absolute;
  left: 0;
  top: 0;
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li:nth-of-type(1)::before {
  content: "①";
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li:nth-of-type(2)::before {
  content: "②";
}
.p-technology.--features .p-technology__detail .p-technology__stress > div > div ol li:nth-of-type(3)::before {
  content: "③";
}
.p-technology.--features .p-technology__detail .p-technology__process {
  border-left: 1px solid #001E4D;
  border-right: 1px solid #001E4D;
  border-bottom: 1px solid #001E4D;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process {
    border-top: 1px solid #001E4D;
    margin-top: 60px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process.--active h3 {
  border-bottom: 1px solid #001E4D;
}
.p-technology.--features .p-technology__detail .p-technology__process.--active > div {
  height: auto;
}
.p-technology.--features .p-technology__detail .p-technology__process h3 {
  height: 97px;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  border-bottom: none;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process h3 {
    height: 50px;
    font-size: 21px;
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__process h3 {
    font-size: clamp(14px, 2.3333333333px + 0.0243 * 100vw, 21px);
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div {
  width: 840px;
  height: 0;
  margin: auto;
  padding: 0;
  box-sizing: border-box;
  overflow: hidden;
  transition: all 1s ease-in-out;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div {
    width: 486px;
  }
}
@media (max-width: 680px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div {
    width: 100%;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol {
  counter-reset: count;
  padding: 62px 0 60px 0;
  box-sizing: border-box;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol {
    padding-bottom: 60px;
  }
}
@media (max-width: 680px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol {
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li {
  counter-increment: count;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  padding-left: 40px;
  margin-bottom: 22px;
  position: relative;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li {
    height: auto;
    padding-left: 0;
    padding-bottom: 60px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li:last-child span::before {
  content: none;
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li:last-of-type {
  margin-bottom: 0;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li.p-technology__process__img {
    padding-bottom: 80px;
  }
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li.p-technology__process__img:last-of-type {
    padding-bottom: 0;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li::before {
  content: counter(count, decimal-leading-zero) ".";
  width: 40px;
  font-family: "Open Sans", sans-serif;
  font-size: 27px;
  font-weight: 600;
  color: #001E4D;
  line-height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li::before {
    font-size: clamp(23px, 5.5454545455px + 0.0182 * 100vw, 27px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li::before {
    font-size: clamp(23px, 0.8181818182px + 0.0182 * 100vw, 27px);
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li::before {
    font-size: clamp(15px, 1.6666666667px + 0.0278 * 100vw, 23px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li::after {
    content: "";
    position: absolute;
    top: 0;
    left: 7px;
    display: block;
    z-index: -1;
    width: 1px;
    height: 100%;
    background-color: #001E4D;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  position: relative;
  display: block;
  width: calc(100% - 486px);
  padding-bottom: 48px;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    padding-left: 40px;
    padding-bottom: 16px;
    width: 100%;
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    font-size: clamp(23px, 1.1818181818px + 0.0227 * 100vw, 28px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    font-size: clamp(23px, -4.7272727273px + 0.0227 * 100vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    font-size: clamp(15px, 1.6666666667px + 0.0278 * 100vw, 23px);
    padding-left: 33px;
  }
}
@media (max-width: 580px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    padding-left: 28px;
  }
}
@media screen and (max-width: 480px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span {
    padding-left: 23px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: -23px;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #001E4D;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span::before {
    content: none;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li span::after {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 20px;
  height: 50px;
  background-color: #fff;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span::after {
    left: 0;
    height: 48px;
  }
}
@media (max-width: 580px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li span::after {
    height: 40px;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li picture {
  position: relative;
  display: block;
  overflow: hidden;
  width: 486px;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li picture {
    overflow: visible;
  }
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li picture::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 40px;
    height: 20px;
    background-color: #fff;
  }
}
@media (max-width: 680px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li picture {
    width: 100%;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li picture::before {
  content: "";
  display: block;
  padding-top: 51%;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li picture::before {
    content: none;
  }
}
.p-technology.--features .p-technology__detail .p-technology__process > div ol li picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: auto;
  margin: auto;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--features .p-technology__detail .p-technology__process > div ol li picture img {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
  }
}
.p-technology.--product .p-technology__content ul {
  margin-top: 16px;
}
.p-technology.--product .p-technology__content ul li {
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  line-height: 140%;
  margin-bottom: 18px;
  position: relative;
  padding-left: 22px;
  box-sizing: border-box;
}
@media (max-width: 480px) {
  .p-technology.--product .p-technology__content ul li {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
.p-technology.--product .p-technology__content ul li::before {
  content: "";
  background-color: #FFBE43;
  display: block;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 480px) {
  .p-technology.--product .p-technology__content ul li::before {
    width: 15px;
    height: 15px;
    top: 2px;
  }
}
.p-technology.--product .p-technology__detail {
  background-color: #E8E8E8;
  padding: 60px 72px 150px 72px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail {
    padding: 60px 50px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology.--product .p-technology__detail {
    padding: 40px 25px 40px 25px;
  }
}
.p-technology.--product .p-technology__detail ul {
  display: flex;
  flex-wrap: wrap;
}
.p-technology.--product .p-technology__detail ul li {
  width: calc((99.9% - 60px) / 3);
  margin-right: 30px;
  margin-bottom: 24px;
}
@media (max-width: 980px) and (max-width: 768px), (max-width: 980px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail ul li {
    width: calc((99.9% - 30px) / 2);
  }
}
@media screen and (max-width: 980px) and (max-width: 580px) {
  .p-technology.--product .p-technology__detail ul li {
    width: calc((99.9% - 20px) / 2);
    margin-right: 20px;
  }
}
.p-technology.--product .p-technology__detail ul li:nth-of-type(3n) {
  margin-right: 0;
}
@media (max-width: 980px) and (max-width: 768px), (max-width: 980px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail ul li:nth-of-type(3n) {
    margin-right: 30px;
  }
}
@media screen and (max-width: 580px) {
  .p-technology.--product .p-technology__detail ul li:nth-of-type(3n) {
    margin-right: 20px;
  }
}
@media (max-width: 980px) and (max-width: 768px), (max-width: 980px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.p-technology.--product .p-technology__detail ul li figure picture img {
  width: 100%;
}
.p-technology.--product .p-technology__detail ul li figure figcaption {
  margin-top: 10px;
  font-size: 21px;
  font-weight: 600;
  text-align: center;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-technology.--product .p-technology__detail ul li figure figcaption {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail ul li figure figcaption {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 980px) and (max-width: 768px) {
  .p-technology.--product .p-technology__detail ul li figure figcaption {
    font-size: clamp(14px, 7.3333333333px + 0.0139 * 100vw, 18px);
  }
}
@media (max-width: 980px) and (min-height: 900px) {
  .p-technology.--product .p-technology__detail ul li figure figcaption {
    font-size: clamp(14px, 4px + 0.0143 * 100vw, 18px);
  }
}

/**
* 新着情報一覧
*/
.p-news__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-news__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-news__title {
    padding-left: 25px;
  }
}
.p-news__title h1 div::after {
  border-top: 1px solid #001E4D;
}
.p-news__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-news__title h1 p {
  color: #001E4D;
}

.p-news__list {
  width: 100%;
  padding: 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-news__list {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__list {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-news__list {
    padding: 0 25px 0 25px;
  }
}
.p-news__list ul {
  width: 100%;
  border-top: 1px solid #707070;
}
.p-news__list ul li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
  border-bottom: 1px solid #707070;
}
.p-news__list ul li a {
  display: flex;
  flex-wrap: wrap;
  padding: 30px 10px;
  align-items: baseline;
}
@media screen and (max-width: 480px) {
  .p-news__list ul li a {
    padding: 15px 10px;
  }
}
.p-news__list ul li a time {
  width: 110px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  line-height: 1.6;
  padding-top: 5px;
  margin-right: 10px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-news__list ul li a time {
    padding-top: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-news__list ul li a time {
    width: 100%;
    font-size: 11px;
    margin-bottom: 12px;
  }
}
.p-news__list ul li a p {
  width: calc(100% - 120px);
  text-align: left;
  font-size: 20px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .p-news__list ul li a p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__list ul li a p {
    width: 100%;
    font-size: 14px;
  }
}
.p-news__list ul li a p.p-home__news__openpdf::after {
  content: "";
  background-color: #df5656;
  display: inline-block;
  margin-left: 5px;
  height: 26px;
  width: 26px;
  -webkit-mask: url("../img/common/ico_pdf.svg");
  mask: url("../img/common/ico_pdf.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: text-bottom;
  position: relative;
  bottom: 0;
  opacity: 1;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .p-news__list ul li a p.p-home__news__openpdf::after {
    bottom: -2px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__list ul li a p.p-home__news__openpdf::after {
    height: 20px;
    width: 20px;
    bottom: -1px;
  }
}
.p-news__list ul li a:hover time {
  color: #767676;
}
.p-news__list ul li a:hover p {
  color: #767676;
}
.p-news__list ul li a:hover p.p-home__news__openpdf::after {
  opacity: 0.7;
}

.p-news__pagenavi {
  width: 100%;
  padding: 55px 85px 80px 85px;
  text-align: center;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-news__pagenavi {
    padding: 55px 50px 60px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__pagenavi {
    padding: 55px 50px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-news__pagenavi {
    padding: 40px 25px 40px 25px;
  }
}
.p-news__pagenavi div .page-numbers {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 4px;
  transition: all 0.3s ease-in-out;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-news__pagenavi div .page-numbers {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__pagenavi div .page-numbers {
    font-size: 14px;
  }
}
.p-news__pagenavi div .page-numbers::after {
  content: ".";
  font-size: inherit;
  font-weight: inherit;
  margin-left: 3px;
}
.p-news__pagenavi div .page-numbers.prev {
  margin-right: 5px;
}
.p-news__pagenavi div .page-numbers.prev::after {
  content: none;
}
.p-news__pagenavi div .page-numbers.next {
  margin-left: 5px;
}
.p-news__pagenavi div .page-numbers.next::after {
  content: none;
}
.p-news__pagenavi div .page-numbers.lastpage::after {
  content: none;
}
.p-news__pagenavi div .page-numbers:hover {
  color: #767676;
}

/*-----------------------------------
新着情報詳細
------------------------------------*/
.p-news__content {
  width: 100%;
  padding: 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-news__content {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__content {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-news__content {
    padding: 0 25px 0 25px;
  }
}
.p-news__content .p-news__herder {
  margin-bottom: 90px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__content .p-news__herder {
    margin-bottom: 43px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__herder {
    margin-bottom: 37px;
  }
}
.p-news__content .p-news__herder .c-hd__subtitle {
  min-height: 65px;
  display: flex;
  align-items: center;
}
.p-news__content .p-news__herder .c-hd__subtitle svg {
  fill: #001E4D;
  width: 65px;
}
.p-news__content .p-news__herder .c-hd__subtitle div {
  width: calc(100% - 65px);
  padding: 0 0 0 45px;
  background-color: inherit;
}
.p-news__content .p-news__herder .c-hd__subtitle div::before {
  border-left: 1px solid #001E4D;
  transform: rotate(15deg);
  height: 95%;
  left: 20px;
}
.p-news__content .p-news__herder .c-hd__subtitle div time {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 12px;
  display: block;
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__herder .c-hd__subtitle div time {
    font-size: 14px;
  }
}
.p-news__content .p-news__herder .c-hd__subtitle div p {
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  line-height: 1.2;
  word-break: break-word;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-news__content .p-news__herder .c-hd__subtitle div p {
    font-size: clamp(23px, 11.75px + 0.0125 * 100vw, 28px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-news__content .p-news__herder .c-hd__subtitle div p {
    font-size: clamp(23px, 8.25px + 0.0125 * 100vw, 28px);
  }
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__herder .c-hd__subtitle div p {
    font-size: 17px;
  }
}
.p-news__content .p-news__herder .c-hd__subtitle::after {
  content: none;
}
.p-news__content .p-news__detail {
  width: 100%;
  max-width: 720px;
  margin: 0 auto 0px auto;
}
.p-news__content .p-news__detail .p-news__image {
  overflow: hidden;
  margin-bottom: 20px;
}
.p-news__content .p-news__detail .p-news__image::before {
  content: "";
  display: block;
  padding-top: 66.667%;
}
.p-news__content .p-news__detail .p-news__image img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 110%;
  height: auto;
  margin: auto;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__content .p-news__detail .p-news__image img {
    width: 100%;
  }
}
.p-news__content .p-news__detail .p-single__editor {
  width: 100%;
  color: #333333;
  font-weight: 600;
  font-size: 17px;
  word-break: break-word;
  margin-bottom: 90px;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__content .p-news__detail .p-single__editor {
    margin-bottom: 43px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__detail .p-single__editor {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__detail .p-single__editor {
    font-size: 14px;
  }
}
.p-news__content .p-news__detail .p-single__editor a {
  color: #0000FF;
  font-weight: 600;
  font-size: 17px;
  word-break: break-word;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 480px) {
  .p-news__content .p-news__detail .p-single__editor a {
    font-size: 14px;
  }
}
.p-news__content .p-news__detail .p-single__editor a:hover {
  color: #767676;
}
.p-news__content .p-news__detail .p-single__editor p {
  word-break: break-word;
}

.p-news__pagefeed {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto;
  padding: 12px 85px 80px 85px;
  text-align: center;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-news__pagefeed {
    padding: 12px 50px 60px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-news__pagefeed {
    padding: 12px 50px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-news__pagefeed {
    padding: 12px 50px 40px 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-news__pagefeed {
    padding: 55px 50px 40px 25px;
  }
}
.p-news__pagefeed > ul {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 75px;
}
@media screen and (max-width: 480px) {
  .p-news__pagefeed > ul {
    padding-bottom: 38px;
  }
}
.p-news__pagefeed > ul li a {
  font-size: 17px;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
}
.p-news__pagefeed > ul li a:hover {
  color: #767676;
}
@media screen and (max-width: 480px) {
  .p-news__pagefeed > ul li a {
    font-size: 14px;
  }
}
.p-news__pagefeed > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #363636;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #363636;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  font-size: 17px;
  font-weight: 600;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .p-news__pagefeed > a {
    font-size: 14px;
  }
}
.p-news__pagefeed > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #363636;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.p-news__pagefeed > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #363636;
  color: #fff;
}
.p-news__pagefeed > a:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 900px) {
  .p-news__pagefeed > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .p-news__pagefeed > a {
    width: 100%;
    max-width: 300px;
  }
}
.p-news__pagefeed > a:hover {
  background-color: #001E4D;
}

/**
* 施工実績一覧
*/
.p-construction__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__title {
    padding-left: 25px;
  }
}
.p-construction__title h1 div::after {
  border-top: 1px solid #001E4D;
}
.p-construction__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-construction__title h1 p {
  color: #001E4D;
}

.p-construction__policy {
  width: 100%;
  padding: 0 85px;
  margin-bottom: 80px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__policy {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__policy {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__policy {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__policy {
    padding: 0 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__policy {
    margin-bottom: 20px;
  }
}
.p-construction__policy > div:nth-of-type(1) {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(1) {
    margin-bottom: 32px;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__policy > div:nth-of-type(1) {
    margin-bottom: 15px;
  }
}
.p-construction__policy > div:nth-of-type(1) svg {
  width: 100%;
  max-width: 105px;
  aspect-ratio: 76/68;
  margin-right: 36px;
  margin-top: 5px;
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(1) svg {
    display: none;
  }
}
.p-construction__policy > div:nth-of-type(1) h2 {
  font-size: 42px;
  font-weight: 600;
  color: #001E4D;
  line-height: 120%;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-construction__policy > div:nth-of-type(1) h2 {
    font-size: clamp(28px, 7.7894736842px + 0.0263 * 100vw, 42px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-construction__policy > div:nth-of-type(1) h2 {
    font-size: clamp(28px, 9.4705882353px + 0.0206 * 100vw, 42px);
  }
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(1) h2 {
    font-size: clamp(14px, -9.3333333333px + 0.0486 * 100vw, 28px);
    line-height: 140%;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__policy > div:nth-of-type(1) h2 {
    font-size: 14px;
    line-height: 180%;
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-construction__policy > div:nth-of-type(1) h2 br:nth-of-type(2) {
    display: none;
  }
}
@media (max-width: 1340px) and (max-height: 900px) {
  .p-construction__policy > div:nth-of-type(1) h2 br:nth-of-type(2) {
    display: none;
  }
}
@media (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(1) h2 br:nth-of-type(1) {
    display: none;
  }
}
.p-construction__policy > div:nth-of-type(2) {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(2) {
    flex-direction: column;
  }
}
.p-construction__policy > div:nth-of-type(2) em {
  width: 430px;
  display: block;
  font-size: 28px;
  font-weight: 600;
  font-style: normal;
  background-color: #001E4D;
  color: #fff;
  min-height: 120px;
  display: flex;
  align-items: center;
  line-height: 120%;
  padding: 10px 20px;
}
@media (max-width: 1580px) {
  .p-construction__policy > div:nth-of-type(2) em {
    width: 37%;
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-construction__policy > div:nth-of-type(2) em {
    font-size: clamp(24px, 18.7058823529px + 0.0059 * 100vw, 28px);
  }
}
@media (max-width: 1510px) and (min-height: 900px) {
  .p-construction__policy > div:nth-of-type(2) em br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(2) em {
    width: 100%;
    text-align: center;
    justify-content: center;
    padding: 25px 20px 20px;
    font-size: clamp(16px, 2.6666666667px + 0.0278 * 100vw, 24px);
    line-height: 160%;
  }
  .p-construction__policy > div:nth-of-type(2) em br {
    display: block;
  }
}
.p-construction__policy > div:nth-of-type(2) p {
  width: calc(100% - 430px);
  background-color: #051622;
  color: #fff;
  min-height: 120px;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  line-height: 180%;
  padding: 10px 20px;
}
@media (max-width: 1580px) {
  .p-construction__policy > div:nth-of-type(2) p {
    width: 63%;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__policy > div:nth-of-type(2) p {
    width: 100%;
    padding: 20px 20px 40px;
    font-size: clamp(12px, 3.6666666667px + 0.0174 * 100vw, 17px);
    line-height: 200%;
  }
}

.p-construction__list {
  width: 100%;
  padding: 0 85px;
  background-color: #E8E8E8;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__list {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__list {
    padding: 0 55px 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__list {
    padding: 0 25px;
  }
}
.p-construction__list ul {
  width: 100%;
  padding: 60px 0 0 0;
  display: flex;
  flex-wrap: wrap;
}
.p-construction__list ul li {
  width: calc((100% - 180px) / 4);
  position: relative;
  margin-right: 60px;
  margin-bottom: 35px;
}
.p-construction__list ul li:nth-of-type(4n) {
  margin-right: 0;
}
@media screen and (max-width: 1680px) {
  .p-construction__list ul li {
    width: calc((100% - 120px) / 3);
  }
  .p-construction__list ul li:nth-of-type(4n) {
    margin-right: 60px;
  }
  .p-construction__list ul li:nth-of-type(3n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1400px) {
  .p-construction__list ul li {
    width: calc((100% - 60px) / 2);
  }
  .p-construction__list ul li:nth-of-type(3n) {
    margin-right: 60px;
  }
  .p-construction__list ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__list ul li {
    width: calc((100% - 30px) / 2);
    margin-right: 30px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
  }
  .p-construction__list ul li:nth-of-type(3n) {
    margin-right: 30px;
  }
  .p-construction__list ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__list ul li {
    width: calc((100% - 20px) / 2);
    margin-right: 20px;
  }
  .p-construction__list ul li:nth-of-type(3n) {
    margin-right: 20px;
  }
  .p-construction__list ul li:nth-of-type(2n) {
    margin-right: 0;
  }
}
.p-construction__list ul li picture {
  width: 100%;
  height: auto;
  position: relative;
  display: block;
  overflow: hidden;
  transition: all 0.4s ease-in-out;
}
.p-construction__list ul li picture::before {
  content: "";
  display: block;
  padding-top: 79.5%;
}
.p-construction__list ul li picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 120%;
  height: auto;
  margin: auto;
}
.p-construction__list ul li > div {
  width: 85%;
  min-height: 105px;
  background-color: #fff;
  position: relative;
  padding: 30px 60px 10px 0;
  top: -25px;
}
@media screen and (max-width: 700px) {
  .p-construction__list ul li > div {
    height: 70px;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__list ul li > div {
    width: 100%;
    height: auto;
    top: initial;
    padding: 50px 0 20px 0;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
}
.p-construction__list ul li > div div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 25px;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 700px) {
  .p-construction__list ul li > div div {
    height: 50px;
  }
}
.p-construction__list ul li > div div em, .p-construction__list ul li > div div span {
  font-size: 16px;
  font-weight: 600;
  font-style: normal;
  color: #fff;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 8px;
}
@media screen and (max-width: 768px) {
  .p-construction__list ul li > div div em, .p-construction__list ul li > div div span {
    padding-left: 0;
    justify-content: center;
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .p-construction__list ul li > div div em, .p-construction__list ul li > div div span {
    width: 100%;
    height: 50%;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__list ul li > div div em, .p-construction__list ul li > div div span {
    font-size: 12px;
  }
}
.p-construction__list ul li > div div em {
  /*font-size: 14px;
  font-weight: 600;
  font-style: normal;
  display: block;
  width: 50%;
  max-width: 155px;*/
  background-color: #001E4D;
  /*@media screen and (max-width: $switch3width) {
    max-width:initial;
    padding-left: 0;
    text-align: center;
    min-height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  @media screen and (max-width: $switch4width) {
    font-size: 11px;
  }*/
}
.p-construction__list ul li > div div .p-construction__label.--pc {
  background-color: #07ACD3;
}
.p-construction__list ul li > div div .p-construction__label.--metal {
  background-color: #767676;
}
.p-construction__list ul li > div div .p-construction__label.--repair {
  background-color: #DB9000;
}
.p-construction__list ul li > div div .p-construction__label.--other {
  background-color: #FFE943;
  color: #363636;
}
.p-construction__list ul li > div p {
  font-size: 20px;
  font-weight: 600;
  color: #001E4D;
  width: 100%;
  padding-left: 15px;
  padding-top: 15px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-construction__list ul li > div p {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 25px;
    text-align: center;
    flex-grow: 1;
    font-size: clamp(14px, 4px + 0.0208 * 100vw, 20px);
    line-height: 1.7;
  }
}
@media screen and (max-width: 700px) {
  .p-construction__list ul li > div p {
    padding-bottom: 5px;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__list ul li > div p {
    font-size: 14px;
  }
}
.p-construction__list ul li > div a {
  position: absolute;
  left: 87%;
  top: calc(50% + 10px);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 31%;
  height: 32px;
  color: #051622;
  border: 1px solid #051622;
  background-color: #fff;
  transform: translateY(-50%);
  font-size: 12px;
  font-weight: 600;
  transition: all 0.4s ease-in-out;
  padding: 0 5px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-construction__list ul li > div a {
    position: static;
    width: 100%;
    max-width: 90px;
    height: 30px;
    margin: 0 auto;
    transform: initial;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__list ul li > div a {
    font-size: 11px;
  }
}
.p-construction__list ul li > div a:hover {
  background-color: #001E4D;
  color: #fff;
}

.p-construction__pagenavi {
  width: 100%;
  padding: 0 85px 70px 85px;
  text-align: center;
  background-color: #E8E8E8;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__pagenavi {
    padding: 0 50px 60px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__pagenavi {
    padding: 0 55px 60px 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-construction__pagenavi {
    padding: 20px 55px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__pagenavi {
    padding: 10px 55px 60px 25px;
  }
}
.p-construction__pagenavi div .page-numbers {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: 4px;
  transition: all 0.3s ease-in-out;
  font-family: "Open Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-construction__pagenavi div .page-numbers {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__pagenavi div .page-numbers {
    font-size: 14px;
  }
}
.p-construction__pagenavi div .page-numbers::after {
  content: ".";
  font-size: inherit;
  font-weight: inherit;
  margin-left: 3px;
}
.p-construction__pagenavi div .page-numbers.prev {
  margin-right: 5px;
}
.p-construction__pagenavi div .page-numbers.prev::after {
  content: none;
}
.p-construction__pagenavi div .page-numbers.next {
  margin-left: 5px;
}
.p-construction__pagenavi div .page-numbers.next::after {
  content: none;
}
.p-construction__pagenavi div .page-numbers.lastpage::after {
  content: none;
}
.p-construction__pagenavi div .page-numbers:hover {
  color: #767676;
}

/*-----------------------------------
新着情報詳細
------------------------------------*/
.p-construction__content {
  width: 100%;
  padding: 0 85px;
  position: relative;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__content {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__content {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__content {
    padding: 0 25px 0 25px;
  }
}
.p-construction__content .p-construction__herder {
  margin-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .p-construction__content .p-construction__herder {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__content .p-construction__herder {
    margin-bottom: 20px;
  }
}
.p-construction__content .p-construction__herder .c-hd__subtitle {
  min-height: 65px;
  display: flex;
  align-items: center;
}
.p-construction__content .p-construction__herder .c-hd__subtitle svg {
  fill: #001E4D;
  width: 65px;
  top: 3px;
}
.p-construction__content .p-construction__herder .c-hd__subtitle div {
  width: calc(100% - 65px);
  padding: 0 10px 0 45px;
  background-color: inherit;
}
.p-construction__content .p-construction__herder .c-hd__subtitle div::before {
  border-left: 1px solid #001E4D;
  transform: rotate(15deg);
  height: 95%;
  left: 20px;
}
.p-construction__content .p-construction__herder .c-hd__subtitle div span {
  font-size: 17px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 8px;
  display: block;
}
@media screen and (max-width: 480px) {
  .p-construction__content .p-construction__herder .c-hd__subtitle div span {
    font-size: 14px;
  }
}
.p-construction__content .p-construction__herder .c-hd__subtitle div p {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.4;
  color: #001E4D;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  .p-construction__content .p-construction__herder .c-hd__subtitle div p {
    font-size: clamp(23px, 11.75px + 0.0125 * 100vw, 28px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  .p-construction__content .p-construction__herder .c-hd__subtitle div p {
    font-size: clamp(23px, 8.25px + 0.0125 * 100vw, 28px);
  }
}
@media screen and (max-width: 480px) {
  .p-construction__content .p-construction__herder .c-hd__subtitle div p {
    font-size: 17px;
  }
}
.p-construction__content .p-construction__herder .c-hd__subtitle div b {
  display: block;
  margin-top: 5px;
}
.p-construction__content .p-construction__herder .c-hd__subtitle div b span {
  font-size: 16px;
  font-weight: 600;
  color: #001E4D;
  display: inline-block;
  margin-bottom: 0;
}
.p-construction__content .p-construction__herder .c-hd__subtitle div b span:nth-of-type(1) {
  margin-right: 1.5em;
}
.p-construction__content .p-construction__herder .c-hd__subtitle::after {
  content: none;
}
.p-construction__content .p-construction__herder .p-construction__label {
  width: auto;
  height: 27px;
  padding: 0 22px;
  margin-top: 15px;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  display: inline-block;
  line-height: 28px;
}
.p-construction__content .p-construction__herder .p-construction__label.--pc {
  background-color: #07ACD3;
}
.p-construction__content .p-construction__herder .p-construction__label.--metal {
  background-color: #767676;
}
.p-construction__content .p-construction__herder .p-construction__label.--repair {
  background-color: #DB9000;
}
.p-construction__content .p-construction__herder .p-construction__label.--other {
  background-color: #FFE943;
  color: #363636;
}
.p-construction__content .p-construction__detail {
  width: 100%;
  margin: 0 auto 60px auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (min-height: 900px) and (max-width: 1380px) {
  .p-construction__content .p-construction__detail {
    margin: 0 auto 40px auto;
    justify-content: center;
  }
}
@media screen and (max-height: 900px) and (max-width: 1200px) {
  .p-construction__content .p-construction__detail {
    margin: 0 auto 40px auto;
    justify-content: center;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__content .p-construction__detail {
    margin: 0 auto 0 auto;
  }
}
.p-construction__content .p-construction__detail .p-construction__overview {
  width: 100%;
  max-width: 720px;
  display: flex;
  flex-direction: column;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__image {
  overflow: hidden;
  width: calc(100% - 10px);
  margin: 0 5px;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__image::before {
  content: "";
  display: block;
  padding-top: 66.667%;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__image img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 110%;
  height: auto;
  margin: auto;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__content .p-construction__detail .p-construction__overview .p-construction__image img {
    width: 100%;
  }
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__slider {
  width: 100%;
  margin-top: 20px;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__slider .slick-slide {
  width: 100%;
  display: block;
  height: auto;
  position: relative;
  overflow: hidden;
  margin: 0 5px;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__slider .slick-slide::before {
  content: "";
  display: block;
  padding-top: 80%;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__slider .slick-slide img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: auto;
  margin: auto;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__coment {
  width: calc(100% - 10px);
  margin: 60px 5px 0 5px;
}
.p-construction__content .p-construction__detail .p-construction__overview .p-construction__coment p {
  color: #363636;
  line-height: 1.8;
  text-align: justify;
  font-weight: 600;
  font-size: 16px;
  word-break: break-word;
}
.p-construction__content .p-construction__detail > span {
  display: block;
}
@media screen and (min-height: 900px) and (max-width: 1380px) {
  .p-construction__content .p-construction__detail > span {
    display: none;
  }
}
@media screen and (max-height: 900px) and (max-width: 1200px) {
  .p-construction__content .p-construction__detail > span {
    display: none;
  }
}
.p-construction__content .p-construction__detail > span a {
  display: block;
  font-size: 17px;
  font-weight: 600;
}

.p-construction__pagefeed {
  width: 100%;
  max-width: 1255px;
  margin: 0 auto;
  padding: 20px 85px 80px 85px;
  text-align: center;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-construction__pagefeed {
    padding: 20px 50px 60px 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-construction__pagefeed {
    padding: 20px 55px 60px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-construction__pagefeed {
    padding: 20px 25px 40px 25px;
  }
}
.p-construction__pagefeed > ul {
  display: none;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 75px;
}
@media screen and (min-height: 900px) and (max-width: 1380px) {
  .p-construction__pagefeed > ul {
    display: flex;
  }
}
@media screen and (max-height: 900px) and (max-width: 1200px) {
  .p-construction__pagefeed > ul {
    display: flex;
  }
}
@media screen and (max-width: 480px) {
  .p-construction__pagefeed > ul {
    padding-bottom: 38px;
  }
}
.p-construction__pagefeed > ul li a {
  font-size: 17px;
  font-weight: 600;
}
@media screen and (max-width: 480px) {
  .p-construction__pagefeed > ul li a {
    font-size: 14px;
  }
}
.p-construction__pagefeed > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #363636;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #363636;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  font-size: 17px;
  font-weight: 600;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .p-construction__pagefeed > a {
    font-size: 14px;
  }
}
.p-construction__pagefeed > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #363636;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.p-construction__pagefeed > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #363636;
  color: #fff;
}
.p-construction__pagefeed > a:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 900px) {
  .p-construction__pagefeed > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .p-construction__pagefeed > a {
    width: 100%;
    max-width: 300px;
  }
}
.p-construction__pagefeed > a:hover {
  background-color: #001E4D;
}

/**
* スタッフインタビュー
*/
#p-interview {
  width: 100%;
  position: relative;
}
#p-interview .p-interview__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-interview .p-interview__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__title {
    padding-left: 25px;
  }
}
#p-interview .p-interview__title h1 div::after {
  border-top: 1px solid #363636;
}
#p-interview .p-interview__title h1 div span {
  color: #DB9000;
  background-color: #fff;
}
#p-interview .p-interview__title h1 p {
  color: #DB9000;
}
#p-interview .p-interview__wrapper {
  padding: 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper {
    padding: 0 25px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container {
  margin-bottom: 80px;
  background-color: #051622;
  position: relative;
}
@media screen and (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container {
    padding-bottom: 90px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container {
    margin-bottom: 30px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header {
  display: flex;
  flex-flow: row nowrap;
  gap: 40px;
  position: relative;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header {
    gap: 32px;
  }
}
@media screen and (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header {
    flex-flow: column nowrap;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header {
    gap: 24px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header {
    gap: 18px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text {
  width: 50%;
  padding: 35px 0 0 40px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text {
    padding: 35px 0 0 32px;
  }
}
@media (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text {
    width: 100%;
    padding: 35px 32px 90px 32px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text {
    padding: 35px 20px 70px 20px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text span {
  padding-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: block;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text span {
    font-size: clamp(18px, 24.75px + -0.0075 * 100vw, 15px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text span {
    font-size: clamp(15px, 11.0294117647px + 0.0044 * 100vw, 18px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text span {
    font-size: clamp(12px, 2.7446808511px + 0.016 * 100vw, 15px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text span {
    font-size: 12px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text h3 {
  font-size: 35px;
  font-weight: 600;
  color: #fff;
  line-height: 1.3;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text h3 {
    font-size: clamp(35px, 50.75px + -0.0175 * 100vw, 28px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text h3 {
    font-size: clamp(28px, 18.7352941176px + 0.0103 * 100vw, 35px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text h3 {
    font-size: clamp(21px, -0.5957446809px + 0.0372 * 100vw, 28px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text h3 {
    font-size: 21px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div {
  position: absolute;
  bottom: 100px;
}
@media (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div {
    bottom: 0;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:first-of-type {
  margin-bottom: 0.25em;
  font-size: 17px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:first-of-type {
    font-size: clamp(17px, 21.5px + -0.005 * 100vw, 15px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:first-of-type {
    font-size: clamp(15px, 10.5px + 0.005 * 100vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:first-of-type {
    font-size: clamp(12px, 2.7446808511px + 0.016 * 100vw, 15px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:first-of-type {
    font-size: 12px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:last-of-type {
  margin-top: 0;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:last-of-type {
    font-size: clamp(28px, 41.5px + -0.015 * 100vw, 22px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:last-of-type {
    font-size: clamp(22px, 14.0588235294px + 0.0088 * 100vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:last-of-type {
    font-size: clamp(16px, -2.5106382979px + 0.0319 * 100vw, 22px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header .p-interview__text div p:last-of-type {
    font-size: 16px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header picture {
  width: 50%;
  z-index: 1;
}
@media (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header picture {
    width: 100%;
    z-index: 0;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__header picture img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header picture img {
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__header picture img {
    height: 200px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion {
  height: 0;
  overflow: hidden;
  transition: all 0.7s ease-in-out;
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content {
  padding: 0 40px 0;
  display: flex;
  flex-flow: column nowrap;
  gap: 110px;
  padding-top: 50px;
  padding-bottom: 112px;
  overflow: hidden;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content {
    padding: 55px 32px 112px 32px;
    gap: 70px;
  }
}
@media screen and (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content {
    padding: 55px 32px 0 32px;
  }
}
@media (max-width: 1240px) and (max-width: 1000px), (max-width: 1240px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content {
    padding: 55px 32px 0 32px;
    gap: 70px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content {
    padding: 28px 20px 0 20px;
    gap: 32px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item {
  display: flex;
  flex-flow: row nowrap;
  gap: 40px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item {
    gap: 32px;
  }
}
@media (max-width: 1200px) and (max-width: 1000px), (max-width: 1200px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item {
    flex-flow: column nowrap;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain {
  width: 63%;
}
@media (max-width: 1200px) and (max-width: 1000px), (max-width: 1200px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain {
    width: 100%;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 {
  padding-bottom: 40px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 {
    padding-bottom: 32px;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 {
    padding-bottom: 25px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 svg {
  width: 65px;
  aspect-ratio: 47/40;
  fill: #fff;
  float: left;
  position: relative;
  top: 6px;
  left: 0;
}
@media screen and (max-width: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 svg {
    top: 5px;
    width: 52px;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 svg {
    width: 49px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 svg {
    top: 3px;
    width: 44px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div {
  padding-left: 65px;
}
@media screen and (max-width: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div {
    padding-left: 48px;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div {
    padding-left: 46px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p {
  min-height: 2.3em;
  padding-left: 54px;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  text-indent: unset;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p {
    font-size: clamp(28px, 41.5px + -0.015 * 100vw, 22px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p {
    font-size: clamp(22px, 14.0588235294px + 0.0088 * 100vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p {
    padding-left: 44px;
    font-size: clamp(16px, 6px + 0.0208 * 100vw, 22px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p {
    padding-left: 34px;
    font-size: 16px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p::before {
  content: "";
  display: block;
  width: 1px;
  height: 54px;
  border-left: 1px solid #fff;
  position: absolute;
  top: 4px;
  left: 27px;
  transform: rotate(30deg);
}
@media screen and (max-width: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p::before {
    top: 3px;
    left: 23px;
    height: 48px;
    transform: rotate(25deg);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p::before {
    top: 4px;
    left: 22px;
    height: 46px;
    transform: rotate(20deg);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain h4 div p::before {
    top: 1px;
    left: 13px;
    height: 42px;
    transform: rotate(16deg);
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p {
  font-size: 17px;
  font-weight: 600;
  color: #fff;
  line-height: 1.8;
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p {
    font-size: clamp(17px, 19.25px + -0.0025 * 100vw, 16px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p {
    font-size: clamp(16px, 14.6764705882px + 0.0015 * 100vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p {
    font-size: clamp(14px, 10.914893617px + 0.0053 * 100vw, 15px);
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p {
    font-size: 14px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item .p-interview__explain p + p {
  margin-top: 0;
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item picture {
  width: 37%;
}
@media (max-width: 1200px) and (max-width: 1000px), (max-width: 1200px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item picture {
    width: 100%;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item picture img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  z-index: 1;
}
@media (max-width: 1240px) and (max-width: 1000px), (max-width: 1240px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item picture img {
    height: 300px;
  }
}
@media screen and (max-width: 580px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__accordion .p-interview__content .p-interview__item picture img {
    height: 224px;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__more {
  padding: 10px 0 50px 40px;
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: #051622;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__more {
    padding-left: 32px;
  }
}
@media (max-width: 1240px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__more {
    padding: 0 0 30px 0;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    background-color: initial;
  }
}
@media screen and (max-width: 768px) {
  #p-interview .p-interview__wrapper .p-interview__container .p-interview__more {
    padding: 0 0 30px 0;
  }
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__more .p-interview__opener {
  width: 130px;
  padding: 8px 32px;
  border: solid 1px #fff;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  display: block;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
}
#p-interview .p-interview__wrapper .p-interview__container .p-interview__more .p-interview__opener:hover {
  background-color: #fff;
  color: #051622;
}

/**
* 採用情報
*/
.p-staff__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 72px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-staff__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-staff__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__title {
    padding-left: 25px;
  }
}
.p-staff__title h1 div::after {
  border-top: 1px solid #363636;
}
.p-staff__title h1 div span {
  color: #DB9000;
  background-color: #fff;
}
.p-staff__title h1 p {
  color: #DB9000;
}

.p-staff__intro {
  position: relative;
}
.p-staff__intro picture img {
  width: 100%;
}
.p-staff__intro > svg {
  display: block;
  position: absolute;
  left: -50%;
  right: -50%;
  bottom: calc(80px + 18%);
  margin: auto;
  width: 100%;
  height: 12vw;
  filter: drop-shadow(0 0 10px #000);
}
@media (max-width: 900px) {
  .p-staff__intro > svg {
    height: 14vw;
  }
}
@media (max-width: 768px) {
  .p-staff__intro > svg {
    display: none;
  }
}
.p-staff__intro div {
  width: calc(100% - 144px);
  height: 80px;
  background-color: #fff;
  margin: auto;
  position: absolute;
  bottom: -1px;
  left: -50%;
  right: -50%;
}
@media (max-width: 1700px) and (max-width: 1440px), (max-width: 1700px) and (min-height: 900px) {
  .p-staff__intro div {
    height: 13%;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-staff__intro div {
    height: 24%;
  }
}
@media (max-width: 768px) {
  .p-staff__intro div {
    position: relative;
    width: calc(100% - 100px);
    height: auto;
    bottom: 40px;
    left: auto;
    right: auto;
    top: 28%;
    padding-top: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__intro div {
    width: calc(100% - 50px);
  }
}
.p-staff__intro div svg {
  display: none;
}
@media (max-width: 768px) {
  .p-staff__intro div svg {
    display: block;
    filter: drop-shadow(0 0 10px #000);
    width: 100%;
    height: 25vw;
    position: absolute;
    top: -68vw;
    left: -50%;
    right: -50%;
    margin: auto;
  }
}
@media (max-width: 500px) {
  .p-staff__intro div svg {
    top: -65vw;
  }
}
@media (max-width: 400px) {
  .p-staff__intro div svg {
    top: -63vw;
  }
}
.p-staff__intro div h2 {
  width: 100%;
  height: 100%;
  font-size: 49px;
  font-weight: 600;
  color: #051622;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  text-align: center;
  line-height: 150%;
}
@media (max-width: 1700px) and (max-width: 1440px) {
  .p-staff__intro div h2 {
    font-size: clamp(24px, -4.5714285714px + 0.0372 * 100vw, 49px);
  }
}
@media (max-width: 1700px) and (min-height: 900px) {
  .p-staff__intro div h2 {
    font-size: clamp(23px, -16.3846153846px + 0.0385 * 100vw, 49px);
  }
}
@media (max-width: 768px) {
  .p-staff__intro div h2 {
    font-size: clamp(21px, 6px + 0.0313 * 100vw, 30px);
  }
}
.p-staff__intro div h2 br {
  display: none;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-staff__intro div h2 br {
    display: inline;
  }
}
.p-staff__intro div p {
  display: none;
}
@media (max-width: 768px) {
  .p-staff__intro div p {
    display: block;
    margin-top: 40px;
    font-size: clamp(14px, 10.6666666667px + 0.0069 * 100vw, 16px);
    font-weight: 600;
    line-height: 180%;
  }
}

#p-staff__message {
  padding: 85px 72px 76px 72px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  #p-staff__message {
    padding: 50px 50px 76px 50px;
  }
}
@media (max-width: 580px) {
  #p-staff__message {
    padding: 20px 25px 60px 25px;
  }
}
#p-staff__message figure {
  display: flex;
  flex-wrap: wrap;
}
#p-staff__message figure div {
  width: 50%;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-staff__message figure div {
    width: 100%;
  }
}
#p-staff__message figure div picture {
  width: 33.3333333333%;
  height: 50%;
  position: relative;
  overflow: hidden;
}
#p-staff__message figure div picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#p-staff__message figure figcaption {
  width: 50%;
  background-color: #051622;
  padding: 46px 60px;
  box-sizing: border-box;
  color: #fff;
  font-size: 21px;
  font-weight: 600;
  line-height: 180%;
}
@media (max-width: 1730px) and (max-width: 1480px), (max-width: 1730px) and (min-height: 900px) {
  #p-staff__message figure figcaption {
    line-height: 180%;
  }
}
@media (max-width: 1580px) and (max-width: 1300px), (max-width: 1580px) and (min-height: 900px) {
  #p-staff__message figure figcaption {
    padding: 40px 40px;
    line-height: 160%;
  }
}
@media (max-width: 1580px) and (max-width: 1300px) {
  #p-staff__message figure figcaption {
    font-size: clamp(18px, 11.25px + 0.0075 * 100vw, 21px);
  }
}
@media (max-width: 1580px) and (min-height: 900px) {
  #p-staff__message figure figcaption {
    font-size: clamp(18px, 9.15px + 0.0075 * 100vw, 21px);
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-staff__message figure figcaption {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #p-staff__message figure figcaption {
    font-size: clamp(14px, 7.3333333333px + 0.0139 * 100vw, 18px);
    padding: 24px 20px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  #p-staff__message figure figcaption .c-br__o1300 {
    display: inline;
  }
}
@media screen and (max-width: 640px) {
  #p-staff__message figure figcaption .c-br__o1300 {
    display: none;
  }
}

.p-staff__human .p-staff__header {
  display: grid;
  grid-template-areas: "title picture" "content picture";
  grid-template-columns: 50% 50%;
  grid-template-rows: 88px 1fr;
  background-color: #fff;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-staff__human .p-staff__header {
    grid-template-areas: "title" "content" "picture";
    grid-template-columns: 100%;
    grid-template-rows: auto 1fr auto;
  }
}
.p-staff__human .p-staff__header .p-staff__subtitle {
  grid-area: title;
  background-color: #DB9000;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__subtitle {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__human .p-staff__header .p-staff__subtitle {
    padding-left: 25px;
  }
}
.p-staff__human .p-staff__header .p-staff__subtitle h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__subtitle h2 svg {
    top: 5px;
    width: 52px;
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__human .p-staff__header .p-staff__subtitle h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__subtitle h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__human .p-staff__header .p-staff__subtitle h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__subtitle h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
.p-staff__human .p-staff__header .p-staff__content {
  grid-area: content;
  padding: 80px 100px 78px 72px;
  box-sizing: border-box;
}
@media (max-width: 1560px) and (max-width: 1350px), (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content {
    padding-right: 80px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content {
    padding: 33px 50px 35px 50px;
    background-color: #E8E8E8;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__human .p-staff__header .p-staff__content {
    padding: 25px 25px 25px 25px;
  }
}
.p-staff__human .p-staff__header .p-staff__content h3 {
  font-size: 24px;
  font-weight: 600;
  color: #001E4D;
  line-height: 160%;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content h3 {
    font-size: clamp(20px, 12px + 0.0089 * 100vw, 24px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content h3 {
    font-size: clamp(20px, 0px + 0.0154 * 100vw, 24px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content h3 {
    font-size: clamp(16px, 9.3333333333px + 0.0139 * 100vw, 20px);
  }
}
.p-staff__human .p-staff__header .p-staff__content h3 span {
  font-size: 42px;
  font-weight: 600;
  color: #001E4D;
  letter-spacing: -1px;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content h3 span {
    font-size: clamp(28px, 0px + 0.0311 * 100vw, 42px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content h3 span {
    font-size: clamp(28px, -42px + 0.0538 * 100vw, 42px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content h3 span {
    font-size: clamp(21px, 9.3333333333px + 0.0243 * 100vw, 28px);
  }
}
.p-staff__human .p-staff__header .p-staff__content ol {
  counter-reset: count;
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .p-staff__human .p-staff__header .p-staff__content ol {
    margin-bottom: 20px;
  }
}
.p-staff__human .p-staff__header .p-staff__content ol li {
  counter-increment: count;
  position: relative;
  padding-left: 24px;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .p-staff__human .p-staff__header .p-staff__content ol li {
    margin-bottom: 20px;
    padding-left: 18px;
  }
}
.p-staff__human .p-staff__header .p-staff__content ol li::before {
  content: counter(count) ".";
  font-family: "Open Sans", sans-serif;
  font-size: 21px;
  font-weight: 600;
  color: #001E4D;
  line-height: 100%;
  position: absolute;
  left: 0;
  top: 4px;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content ol li::before {
    font-size: clamp(18px, 12px + 0.0067 * 100vw, 21px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content ol li::before {
    font-size: clamp(18px, 3px + 0.0115 * 100vw, 21px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content ol li::before {
    font-size: clamp(15px, 10px + 0.0104 * 100vw, 18px);
  }
}
.p-staff__human .p-staff__header .p-staff__content ol li p {
  font-size: 21px;
  font-weight: 600;
  color: #001E4D;
  line-height: 140%;
  margin-bottom: 4px;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content ol li p {
    font-size: clamp(18px, 12px + 0.0067 * 100vw, 21px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content ol li p {
    font-size: clamp(18px, 3px + 0.0115 * 100vw, 21px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content ol li p {
    font-size: clamp(15px, 10px + 0.0104 * 100vw, 18px);
  }
}
.p-staff__human .p-staff__header .p-staff__content ol li span {
  font-size: 14px;
  color: #363636;
  line-height: 170%;
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content ol li span {
    font-size: clamp(12px, 8.6666666667px + 0.0069 * 100vw, 14px);
  }
}
.p-staff__human .p-staff__header .p-staff__content > p {
  font-size: 17px;
  font-weight: 600;
  color: #001E4D;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content > p {
    font-size: clamp(15px, 11px + 0.0044 * 100vw, 17px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content > p {
    font-size: clamp(15px, 5px + 0.0077 * 100vw, 17px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content > p {
    font-size: clamp(12px, 7px + 0.0104 * 100vw, 15px);
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content > p {
    text-align: right;
  }
}
.p-staff__human .p-staff__header .p-staff__content > p span {
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  display: inline-block;
  margin-left: 8px;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__human .p-staff__header .p-staff__content > p span {
    font-size: clamp(22px, 10px + 0.0133 * 100vw, 28px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__human .p-staff__header .p-staff__content > p span {
    font-size: clamp(22px, -8px + 0.0231 * 100vw, 28px);
  }
}
@media screen and (max-width: 768px) {
  .p-staff__human .p-staff__header .p-staff__content > p span {
    font-size: clamp(16px, 6px + 0.0208 * 100vw, 22px);
  }
}
.p-staff__human .p-staff__header picture {
  grid-area: picture;
}
.p-staff__human .p-staff__header picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-staff__infographic {
  width: 100%;
}
.p-staff__infographic .p-staff__infographicheader {
  width: 100%;
  height: 88px;
  background-color: #051622;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__infographic .p-staff__infographicheader {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__infographic .p-staff__infographicheader {
    padding-left: 25px;
  }
}
@media screen and (max-width: 450px) {
  .p-staff__infographic .p-staff__infographicheader {
    display: flex;
    align-items: center;
  }
}
.p-staff__infographic .p-staff__infographicheader h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-staff__infographic .p-staff__infographicheader h2 svg {
    top: 5px;
    width: 52px;
  }
}
.p-staff__infographic .p-staff__infographicheader h2 div {
  background-color: #051622;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__infographic .p-staff__infographicheader h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__infographic .p-staff__infographicheader h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__infographic .p-staff__infographicheader h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__infographic .p-staff__infographicheader h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
@media screen and (max-width: 450px) {
  .p-staff__infographic .p-staff__infographicheader h2 div span {
    letter-spacing: -1px;
    font-size: clamp(16px, 4.9090909091px + 1.36vw, 21px);
  }
}
.p-staff__infographic .p-staff__infographicheader h2 div span br {
  display: none;
}
@media screen and (max-width: 410px) {
  .p-staff__infographic .p-staff__infographicheader h2 div span br {
    display: block;
  }
}
.p-staff__infographic ul {
  padding-top: clamp(25px, 5.6vw, 80px);
  padding-bottom: calc(clamp(60px, 8.7vw, 125px) - clamp(30px, 4.2vw, 60px));
  margin-right: clamp(20px, 5vw, 72px);
  margin-left: clamp(20px, 5vw, 72px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 28px;
}
@media (max-width: 900px) {
  .p-staff__infographic ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 768px) {
  .p-staff__infographic ul {
    display: flex;
    flex-direction: column;
    gap: max(5.33vw, 20px) 0;
  }
}
.p-staff__infographic ul li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  margin-bottom: clamp(30px, 4.2vw, 60px);
}
@media (max-width: 768px) {
  .p-staff__infographic ul li {
    display: flex;
    margin-bottom: 0;
    gap: 0 max(3.3vw, 12.5px);
  }
}
.p-staff__infographic ul li picture {
  display: block;
}
@media (max-width: 768px) {
  .p-staff__infographic ul li picture {
    width: 62vw;
  }
}
.p-staff__infographic ul li picture img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.p-staff__infographic ul li div {
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  align-items: flex-start;
  padding: 20px 0 0;
}
@media (max-width: 768px) {
  .p-staff__infographic ul li div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
    gap: 0 10px;
    width: 100%;
  }
}
.p-staff__infographic ul li div h3 {
  font-size: clamp(18px, 8.7692307692px + 0.0103 * 100vw, 26px);
  font-weight: 600;
  margin-bottom: 15px;
  text-align: center;
  color: #001E4D;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .p-staff__infographic ul li div h3 {
    text-align: left;
    font-size: clamp(18px, 4.6666666667px + 0.0278 * 100vw, 26px);
  }
}
.p-staff__infographic ul li div p {
  font-size: clamp(12px, 6.2307692308px + 0.0064 * 100vw, 17px);
  font-weight: 600;
  text-align: center;
  color: #001E4D;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .p-staff__infographic ul li div p {
    text-align: left;
    font-weight: 500;
    font-size: clamp(12px, 3.6666666667px + 0.0174 * 100vw, 17px);
  }
}

.p-staff__point .p-staff__pointheader {
  width: 100%;
  height: 88px;
  background-color: #051622;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__point .p-staff__pointheader {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__point .p-staff__pointheader {
    padding-left: 25px;
  }
}
@media screen and (max-width: 450px) {
  .p-staff__point .p-staff__pointheader {
    display: flex;
    align-items: center;
  }
}
.p-staff__point .p-staff__pointheader h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-staff__point .p-staff__pointheader h2 svg {
    top: 5px;
    width: 52px;
  }
}
.p-staff__point .p-staff__pointheader h2 div {
  background-color: #051622;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__point .p-staff__pointheader h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__point .p-staff__pointheader h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__point .p-staff__pointheader h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__point .p-staff__pointheader h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
@media screen and (max-width: 450px) {
  .p-staff__point .p-staff__pointheader h2 div span {
    letter-spacing: -1px;
    font-size: clamp(16px, 4.9090909091px + 1.36vw, 21px);
  }
}
.p-staff__point .p-staff__pointheader h2 div span br {
  display: none;
}
@media screen and (max-width: 410px) {
  .p-staff__point .p-staff__pointheader h2 div span br {
    display: block;
  }
}
.p-staff__point ul {
  padding: 44px 72px 44px 72px;
  box-sizing: border-box;
  background-color: #001E4D;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: clamp(20px, 2.77vw, 40px);
}
@media screen and (max-width: 768px) {
  .p-staff__point ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    padding: 44px 72px 24px 72px;
  }
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__point ul {
    padding: 44px 50px 44px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__point ul {
    padding: 25px 25px 60px 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-staff__point ul {
    padding: 25px 20px 60px 20px;
  }
}
.p-staff__point ul li {
  width: 100%;
  display: flex;
  align-items: center;
  column-gap: 30px;
  background-color: #fff;
  padding: 17px 17px 24px 17px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .p-staff__point ul li {
    flex-direction: column;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .p-staff__point ul li {
    padding: 7px 7px 18px 7px;
  }
  .p-staff__point ul li:nth-of-type(1) h3 br {
    display: block !important;
  }
}
.p-staff__point ul li picture {
  width: 31vw;
  display: block;
}
@media screen and (max-width: 768px) {
  .p-staff__point ul li picture {
    width: 100%;
    margin-bottom: 12px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.p-staff__point ul li picture img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-staff__point ul li picture img {
    width: 100%;
    object-fit: cover;
    height: 19vw;
  }
}
.p-staff__point ul li div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-staff__point ul li div {
    display: grid;
    grid-row: span 2;
    grid-template-rows: subgrid;
  }
}
.p-staff__point ul li div h3 {
  font-size: 28px;
  font-weight: 600;
  color: #001E4D;
  text-align: left;
  margin-bottom: 12px;
  line-height: 140%;
}
.p-staff__point ul li div h3 br {
  display: none;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__point ul li div h3 {
    font-size: clamp(20px, 4px + 0.0178 * 100vw, 28px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__point ul li div h3 {
    font-size: clamp(20px, -20px + 0.0308 * 100vw, 28px);
  }
}
@media (max-width: 768px) {
  .p-staff__point ul li div h3 {
    text-align: left;
    font-size: clamp(15px, 6.6666666667px + 0.0174 * 100vw, 20px);
    color: #333333;
    padding: 0 max(7px, 2vw);
  }
}
.p-staff__point ul li div p {
  font-size: 17px;
  font-weight: 600;
  color: #363636;
  line-height: 180%;
  text-align: left;
}
@media (max-width: 1560px) and (max-width: 1350px) {
  .p-staff__point ul li div p {
    font-size: clamp(14px, 8px + 0.0067 * 100vw, 17px);
  }
}
@media (max-width: 1560px) and (min-height: 900px) {
  .p-staff__point ul li div p {
    font-size: clamp(14px, -1px + 0.0115 * 100vw, 17px);
  }
}
@media (max-width: 768px) {
  .p-staff__point ul li div p {
    font-size: clamp(12px, 8.6666666667px + 0.0069 * 100vw, 14px);
    font-weight: 500;
    line-height: 150%;
    padding: 0 max(7px, 2vw);
  }
}

.p-staff__staff {
  position: relative;
  padding-bottom: 80px;
  background-color: #FFBE43;
}
.p-staff__staff .p-staff__staffheader {
  width: 100%;
  height: 88px;
  background-color: #DB9000;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__staff .p-staff__staffheader {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__staff .p-staff__staffheader {
    padding-left: 25px;
  }
}
.p-staff__staff .p-staff__staffheader h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-staff__staff .p-staff__staffheader h2 svg {
    top: 5px;
    width: 52px;
  }
}
.p-staff__staff .p-staff__staffheader h2 div {
  background-color: #DB9000;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__staff .p-staff__staffheader h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__staff .p-staff__staffheader h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__staff .p-staff__staffheader h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__staff .p-staff__staffheader h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
.p-staff__staff #p-staff__staff__slider {
  display: flex;
  margin: 60px auto 0 auto;
  width: 100%;
  height: auto;
  background-color: #FFBE43;
  position: absolute;
  left: -50%;
  right: -50%;
}
@media (max-width: 1380px) and (max-width: 900px), (max-width: 1380px) and (min-height: 900px) {
  .p-staff__staff #p-staff__staff__slider {
    margin-top: 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-staff__staff #p-staff__staff__slider {
    margin-top: 35px;
  }
}
.p-staff__staff #p-staff__staff__slider .slick-track {
  display: flex;
}
.p-staff__staff #p-staff__staff__slider .slick-slide {
  height: auto;
}
.p-staff__staff #p-staff__staff__slider li {
  margin-right: 60px;
  display: flex;
  overflow: hidden;
  /*@media (max-width: 1380px){
    @media (max-width: $switch2width), (min-height: $switch1height){
      margin-right: 50px;
    }
  }*/
  /*@media screen and (max-width: $switch4width) {
    margin-right: 5px;
    margin-left: 5px;
    display: block;
  }*/
}
@media (max-width: 1800px) and (max-width: 1600px), (max-width: 1800px) and (min-height: 900px) {
  .p-staff__staff #p-staff__staff__slider li {
    margin-right: 40px;
  }
}
@media screen and (max-width: 480px) {
  .p-staff__staff #p-staff__staff__slider li {
    margin-right: 20px;
  }
}
.p-staff__staff #p-staff__staff__slider li figure {
  height: 100%;
  display: flex;
  flex-flow: column;
  background-color: #fff;
}
.p-staff__staff #p-staff__staff__slider li figure div {
  display: block;
  transition: all 0.4s ease-in-out;
}
.p-staff__staff #p-staff__staff__slider li figure div::before {
  content: "";
  display: block;
  padding-top: 79%;
}
.p-staff__staff #p-staff__staff__slider li figure div picture img {
  position: absolute;
  top: -50%;
  bottom: -50%;
  left: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: cover;
}
.p-staff__staff #p-staff__staff__slider li figure figcaption {
  display: block;
  height: 100%;
  padding: 30px 20px 70px 20px;
  box-sizing: border-box;
  background-color: #051622;
  position: relative;
  /*@media screen and (max-width: $switch4width) {
    width: calc(100% - 80px);
    padding: 20px 40px 20px 20px;
  }*/
}
@media screen and (max-width: 480px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption {
    padding: 20px 10px 70px 10px;
  }
}
.p-staff__staff #p-staff__staff__slider li figure figcaption span {
  color: #fff;
  position: absolute;
  top: -9px;
  left: 20px;
  font-size: 18px;
  font-weight: 600;
  /*@media screen and (max-width: $switch4width) {
    top: -7px;
    font-size: 14px;
  }*/
}
@media (max-width: 1800px) and (max-width: 1600px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption span {
    font-size: clamp(16px, 9.1111111111px + 0.0056 * 100vw, 18px);
  }
}
@media (max-width: 1800px) and (min-height: 900px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption span {
    font-size: clamp(16px, 11.5714285714px + 0.0036 * 100vw, 18px);
  }
}
.p-staff__staff #p-staff__staff__slider li figure figcaption p {
  color: #fff;
  font-size: 19px;
  font-weight: 600;
  line-height: 160%;
}
@media (max-width: 1800px) and (max-width: 1600px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption p {
    font-size: clamp(16px, 5.6666666667px + 0.0083 * 100vw, 19px);
  }
}
@media (max-width: 1800px) and (min-height: 900px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption p {
    font-size: clamp(16px, 9.3571428571px + 0.0054 * 100vw, 19px);
  }
}
@media (max-width: 768px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption p {
    font-size: clamp(14px, 7.3333333333px + 0.0139 * 100vw, 18px);
    line-height: 140%;
  }
}
.p-staff__staff #p-staff__staff__slider li figure figcaption a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 97px;
  height: 32px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  position: absolute;
  bottom: 20px;
  right: 20px;
  transition: all 0.4s ease-in-out;
  /*@media screen and (max-width: $switch4width) {
    width: 90px;
    height: 30px;
    background-color: #fff;
    top: -50%;
    bottom: -50%;
    right: -65px;
    margin: auto;
    box-sizing: border-box;
    border: 1px solid $subcolor5;
    color: $subcolor5;
  }*/
}
@media screen and (max-width: 480px) {
  .p-staff__staff #p-staff__staff__slider li figure figcaption a {
    right: -50%;
    left: -50%;
    margin: auto;
  }
}
.p-staff__staff #p-staff__staff__slider li figure figcaption a:hover {
  background-color: #fff;
  color: #051622;
}

#p-staff__equipment {
  position: relative;
  background-color: #FFBE43;
}
#p-staff__equipment .p-staff__equipheader {
  width: 100%;
  height: 88px;
  background-color: #363636;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipheader {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-staff__equipment .p-staff__equipheader {
    padding-left: 25px;
  }
}
#p-staff__equipment .p-staff__equipheader h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipheader h2 svg {
    top: 5px;
    width: 52px;
  }
}
#p-staff__equipment .p-staff__equipheader h2 div {
  background-color: #363636;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  #p-staff__equipment .p-staff__equipheader h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipheader h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  #p-staff__equipment .p-staff__equipheader h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipheader h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
#p-staff__equipment .p-staff__equipdetail {
  background-color: #E8E8E8;
  padding: 60px 72px 80px 72px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 50px 80px 50px;
  }
}
@media (max-width: 1340px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 50px 50px 50px;
  }
}
@media (max-height: 900px) and (max-width: 1340px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 50px 80px 50px;
  }
}
@media (max-height: 900px) and (max-width: 1100px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 50px 50px 50px;
  }
}
@media screen and (max-width: 768px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 50px 30px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 25px 30px 25px;
  }
}
@media screen and (max-width: 480px) {
  #p-staff__equipment .p-staff__equipdetail {
    padding: 60px 20px 30px 20px;
  }
}
#p-staff__equipment .p-staff__equipdetail > p {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  line-height: 1.7;
  color: #333;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  #p-staff__equipment .p-staff__equipdetail > p {
    display: none;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
  display: flex;
  gap: 10px 60px;
}
@media (max-width: 1650px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    gap: 30px 30px;
  }
}
@media (max-width: 1340px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist::after {
    content: "";
    display: block;
    max-width: calc(50% - 15px) !important;
    width: 100%;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
    max-width: calc(50% - 15px) !important;
  }
}
@media (max-width: 1100px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist::after {
    max-width: 640px !important;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
    max-width: 640px !important;
  }
}
@media (max-height: 900px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    justify-content: center;
  }
}
@media (max-height: 900px) and (max-width: 1340px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    flex-direction: row;
    justify-content: initial;
    align-items: initial;
    flex-wrap: nowrap;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist::after {
    content: none;
  }
}
@media (max-height: 900px) and (max-width: 1100px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist::after {
    content: "";
    display: block;
    max-width: calc(50% - 15px) !important;
    width: 100%;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
    max-width: calc(50% - 15px) !important;
  }
}
@media (max-height: 900px) and (max-width: 768px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist::after {
    max-width: 640px !important;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
    max-width: 640px !important;
  }
}
@media (max-width: 480px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist {
    gap: 10px 30px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
  width: 100%;
  max-width: initial;
  min-height: 210px;
  padding: 10px;
  background-image: linear-gradient(90deg, #1a7bfd, #002280);
  transition: all 0.3s ease-out;
  position: relative;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink {
    min-height: 165px;
    max-width: 393px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 30px;
  background-color: rgba(255, 255, 255, 0.17);
  transition: all 0.3s ease-out;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div {
    padding: 10px 10px 10px 10px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 15px;
  height: calc(100% - 32px);
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 {
    align-items: center;
    row-gap: 10px;
  }
}
@media (max-width: 1340px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 {
    min-height: 93px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div h3 p {
    font-size: 20px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 25px;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div {
    column-gap: 10px;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div b {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97px;
  height: 32px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div b {
    width: 50%;
    font-size: 13px;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div b:only-child {
    flex: 1;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 195px;
  height: 32px;
  padding-left: 22px;
  background-color: #001E4D;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: all 0.3s ease-in-out;
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a:hover {
  background-color: #ffffff;
  color: #001E4D;
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a:hover::before {
  left: auto;
  right: -13px;
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a::before {
  content: "";
  width: 26px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -13px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1590px) {
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a {
    width: 50%;
    justify-content: center;
    padding-left: 0px;
    font-size: 13px;
  }
  #p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink > div > div > a::before {
    content: none;
  }
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink:hover {
  background-image: linear-gradient(90deg, #145ec1, #00103b);
}
#p-staff__equipment .p-staff__equipdetail .p-staff__equiplist .p-staff__equiplink:hover > div {
  background-color: rgba(5, 22, 34, 0.17);
}
#p-staff__equipment .p-staff__equipbanner {
  padding: 55px 0 40px 0;
  background-color: #fff;
}
#p-staff__equipment .p-staff__equipbanner p {
  text-align: center;
  font-size: 21px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #p-staff__equipment .p-staff__equipbanner p {
    font-size: clamp(16px, 7.6666666667px + 0.0174 * 100vw, 21px);
  }
}
@media screen and (max-width: 360px) {
  #p-staff__equipment .p-staff__equipbanner p {
    font-size: 14px;
  }
}
#p-staff__equipment .p-staff__equipbanner ul {
  width: 90%;
  max-width: 1032px;
  margin: 38px auto 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-staff__equipment .p-staff__equipbanner ul {
    width: calc(100% - 100px);
  }
}
@media screen and (max-width: 580px) {
  #p-staff__equipment .p-staff__equipbanner ul {
    width: 214px;
  }
}
#p-staff__equipment .p-staff__equipbanner ul li {
  width: calc((100% - 60px) / 3);
  margin-right: 30px;
}
@media screen and (max-width: 580px) {
  #p-staff__equipment .p-staff__equipbanner ul li {
    width: 100%;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
#p-staff__equipment .p-staff__equipbanner ul li:last-child {
  margin-right: 0;
}
#p-staff__equipment .p-staff__equipbanner ul li a img {
  width: 100%;
}

.p-staff__form {
  background-color: #E8E8E8;
  padding-bottom: 80px;
  /*.mw_wp_form .error{
    color: $subcolor12;
    display: flex;
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
  }*/
}
.p-staff__form .p-staff__formheader {
  width: 100%;
  height: 88px;
  background-color: #363636;
  padding: 15px 0 15px 72px;
  box-sizing: border-box;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-staff__form .p-staff__formheader {
    padding-left: 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__form .p-staff__formheader {
    padding-left: 25px;
  }
}
.p-staff__form .p-staff__formheader h2::after {
  content: none;
}
@media (max-width: 1360px) and (max-width: 1040px), (max-width: 1360px) and (min-height: 900px) {
  .p-staff__form .p-staff__formheader h2 svg {
    top: 5px;
    width: 52px;
  }
}
.p-staff__form .p-staff__formheader h2 div {
  background-color: #363636;
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__form .p-staff__formheader h2 div p {
    font-size: clamp(24px, 2.1818181818px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__form .p-staff__formheader h2 div p {
    font-size: clamp(24px, -3.7272727273px + 0.0227 * 100vw, 29px);
  }
}
@media (max-width: 1440px) and (max-width: 1180px) {
  .p-staff__form .p-staff__formheader h2 div span {
    font-size: clamp(18px, 4.9090909091px + 0.0136 * 100vw, 21px);
  }
}
@media (max-width: 1440px) and (min-height: 900px) {
  .p-staff__form .p-staff__formheader h2 div span {
    font-size: clamp(18px, 1.3636363636px + 0.0136 * 100vw, 21px);
  }
}
.p-staff__form .p-staff__formcontent {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-staff__form .p-staff__formcontent {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-staff__form .p-staff__formcontent {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-staff__form .p-staff__formcontent {
    padding: 0 25px 0 25px;
  }
}
.p-staff__form .p-staff__formcontent .p-staff__formnotice {
  width: 100%;
  text-align: center;
  margin-bottom: 55px;
  margin-top: 50px;
}
.p-staff__form .p-staff__formcontent .p-staff__formnotice p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-staff__form .p-staff__formcontent .p-staff__formnotice p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media (max-width: 600px) {
  .p-staff__form .p-staff__formcontent .p-staff__formnotice p br {
    display: none;
  }
}
.p-staff__form .p-staff__formcontent table {
  width: 100%;
  margin-bottom: 60px;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-staff__form .p-staff__formcontent table tr {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #707070;
}
.p-staff__form .p-staff__formcontent table tr:first-of-type {
  border-top: 1px solid #707070;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__bordernone {
  border-bottom: none;
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__annotation th {
  width: 100%;
  padding: 0 0 0 40px;
  font-size: 14px;
  color: #A0063B;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__annotation th {
    padding-left: 20px;
    min-height: 40px;
    align-items: flex-start;
    font-size: 13px;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__annotation th {
    padding-left: 0;
    font-size: 12px;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 th {
  padding: 15px 10px 15px 40px;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 th {
    width: 320px;
    padding: 30px 10px 30px 40px;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 th {
    padding: 10px 20px 0 20px;
    min-height: auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 th {
    padding: 10px 0 0 0;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 td {
  padding: 15px 0;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 td {
    width: calc(100% - 320px);
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 td {
    padding: 10px 20px 30px 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow1 td {
    padding: 10px 0 30px 0;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 th {
  padding: 30px 10px 15px 40px;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 th {
    width: 320px;
    padding: 30px 10px 30px 40px;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 th {
    padding: 30px 20px 0 20px;
    min-height: auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 th {
    padding: 10px 0 0 0;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 td {
  padding: 30px 0 15px 0;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 td {
    width: calc(100% - 320px);
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 td {
    padding: 10px 20px 30px 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow2 td {
    padding: 10px 0 30px 0;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 th {
  padding: 15px 10px 30px 40px;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 th {
    width: 320px;
    padding: 30px 10px 30px 40px;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 th {
    padding: 10px 20px 0 20px;
    min-height: auto;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 th {
    padding: 10px 0 0 0;
  }
}
.p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 td {
  padding: 15px 0 30px 0;
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 td {
    width: calc(100% - 320px);
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 td {
    padding: 10px 20px 30px 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr.p-staff__form__narrow3 td {
    padding: 10px 0 10px 0;
  }
}
.p-staff__form .p-staff__formcontent table tr th {
  width: 320px;
  min-height: 60px;
  padding: 30px 10px 30px 40px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) and (min-height: 900px) {
  .p-staff__form .p-staff__formcontent table tr th {
    width: 290px;
    padding: 30px 10px 30px 10px;
  }
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr th {
    width: 320px;
    padding: 30px 10px 30px 40px;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr th {
    padding: 30px 20px 0 20px;
    width: 100%;
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr th {
    padding: 30px 0 0 0;
  }
}
.p-staff__form .p-staff__formcontent table tr th.p-staff__form__required::after {
  content: "必 須";
  display: block;
  width: 90px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #A0063B;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr th.p-staff__form__required::after {
    font-size: clamp(12px, 8.6666666667px + 0.0069 * 100vw, 14px);
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr th.p-staff__form__required::after {
    width: 60px;
  }
}
.p-staff__form .p-staff__formcontent table tr td {
  width: calc(100% - 320px);
  padding: 30px 0 30px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  /*label{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: 26px;

    input[type="radio"]{
      min-height: 30px;
      width: 20px;
      margin-right: 10px;
    }
  }*/
}
@media (max-width: 1024px) and (min-height: 900px) {
  .p-staff__form .p-staff__formcontent table tr td {
    width: calc(100% - 290px);
  }
}
@media (max-width: 900px) {
  .p-staff__form .p-staff__formcontent table tr td {
    width: calc(100% - 320px);
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td {
    padding: 10px 20px 30px 20px;
    width: 100%;
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media (max-width: 480px) {
  .p-staff__form .p-staff__formcontent table tr td {
    padding: 10px 0 30px 0;
  }
}
.p-staff__form .p-staff__formcontent table tr td.p-staff__form__horizontal {
  display: flex;
  flex-wrap: wrap;
}
.p-staff__form .p-staff__formcontent table tr td .mwform-radio-field label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-right: 26px;
}
.p-staff__form .p-staff__formcontent table tr td .mwform-radio-field label input[type=radio] {
  min-height: 30px;
  width: 20px;
  margin-right: 10px;
}
.p-staff__form .p-staff__formcontent table tr td .mwform-radio-field label span {
  font-size: 17px;
  font-weight: 600;
}
.p-staff__form .p-staff__formcontent table tr td select {
  min-height: 30px;
  font-size: 17px;
  font-weight: normal;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td select {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-staff__form .p-staff__formcontent table tr td select + br {
  display: none;
}
.p-staff__form .p-staff__formcontent table tr td select[name=年] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td select[name=月] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td select[name=日] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td select[name=卒業年] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td select[name=卒業月] + input[type=hidden] + br {
  display: none;
}
.p-staff__form .p-staff__formcontent table tr td input[type=text], .p-staff__form .p-staff__formcontent table tr td input[type=email], .p-staff__form .p-staff__formcontent table tr td input[type=tel] {
  min-height: 30px;
  font-size: 17px;
  font-weight: normal;
  width: 100%;
  max-width: 430px;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td input[type=text], .p-staff__form .p-staff__formcontent table tr td input[type=email], .p-staff__form .p-staff__formcontent table tr td input[type=tel] {
    max-width: initial;
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-staff__form .p-staff__formcontent table tr td input[name=名字] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  margin-right: 10px;
  float: left;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td input[name=名字] {
    max-width: initial;
  }
}
.p-staff__form .p-staff__formcontent table tr td input[name=名前] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  float: left;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td input[name=名前] {
    max-width: initial;
  }
}
.p-staff__form .p-staff__formcontent table tr td input[name=みょうじ] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  margin-right: 10px;
  float: left;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td input[name=みょうじ] {
    max-width: initial;
  }
}
.p-staff__form .p-staff__formcontent table tr td input[name=なまえ] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  float: left;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td input[name=なまえ] {
    max-width: initial;
  }
}
.p-staff__form .p-staff__formcontent table tr td input[name=年] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td input[name=月] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td input[name=日] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td input[name=卒業年] + input[type=hidden] + br, .p-staff__form .p-staff__formcontent table tr td input[name=卒業月] + input[type=hidden] + br {
  content: "";
}
.p-staff__form .p-staff__formcontent table tr td input[name=年] + input[type=hidden] + br::after, .p-staff__form .p-staff__formcontent table tr td input[name=月] + input[type=hidden] + br::after, .p-staff__form .p-staff__formcontent table tr td input[name=日] + input[type=hidden] + br::after, .p-staff__form .p-staff__formcontent table tr td input[name=卒業年] + input[type=hidden] + br::after, .p-staff__form .p-staff__formcontent table tr td input[name=卒業月] + input[type=hidden] + br::after {
  font-size: 17px;
  font-weight: 600;
  content: "/";
}
.p-staff__form .p-staff__formcontent table tr td textarea {
  width: 100%;
  max-width: 640px;
  min-height: 290px;
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td textarea {
    max-width: initial;
  }
}
@media (max-width: 768px) {
  .p-staff__form .p-staff__formcontent table tr td textarea {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-staff__form .p-staff__formcontent table tr td .error {
  font-size: inherit;
  font-weight: 600;
  color: #A0063B;
  display: block;
  clear: both;
  padding-top: 10px;
}
.p-staff__form .p-staff__formcontent table tr:nth-of-type(14) td select {
  width: 98px;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit {
  margin: 60px 0 80px 0;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #363636;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #363636;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .p-staff__form .p-staff__formcontent .p-staff__form__submit > button {
    font-size: 14px;
  }
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #363636;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #363636;
  color: #fff;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 900px) {
  .p-staff__form .p-staff__formcontent .p-staff__form__submit > button {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .p-staff__form .p-staff__formcontent .p-staff__form__submit > button {
    width: 100%;
    max-width: 300px;
  }
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button:hover {
  background-color: #001E4D;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button:nth-of-type(1) {
  display: block;
}
.p-staff__form .p-staff__formcontent .p-staff__form__submit > button:nth-of-type(2) {
  display: none;
}
.p-staff__form.--confirm table tr td {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.p-staff__form.--confirm table tr.p-staff__form__narrow1 td {
  min-height: 60px;
}
.p-staff__form.--confirm table tr.p-staff__form__narrow2 td {
  min-height: 75px;
}
.p-staff__form.--confirm table tr.p-staff__form__narrow3 td {
  min-height: 75px;
}
.p-staff__form.--send .p-staff__formnotice {
  display: none;
}
.p-staff__form.--send .mw_wp_form {
  width: 100%;
  text-align: center;
  margin-bottom: 55px;
  margin-top: 50px;
}
.p-staff__form.--send .mw_wp_form p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-staff__form.--send .mw_wp_form p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media (max-width: 600px) {
  .p-staff__form.--send .mw_wp_form p br {
    display: none;
  }
}

/**
* 新着情報一覧
*/
.p-contact__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 85px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-contact__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-contact__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-contact__title {
    padding-left: 25px;
  }
}
.p-contact__title h1 div::after {
  border-top: 1px solid #001E4D;
}
.p-contact__title h1 div span {
  color: #001E4D;
  background-color: #fff;
}
.p-contact__title h1 p {
  color: #001E4D;
}

.p-contact__form {
  width: 100%;
  max-width: 970px;
  margin: 0 auto;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-contact__form {
    padding: 0 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-contact__form {
    padding: 0 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-contact__form {
    padding: 0 25px 0 25px;
  }
}
.p-contact__form .p-contact__form__notice {
  width: 100%;
  text-align: center;
  margin-bottom: 55px;
}
.p-contact__form .p-contact__form__notice p {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.8;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-contact__form .p-contact__form__notice p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
@media (max-width: 600px) {
  .p-contact__form .p-contact__form__notice p br {
    display: none;
  }
}
.p-contact__form .mw_wp_form_complete p {
  font-size: 17px;
  font-weight: 600;
  line-height: 2;
  margin-bottom: 140px;
  margin-top: 60px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .p-contact__form .mw_wp_form_complete p {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
  }
}
.p-contact__form table {
  width: 100%;
  margin-bottom: 60px;
  border-collapse: collapse;
}
@media (max-width: 768px) {
  .p-contact__form table {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-contact__form table tr {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px solid #707070;
}
.p-contact__form table tr:first-of-type {
  border-top: 1px solid #707070;
}
@media (max-width: 768px) {
  .p-contact__form table tr {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-contact__form table tr th {
  width: 320px;
  padding: 30px 10px 30px 40px;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1024px) and (min-height: 900px) {
  .p-contact__form table tr th {
    width: 290px;
    padding: 30px 10px 30px 10px;
  }
}
@media (max-width: 900px) {
  .p-contact__form table tr th {
    width: 320px;
    padding: 30px 10px 30px 40px;
  }
}
@media (max-width: 768px) {
  .p-contact__form table tr th {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
    padding: 30px 20px 0 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-contact__form table tr th {
    padding: 30px 0 0 0;
  }
}
.p-contact__form table tr th.p-contact__form__required::after {
  content: "必 須";
  display: block;
  width: 90px;
  height: 30px;
  font-size: 14px;
  font-weight: 500;
  font-family: "Open Sans", sans-serif;
  color: #fff;
  background-color: #A0063B;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .p-contact__form table tr th.p-contact__form__required::after {
    font-size: clamp(12px, 8.6666666667px + 0.0069 * 100vw, 14px);
  }
}
@media (max-width: 480px) {
  .p-contact__form table tr th.p-contact__form__required::after {
    width: 60px;
  }
}
.p-contact__form table tr td {
  width: calc(100% - 320px);
  padding: 30px 0 30px 0;
  text-align: left;
  font-size: 17px;
  font-weight: 600;
}
@media (max-width: 1024px) and (min-height: 900px) {
  .p-contact__form table tr td {
    width: calc(100% - 290px);
  }
}
@media (max-width: 900px) {
  .p-contact__form table tr td {
    width: calc(100% - 320px);
    padding: 30px 0 30px 0;
  }
}
@media (max-width: 768px) {
  .p-contact__form table tr td {
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
    padding: 10px 20px 30px 20px;
    width: 100%;
  }
}
@media (max-width: 480px) {
  .p-contact__form table tr td {
    padding: 10px 0 30px 0;
  }
}
.p-contact__form table tr td input {
  min-height: 30px;
  width: 100%;
  max-width: 430px;
  font-size: 17px;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
}
@media (max-width: 768px) {
  .p-contact__form table tr td input {
    max-width: initial;
  }
}
.p-contact__form table tr td input[name=名字] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  margin-right: 10px;
  float: left;
}
@media (max-width: 768px) {
  .p-contact__form table tr td input[name=名字] {
    max-width: initial;
  }
}
.p-contact__form table tr td input[name=名前] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  float: left;
}
@media (max-width: 768px) {
  .p-contact__form table tr td input[name=名前] {
    max-width: initial;
  }
}
.p-contact__form table tr td input[name=みょうじ] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  margin-right: 10px;
  float: left;
}
@media (max-width: 768px) {
  .p-contact__form table tr td input[name=みょうじ] {
    max-width: initial;
  }
}
.p-contact__form table tr td input[name=なまえ] {
  width: calc((100% - 10px) / 2);
  max-width: 210px;
  float: left;
}
@media (max-width: 768px) {
  .p-contact__form table tr td input[name=なまえ] {
    max-width: initial;
  }
}
.p-contact__form table tr td textarea {
  width: 100%;
  max-width: 640px;
  min-height: 290px;
  font-size: 17px;
  line-height: 1.4;
  font-size: inherit;
  font-weight: inherit;
  font-family: inherit;
  word-break: break-word;
}
@media (max-width: 768px) {
  .p-contact__form table tr td textarea {
    max-width: initial;
  }
}
.p-contact__form table tr td .error {
  font-size: inherit;
  font-weight: 600;
  color: #A0063B;
  display: block;
  clear: both;
  padding-top: 10px;
}
.p-contact__form .p-contact__form__submit {
  margin: 60px 0 80px 0;
}
.p-contact__form .p-contact__form__submit > button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 300px;
  height: 50px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #363636;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #363636;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .p-contact__form .p-contact__form__submit > button {
    font-size: 14px;
  }
}
.p-contact__form .p-contact__form__submit > button::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #363636;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
.p-contact__form .p-contact__form__submit > button:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #363636;
  color: #fff;
}
.p-contact__form .p-contact__form__submit > button:hover::before {
  left: auto;
  right: -12px;
}
@media screen and (max-width: 900px) {
  .p-contact__form .p-contact__form__submit > button {
    font-size: 14px;
  }
}
@media screen and (max-width: 400px) {
  .p-contact__form .p-contact__form__submit > button {
    width: 100%;
    max-width: 300px;
  }
}
.p-contact__form .p-contact__form__submit > button span {
  font-size: 17px;
  font-weight: 600;
  font-family: inherit;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-contact__form .p-contact__form__submit > button span {
    font-size: 14px;
  }
}
.p-contact__form .p-contact__form__submit > button:hover {
  background-color: #001E4D;
}
.p-contact__form .p-contact__form__submit > button:hover span {
  color: #fff;
}
.p-contact__form .p-contact__form__submit > button:nth-of-type(1) {
  display: block;
}
.p-contact__form .p-contact__form__submit > button:nth-of-type(2) {
  display: none;
}
.p-contact__form.--confirm table tr td {
  min-height: 90px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.p-contact__form.--submit .p-contact__form__notice {
  display: none;
}

/*-----------------------------------
新着情報詳細
------------------------------------*/
/**
* 404エラー
*/
.p-error {
  min-height: 100vh;
}
.p-error section {
  width: 100%;
  height: calc(100% - 90px);
  padding: 220px 72px 220px 72px;
  box-sizing: border-box;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-error section {
    padding: 220px 50px 220px 50px;
    height: calc(100% - 48px - 300px);
  }
}
@media screen and (max-width: 680px) {
  .p-error section {
    padding: 180px 25px 180px 25px;
  }
}
@media screen and (max-width: 580px) {
  .p-error section {
    padding: 160px 25px 160px 25px;
  }
}
.p-error section div h1 {
  font-size: 21px;
  font-weight: 600;
  line-height: 160%;
  margin-bottom: 55px;
}
@media screen and (max-width: 680px) {
  .p-error section div h1 {
    font-size: clamp(18px, 10.8px + 0.015 * 100vw, 21px);
    margin-bottom: 40px;
  }
}
.p-error section div p {
  font-size: 14px;
  line-height: 160%;
}
.p-error section div p em {
  font-style: normal;
  color: #DB1100;
}

/**
* 募集要項
*/
.p-equipment__title {
  width: 100%;
  height: 225px;
  padding: 70px 0 0 72px;
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  .p-equipment__title {
    padding-left: 50px;
  }
}
@media (max-width: 1240px) and (max-width: 900px), (max-width: 1240px) and (min-height: 900px) {
  .p-equipment__title {
    height: auto;
    padding: 34px 0 34px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-equipment__title {
    padding-left: 25px;
  }
}
.p-equipment__title h1 div::after {
  border-top: 1px solid #363636;
}
.p-equipment__title h1 div span {
  color: #DB9000;
  background-color: #fff;
}
.p-equipment__title h1 p {
  color: #DB9000;
}

.p-equipment__index {
  position: relative;
  background-color: #FFBE43;
}
.p-equipment__index .p-equipment__equipdetail {
  background-color: #363636;
  padding: 65px 72px 65px 72px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 50px 65px 50px;
  }
}
@media (max-width: 1340px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 50px 35px 50px;
  }
}
@media (max-height: 900px) and (max-width: 1340px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 50px 65px 50px;
  }
}
@media (max-height: 900px) and (max-width: 1100px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 50px 35px 50px;
  }
}
@media screen and (max-width: 768px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 50px 35px 50px;
  }
}
@media screen and (max-width: 580px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 25px 35px 25px;
  }
}
@media screen and (max-width: 480px) {
  .p-equipment__index .p-equipment__equipdetail {
    padding: 65px 20px 35px 20px;
  }
}
.p-equipment__index .p-equipment__equipdetail > p {
  width: 100%;
  display: block;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  list-style: 1.7;
  color: #333;
  margin-bottom: 45px;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
  display: flex;
  gap: 30px 60px;
}
@media (max-width: 1650px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    gap: 30px 30px;
  }
}
@media (max-width: 1340px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist::after {
    content: "";
    display: block;
    max-width: calc(50% - 15px) !important;
    width: 100%;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
    max-width: calc(50% - 15px) !important;
  }
}
@media (max-width: 1100px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist::after {
    max-width: 640px !important;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
    max-width: 640px !important;
  }
}
@media (max-height: 900px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    justify-content: center;
  }
}
@media (max-height: 900px) and (max-width: 1340px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    flex-direction: row;
    justify-content: initial;
    align-items: initial;
    flex-wrap: nowrap;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist::after {
    content: none;
  }
}
@media (max-height: 900px) and (max-width: 1100px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist::after {
    content: "";
    display: block;
    max-width: calc(50% - 15px) !important;
    width: 100%;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
    max-width: calc(50% - 15px) !important;
  }
}
@media (max-height: 900px) and (max-width: 768px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist::after {
    max-width: 640px !important;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
    max-width: 640px !important;
  }
}
@media (max-width: 480px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist {
    gap: 10px 30px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
  width: 100%;
  max-width: initial;
  min-height: 210px;
  padding: 10px;
  background-image: linear-gradient(90deg, #1a7bfd, #002280);
  transition: all 0.3s ease-out;
  position: relative;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink {
    min-height: 165px;
    max-width: 393px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > a {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 10px 10px 10px 30px;
  background-color: rgba(255, 255, 255, 0.17);
  transition: all 0.3s ease-out;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div {
    padding: 10px 10px 10px 10px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 15px;
  height: calc(100% - 32px);
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 {
    align-items: center;
    row-gap: 10px;
  }
}
@media (max-width: 1340px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 {
    min-height: 93px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 p {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div h3 p {
    font-size: 20px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 25px;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div {
    column-gap: 10px;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div b {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 97px;
  height: 32px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div b {
    width: 50%;
    font-size: 13px;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div b:only-child {
    flex: 1;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  width: 195px;
  height: 32px;
  padding-left: 22px;
  background-color: #001E4D;
  box-sizing: border-box;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition: all 0.3s ease-in-out;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a:hover {
  background-color: #ffffff;
  color: #001E4D;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a:hover::before {
  left: auto;
  right: -13px;
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a::before {
  content: "";
  width: 26px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: -13px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.3s ease-in-out;
}
@media (max-width: 1590px) {
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a {
    width: 50%;
    justify-content: center;
    padding-left: 0px;
    font-size: 13px;
  }
  .p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink > div > div > a::before {
    content: none;
  }
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink:hover {
  background-image: linear-gradient(90deg, #145ec1, #00103b);
}
.p-equipment__index .p-equipment__equipdetail .p-equipment__equiplist .p-equipment__equiplink:hover > div {
  background-color: rgba(5, 22, 34, 0.17);
}

#p-equipment__equipment {
  position: relative;
  background-color: #FFBE43;
}
#p-equipment__equipment .p-equipment__equipwrap {
  background-color: #E8E8E8;
  padding: 100px 72px 100px 72px;
  box-sizing: border-box;
  position: relative;
}
@media (max-width: 1460px) and (max-width: 1240px), (max-width: 1460px) and (min-height: 900px) {
  #p-equipment__equipment .p-equipment__equipwrap {
    padding: 100px 50px 100px 50px;
  }
}
@media (max-width: 1340px) {
  #p-equipment__equipment .p-equipment__equipwrap {
    padding: 100px 50px 100px 50px;
  }
}
@media (max-width: 1300px) and (max-width: 1100px), (max-width: 1300px) and (min-height: 900px) {
  #p-equipment__equipment .p-equipment__equipwrap {
    padding: 100px 50px 100px 50px;
  }
}
@media screen and (max-width: 580px) {
  #p-equipment__equipment .p-equipment__equipwrap {
    padding: 36px 25px 36px 25px;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div {
  background-color: #fff;
  margin-bottom: 100px;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div {
    margin-bottom: 66px;
    padding-bottom: 43px;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div.p-staff__prev {
  margin-bottom: 0;
}
#p-equipment__equipment .p-equipment__equipwrap > div > div {
  overflow: hidden;
  height: auto;
  transition: all 1s ease-in-out;
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl {
  width: 972px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
}
@media (max-width: 1440px) and (max-width: 1180px), (max-width: 1440px) and (min-height: 900px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl {
    width: 90%;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dt, #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd {
  background-color: #F4F4F4;
  border-bottom: 10px solid #fff;
  padding: 10px;
  box-sizing: border-box;
  line-height: 160%;
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dt {
  border-right: 5px solid #fff;
  font-size: 17px;
  font-weight: 600;
  width: 112px;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dt {
    font-size: clamp(12px, 3.6666666667px + 0.0174 * 100vw, 17px);
  }
}
@media screen and (max-width: 480px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dt {
    width: 90px;
    text-align: center;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd {
  font-size: 17px;
  width: calc(100% - 112px);
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd {
    font-size: clamp(12px, 3.6666666667px + 0.0174 * 100vw, 17px);
  }
}
@media screen and (max-width: 480px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd {
    width: calc(100% - 90px);
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl {
  width: 389px;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  border-bottom: 5px solid #F4F4F4;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl {
    width: 100%;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dt, #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dd {
  width: 50%;
  padding: 10px;
  box-sizing: border-box;
  line-height: 160%;
  font-size: 17px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dt, #p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dd {
    font-size: clamp(11px, 1px + 0.0208 * 100vw, 17px);
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dt {
  background-color: #E8E8E8;
  border-right: 5px solid #F4F4F4;
}
#p-equipment__equipment .p-equipment__equipwrap > div > div > div > dl > dd dl dd {
  background-color: #fff;
}
#p-equipment__equipment .p-equipment__equipwrap > div > a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 387px;
  height: 64px;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #001E4D;
  box-sizing: border-box;
  font-size: 17px;
  font-weight: bold;
  color: #001E4D;
  letter-spacing: 0;
  transition: all 0.4s ease-in-out;
  font-size: 21px;
  font-weight: 600;
  margin: 0 auto 20px auto;
}
@media screen and (max-width: 480px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a {
    font-size: 14px;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > a::before {
  content: "";
  width: 47px;
  height: 1px;
  background-color: #001E4D;
  position: absolute;
  left: -12px;
  right: auto;
  top: -50%;
  bottom: -50%;
  margin: auto;
  transition: all 0.4s ease-in-out;
}
#p-equipment__equipment .p-equipment__equipwrap > div > a:hover {
  border-width: 1px;
  border-style: solid;
  border-color: #fff;
  background-color: #001E4D;
  color: #fff;
}
#p-equipment__equipment .p-equipment__equipwrap > div > a:hover::before {
  left: auto;
  right: -12px;
}
#p-equipment__equipment .p-equipment__equipwrap > div > a::before {
  background-color: #363636;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 260px;
    height: 50px;
    background-color: #fff;
    border-width: 1px;
    border-style: solid;
    border-color: #001E4D;
    box-sizing: border-box;
    font-size: 17px;
    font-weight: bold;
    color: #001E4D;
    letter-spacing: 0;
    transition: all 0.4s ease-in-out;
    font-size: 14px;
    font-size: clamp(14px, 9px + 0.0104 * 100vw, 17px);
    margin: 0 auto 10px auto;
  }
}
@media screen and (max-width: 768px) and (max-width: 480px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a::before {
    content: "";
    width: 47px;
    height: 1px;
    background-color: #001E4D;
    position: absolute;
    left: -12px;
    right: auto;
    top: -50%;
    bottom: -50%;
    margin: auto;
    transition: all 0.4s ease-in-out;
  }
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a:hover {
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    background-color: #001E4D;
    color: #fff;
  }
  #p-equipment__equipment .p-equipment__equipwrap > div > a:hover::before {
    left: auto;
    right: -12px;
  }
}
@media screen and (max-width: 400px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a {
    width: 100%;
    max-width: 260px;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > a:first-of-type {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap > div > a:first-of-type {
    margin-top: 23px;
  }
}
#p-equipment__equipment .p-equipment__equipwrap > div > a:last-of-type {
  margin-bottom: 0;
}
#p-equipment__equipment .p-equipment__equipwrap > div > a:hover {
  background-color: #001E4D;
}
#p-equipment__equipment .p-equipment__equipwrap h3 {
  width: 100%;
  background-color: #fff;
  font-size: 36px;
  font-size: clamp(24px, 13.8947368421px + 0.0132 * 100vw, 36px);
  font-weight: 600;
  color: #001E4D;
  box-sizing: border-box;
  padding: 60px 0 55px 0;
}
#p-equipment__equipment .p-equipment__equipwrap h3 br {
  display: none;
}
@media screen and (max-width: 768px) {
  #p-equipment__equipment .p-equipment__equipwrap h3 {
    padding: 30px 0 27px;
  }
}
@media screen and (max-width: 400px) {
  #p-equipment__equipment .p-equipment__equipwrap h3 {
    line-height: 1.4;
    text-align: center;
  }
  #p-equipment__equipment .p-equipment__equipwrap h3 br {
    display: block;
  }
}

/**
* font
*/
.u-ff__opensans {
  font-family: "Open Sans", sans-serif;
}

/**
* margin
*/
.u-mt__wide {
  margin-top: 60px;
}
@media screen and (max-width: 480px) {
  .u-mt__wide {
    margin-top: 30px;
  }
}

.u-mt__normal {
  margin-top: 40px;
}
@media screen and (max-width: 480px) {
  .u-mt__normal {
    margin-top: 20px;
  }
}

.u-mt__narrow {
  margin-top: 30px;
}
@media screen and (max-width: 480px) {
  .u-mt__narrow {
    margin-top: 20px;
  }
}

.u-mb__wide {
  margin-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .u-mb__wide {
    margin-bottom: 30px;
  }
}

.u-mb__normal {
  margin-bottom: 40px;
}
@media screen and (max-width: 480px) {
  .u-mb__normal {
    margin-bottom: 20px;
  }
}

.u-mb__narrow {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .u-mb__narrow {
    margin-bottom: 20px;
  }
}

/*----------------------------------------
padding
----------------------------------------*/
.u-pt__wide {
  padding-top: 80px;
}
@media screen and (max-width: 480px) {
  .u-pt__wide {
    padding-top: 40px;
  }
}

.u-pt__normal {
  padding-top: 70px;
}
@media screen and (max-width: 480px) {
  .u-pt__normal {
    padding-top: 30px;
  }
}

.u-pt__narrow {
  padding-top: 60px;
}
@media screen and (max-width: 480px) {
  .u-pt__narrow {
    padding-top: 30px;
  }
}

.u-pb__wide {
  padding-bottom: 80px;
}
@media screen and (max-width: 480px) {
  .u-pb__wide {
    padding-bottom: 40px;
  }
}

.u-pb__normal {
  padding-bottom: 70px;
}
@media screen and (max-width: 480px) {
  .u-pb__normal {
    padding-bottom: 30px;
  }
}

.u-pb__narrow {
  padding-bottom: 60px;
}
@media screen and (max-width: 480px) {
  .u-pb__narrow {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 900px), screen and (max-height: 900px) {
  .u-pr__narrow {
    padding-right: 34px;
  }
}
@media screen and (max-width: 480px) {
  .u-pr__narrow {
    padding-bottom: 24px;
  }
}

/**
* position
*/
.u-pos__flex__center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.u-pos__flex__center.--left {
  justify-content: flex-start;
}

/*# sourceMappingURL=app.css.map */
