@charset "UTF-8";
/*変数*/
:root {
  --main_color: #065C3F;
  --main_color_rgb: 6 92 63;
  --main_color2: #56A97F;
  --main_color3: #21784C;
  --main_color4: #343D44;
  --main_color5: #f2f6f4;

  --filter_main_color: invert(22%) sepia(66%) saturate(899%) hue-rotate(118deg) brightness(100%) contrast(95%);
  --filter_main_color3: invert(39%) sepia(60%) saturate(482%) hue-rotate(97deg) brightness(85%) contrast(91%);
  --filter_main_color4: invert(24%) sepia(9%) saturate(774%) hue-rotate(164deg) brightness(91%) contrast(97%);
  --filter_white: invert(100%) sepia(100%) saturate(0%) hue-rotate(137deg) brightness(106%) contrast(101%);
  --filter_black: invert(21%) sepia(0%) saturate(3188%) hue-rotate(144deg) brightness(96%) contrast(100%);;

  --table_bg_color: #f2f8f6;
  --form_bg_color: #f3f4f5;
  --black:#333;
  --gray: #bbb;
  --red: #881b2f;
  --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: "Noto Sans", Arial, Roboto, "Hiragino Kaku Gothic Pro", "Yu Gothic", 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;
}

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

::selection {
  background: var(--main_color2);
  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;
}

@media screen and (min-width: 600px) {
	.sp{ display: none !important; }
}
@media screen and (max-width: 600px) {
	.pc{ display: none !important; }
}

.mb_5{margin-bottom: 5px !important;}
.mb_10{margin-bottom: 10px !important;}
.mb_20{margin-bottom: 20px !important;}
.mb_30{margin-bottom: 30px !important;}
.mb_40{margin-bottom: 40px !important;}

.center{text-align: center;}
.left{text-align: left;}
.right{text-align: right;}

.fs_07em{font-size: 0.7em;}
.fs_09em{font-size: 0.9em;}
.fs_11em{font-size: 1.1em;}
.fs_13em{font-size: 1.3em;}

.fw_bold,strong{font-weight: 900;}

.tc_main_color{ color: var(--main_color); }
.tc_main_color4{ color: var(--main_color4); }

/*--------------------------------------
共通のtable
--------------------------------------*/
table {
  border-spacing: 0;
}
.table_01 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
  border-spacing: 10px;
}
.table_01 tr th,
.table_01 tr td {
  display: block;
  padding: 24px 0 8px;
  border-bottom: var(--border);
}
.table_01 tr th {
  color: var(--main_color);
  border-bottom: 1px solid var(--main_color);
}
.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_color);
  }
}

/*--------------------------------------
共通の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;
    padding: 20px 10px;
  }
}

form .item .label {
  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;
  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%;
  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 {
    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_color3);
  border: none;
  color: #fff;
  font-size: 16px;
  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;
  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_color3);
  color: var(--main_color3);
}
.page_list li.active {
  background: var(--main_color3);
  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 {
  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: 50px;
  aspect-ratio: 1;
  border-radius: 50%;
  border: 8px solid var(--main_color2);
  border-right-color: var(--main_color);
  position: relative;
  animation: l24 1s infinite linear;
}
.loader:before,
.loader:after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: inherit;
  animation: inherit;
  animation-duration: 2s;
}
.loader:after {
  animation-duration: 4s;
}
@keyframes l24 {
  100% {transform: rotate(1turn)}
}

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--main_color);
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 58px 58px;
  grid-template-columns: 1fr 58px 58px;
  position: fixed;
  width: 100%;
  height: 58px;
  z-index: 20;
}
@media (min-width: 600px) {
  header {
    -ms-grid-columns: auto 200px 58px;
    grid-template-columns: auto 200px 58px;
  }
}
@media (min-width: 950px) {
  header {
    -ms-grid-columns: auto 2fr 200px 58px;
    grid-template-columns: auto 2fr 200px 58px;
  }
}
header h1 {
  padding: 6px 0 10px 10px;
  position: relative;
  z-index: 1;
}
header h1 img {
  width: 100%;
  max-width: 200px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 600px) {
  header h1 img {
    max-width: 250px;
  }
}
/* PC用ナビゲーション */
header .header_nav {
  display: none;
}
@media (min-width: 950px) {
  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: 1px;
    background-color: var(--main_color2);
    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;
  }
}
@media (min-width: 600px) {
  header p.mail {
    display: block;
    background: var(--main_color3);
  }
}
/* 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.mail a img {
    width: 34px;
    height: auto;
    filter: var(--filter_white);
}
@media (min-width: 600px) {
  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;
  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;
  scrollbar-width: none; /*Fxで非表示*/
}
@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:last-child {
  margin-bottom: 0;
  border-bottom: none;
}
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%;
  height: auto;
}
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;
}
@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: clamp(30px,6vw,36px);
  margin-top: 58px;
}
main .subvisual h2 span {
  color: #fff;
}
/* セクション共通 */
main.index .sec {
  padding: 60px 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 center top / cover;
}

/* ---------- トップページ SERVICE ---------- */
main .section_service {
  background: url(../images/bg_cat_02.jpg) no-repeat right -310px top / cover;
}
@media (min-width: 600px) {
  main .section_service {
    background-position: center top;
  }
}

/* ---------- トップページ WORKS ---------- */
main .section_works {
  position: relative;
}
main .section_works::before {
  content: "";
  width: 100%;
  height: 260px;
  background: url(../images/bg_cat_03.jpg) no-repeat center top / cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 600px) {
  main .section_works::before {
    height: 320px;
  }
}
main .section_works .title,
main .section_works .title span {
  color: #fff;
}

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%;
  border: var(--border);
  padding: 8px;
  padding-bottom: 50px;
  background: #fff;
  position: relative;
}
@media (min-width: 600px) {
  main .section_works .works_list article {
    padding-bottom: 65px;
  }
}

/* Moreボタン */
main .section_works .works_list a.btn_05 {
  font-size: clamp(10px, 2vw, 12px);
  background: var(--main_color3);
  border: 1px solid var(--main_color3);
  border-radius: 40px;
  color: #fff;
  display: block;
  margin: 0 auto;
  padding: 5px;
  text-align: center;
  width: calc(100% - 16px);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  bottom: 8px;
  letter-spacing: -1px;
}
main .section_works .works_list a.btn_05::after {
  content: "";
  width: 5px;
  height: 9px;
  background: url(../images/icon_arrow.svg) center /cover no-repeat;
  filter: var(--filter_white);
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
main .section_works .works_list a.btn_05:hover {
  background: #fff;
  color: var(--main_color);
}
main .section_works .works_list a.btn_05:hover::after {
  filter: var(--filter_main_color4);
}

main .section_works .works_list article a > .thum {
  width: 100%;
  aspect-ratio: 1 / 0.522;
  margin-bottom: 16px;
  overflow: hidden;
}
main .section_works .works_list article a > .thum img {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
    object-fit: cover;
  transition: all 0.4s ease-out;
}
main .section_works .works_list article a > h3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  color: var(--main_color);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
  margin-bottom: 8px;
  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 > .thum 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);
  }
}
/* スライダー矢印の装飾　*/
.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;
  }
}

/* ---------- トップページ CORPORATE ---------- */
main .section_corporate {
  background: url(../images/bg_cat_04.jpg) no-repeat center top / cover;
}
main .section_corporate .title,
main .section_corporate .title span {
  color: #fff;
}

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%;
  color: #fff;
  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;
  text-align: left;
}
@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 .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.5;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.4;
}
span.notice_1 {
  background: var(--main_color);
}
span.notice_2 {
  background: var(--main_color);
}
span.notice_3 {
  background: var(--main_color);
}
span.notice_4 {
  background: var(--main_color);
}
span.notice_5 {
  background: var(--main_color);
}
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;
}

/*--------------------------------------
フッター
--------------------------------------*/
/* ---------- お問い合わせ ---------- */
footer address {
  background: var(--main_color4);
  color: #fff;
  margin-bottom: 40px;
  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: 420px;
  margin: auto;
}
footer address .btn img {
  margin-right: 10px;
}
footer address .btn .mail_btn img {
  width: 30px;
  height: auto;
  filter: var(--filter_white);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
footer address .btn .mail_btn:hover img {
  filter: var(--filter_main_color3);
}
@media (min-width: 1200px) {
  footer address {
    margin-bottom: 80px;
  }
}
@media (min-width: 1025px) {
  footer address .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@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;
  text-align: center;
}
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_color);
}
@media (min-width: 1200px) {
  footer ul.breadcrumb {
  padding: 0;
  }
}


/* ---------- フッター ---------- */
@media (min-width: 1200px) {
  footer .footer_line {
    border-top: solid 1px var(--main_color);
    padding-top: 40px;
  }
}
footer .footer_bottom {
  padding: 40px 0;
  width: min(100%, 800px);
  margin: auto;
}
footer .footer_bottom figure {
  text-align: center;
}
footer .footer_bottom figure img {
  width: 100%;
  max-width: 250px;
  height: auto;
  display: inline-block;
  margin: 0 auto 30px;
}
@media (min-width: 600px) {
  footer .footer_bottom figure img {
    max-width: 320px;
    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: 10px;
  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: 30px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  text-align: center;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  .title {
    font-size: 36px;
  }
}
.title span {
  color: var(--main_color);
  display: block;
  font-size: 0.5em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

/* 下層ページの共通タイトル1 */
.secondary_title {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 30px;
}
.secondary_title span {
  color: var(--main_color);
  display: block;
  font-size: 0.5em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media (min-width: 600px) {
  .secondary_title {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

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

/*--------------------------------------
共通のボタン
--------------------------------------*/
/* Moreボタン */
.btn_01 {
  background: var(--main_color4);
  border: 1px solid var(--main_color4);
  border-radius: 40px;
  color: #fff;
  display: block;
  margin: 0 auto;
  max-width: 300px;
  padding: 10px;
  text-align: center;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.btn_01::after {
  content: "";
  width: 7px;
  height: 12px;
  background: url(../images/icon_arrow.svg) center /cover no-repeat;
  filter: var(--filter_white);
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.btn_01.btn_back::after {
  left: 15px;
  transform: translateY(-50%) scale(-1,1);
}
.btn_01:hover {
  background: #fff;
  color: var(--main_color4);
}
.btn_01:hover::after {
  filter: var(--filter_main_color4);
}

/* カテゴリリンクボタン、一覧へ戻るボタン */
.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_color4);
  border: 1px solid var(--main_color4);
  -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.mail_btn {
  width: 100%;
  background: var(--main_color3);
  color: #fff;
}
.btn_03.mail_btn:hover {
  background:  #fff;
  color: var(--main_color3);
}

.btn_04 {
  position: relative;
  font-size: 14px;
  background: var(--main_color3);
  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);
  }
}

/*--------------------------------------
下層ページ
--------------------------------------*/
main:not(.index) .inner {
  padding: 60px 20px;
}
@media (min-width: 1200px) {
  main:not(.index) .inner {
    padding: 80px 20px;
  }
}

main:not(.index) .sec p {
  margin-bottom: 1rem;
}
main:not(.index) .sec .text {
  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 ---------- */
.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 ---------- */
/* 代表メッセージ */
.contents_corporate .section_message .message_box {
  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;
  color: #fff;
  background: var(--main_color4);
  padding: clamp(20px, 6vw, 60px);
}
.contents_corporate .section_message .message_text {
  order: 2;
}
.contents_corporate .section_message .message_text h4 {
  border-bottom: solid 1px #5b636a;
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.contents_corporate .section_message .message_pic {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto;
  order: 1;
}
.contents_corporate .section_message .message_pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 600px) {
  .contents_corporate .section_message .message_box {
    flex-direction: row;
    gap: 40px;
  }
  .contents_corporate .section_message .message_text {
    width: 75%;
    order: 1;
  }
  .contents_corporate .section_message .message_pic {
    width: max(260px,25%);
    order: 2;
  }
}

/* 企業情報 */
.contents_corporate .section_company .inner {
  padding-top: 0;
}
.contents_corporate .section_company .secondary_title {
  margin-bottom: 0;
}
.contents_corporate .section_company .company_map {
  width: min(100%, 1040px);
  margin: 40px auto 0;
}
@media (min-width: 600px) {
  .contents_corporate .section_company .secondary_title {
    margin-bottom: 40px;
  }
  .contents_corporate .section_company .company_map {
    margin-top: 60px;
  }
}

/* ---------- 下層ページ SERVICE ---------- */
.contents_service .section_service {
  background: none;
}

.contents_service .section_service h3 {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 30px;
}
@media (min-width: 600px) {
  .contents_service .section_service h3 {
    font-size: 36px;
    margin-bottom: 40px;
  }
}

.contents_service .section_service .service_list {
  display: -ms-grid;
  display: grid;
  gap: 24px;
}
.contents_service .section_service .service_list section p {
  margin-bottom: 0;
}

.contents_service .section_service.service_02,
.contents_service .section_service.service_04 {
  background: var(--main_color5);
}

@media (min-width: 600px) {
  .contents_service .section_service.service_01 .service_list {
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 2), 1fr));
  }
}
.contents_service .section_service.service_01 .service_list section {
  border: solid 1px var(--main_color);
  padding: clamp(20px,4vw,40px);
}
.contents_service .section_service.service_01 .service_list section .case {
  display: inline-block;
  color: #fff;
  background: var(--main_color);
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1px 10px 0;
  margin-bottom: 10px;
}
.contents_service .section_service.service_01 .service_list section h4 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  border-bottom: solid 1px var(--main_color);
  padding-bottom: 16px;
}

@media (min-width: 600px) {
  .contents_service .section_service.service_03 .service_list {
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 2), 1fr));
  }
}
.contents_service .section_service.service_03 .service_list section {
  background: var(--main_color5);
  padding: clamp(20px,4vw,40px);
}
.contents_service .section_service.service_03 .service_list section h4 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.contents_service .section_service.service_03 .service_block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-top: 24px;
  border: solid 1px var(--main_color);
  padding: clamp(20px, 4vw, 40px);
}
.contents_service .section_service.service_03 .service_block img {
  width: 100%;
  height: auto;
}
.contents_service .section_service.service_03 .service_block h4 {
  color: var(--main_color);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}
.contents_service .section_service.service_03 .service_block .text p:last-child {
  margin-bottom: 0;
}
@media (min-width: 800px) {
  .contents_service .section_service.service_03 .service_block {
    grid-template-columns: 1fr 30%;
    gap: 40px;
    margin-top: 40px;
  }
  .contents_service .section_service.service_03 .service_block img {
    order: 2;
  }
  .contents_service .section_service.service_03 .service_block h4 {
    order: 1;
  }
}

.contents_service .section_service.service_04 .service_works_box {
  border: solid 1px var(--main_color);
  padding: clamp(20px, 4vw, 40px);
}
.contents_service .section_service.service_04 .service_works_box h4 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
  margin-bottom: 24px;
}
.contents_service .section_service.service_04 .service_works_box .text p:last-child {
  margin-bottom: 0;
}

.contents_service .section_service.service_04 .service_works_title {
  font-size: clamp(16px, 2vw, 20px);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.5;
  margin: 30px 0;
}
.contents_service .section_service.service_04 .service_works {
  background: #fff;
  padding: clamp(20px, 4vw, 40px);
  border-radius: 8px;
}
.contents_service .section_service.service_04 .service_works li {
  font-size: clamp(14px, 2vw, 16px);
  border-bottom: solid 1px #cfdbd7;
  margin-bottom: 10px;
  padding-bottom: 10px;
  padding-left: 1em;
  text-indent: -1em;
}
.contents_service .section_service.service_04 .service_works li:last-child {
  margin-bottom: 0;
}

.contents_service .section_service .img_box img {
  width: 100%;
  height: auto;
}

/* 表示パターン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: start;
    -ms-flex-align: start;
      align-items: start;
  gap: 24px;
  width: min(100%, 640px);
  margin: auto;
  border: solid 1px var(--main_color);
  padding: clamp(20px, 4vw, 40px);
  margin-bottom: 24px;
}
.contents_service .section_service.wrap_01 .service_block h4 {
  margin-bottom: 16px;
  color: var(--main_color);
  font-size: clamp(20px, 4vw, 24px);
  font-weight: bold;
  line-height: 1.2;
}
.contents_service .section_service.wrap_01 .service_block img {
  width: 100%;
  height: auto;
}
.contents_service .section_service.wrap_01 .service_block .flow {
  display: inline-block;
  color: #fff;
  background: var(--main_color);
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1px 10px 0;
  margin-bottom: 10px;
}
@media (min-width: 600px) {
  .contents_service .section_service.wrap_01 .service_block {
    flex-direction: row;
    gap: min(4%, 40px);
    width: 100%;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
  }
  .contents_service .section_service.wrap_01 .service_block:nth-of-type(even) {
    flex-direction: row-reverse;
  }
  .contents_service .section_service.wrap_01 .service_block img {
    width: 45%;
  }
  .contents_service .section_service.wrap_01 .service_text {
    width: 55%;
  }
}

/* ---------- 下層ページ 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: 20px;
}
/* アコーディオンボタン装飾 */
.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: 12px;
  line-height: 1.4;
}
.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: start;
      -ms-flex-align: start;
          align-items: start;
  font-weight: 700;
  text-align: center;
  color: var(--main_color);
  font-size: 20px;
  line-height: 1;
}
.contents_faq .faq_list .question {
  color: var(--main_color);
  background: var(--main_color5);
  padding: 20px 40px 20px 20px;
  border-radius: 8px;
}
.contents_faq .faq_list .answer {
  display: none;
}
.contents_faq .faq_list .answer h3 {
  font-weight: 700;
  margin-bottom: 8px;
}
.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: 12px;
  }
  .contents_faq .faq_list h3 span {
    font-size: 1.5rem;
  }
}

/* ---------- 下層ページ RECRUIT ---------- */
/* メッセージ */
.contents_recruit .sec.section_recruit_message {
  width: 100%;
  background: url(../images/bg_cat_01.jpg) no-repeat center top / cover;
}
.contents_recruit .section_recruit_message h3 {
  font-size: clamp(20px, 2vw, 24px);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.5;
  border-bottom: solid 1px var(--main_color);
  padding-bottom: 30px;
  margin-bottom: 30px;
}
.contents_recruit .section_recruit_message ul {
  display: grid;
  gap: 24px;
  margin-bottom: 30px;
}
.contents_recruit .section_recruit_message li {
  background: rgba(255, 255, 255, 0.7);
  border: solid 1px var(--main_color);
  padding: clamp(20px, 4vw, 40px);
}
.contents_recruit .section_recruit_message li .case {
  display: inline-block;
  color: #fff;
  background: var(--main_color);
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1px 10px 0;
  margin-bottom: 10px;
}
.contents_recruit .section_recruit_message li p {
  font-size: clamp(14px,2vw,18px);
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
}
@media (min-width: 600px) {
  .contents_recruit .section_recruit_message ul {
    grid-template-columns: repeat(auto-fit, minmax(calc((100% - 48px) / 2), 1fr));
  }
}

/* 募集要項 */
.contents_recruit .section_job_description {
  background: var(--main_color5);
}
.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;
  color: #fff;
  background: var(--main_color4);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.4s ease-out;
}
.contents_recruit .section_job_description .job_tab_list .job_tab.active,
.contents_recruit .section_job_description .job_tab_list .job_tab:hover {
  background: var(--main_color3);
  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;
  }
}
@media (min-width: 1200px) {
  .contents_recruit .section_job_description {
    margin-bottom: 80px;
  }
}

/* ---------- 下層ページ CONTACT ---------- */
.contents_contact h3.secondary_title {
  font-size: clamp(24px, 4vw, 34px);
}
.contents_contact p {
  text-align: center;
  font-size: 18px;
}
.contents_contact .contact_message {
  background: var(--main_color5);
  padding: clamp(20px, 4vw, 40px);
}
.contents_contact .contact_message_error {
  color: var(--red);
  background: #fef0f2;
  padding: clamp(20px, 4vw, 40px);
}

/* ---------- 下層ページ WORKS & BLOG ---------- */
.contents_works .section_works::before {
  display: none;
}
.contents_works .section_works .works_list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.contents_works .section_works .works_list article a > h4 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2;
  color: var(--main_color);
  font-size: clamp(16px, 2vw, 20px);
  line-height: 1.2;
  margin-bottom: 8px;
  transition: all 0.4s ease-out;
}
@media (min-width: 600px) {
  .contents_works .section_works .works_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 950px) {
  .contents_works .section_works .works_list {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ---------- 下層ページ 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: 60px;
}
.section_post_detail article .post_title {
  font-size: clamp(26px, 4vw, 34px);
}
/* ブログの場合の見出し */
.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 {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 24px;
}
.section_post_detail article .post_eyecatch img {
  width: 100%;
  height: auto;
}
.section_post_detail article .text a {
  color: var(--main_color3);
}
.section_post_detail article .text img {
  max-width: 100% !important;
  height: auto !important;
}
.section_post_detail article .website .text img {
  width: 12px;
  height: auto;
  vertical-align: middle;
  margin-right: 8px;
  filter: var(--filter_main_color);
}
/* 任意テキストが改行ありの場合 */
.section_post_detail article .text.any_text span.nl2 {
  margin-bottom: 8px;
}

.section_post_detail article h3 {
  font-size: 24px;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.2;
  margin-bottom: 20px;
}
.section_post_detail article .client {
  display: inline-block;
  color: #fff;
  background: var(--main_color);
  text-align: center;
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  line-height: 1.4;
  padding: 1px 10px 0;
  margin-bottom: 10px;
}

.section_post_detail article .post_detail {
  background: var(--main_color5);
  padding: clamp(20px,4vw,40px);
}
.section_post_detail article .post_detail span {
  display: inline-block;
  color: var(--main_color);
  font-size: 14px;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
  margin-bottom: 5px;
}
.section_post_detail article .post_detail .website {
  line-height: 1.2;
  border-top: solid 1px #d4e1db;
  padding-top: 30px;
  margin-top: 30px;
}
.section_post_detail article .post_detail .website a {
  color: var(--black);
}
.section_post_detail article .post_detail .website a:hover {
  color: var(--main_color);
}

/* ブログ記事用 見出し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 {
  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 {
  padding: 16px 8px;
  border: var(--border);
}
.section_post_detail article table tr th {
  background: var(--table_bg_color);
}
@media (min-width: 600px) {
  .section_post_detail article table tr th,
  .section_post_detail article table tr td{
    padding: 24px;
    vertical-align: middle;
  }
}
/* リスト(WORKSモーダルにも適用) */
.section_post_detail article ul,
.section_post_detail article ol {
  padding-inline-start: 1rem;
}
.section_post_detail article ul li {
  position: relative;
}
.section_post_detail article 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 {
  list-style: decimal;
}
.section_post_detail article ol li::marker {
  color: var(--main_color2);
  font-weight: 700;
}
.section_post_detail article dt {
  color: var(--main_color2);
}

/* 最新の投稿 */
.contents_post_detail aside {
  width: 100%;
  margin-top: 60px;
}
.contents_post_detail aside h4 {
  font-size: clamp(20px, 3vw, 20px);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  margin-bottom: 20px;
  line-height: 1.4;
}
.contents_post_detail aside h4 span {
  color: var(--main_color);
  display: block;
  font-size: 0.6em;
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.1em;
}
.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.4;
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}
.contents_post_detail aside .new-post_list .thum {
  width: 100%;
  aspect-ratio: 1 / 0.522;
  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%;
    margin-top: 0;
  }
  .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%;
  }
}

/* ---------- 下層ページ 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);
  font-family: "Noto Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  letter-spacing: 0;
  line-height: 1.1;
  margin-bottom: 40px;
}
.contents_news_detail article time {
  margin-left: 8px;
}
.contents_news_detail .news_info {
  font-size: 12px;
  margin-bottom: 10px;
}
.contents_news_detail article .text a {
  color: var(--main_color3);
}
.contents_news_detail article .text img,
.contents_news_detail article .text iframe {
  max-width: 100% !important;
  height: 100% !important;
}
.contents_news_detail article .text iframe {
  aspect-ratio: 16 / 9;
}
@media (min-width: 600px) {
  .contents_news_detail .news_info {
    font-size: 14px;
  }
}

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