@charset "UTF-8";
/*変数*/
:root {
  --main_color: #364542;
  --main_color_rgb: 54 69 66;
  --main_color2: #668f87;
  --main_color3: #e9eeed;

  --filter_main_color: invert(22%) sepia(9%) saturate(934%) hue-rotate(118deg) brightness(95%) contrast(86%);
  --filter_white: invert(100%) sepia(100%) saturate(0%) hue-rotate(137deg) brightness(106%) contrast(101%);
  --filter_black: invert(16%) sepia(10%) saturate(13%) hue-rotate(348deg) brightness(99%) contrast(89%);

  --table_bg_color: #f2f8f6;
  --form_bg_color: #f3f4f5;
  --black:#333;
  --gray: #bbb;
  --red: #a5233b;
  --border: 1px solid var(--gray);
}

/*--------------------------------------
リセットCSS
--------------------------------------*/
*, ::before, ::after {-webkit-box-sizing: border-box; box-sizing: border-box; border-style: solid; border-width: 0;}
html { line-height: 1.15; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent;}
body { margin: 0;}
main { display: block;}
p, table, blockquote, address, pre, iframe, form, figure, dl { margin: 0;}
h1, h2, h3, h4, h5, h6 { font-size: inherit; font-weight: inherit; margin: 0;}
ul, ol { margin: 0; padding: 0; list-style: none;}
dt { font-weight: 700;}
dd { margin-left: 0;}
hr { -webkit-box-sizing: content-box; box-sizing: content-box; height: 0; overflow: visible; border-top-width: 1px; margin: 0; clear: both; color: inherit;}
pre { font-family: monospace, monospace; font-size: inherit;}
address { font-style: inherit;}
a { background-color: transparent; text-decoration: none; color: inherit;}
abbr[title] { -webkit-text-decoration: underline dotted;text-decoration: underline dotted;
}
/* b, strong {font-weight: bolder;} */
code, kbd, samp { font-family: monospace, monospace; font-size: inherit;}
small { font-size: 80%;}
sub, sup { font-size: 75%; line-height: 0; position: relative; vertical-align: baseline;}
sub { bottom: -0.25em;}
sup { top: -0.5em;}
svg, img, embed, object, iframe { vertical-align: bottom;}
button, input, optgroup, select, textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; vertical-align: middle; color: inherit; font: inherit; background: transparent; padding: 0; margin: 0; border-radius: 0; text-align: inherit; text-transform: inherit;}
[type=checkbox] { -webkit-appearance: checkbox; -moz-appearance: checkbox; appearance: checkbox;}
[type=radio] { -webkit-appearance: radio; -moz-appearance: radio; appearance: radio;}
button, [type=button], [type=reset], [type=submit] { cursor: pointer;}
button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled { cursor: default;}
:-moz-focusring { outline: auto;}
select:disabled { opacity: inherit;}
option { padding: 0;}
fieldset { margin: 0; padding: 0; min-width: 0;}
legend { padding: 0;}
progress { vertical-align: baseline;}
textarea { overflow: auto;}
[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button { height: auto;}
[type=search] { outline-offset: -2px;}
[type=search]::-webkit-search-decoration { -webkit-appearance: none;}
::-webkit-file-upload-button { -webkit-appearance: button; font: inherit;}
label[for] { cursor: pointer;}
details { display: block;}
summary { display: list-item;}
[contenteditable]:focus { outline: auto;}
table { border-color: inherit;}
caption { text-align: left;}
td, th { vertical-align: top; padding: 0;}
th { text-align: left; font-weight: 700;}


/*--------------------------------------
サイト共通定義
--------------------------------------*/
html {
  scroll-behavior: smooth;
}

body {
  line-height: 1.8;
  margin: 0 auto;
  min-height: 800px;
  min-width: 320px;
  width: 100%;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  font-family: "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  /* font-family: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif; */
  font-weight: 300;
  font-style: normal;
  position: relative;
}
body.open {
  overflow: hidden !important;
}
@media (min-width: 1025px) {
  body.open {
    overflow: auto !important;
  }
}

body::-webkit-scrollbar {
  width: 10px;
}

body::-webkit-scrollbar-track {
  background-color: #fff;
}

body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}

img{
  max-width:100% !important;
  height:auto;
}

::-moz-selection {
  background: var(--main_color);
  color: #fff;
}

::selection {
  background: var(--main_color);
  color: #fff;
}

ul::-webkit-scrollbar {
  display: none;
}

.wrapper {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

.inner {
  max-width: 1200px;
  margin: auto;
}

.bg_color {
  background: var(--main_color3);
}

.flex {
  display: block;
}
@media (min-width: 600px) {
  .flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-spacing: 0;
}
.table_01 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_01 tr th,
.table_01 tr td {
  display: block;
  padding: 24px 24px 8px 24px;
  border-bottom: var(--border);
}
.table_01 tr th {
  border-bottom: 1px solid var(--main_color2);
}
.table_01 tr td {
  border: none;
}
@media (min-width: 600px) {
  .table_01 {
    font-size: 16px;
  }
  .table_01 tr th,
  .table_01 tr td {
    display: table-cell;
    vertical-align: middle;
    padding: 24px;
    border-bottom: var(--border);
  }
  .table_01 tr th {
    width: 25%;
    border-color: var(--main_color2);
  }
}

/* レスポンシブ */
.table_02 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_02 tr th,
.table_02 tr td {
  display: block;
  padding: 16px 24px;
  border-bottom: 2px solid #fff;
}
.table_02 tr th {
  background: var(--table_bg_color);
}
@media (min-width: 600px) {
  .table_02 {
    font-size: 16px;
  }
  .table_02 tr th,
  .table_02 tr td {
    display: table-cell;
    width: 50%;
    padding: 24px;
    vertical-align: middle;
    text-align: center;
  }
}

/* 3カラム */
.table_03 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_03 tr th,
.table_03 tr td {
  width: 33%;
  padding: 16px 8px;
  vertical-align: middle;
  text-align: center;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  line-height: 1.5;
}
.table_03 tr th {
  background: var(--main_color2);
  color: #fff;
  font-weight: 700;
}
.table_03 tr:not(:first-child) th {
  background: var(--table_bg_color);
  color: var(--black);
}
@media (min-width: 600px) {
  .table_03 tr th,
  .table_03 tr td {
    padding: 24px;
  }
}


/*--------------------------------------
共通のform
--------------------------------------*/
form {
  width: 100%;
  margin: auto;
  font-size: 12px;
}
@media (min-width: 600px) {
  form {
    font-size: 16px;
  }
}
form .required_red {
  margin-left: 4px;
  padding: 0 4px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 300;
}
form .item {
  overflow: hidden;
  margin-bottom: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border-bottom: 1px dashed #dfe3e8;
  padding: 15px 10px;
}
@media (min-width: 1025px) {
  form .item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    /* height: 80px; */
    padding: 20px 10px;
  }
}

form .item .label {
  /* background: #e9eeed; */
  width: 100%;
  margin-right: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
    -ms-flex-pack: start;
      justify-content: flex-start;
  text-align: center;
  /* padding: 10px 0; */
  cursor: auto;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  form .item .label {
    margin-bottom: 0;
  }
}
@media (min-width: 1025px) {
  form .item .label {
    width: 30%;
  }
}
form .item > div {
  width: 100%;
  /* border: solid 1px #9c9c9c; */
  /* padding: 10px; */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
          flex-wrap: wrap;
  font-size: 14px;
}
@media (min-width: 600px) {
  form .item > div {
    /* padding: 20px 10px; */
    font-size: 16px;
  }
}
@media (min-width: 1025px) {
  form .item > div {
    width: 70%;
  }
}
form .item > div .inputs {
  height: 100%;
  width: 100%;
  outline: none;
  background: var(--form_bg_color);
  padding: 10px;
  font-size: 16px;
}
@media (min-width: 600px) {
  form .item > div .inputs {
    padding: 15px;
    font-size: 14px;
  }
}

::placeholder {
  color: var(--gray);
}

form  .item .post_code_box input {
  width: 40%;
}
.error {
  margin-bottom: 30px;
}
.error li {
  color: var(--red);
}

.btn_area {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 300px;
  margin: 30px auto 0;
}
.btn_area input[type=submit],
.btn_area a {
  background: var(--main_color);
  border: none;
  color: #fff;
  font-size: 16px;
  /* font-weight: bold; */
  padding: 10px 20px;
  margin: 0 0 10px;
}
.btn_area input[type=reset],
.btn_area input[type=button] {
  background: var(--gray);
  border: none;
  color: #fff;
  font-size: 16px;
  /* font-weight: bold; */
  padding: 10px 20px;
}

/* ページネーション */
.page_list {
  margin-top: 40px;
  padding: 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  border: 1px solid;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  border-color: var(--main_color);
  color: var(--main_color);
}
.page_list li.active {
  background: var(--main_color);
  color: #fff;
}
.page_list li.arrow {
  border: none;
}
.page_list li.disabled.arrow {
  opacity: 0;
}
.page_list li.arrow img {
  width: 8px;
  height: auto;
  vertical-align: middle;
  filter: var(--filter_black);
}
.page_list li.arrow.prev img {
  transform: rotate(180deg);
}
.page_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  .page_list {
    margin-top: 64px;
  }
}

/* 属性ごとのスタイル */
form .comment{
  height: auto;
}
form .radiobtn .inputs,
form .checkbox .inputs  {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 600px) {
  form .radiobtn .inputs,
  form .checkbox .inputs  {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
form .radiobtn .inputs .contact_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

form .radiobtn .inputs label,
form .checkbox .inputs label {
  margin-left: 3px;
  font-size: 14px;
}
@media (min-width: 600px) {
  form .radiobtn .inputs label {
    margin-right: 15px;
  }
}
form .checkbox input {
  vertical-align: baseline;
}
@media (min-width: 600px) {
  form .checkbox  label {
    margin-right: 15px;
  }
}

form .pulldown select {
  width: 100%;
  position: relative;
  padding: 0 15px;
  height: 40px;
}
form .pulldown div {
  /* width: 70%; */
  position: relative;
  background: var(--form_bg_color);
}
form .pulldown div::before {
  position: absolute;
  right: 0;
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 0 3px 3px 0;
  background-color: var(--main_color);
  content: '';
}
form .pulldown div::after {
  position: absolute;
  right: 16px;
  content: "";
	width: 8px;
	height: 8px;
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

/*--------------------------------------
ローディングアニメーション
--------------------------------------*/
#loading {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: #fafafa;
  z-index: 999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.loader {
  width: 60px;
  aspect-ratio: 3;
  --dot: no-repeat radial-gradient(circle closest-side,var(--main_color2) 90%,#0000);
  background:
    var(--dot) 0%   50%,
    var(--dot) 50%  50%,
    var(--dot) 100% 50%;
  background-size: calc(100%/3) 50%;
  animation: loading-dot 1s infinite linear;
}
@keyframes loading-dot {
    20%{background-position:0%   0%, 50%  50%,100%  50%}
    40%{background-position:0% 100%, 50%   0%,100%  50%}
    60%{background-position:0%  50%, 50% 100%,100%   0%}
    80%{background-position:0%  50%, 50%  50%,100% 100%}
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: rgb(var(--main_color_rgb) / 0.95);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr 58px;
  grid-template-columns: 1fr 1fr 58px;
  position: fixed;
  width: 100%;
  height: 58px;
  z-index: 2;
}
@media (min-width: 600px) {
  header {
    -ms-grid-columns: auto 400px 58px;
    grid-template-columns: auto 400px 58px;
  }
}
@media (min-width: 1025px) {
  header {
    -ms-grid-columns: auto 2fr 400px 58px;
    grid-template-columns: auto 2fr 400px 58px;
  }
}
header h1 {
  padding: 10px 0 10px 10px;
  position: relative;
  z-index: 1;
}
header h1 img {
  width: 100px;
  display: inline-block;
  vertical-align: middle;
}
/* PC用ナビゲーション */
header .header_nav {
  display: none;
}
@media (min-width: 1025px) {
  header .header_nav {
    display: block;
  }
  header .header_nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    gap: min(3%, 20px);
    font-size: clamp(12px, 1.2vw, 14px);
    margin: 0 24px;
  }
  header .header_nav ul li a {
    color: #fff;
    position: relative;
  }
  header .header_nav ul li a:after {
    position: absolute;
    content: "";
    display: block;
    height: 2px;
    background-color: #fff;
    bottom: -5px;
    left: 0;
    width: 0;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
  }
  header .header_nav ul li a:hover:after {
    width: 100%;
  }
}
header p {
  height: 30px;
  -ms-grid-column-align: end;
      justify-self: end;
  padding-right: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
header p:hover {
  opacity: 0.7;
}
@media (min-width: 600px) {
  header p {
    width: 100%;
    height: 100%;
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
}
/* header p.tel {
  display: none;
} */
@media (min-width: 600px) {
  header p.tel {
    display: block;
    background: rgb(255 255 255 / 0.2);
  }
}
@media (min-width: 600px) {
  header p.mail {
    display: block;
    background: rgb(255 255 255 / 0.5);
  }
}
/* TEL・お問い合わせボタン */
header .hearder_info {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
    -ms-flex-pack: end;
      justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
header p a {
  position: relative;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 600px) {
  header .hearder_info {
    gap: 0;
  }
  header p a {
    padding: 0 15px;
  }
}
header p a img {
  filter: var(--filter_white);
}
header p.tel a img {
    width: 28px;
    height: auto;
}
header p.mail a img {
    width: 34px;
    height: auto;
}
@media (min-width: 600px) {
  header p.tel a img {
    width: 18px;
  }
  header p.mail a img {
    width: 22px;
  }
}
header p a span {
  display: none;
  margin-left: 10px;
}
@media (min-width: 600px) {
  header p a span {
    display: inline-block;
    color: #fff;
  }
}
/* ハンバーガーメニューボタン */
header nav {
  -ms-grid-column-align: end;
      justify-self: end;
  border-left: 1px solid #fff;
  position: relative;
  width: 56px;
  height: 100%;
}
@media (min-width: 600px) {
  header nav {
    border-left: none;
  }
}
/* ハンバーガーメニュー */
header nav .nav_list {
  position: fixed;
  -webkit-overflow-scrolling: auto;
  width: 100%;
  height: calc(100vh - 58px);
  top: 58px;
  right: 0;
  gap: 20px;
  padding: 24px 0;
  background: rgb(var(--main_color_rgb) / 0.95);
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -ms-flex-line-pack: center;
      align-content: center;
}
@media (min-width: 600px) {
  header nav .nav_list {
    padding: 50px;
  }
}
@media (min-width: 1025px) {
  header nav .nav_list {
    position: absolute;
    width: 458px;
    padding: 50px 120px;
  }
}
header nav .nav_list ul {
  width: 100%;
  height: 100%;
  padding: 0 40px 40px;
  overflow-y: scroll;
}
@media (min-width: 600px) {
  header nav .nav_list ul {
    padding: 0;
  }
}
header nav .nav_list ul li {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  position: relative;
  line-height: 3.3;
}
header nav .nav_list ul li > a {
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #fff;
  width: 100%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1;
  padding: 0 10px;
  border-bottom: 1px solid #fff;
  transition: -webkit-transform 0.5s;
  transition: all 0.5s;
}
header nav .nav_list ul li > a:before {
  content: "";
  display: block;
  width: 100%;
  height: calc(100% + 1px);
  position: absolute;
  left: 0;
  bottom: -1px;
  margin: auto;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
  z-index: -1;
}
header nav .nav_list ul li > a:after {
  display: block;
  content: "";
  width: 8px;
  height: 14px;
  background: url(images/icon_arrow.svg) center / cover no-repeat;
  filter: var(--filter_white);
}
header nav .nav_list ul li > a:hover {
  color: var(--main_color);
}
header nav .nav_list ul li > a:hover:before {
  background: #fff;
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
header nav .nav_list ul li > a:hover:after {
  filter: var(--filter_main_color);
}
@media (min-width: 600px) {
  header nav .nav_list ul li > a {
    font-size: 20px;
  }
}
header nav .nav_list ul li:nth-last-child(2) {
  margin-bottom: 30px;
}
header nav .nav_list ul li:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
/* SNSアイコン */
header nav .nav_list ul li:last-child .sns {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-bottom: 0;
}
header nav .nav_list ul li:last-child .sns a {
  background: #fff;
}
header nav .nav_list ul li:last-child .sns a img {
  filter: var(--filter_main_color);
}
header nav .menu-btn {
  display: none;
}
header nav .menu-btn:checked ~ .nav_list {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  border-top: 1px solid #fff;
}
@media (min-width: 600px) {
  header nav .menu-btn:checked ~ .nav_list {
    border: none;
  }
}
header nav .menu-btn:checked ~ .nav_list a,
header nav .menu-btn:checked ~ .nav_list li {
  opacity: 1;
}
header nav .menu-btn:checked ~ .bg {
  display: block;
}
header nav .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header nav .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
header nav .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
header nav .menu-btn:checked ~ .menu-icon .navicon {
  background: rgb(0 0 0 / 0);
  -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-btn:checked ~ nav {
  border-left: 1px solid #000;
}
header nav .menu-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgb(0 0 0 / 0);
  z-index: 1;
  position: relative;
}
header nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-icon .navicon:before, header nav .menu-icon .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #fff;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header nav .menu-icon .navicon:before {
  top: 9px;
}
header nav .menu-icon .navicon:after {
  bottom: 9px;
}

/*--------------------------------------
メイン
--------------------------------------*/
/* メインビジュアル */
main .mainvisual {
  position: relative;
}
main .mainvisual .swiper-pagination-horizontal {
  bottom: 20px;
}
main .mainvisual .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: transparent;
  border: 1px solid #fff;
  opacity: 1;
}
main .mainvisual .swiper-pagination-bullet-active {
  background: #fff;
}
main .mainvisual .swiper-pagination {
  z-index: 1;
}
main .mainvisual img {
  width: 100%;
}
main .mainvisual .sp {
  display: block;
}
@media (min-width: 600px) {
  main .mainvisual .sp {
    display: none;
  }
}
main .mainvisual .pc {
  display: none;
}
@media (min-width: 600px) {
  main .mainvisual .pc {
    display: block;
  }
}
/* 下層ページ サブビジュアル */
main .subvisual {
  background: url(images/sv.jpg) no-repeat 50% 0/cover;
  height: 30vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* margin-bottom: 40px; */
}
@media (min-width: 960px) {
  main .subvisual {
    background: url(images/sv.jpg) no-repeat 50% 60%/cover;
    height: 40vh;
  }
}
@media (min-width: 1025px) {
  main .subvisual {
  }
}
main .subvisual h2 {
  color: #fff;
  font-size: 32px;
  margin-top: 58px;
}
/* セクション共通 */
main.index .sec {
  padding: 80px 20px;
}
@media (min-width: 600px) {
  main.index .sec {
    padding: 120px 20px;
  }
}
main.index .sec .text {
  font-size: 12px;
  max-width: 800px;
  margin: 0 auto 40px;
}
@media (min-width: 600px) {
  main.index .sec .text {
    font-size: 14px;
    margin: 0 auto 64px;
  }
}
/* ---------- トップページ ABOUT ---------- */
main .section_about {
  background: url(images/bg_cat_01.jpg) no-repeat 0 0 / cover;
}
@media (min-width: 600px) {
  main .section_about {
    background: url(images/bg_cat_01.jpg) no-repeat 100% 40% / cover;
  }
}

/* ---------- トップページ SERVICE ---------- */
main .section_service {
  background: var(--main_color3);
}
main .section_service .inner > .service_list section {
    margin-bottom: 40px;
}
main .section_service .inner > .service_list section img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
main .section_service .inner > .service_list section h3 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: 24px;
  text-align: center;
}
@media (min-width: 600px) {
  main .section_service .inner > .service_list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 3), 1fr));
    gap: 0 min(2%, 24px);
    margin-bottom: 64px;
  }
  main .section_service .inner > .service_list section {
    margin-bottom: 0;
  }
  main .section_service .inner > .service_list section .text {
    margin-bottom: 0;
  }
}

/* ---------- トップページ WORKS ---------- */
main .section_works .works_wrap {
  position: relative;
  width: min(90%, 960px);
  margin: auto;
}
main .section_works .works_list {
  margin-bottom: 40px;
}
main .section_works .works_list li {
  width: calc(100% / 2);
  height: auto;
}
main .section_works .works_list article {
  height: 100%;
}
main .section_works .works_list article a {
  height: 100%;
  display: block;
  padding: 8px;
  border: var(--border);
  background: #fff;
}
main .section_works .works_list article a .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
  overflow: hidden;
}
main .section_works .works_list article a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
main .section_works .works_list article a h3 {
  color: var(--main_color);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
  margin-bottom: 8px;
  text-align: center;
  transition: all 0.4s ease-out;
}
main .section_works .works_list article a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  line-height: 1.5;
  transition: all 0.4s ease-out;
}
/* ホバー */
main .section_works .works_list article a:hover img {
  transform: scale(1.1);
}
main .section_works .works_list article a:hover h3 {
  color: var(--main_color2);
}
main .section_works .works_list article a:hover .text {
  opacity: 0.6;
}

@media (min-width: 600px) {
  main .section_works .works_list {
    margin-bottom: 64px;
  }
  main .section_works .works_list li {
    width: calc(100% / 3);
  }
  main .section_works .works_list article a {
    padding: 10px;
  }
}
/* スライダー矢印の装飾　*/
.works_wrap .swiper-button-prev:after,
.works_wrap .swiper-button-next:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 1rem;
  height: 1rem;
  margin: auto;
  border: 0;
  border-top: solid 3px var(--main_color);
  border-right: solid 3px var(--main_color);
}
.works_wrap .swiper-button-prev {
  left: -1.75rem;
}
.works_wrap .swiper-button-prev:after {
  transform: rotate(-135deg);
}
.works_wrap .swiper-button-next {
  right: -1.75rem;
}
.works_wrap .swiper-button-next:after {
  transform: rotate(45deg);
}
@media (min-width: 600px) {
  .works_wrap .swiper-button-prev:after,
  .works_wrap .swiper-button-next:after {
    width: 1.2rem;
    height: 1.2rem;
  }
  .works_wrap .swiper-button-prev {
    left: -2rem;
  }
  .works_wrap .swiper-button-next {
    right: -2rem;
  }
}

main .section_works .btn_01 {
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  main .section_works .btn_01 {
    margin-bottom: 64px;
  }
}
main .section_works picture img {
  width: 100%;
}

/* ---------- トップページ BLOG ---------- */
main .sec.section_blog {
  padding-top: 0;
}
main .section_blog .blog_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 0 8px;
  margin-bottom: 40px;
  position: relative;
}
main .section_blog .blog_list article {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-rows: subgrid;
  grid-row: span 5;
  gap: 4px;
  margin-bottom: 8px;
}
main .section_blog .blog_list article a {
  display: inherit;
  grid-template-rows: auto auto auto 1fr auto;
  grid-template-rows: subgrid;
  grid-row: inherit;
  gap: inherit;
  padding: 8px;
  border: var(--border);
}
main .section_blog .blog_list article a .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 8px;
  overflow: hidden;
}
main .section_blog .blog_list article a img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
main .section_blog .blog_list article a .article_text {
  display: inherit;
  grid-template-rows: auto 1em 3.5em;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 4px;
}
main .section_blog .blog_list article a h3 {
  color: var(--main_color);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  transition: all 0.4s ease-out;
}
main .section_blog .blog_list article a time {
  font-size: 12px;
  color: var(--main_color2);
  transition: all 0.4s ease-out;
}
main .section_blog .blog_list article a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  transition: all 0.4s ease-out;
}
main .section_blog .blog_list article a .stickarrow {
  width: 60px;
  height: 8px;
  margin: 8px 0 8px auto;
  border-bottom: var(--border);
  border-right: var(--border);
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
}
/* ホバー */
main .section_blog .blog_list article a:hover img {
  transform: scale(1.1);
}
main .section_blog .blog_list article a:hover h3 {
  color: var(--main_color2);
}
main .section_blog .blog_list article a:hover time,
main .section_blog .blog_list article a:hover .text {
  opacity: 0.6;
}

@media (min-width: 600px) {
  main .section_blog .blog_list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 0 16px;
    margin-bottom: 64px;
  }
  main .section_blog .blog_list article {
    margin-bottom: 16px;
  }
  main .section_blog .blog_list article a .article_text {
    display: inherit;
    grid-template-rows: auto 1.5em 4em;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: 4px;
  }
  main .section_blog .blog_list article a time,
  main .section_blog .blog_list article a .text {
    font-size: 14px;
  }
}

/* ---------- トップページ CORPORATE ---------- */
main .section_corporate {
  background: url(images/bg_cat_02.jpg) no-repeat 100% 0/cover;
}
main .section_corporate .box {
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto;
}
main .section_corporate .box .info,
main .section_corporate .box .btn {
  width: min(100%, 350px);
}
main .section_corporate .box .btn .corporate img {
  width: 18px;
  height: auto;
}
main .section_corporate .box .btn .recruit img {
  width: 22px;
  height: auto;
}

main .section_corporate .box .info ul {
  margin-bottom: 24px;
}
main .section_corporate .box .info ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  font-size: 16px;
  line-height: 1.4;
  margin-bottom: 5px;
}
main .section_corporate .box .info ul li span {
  width: min(20%, 72px);
  margin-right: 10px;
  font-size: 16px;
  color: var(--main_color);
  text-align: left;
}
@media (min-width: 600px) {
}
@media (min-width: 960px) {
  main .section_corporate .box {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 40% 60%;
    grid-template-columns: 40% 60%;
  }
  main .section_corporate .box .info ul li {
    font-size: 16px;
    line-height: 1.6;
  }
  main .section_corporate .box .info .sns {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
  main .section_corporate .box .btn {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: min(5%, 40px);
  }
  main .section_corporate .box .btn .btn_02 {
    -ms-flex-direction: column;
        flex-direction: column;
    font-size: 24px;
    margin-bottom: 0;
    padding: 64px 10px;
    letter-spacing: 0.1em;
  }
  main .section_corporate .box .btn .corporate img {
    width: 24px;
  }
  main .section_corporate .box .btn .recruit img {
    width: 30px;
  }
}

/* ---------- トップページ　NEWS＆SNS ---------- */
main .section_information .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 80px;
}
@media (min-width: 960px) {
  main .section_information .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 80px;
  }
  main .section_information section {
    width: 50%;
  }
}
/* NEWS */
.section_news .news_list {
  margin-bottom: 64px;
}
.section_news .news_list li a {
  display: block;
  font-size: 12px;
  border-bottom: var(--border);
  padding: 16px 16px 8px 16px;
}
.section_news .news_list li:first-of-type a {
  padding-top: 0;
}
@media (min-width: 600px) {
  .section_news .news_list li a {
    font-size: 14px;
  }
}
/* カテゴリ装飾 */
span[class^="notice"] {
  display: inline-block;
  width: 100px;
  background: var(--main_color);
  text-align: center;
  color: #fff;
  line-height: 1.8;
  padding: 0 8px;
}
span.notice_important {
  background: #c41b1b;
}
span.notice_works {
  background: #eb9600;
}
span.notice_campaing {
  background: #1a6fb4;
}
span.notice_event {
  background: #5e3179;
}
span.notice_update {
  background: #c41b73;
}
span.notice_6 {
  background: var(--main_color);
}
.section_news .news_list li a time {
  margin-left: 8px;
}
.section_news .news_list li a h3 {
  display: block;
  margin: 8px 0;
  font-size: 16px;
  line-height: 1.5;
}
/* SNS */
main .section_information section .twitter_box {
}
main .section_information section .twitter_box .twitter-timeline {
  width: 100% !important;
}

/*--------------------------------------
フッター
--------------------------------------*/
/* ---------- お問い合わせ ---------- */
footer address {
  background: url(images/bg_cat_03.jpg) no-repeat 50% 70%/cover;
  color: #fff;
  margin-bottom: 80px;
  padding: 40px 20px;
  text-align: center;
}
footer address .title {
  color: #fff;
}
footer address .title span {
  color: #fff;
}
footer address p {
  font-size: 12px;
  margin-bottom: 40px;
}
footer address p br {
  display: block;
}
footer address .btn {
  max-width: 520px;
  margin: auto;
}
footer address .btn img {
  margin-right: 10px;
}
footer address .btn .tel_btn img {
  width: 24px;
  height: auto;
  filter: var(--filter_white);
}
footer address .btn .mail_btn img {
  width: 30px;
  height: auto;
  filter: var(--filter_main_color);
}
@media (min-width: 1025px) {
  footer address .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    max-width: 800px;
  }
  footer address .btn a {
    width: 50%;
  }
}
@media (min-width: 600px) {
  footer address {
    padding: 80px 20px;
  }
  footer address p {
    font-size: 14px;
    margin-bottom: 40px;
  }
  footer address p br {
    display: none;
  }
}

/* ---------- パンくずリスト ---------- */
footer ul.breadcrumb {
  padding: 0 20px;
  font-size: 12px;
}
footer ul.breadcrumb li {
  display: inline-block;
}
footer ul.breadcrumb li:not(:nth-of-type(3)) {
  text-transform: uppercase;
}
footer ul.breadcrumb li:before {
	margin: 0 8px 0;
  display: inline-block;
  content: "";
  width: 5px;
  height: 9px;
  background: url(images/icon_arrow.svg) center / cover no-repeat;
  filter: var(--filter_black);
}
footer ul.breadcrumb li:first-child:before {
	display: none;
}
footer ul.breadcrumb li a {
	color: var(--main_color2);
}
@media (min-width: 1200px) {
  footer ul.breadcrumb {
  padding: 0;
  }
}


/* ---------- フッター ---------- */
footer .footer_bottom {
  padding: 40px 0;
  width: min(100%, 800px);
  margin: auto;
}
@media (min-width: 600px) {
  footer .footer_bottom {
    padding: 80px 0 40px;
  }
}
footer .footer_bottom figure {
  text-align: center;
}
footer .footer_bottom figure img {
  width: 160px;
  display: inline-block;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  footer .footer_bottom figure img {
    margin-bottom: 50px;
  }
}
/* フッターナビ */
footer .footer_bottom ul {
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
  gap: 8px;
  padding: 0 20px;
  text-align: center;
  margin-bottom: 40px;
}
footer .footer_bottom ul li {
  width: 48%;
}
footer .footer_bottom ul a {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
footer .footer_bottom ul a:hover {
  opacity: 0.7;
}
@media (min-width: 600px) {
  footer .footer_bottom ul li {
    width: auto;
  }
}
footer .footer_bottom .copyright {
  display: block;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
}
footer .arrow_top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .arrow_top a {
  display: none;
}
@media (min-width: 1025px) {
  footer .arrow_top a {
    font-size: 1.5em;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background: #fff;
    -webkit-box-shadow: 2px 2px 6px rgb(0 0 0 / 0.1);
            box-shadow: 2px 2px 6px rgb(0 0 0 / 0.1);
    border-radius: 100%;
    color: var(--main_color);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 60px;
    height: 60px;
    z-index: 1;
  }
}
footer .arrow_top a img {
  width: 21px;
  height: auto;
  filter: var(--filter_main_color);
}

/*--------------------------------------
タイトル
--------------------------------------*/
/* トップページの共通タイトル */
.title {
  font-size: 32px;
  text-align: center;
  letter-spacing: 0.05em;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .title {
    font-size: 36px;
  }
}
.title span {
  color: var(--gray);
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.1em;
}

/* 下層ページの共通タイトル1 */
.secondary_title {
  margin-bottom: 24px;
}
@media (min-width: 600px) {
  .secondary_title {
    margin-bottom: 40px;
  }
}
h3.secondary_title  {
  color: var(--main_color);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1;
}
h3.secondary_title span {
  display: inline-block;
  margin-left: 8px;
  font-size: 0.4em;
  color: var(--gray);
  letter-spacing: 0.1em;
}

/* 下層ページの共通タイトル2 */
h4.tertiary_title  {
  margin-bottom: 24px;
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.5;
}

/*--------------------------------------
共通のボタン
--------------------------------------*/
/* Moreボタン */
.btn_01 {
  font-size: 20px;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  border-radius: 40px;
  color: #fff;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 5px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.btn_01:hover {
  background: #fff;
  color: var(--main_color);
}

/* カテゴリリンクボタン、一覧へ戻るボタン */
.btn_02 {
  background: #fff;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.btn_02:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--main_color);
  border: 1px solid var(--main_color);
  -webkit-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transition: -webkit-transform ease 0.3s;
  transition: -webkit-transform ease 0.3s;
  transition: transform ease 0.3s;
  transition: transform ease 0.3s, -webkit-transform ease 0.3s;
}
.btn_02:hover {
  color: #fff;
}
.btn_02:hover:before {
  -webkit-transform-origin: 0% 50%;
          transform-origin: 0% 50%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.btn_02 img {
  filter: var(--filter_main_color);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.btn_02:hover img {
  filter: var(--filter_white);
}
@media (min-width: 1025px) {
  .btn_02 {
    margin: 0 auto;
  }
}

/* footerのお問い合わせボタン */
.btn_03 {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(20px, 3vw, 24px);
  text-align: left;
  padding: 0 15px;
  line-height: 1.5;
  margin-bottom: 10px;
  height: 90px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  line-height: 1.4;
}
@media (min-width: 600px) {
  .btn_03 {
    padding: 0 30px;
  }
}
.btn_03.tel_btn {
  background: var(--main_color);
}
.btn_03.tel_btn:hover {
  background: rgb(var(--main_color_rgb) / 0.85);
}
.btn_03.mail_btn {
  background: #fff;
  color: var(--main_color);
}
.btn_03.mail_btn:hover {
  background:  rgb(255 255 255 / 0.85);
}

.btn_04 {
  position: relative;
  font-size: 14px;
  background: var(--main_color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 16px;
  text-align: center;
  transition: all 0.3s;
  max-width: 140px;
    padding: 7px;
    margin-left: 10px;
}
@media (min-width: 600px) {
  .btn_04 {
    padding: 12px;
    width: min(100%, 360px);
  }
}
@media (min-width: 1025px) {
  .btn_04 {
    font-size: 15px;
  }
}

@media (min-width: 600px) {
  .btn_04::after {
    position: absolute;
    right: 14px;
    content: "";
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 40px;
}
.sns a {
  background: var(--main_color);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px !important;
  -webkit-transition: 0.5s !important;
  transition: 0.5s !important;
}
.sns a:hover {
  opacity: 0.7 !important;
}
.sns a:last-child {
  margin-right: 0;
}
.sns a img {
  width: 18px;
  height: auto;
  filter: var(--filter_white);
}

/*--------------------------------------
下層ページ
--------------------------------------*/
main:not(.index) .inner {
  padding: 40px 20px 80px;
}
main:not(.index) .sec {
  margin-bottom: 64px;
}
main:not(.index) .sec:last-child {
  margin-bottom: 0;
}
@media (min-width: 600px) {
  main:not(.index) .sec {
    margin-bottom: 80px;
  }
}
@media (min-width: 1200px) {
  main:not(.index) .inner {
    padding: 80px 0;
  }
}

main:not(.index) .sec p {
  margin-bottom: 1rem;
}
main:not(.index) .sec .text {
  /* padding: 40px 20px; */
  font-size: 14px;
  line-height: 1.75;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

.spacing {
  padding: 0 20px;
}
@media (min-width: 1025px) {
  .spacing {
    padding: 0;
  }
}

/* ---------- 下層ページ ABOUT ---------- */
/* CORPORATEのページで使う場合は
   .contents_about → .contents_corporate に書き換えてください */
.contents_about {
  overflow-x: hidden;
}
/* コンセプト */
.contents_about .section_concept {
  width: 100vw;
  padding: 80px 20px;
  margin: -40px calc(50% - 50vw) 0;
  text-align: center;
  background: var(--main_color3);
}
.contents_about .section_concept h3 {
  margin-bottom: 40px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
.contents_about .section_concept .concept_text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_about .section_concept .concept_text p:last-of-type{
  margin-bottom: 0;
}

/* ミッション */
.contents_about .section_mission > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.contents_about .section_mission > div img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .contents_about .section_concept {
    margin-top: -80px;
  }
.contents_about .section_mission > div {
    flex-direction: row;
    gap: min(4%, 40px);
  }
/*   .contents_about .section_mission > div img {
    width: 45%;
  } */
  .contents_about .section_mission .mission_text {
    width: 55%;
  }
}

/* バリュー */
.contents_about .section_value .value_item {
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contents_about .section_value .value_item:last-of-type {
  margin-bottom: 0;
}
.contents_about .section_value .value_item .num {
  font-size: 2rem;
  line-height: 1;
  color: var(--main_color2);
}
.contents_about .section_value .value_item .value_text h4 {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.3;
  margin-bottom: 8px;
}


/* ---------- 下層ページ CORPORATE ---------- */
/* ABOUTのページで使う場合は
   .contents_corporate → .contents_about に書き換えてください */
.contents_corporate .section_message > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 24px;
}
.contents_corporate .section_message .message_pic {
  width: 100%;
  height: auto;
}
.contents_corporate .section_message .message_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .contents_corporate .section_message > div {
    flex-direction: row;
    gap: min(4%, 40px);
  }
  .contents_corporate .section_message .message_text {
    width: 55%;
  }
  .contents_corporate .section_message .message_pic {
    width: 45%;
    aspect-ratio: 3 / 2;
  }
}

/* 事業所案内 */
.contents_corporate .section_office .office_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.contents_corporate .section_office .office_wrap > div {
  width: 100%;
}
/* 支店情報がある場合は、マップの下と各支店に下線を入れる */
.contents_corporate .section_office .office_wrap:has(+ div) div.map,
.contents_corporate .section_office .office_wrap:nth-of-type(2) > div {
  padding-bottom: 24px;
  border-bottom: var(--border);
}
.contents_corporate .section_office .office_wrap:nth-of-type(2) {
  display: grid;
  grid-template-columns: 1fr;
}
.contents_corporate .section_office .office_wrap div.map {
  order: 1;
}
.contents_corporate .section_office .office_wrap address ul li {
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  width: 100%;
}
.contents_corporate .section_office .office_wrap address ul li:first-child {
  margin-bottom: 1rem;
}
.contents_corporate .section_office .office_wrap address ul li span {
  width: min(30%, 72px);
  margin-right: 10px;
  text-align: left;
}
.contents_corporate .section_office .office_wrap .btn_01 {
  margin: 24px 0 0;
  padding: 10px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.contents_corporate .section_office .office_wrap .btn_01 img {
  width: 16px;
  height: auto;
  filter: var(--filter_white);
  -webkit-transition: all ease 0.3s;
  transition: all ease 0.3s;
}
.contents_corporate .section_office .office_wrap .btn_01:hover img {
  filter: var(--filter_main_color);
}
@media (min-width: 600px) {
  .contents_corporate .section_office .office_wrap {
    flex-direction: row;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    gap: 0 40px;
    margin-bottom: 40px;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) {
    grid-template-columns: repeat(3, 1fr); /* 支店数によって増減してください */
    align-items: stretch;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) > div {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-template-rows: subgrid;
    grid-row: span 4;
    align-content: start;
    gap: 0;
    padding: 0;
    border: none;
  }
  .contents_corporate .section_office .office_wrap:nth-of-type(2) address,
  .contents_corporate .section_office .office_wrap:nth-of-type(2) address ul {
    display: grid;
    grid-template-rows: 1fr auto auto;
    grid-template-rows: subgrid;
    grid-row: span 3;
    gap: inherit;
  }
  .contents_corporate .section_office .office_wrap div.map {
    order: 0;
    border: none !important;
  }
}

/* ---------- 下層ページ SERVICE ---------- */
/* 表示パターン01 */
.contents_service .section_service.wrap_01 {
  background: none;
}
.contents_service .section_service.wrap_01 .service_block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  -webkit-box-pack: justify;
    -ms-flex-pack: justify;
      justify-content: space-between;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  gap: 24px;
  width: min(100%, 640px);
  margin: auto;
}
.contents_service .section_service.wrap_01 .service_block:not(:last-of-type) {
  margin-bottom: 40px;
}
.contents_service .section_service.wrap_01 .service_block h3 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: clamp(24px, 4vw, 28px);;
  text-align: center;
}
.contents_service .section_service.wrap_01 .service_block img {
  width: 100%;
  height: auto;
}
@media (min-width: 960px) {
  .contents_service .section_service.wrap_01 .service_block {
    flex-direction: row;
    gap: min(4%, 40px);
    width: 100%;
  }
  .contents_service .section_service.wrap_01 .service_block:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .contents_service .section_service.wrap_01 .service_block:not(:last-of-type) {
    margin-bottom: 80px;
  }
  .contents_service .section_service.wrap_01 .service_block img {
    width: 45%;
  }
  .contents_service .section_service.wrap_01 .service_text {
    width: 55%;
  }
}
/* 表示パターン02 */
.contents_service .section_service.wrap_02 {
  margin-bottom: 80px !important;
}
.contents_service .section_service.wrap_02 .service_list,
.contents_service .section_service.wrap_02 .service_list section:last-of-type {
  margin-bottom: 0;
}

@media (max-width: 600px) {
  .contents_service .section_service.wrap_02 .inner {
    padding-bottom: 40px;
  }
}

/* ---------- 下層ページ MENU ---------- */
.contents_menu .section_menu .menu_box:not(:last-of-type) {
  margin-bottom: 40px;
}
/* 料金ページ用のtable_01 */
.contents_menu .section_menu .table_01 th,
.contents_menu .section_menu .table_01 td {
  display: table-cell;
  width: 50%;
  padding: 24px;
  text-align: center;
  border-bottom: var(--border);
}
.contents_menu .section_menu .table_01 tr:nth-of-type(even) {
  background: var(--table_bg_color);
}


/* ---------- 下層ページ FAQ ---------- */
.contents_faq .faq_list {
  width: min(100%, 1040px);
  margin: auto;
}
.contents_faq .faq_list dt {
  position: relative;
  margin-bottom: 8px;
  padding: 16px 32px 16px 16px;
  cursor: pointer;
}
.contents_faq .faq_list dd {
  padding: 16px;
}
/* アコーディオンボタン装飾 */
.contents_faq .faq_list dt:before,
.contents_faq .faq_list dt:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  display: block;
  width: 16px;
  height: 3px;
	background: var(--main_color2);
  transition: all 0.4s ease-out;
}
.contents_faq .faq_list dt:before {
  top: 48.5%;
	transform: rotate(-90deg);
}
.contents_faq .faq_list dt.open:before {
  opacity: 0;
	transform: rotate(-360deg);
}

.contents_faq .faq_list h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
    -ms-flex-align: start;
      align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.contents_faq .faq_list h3 span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  padding: 12px;
  background: var(--main_color);
  font-size: 1.2rem;
  font-weight: 300;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.contents_faq .faq_list .question {
  background: var(--main_color3);
}
.contents_faq .faq_list .answer {
  display: none;
}
.contents_faq .faq_list .answer h3 {
  font-weight: 700;
  margin-bottom: 8px;
}
.contents_faq .faq_list .answer h3 span {
  background: var(--main_color2);
}
.contents_faq .faq_list .answer p {
  text-align: justify;
}
@media (min-width: 600px) {
  .contents_faq .faq_list h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
      -ms-flex-align: center;
        align-items: center;
    gap: 16px;
  }
  .contents_faq .faq_list h3 span {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
}


/* ---------- 下層ページ RECRUIT ---------- */
/* メッセージ */
.contents_recruit .sec.section_recruit_message {
  width: 100%;
  text-align: center;
  background: #fff;
  margin-bottom: 0;
}
.contents_recruit .section_recruit_message h3 {
  margin-bottom: 40px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
.contents_recruit .sec.section_recruit_message .text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_recruit .sec.section_recruit_message p:last-of-type {
  margin-bottom: 0;
}

/* 福利厚生 */
.contents_recruit .sec.section_job_benefit {
  width: 100%;
  background: var(--main_color3);
  margin-bottom: 0;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item:not(:last-of-type) {
  margin-bottom: 40px;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item h4 {
  margin-bottom: 16px;
  font-size: clamp(20px, 3vw, 24px);
  text-align: center;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item img {
  width: 50%;
  height: auto;
}
.contents_recruit .section_job_benefit .benefit_list .benefit_item p {
  font-size: 14px;
  margin-bottom: 0;
}

@media (min-width: 600px) {
  .contents_recruit .section_job_benefit .benefit_list {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 3), 1fr));
    gap: 0 min(2%, 24px);
  }
  .contents_recruit .section_job_benefit .benefit_list .benefit_item {
    margin-bottom: 0 !important;
  }
}

/* 募集要項 */
.contents_recruit .section_job_description .job_tab_list {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  gap: 8px;
  width: min(100%, 1040px);
  margin: 0 auto 8px;
}
.contents_recruit .section_job_description .job_tab_list .job_tab {
  display: -webkit-box;
    display: -ms-flexbox;
      display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 8px 0;
  border-radius: 99px;
  background: var(--main_color3);
  font-size: 14px;
  cursor: pointer;
}
.contents_recruit .section_job_description .job_tab_list .job_tab.active {
  background: var(--main_color);
  color: #fff;
}
.contents_recruit .section_job_description .job_box {
  display: none;
}
.contents_recruit .section_job_description .job_box.active {
  display: block;
  animation: tab_fade 0.8s ease-out forwards;
}
@keyframes tab_fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (min-width: 600px) {
  .contents_recruit .section_job_description .job_tab_list {
    gap: 24px;
    margin-bottom: 40px;
  }
  .contents_recruit .section_job_description .job_tab_list .job_tab {
    padding: 16px 0;
    font-size: 16px;
  }
}


/* ---------- 下層ページ CONTACT ---------- */
.contents_contact h3.secondary_title {
  font-size: clamp(24px, 4vw, 34px);
}

.contents_contact p {
  text-align: center;
  font-size: 18px;
}


/* ---------- 下層ページ WORKS & BLOG ---------- */
.contents_works .works_list,
.contents_blog .section_blog .blog_list {
  margin-bottom: 0;
}

.contents_works .works_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 16px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  width: 100%;
  position: relative;
}
.contents_works .works_list article {
  display: inherit;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}
.contents_works .works_list article a {
  display: grid;
  grid-template-rows: inherit;
  grid-row: inherit;
  align-items: center;
  gap: 0;
  padding: 8px;
  border: var(--border);
}
.contents_works .works_list article .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 16px;
  overflow: hidden;
}
.contents_works .works_list article a img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a:hover img {
  transform: scale(1.1);
}
/* .contents_works .works_list article a time {
  font-size: 12px;
} */
.contents_works .works_list article a h3 {
  margin-bottom: 8px;
  text-align: center;
  color: var(--main_color);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a .text {
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 3;
  font-size: 12px;
  line-height: 1.5;
  text-align: left;
  transition: all 0.4s ease-out;
}
.contents_works .works_list article a .any_text {
  margin-bottom: 0;
}
/* ホバー */
.contents_works .works_list article a:hover img {
  transform: scale(1.1);
}
.contents_works .works_list article a:hover h3 {
  color: var(--main_color2);
}
.contents_works .works_list article a:hover .text {
  opacity: 0.6;
}
/* .contents_works .works_list article a .stickarrow {
  width: 60px;
  height: 8px;
  margin-left: auto;
  border-bottom: 1px solid;
  border-right: 1px solid;
  -webkit-transform: skew(45deg);
          transform: skew(45deg);
} */
@media (min-width: 600px) {
  .contents_works .works_list {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
  }
  .contents_works .works_list article a {
    padding: 10px;
  }
  .contents_works .works_list article a .text {
    font-size: 14px;
  }
}

/* WORKS モーダルver. の調整 */
/* モーダルの内容を非表示にしておく */
.modal_works_detail {
  display: none;
}
/* モーダル装飾調整 */
.modaal-wrapper .modaal-close {
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
  background: #fff;
  box-shadow: 0 0 8px rgba(0 0 0 / 0.2);
}
.modaal-close:after, .modaal-close:before {
  top: 9px;
  left: 18px;
  background: var(--main_color);
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: var(--main_color2);
}
.modaal-container {
  width: min(100%, 800px);
}
.modaal-container img {
  width: 100%;
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 16px;
}
.modaal-content-container {
  padding: 16px;
}
.modaal-content-container h3 {
  margin-bottom: 16px;
  text-align: center;
  color: var(--main_color);
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.2;
}
.modaal-content-container .text {
  font-size: clamp(12px, 2vw, 14px);
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}


/* ---------- 下層ページ WORKS & BLOG詳細 ---------- */
.contents_post_detail {
}
/* ブログページ用サブタイトル */
.contents_post_detail .subvisual p.subtitle {
  color: #fff;
  font-size: 32px;
  margin-top: 58px;
}
/* 記事　*/
.section_post_detail {
  width: 100%;
}
.section_post_detail article {
  margin-bottom: 64px;
}
.section_post_detail article .post_title {
  margin-bottom: 24px;
  margin-top: -0.5rem;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
}
/* ブログの場合の見出し */
.section_post_detail article .post_title.blog {
  margin-bottom: 0;
}
.section_post_detail article time {
  display: inline-block;
  margin-bottom: 16px;
  font-size: 16px;
  color: var(--main_color2);
}
.section_post_detail article .post_eyecatch {
  margin-bottom: 24px;
}
.section_post_detail article .text a,
.text.modal_works_text a {
  color: var(--main_color2);
}
.section_post_detail article .text img {
  max-width: 100% !important;
  height: auto !important;
  margin-bottom: 16px;
}
/* 任意テキスト(WORKSモーダルにも適用) */
.section_post_detail article .text.any_text,
.text.modal_works_text .any_text {
  margin-bottom: 24px;
  font-size: clamp(16px, 2vw, 18px);
}
.section_post_detail article .text.any_text span,
.text.modal_works_text .any_text span {
  display: inline-block;
  padding: 2px 8px;
  margin-right: 8px;
  background: var(--main_color);
  color: #fff;
}
/* 任意テキストが改行ありの場合 */
.section_post_detail article .text.any_text span.nl2,
.text.modal_works_text .any_text span.nl2 {
  margin-bottom: 8px;
}

/* ブログ記事用 見出しH2〜H4 */
.section_post_detail.blog article h2 {
  font-size: clamp(22px, 2.8vw, 28px);
  line-height: 1.5;
  margin: 48px 0 24px;
  padding: 8px 16px;
  background: var(--main_color2);
  color: #fff;
}
.section_post_detail.blog article h3 {
  font-size: clamp(18px, 2.6vw, 24px);
  line-height: 1.5;
  margin: 48px 0 24px;
  padding: 8px 8px 8px 12px;
  background: var(--form_bg_color);
  border-left: 4px solid var(--main_color2);
}
.section_post_detail.blog article h4 {
  position: relative;
  padding-left: 16px;
  font-size: clamp(18px, 2vw, 20px);
  margin: 24px 0 8px;
  border-bottom: 1px solid var(--main_color2);
}
.section_post_detail.blog article h4:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 2px;
  width: 8px;
  height: 8px;
  background: var(--main_color2);
  transform: translateY(-50%) rotate(45deg);
}
/* テーブル(WORKSモーダルにも適用) */
.section_post_detail article table,
.text.modal_works_text table {
  width: min(100%, 1040px);
  margin: auto;
  border-collapse: collapse;
  /* font-size: 14px; */
}
.section_post_detail article table tr th,
.section_post_detail article table tr td,
.text.modal_works_text table tr th,
.text.modal_works_text table tr td {
  padding: 16px 8px;
  border: var(--border);
}
.section_post_detail article table tr th,
.text.modal_works_text table tr th {
  background: var(--table_bg_color);
}
@media (min-width: 600px) {
  /* .section_post_detail article table,
  .text.modal_works_text table {
    font-size: 16px;
  } */
  .section_post_detail article table tr th,
  .section_post_detail article table tr td,
  .text.modal_works_text table tr th,
  .text.modal_works_text table tr td {
    padding: 24px;
    vertical-align: middle;
  }
}
/* リスト(WORKSモーダルにも適用) */
.section_post_detail article ul,
.section_post_detail article ol,
.text.modal_works_text ul,
.text.modal_works_text ol {
  padding-inline-start: 1rem;
}
.section_post_detail article ul li,
.text.modal_works_text ul li {
  position: relative;
}
.section_post_detail article ul li:before,
.text.modal_works_text ul li:before {
  content: '';
  color: var(--main_color2);
  position: absolute;
  top: 0.6rem;
  left: -0.75rem;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: var(--main_color2);
}
.section_post_detail article ol,
.text.modal_works_text ol {
  list-style: decimal;
}
.section_post_detail article ol li::marker,
.text.modal_works_text ol li::marker {
  color: var(--main_color2);
  font-weight: 700;
}
.section_post_detail article dt,
.text.modal_works_text dt {
  color: var(--main_color2);
}

/* 最新の投稿 */
.contents_post_detail aside {
  width: 100%;
}
.contents_post_detail aside h4 {
  font-size: clamp(20px, 3vw, 24px);
}
.contents_post_detail aside .new-post_list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.contents_post_detail aside .new-post_list article {
  border: var(--border);
}
.contents_post_detail aside .new-post_list a {
  display:-webkit-box;
    display:-ms-flexbox;
      display:flex;
  -webkit-box-direction: normal;
    -ms-flex-direction: column;
      flex-direction: column;
  -webkit-box-align: center;
    -ms-flex-align: center;
      align-items: center;
  gap: 8px;
  padding: 8px;
}
.contents_post_detail aside .new-post_list h5 {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.5;
}
.contents_post_detail aside .new-post_list .thum {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
}
.contents_post_detail aside .new-post_list .thum img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (600px < width < 961px ) {
  .contents_post_detail .flex {
    flex-direction: column;
  }
  .contents_post_detail aside .new-post_list {
    gap: 16px;
  }
}

@media (min-width: 600px) and (max-width: 961px) {
  .contents_post_detail .flex {
    flex-direction: column;
  }
  .contents_post_detail aside .new-post_list {
    gap: 16px;
  }
}

@media (min-width: 960px) {
  .contents_post_detail .sec.section_post_detail {
    margin-bottom: 0;
  }
  .section_post_detail {
    width: 68%;
  }
  .contents_post_detail aside {
    width: 28%;
  }
  .contents_post_detail aside .new-post_list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .contents_post_detail aside .new-post_list article {
    border-left: 0;
    border-right: 0;
  }
  .contents_post_detail aside .new-post_list article:not(:first-of-type) {
    border-top: 0;
  }
  .contents_post_detail aside .new-post_list a {
    -webkit-box-direction: normal;
      -ms-flex-direction: row;
        flex-direction: row;
    gap: 16px;
  }
  .contents_post_detail aside .new-post_list h5 {
    width: 65%;
  }
  .contents_post_detail aside .new-post_list .thum {
    width: 35%;
    aspect-ratio: 1 / 1;
  }
}

/* ---------- 下層ページ NEWS ---------- */
.contents_news {
}
.contents_news .section_news .news_list {
  width: min(100%, 800px);
  margin: auto;
}
@media (min-width: 600px) {
  .contents_news .section_news .news_list {
  }
}

/* ---------- 下層ページ NEWS詳細 ---------- */
.contents_news_detail {
}
.contents_news_detail article {
  width: min(100%, 800px);
  margin: 0 auto 64px;
}
.contents_news_detail article h3 {
  font-size: clamp(26px, 4vw, 34px);
  margin-bottom: 24px;
  margin-top: -0.5rem;
  line-height: 1.5;
}
.contents_news_detail article time {
  margin-left: 8px;
}
.contents_news_detail .news_info {
  font-size: 12px;
  margin-bottom: 36px;;
}
.contents_news_detail article .text a {
  color: var(--main_color2);
}
.contents_news_detail article .text img {
  max-width: 100% !important;
  height: 100% !important;
}
@media (min-width: 600px) {
  .contents_news_detail .news_info {
    font-size: 14px;
  }
}

/* ---------- 下層ページ 404 ---------- */
.contents_err {
}


