@charset "UTF-8";

@font-face {
  font-family: Jost;
  font-display: swap;
  font-weight: 300;
  src: url('../fonts/Jost-Light.ttf') format('truetype');
}
@font-face {
  font-family: Jost;
  font-display: swap;
  font-weight: 400;
  src: url('../fonts/Jost-Regular.ttf') format('truetype');
}

/*変数*/
:root {
  --main_color: #6eaae2;
  --main_color-rgb: 110 170 226;
  --main_color2: #a6cff4;
  --main_color3: #f7f5f2;
  --sub_color1: #F2F1EC;
  --yasuragi_color1: #49876a;

  --filter_main_color: invert(68%) sepia(76%) saturate(1558%) hue-rotate(181deg) brightness(97%) contrast(83%);
  --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: #f7f5f2;
  --form_bg_color: #f3f4f5;
  --black: #333;
  --gray: #bbb;
  --red: #f26b84;
  --border: 1px solid;
  --font-serif: "Times New Roman", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
  --font-sans: "Helvetica Neue", Helvetica, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  --font-number1: Jost, sans-serif; /* Jost */
}

/*--------------------------------------
リセット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 {  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;
}
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%;
  background: #fff;
  color: var(--black);
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  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: 400;
  font-style: normal;
  position: relative;
}
body.open { overflow: hidden !important; }
@media (min-width: 1025px) {
  body.open { overflow: auto !important; }
}

/* スクロールバー */
body::-webkit-scrollbar { width: 12px; }
body::-webkit-scrollbar-track { background-color: #fff; }
body::-webkit-scrollbar-thumb {
  background-color: var(--main_color);
  border-radius: 100px;
}
::-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: #F2F1EC; }

.flex { display: block; }
@media (min-width: 600px) {
  .flex {
    display: flex;
    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;
}

/*********** 改行 ***********/
.br_pc { display: none; }
.br_sp { display: block; }
@media screen and (min-width: 1025px){
	.br_pc { display: block; }
	.br_sp { display: none; }
}

/*--------------------------------------
共通のtable
--------------------------------------*/
table { border-spacing: 0; }

.table_01 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_01 tr :is(th, td) {
  display: block;
  padding: 24px 24px 8px 24px;
  border-bottom: var(--border) var(--gray);
}
.table_01 tr th { 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 :is(th, td) {
    display: table-cell;
    vertical-align: middle;
    padding: 24px;
    border-bottom: var(--border) var(--gray);
  }
  .table_01 tr th {
    width: 25%;
    border-color: var(--main_color);
  }
}

/* レスポンシブ */
.table_02 {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 14px;
}
.table_02 tr :is(th, 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 :is(th, 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 :is(th, 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_color);
  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 :is(th, 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: flex;
  flex-direction: column;
  border-bottom: 1px dashed #dfe3e8;
  padding: 15px 10px;
}
@media (min-width: 1025px) {
  form .item {
    flex-direction: row;
    padding: 20px 10px;
  }
}

form .item .label {
  width: 100%;
  margin-right: 4px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  cursor: auto;
  font-size: 16px;
  font-weight: bold;
}
@media (min-width: 600px) {
  form .item .label { margin-bottom: 0; }
}
form .item > div {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: 14px;
}
@media (min-width: 1025px) {
  form .item .label { width: 30%; }
  form .item > div { width: 70%; }
}
form .item > div .inputs {
  height: 100%;
  width: 100%;
  outline: none;
  background: #f3f4f5;
  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: flex;
  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;
  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: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.page_list li {
  border: 1px solid;
  display: flex;
  justify-content: 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_main_color);
}
.page_list li.arrow.prev img { transform: rotate(180deg); }
.page_list li a {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
}
@media (min-width: 600px) {
  .page_list { margin-top: 64px; }
}

/* 属性ごとのスタイル */
form .comment{ height: auto; }
form .radiobtn .inputs,
form .checkbox .inputs  {
  align-items: flex-start;
  flex-direction: column;
}
form .radiobtn .inputs .contact_item {
  display: flex;
  align-items: center;
}
form .radiobtn .inputs label { margin-left: 3px; }
form .checkbox input { vertical-align: baseline; }
@media (min-width: 600px) {
  form .radiobtn .inputs,
  form .checkbox .inputs  {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
  }
  form .radiobtn .inputs label { margin-right: 15px; }
  form .checkbox  label { margin-right: 15px; }
}
form .pulldown select {
  width: 100%;
  position: relative;
  padding: 0 15px;
  height: 40px;
}
form .pulldown div {
  position: relative;
  background: #f3f4f5;
}
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;
	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;
}
/* プログレスバーver. */
#loader { width: min(40%, 200px); }

/*--------------------------------------
ヘッダー
--------------------------------------*/
header {
  position: fixed;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 8px 2px rgba(102 102 102 / 0.1);
  z-index: 2;
}
header .header_contents {
  display: grid;
  grid-template-columns: auto 32px 32px 48px;
  grid-template-rows: auto 1fr;
  grid-template-areas: "a f c e";
  align-items: center;
  gap: 0 16px;
  width: min(100%, 1520px);
  margin: auto;
}
@media (min-width: 600px) {
  header .header_contents { height: auto; }
}
@media (min-width: 1025px) {
  header .header_contents {
    grid-template-areas: "a . d b c";
    grid-template-columns: 1fr auto auto;
    gap: 16px;
    padding: 0 0 0 8px;
  }
}
header .header_icon {
  justify-self: end;
  text-align: center;
  width: 100%;
}
header .header_icon a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.5s;
  font-size: 24px;
}
header .header_icon a.info_tel {
  font-family: var(--font-number1);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 32px);
}
header .header_icon a span {
  display: none;
  margin-left: 8px;
}
header .header_icon a i {
  color: var(--main_color);
  font-size: 32px;
}
@media (min-width: 600px) {
  header .header_icon {
    padding-right: 0;
    position: relative;
    z-index: 1;
  }
  header .header_icon a:hover { opacity: 0.7; }
  header .header_icon a span {
    display: inline-block;
    color: var(--main_color);
  }
}

/* ロゴ */
header h1 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  padding-left: 8px;
  position: relative;
  z-index: 1;
  grid-area: a;
}
header h1 a { display: inline-block; }
header h1 img {
  width: 120px;
  height: auto;
  display: inline-block;
  vertical-align: middle;
}
@media (min-width: 1025px) {
  header h1 { padding-left: 0; }
  header h1 img { width: 180px; }
}

/* SNSアイコン */
header .sns {
  justify-content: center;
  display: none;
  grid-area: b;
  margin-bottom: 0;
}
@media (min-width: 1025px) {
  header .sns { display: flex; }
}

/* お問い合わせボタン */
header .mail {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: c;
}
header .mail a span { display: none; }
header .mail a img {
  width: 34px;
  height: auto;
  filter: var(--filter_main_color);
}
header .tel {
  display: block;
  grid-area: f;
}
header .tel a img {
  width: 28px;
  height: auto;
  filter: var(--filter_main_color);
}
@media (min-width: 600px) {
  header .mail { display: block; }
}
@media (min-width: 1025px) {
  header .mail {
    color: #fff;
    height: 100%;
    display: flex;
  }
  header .mail a {
    display: flex;
    align-items: center;
    padding: 16px 24px;
    background: var(--main_color);
    font-size: 16px;
  }
  header .mail a span {
    display: inline-block;
    color: #fff;
  }
  header .mail a img {
    width: 22px;
    filter: var(--filter_white);
  }
  header .tel { display: none; }
}

/* 電話番号＆営業時間 */
header .info {
  display: none;
  grid-area: d;
  line-height: 1.2;
}
header .info .open {
  display: block;
  font-size: 12px;
  text-align: right;
}
header .info img {
  width: 22px;
  height: auto;
  filter: var(--filter_main_color);
}
@media (min-width: 1025px) {
  header .info {
    display: block;
    background: rgb(255 255 255 / 0.2);
    font-weight: 400;
    padding-right: 0;
  }
}

/* PC用ナビゲーション */
header .pc_nav_box {
  -ms-grid-column: 1;
      grid-column-start: 1;
  -ms-grid-column-span: 4;
  grid-column-end: 5;
  position: relative;
}
header .pc_nav_box ul { display: none; }
@media (min-width: 1025px) {
  header .pc_nav_box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    width: min(100%, 1600px);
    font-size: 16px;
    margin: auto;
  }
  header .pc_nav_box ul li:first-of-type a { border-left: none; }
  header .pc_nav_box ul li a {
    position: relative;
    display: block;
    /* border-left: 1px solid rgb(var(--main_color-rgb) / 0.3); */
    border-left: 1px solid var(--sub_color1);
    text-align: center;
    padding: 16px 0;
    transition: 0.5s;
    z-index: 1;
    line-height: 1.2;
    font-size: 14px;
  }
  header .pc_nav_box ul li a::after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: calc(50% - 5px);
    width: 8px;
    height: 8px;
    background: var(--main_color);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
  }
  header .pc_nav_box ul li a:hover::after { opacity: 1; }
  header .pc_nav_box ul li a span {
    font-size: 10px;
    color: var(--main_color);
    letter-spacing: 0.1em;
    font-family: var(--font-number1);
    font-weight: 400;
    letter-spacing: 3px;
  }
}
/* ハンバーガーメニューボタン */
header nav {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  -ms-grid-column-align: end;
      justify-self: end;
  background: var(--main_color);
  position: relative;
  grid-area: e;
  width: 48px;
  height: 48px;
}
@media (min-width: 1025px) {
  header nav {
    border-left: none;
    display: none;
  }
}

/* ハンバーガーメニュー */
header nav .nav_list {
  position: fixed;
  -webkit-overflow-scrolling: auto;
  width: 100%;
  height: calc(100vh - 48px);
  top: 48px;
  right: 0;
  background: rgb(var(--main_color-rgb) / 0.95);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
  padding: 40px 0;
  gap: 16px;
  align-content: center;
}
@media (min-width: 600px) {
  header nav .nav_list { padding: 50px; }
}
@media (min-width: 1025px) {
  header nav .nav_list {
    position: absolute;
    width: 478px;
    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;
  transition: 0.5s;
  position: relative;
  line-height: 1.6;
}
header nav .nav_list ul li > a {
  text-decoration: none;
  font-weight: 400;
  letter-spacing: 2px;
  font-size: 18px;
  color: #fff;
  width: 100%;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
  padding: 10px;
  border-bottom: 1px solid #fff;
  font-family: var(--font-number1);
  font-weight: 400;
}
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;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: 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 .fa-caret-right { color: #fff; }
header nav .nav_list ul li > a:hover:before {
  background: #fff;
  transform-origin: left top;
  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 .nav_list ul li .sns {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 0;
  padding-top: 40px;
}
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 .nav_list ul li > a p {
  display: flex;
  flex-direction: column;
}
header nav .nav_list ul li > a p span { font-size: 0.7rem; }

header nav .menu-btn { display: none; }
header nav .menu-btn:checked ~ .nav_list {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
@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;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
header nav .menu-btn:checked ~ .bg { display: block; }
header nav .menu-btn:checked ~ .menu-icon .navicon:before { transform: rotate(-45deg); }
header nav .menu-btn:checked ~ .menu-icon .navicon:after { 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: rgba(0, 0, 0, 0);
  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: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 1;
  position: relative;
}
header nav .menu-icon .navicon {
  background: #fff;
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  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;
  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.index { padding-bottom: 80px; }

/* メインビジュアル */
main .mainvisual { position: relative; }
@media (min-width: 1025px) {
  main .mainvisual { margin-top: 140px; }
}
main .mainvisual ul li { position: relative; }
main .mainvisual img {
  max-height: 800px;
  width: 100%;
  height: auto;
  object-fit: cover;
}
main .mainvisual .mv_txt {
  position: absolute;
  bottom: 8%;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: block;
  width: 100%;
}
main .mainvisual .mv_txt img {
  max-width: 640px;
  width: 60%;
  height: auto;
  padding-left: 40px;
}
main .mainvisual .sp { display: block; }
main .mainvisual .pc { display: none; }
@media (min-width: 600px) {
  main .mainvisual .sp { display: none; }
  main .mainvisual .pc { display: block; }
}

/* メインビジュアル - swiper */
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 .subvisual {
  background: url(../images/sv.webp) no-repeat 50% 0/cover;
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
main .subvisual h2 {
  color: #fff;
  margin-top: 58px;
  font-size: 28px;
}
@media (min-width: 960px) {
  main .subvisual {
    background: url(../images/sv.webp) no-repeat 50% 60% / cover;
    height: 40vh;
  }
}
@media (min-width: 1025px) {
  main .subvisual h2 {
    margin-top: 152px;
    font-size: 36px;
  }
}

/* セクション共通 */
main.index .sec { padding: 80px 20px; }
main.index .sec .text {
  font-size: 12px;
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 40px;
}
@media (min-width: 600px) {
  main.index .sec { padding: 120px 20px; }
  main.index .sec .text { font-size: 14px; }
}

/* ---------- トップページ 企業理念 ---------- */
main.index .sec.section_philosophy {
  position: relative;
  margin-top: 40px;
  padding: 0 0 80px;
  background: var(--sub_color1);
}
main.index .section_philosophy .philosopy_img {
  width: 100%;
  height: auto;
  display: block;
  margin: auto;
  margin-bottom: 40px;
}
main.index .section_philosophy .text_box {
  width: 100%;
  margin-left: auto;
  padding: 0 20px;
  text-align: left;
}
main.index .section_philosophy .title { margin-bottom: 24px; }
main.index .section_philosophy .title:before { content: none; }
main.index .section_philosophy .phirosophy_lead {
  font-size: clamp(16px, 3.5vw, 18px);
  margin-bottom: 8px;
}
main.index .section_philosophy .btn_01 { border: none; }
@media (min-width: 1025px) {
  main.index .sec.section_philosophy {
    margin: 160px 0 100px;
    padding: 80px 0;
  }
  main.index .section_philosophy .philosopy_img {
    position: absolute;
    width: min(55%, 880px);
    top: -80px;
    left: 0;
    margin-bottom: 0;
  }
  main.index .section_philosophy .text_box {
    width: 45%;
    padding: 0 0 0 24px;
    text-align: center;
  }
}

/* ---------- トップページ バナーエリア ---------- */
main .bg_other {
  width: 100%;
  height: 264px;
  object-fit: cover;
}
@media (min-width: 600px) {
  main .bg_other {
    height: 400px;
  }
}

/* ---------- トップページ お知らせ ---------- */
main .sec.section_news { padding: 80px 20px 120px; }
main .section_news .news_list {
  max-width: 800px;
  margin-inline: auto;
  margin-bottom: 40px;
}
main .section_news .news_list li a {
  display: block;
  border-bottom: var(--border) var(--gray);
  padding: 16px 16px 8px 16px;
}
main .section_news .news_list li a {
  display: flex;
  flex-direction: column;
  font-size: 12px;
}
.section_news .news_list li a .news_date { display: block; }
.section_news .news_list li a h3 {
  display: block;
  flex: 1;
  margin: 8px 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
main .section_news .news_list li a time { margin-right: 10px; }

/* カテゴリ装飾 */
span[class^="notice"] {
  display: inline-block;
  width: 100px;
  background: var(--main_color);
  text-align: center;
  color: #fff;
  line-height: 1.5;
  padding: 0 8px;
}
span.notice_1 { background: #ea4c4c; }
span.notice_2 { background: #eb9600; }
span.notice_3 { background: #1a6fb4; }
span.notice_4 { background: #796fc1; }
span.notice_5 { background: #79c836; }
span.notice_6 { background: var(--main_color); }

@media (min-width: 600px) {
  main .sec.section_news { padding: 100px 20px 140px; }
  main .section_news .news_list li a {
    align-items: center;
    flex-direction: row;
    font-size: 14px;
  }
  .section_news .news_list li a .news_date { display: inline-block; }
  span[class^="notice"] { margin-right: 10px; }
}

/* ---------- トップページ アクセス ---------- */
main .sec.section_access {
  position: relative;
  padding-bottom: 40px;
  background: var(--sub_color1);
}
main .section_access h2.title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: min(60%, 380px);
  padding: 16px;
  background: var(--main_color);
  color: #fff;
  font-size: clamp(24px, 4vw, 28px);
}
main .section_access h2::before {
  top: 60%;
  background: #fff;
}

main .section_access h2.title span { color: #fff; }
main .section_access .access_wrap {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
}
main .section_access .access_wrap iframe {
  height: 360px;
  margin-bottom: 40px;
}
main .section_access .info_box .info {
  border-bottom: var(--border) var(--gray);
  margin-bottom: 18px;
}
main .section_access .info_box .info:last-of-type,
main .section_access .info_box .info:last-of-type ul {
  border-bottom: 0;
  margin-bottom: 0;
}
main .section_access .info_box .info h3 {
  display: inline-block;
  margin-bottom: 10px;
  padding: 2px 8px;
  width: 200px;
  background: var(--main_color);
  color: #fff;
  text-align: center;
}
main .section_access .info_box .info ul {
  margin-bottom: 18px;
  font-size: clamp(14px, 2vw, 16px);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
main .section_access .info_box .info ul li {
  display: flex;
  width: 100%;
}
main .section_access .info_box .info ul li p:first-of-type {
  width: 4.5rem;
  text-align: left;
}
main .section_access .info_box .info ul li p:nth-of-type(2) { flex: 1; }
main .section_access .info_box .info ul li p span { display: block; }
@media (min-width: 600px) {
  main .sec.section_access { padding-bottom: 80px; }
  main .section_access .access_wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  main .section_access .access_wrap iframe { margin-bottom: 0; }
}

/*--------------------------------------
フッター
--------------------------------------*/
/* ---------- お問い合わせ ---------- */
footer address {
  background: var(--main_color);
  color: #fff;
  margin-bottom: 80px;
  padding: 40px 20px;
  text-align: center;
}
footer address h2.title {
  margin-bottom: 40px;
  line-height: 1.5;
}
footer address .title span { color: #fff; }
footer address p {
  font-size: 14px;
  margin-bottom: 40px;
}
footer address .btn {
  max-width: 520px;
  margin: auto;
}
footer address .btn .tel_btn {
  font-family: var(--font-number1);
  font-weight: 400;
  font-size: clamp(24px, 4vw, 28px);
}
@media (min-width: 600px) {
  footer address { padding: 80px 20px; }
  footer address p br { display: none; }
}
@media (min-width: 1025px) {
  footer address .btn {
    display: flex;
    gap: 40px;
    max-width: 800px;
  }
  footer address .btn a { width: 50%; }
}
footer address .btn img { margin-right: 10px; }
footer address .btn .tel_btn img {
  width: 24px;
  height: auto;
  filter: var(--filter_main_color);
}
footer address .btn .mail_btn img {
  width: 30px;
  height: auto;
  filter: var(--filter_main_color);
}

/* ---------- パンくずリスト ---------- */
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 {
  margin: auto;
  padding: 40px 20px;
}
@media (min-width: 600px) {
  footer .footer_bottom { padding-top: 80px; }
}
@media (min-width: 1025px) {
  footer .footer_bottom {
    display: grid;
    align-items: center;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 1fr 0;
        grid-template-areas:
        "a b b c"
        "a b b d";
  }
  footer .footer_bottom > h1 {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
  footer .footer_bottom > .sns {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 2;
  }
  footer .footer_bottom > .mail {
    -ms-grid-row: 1;
    -ms-grid-column: 4;
  }
  footer .footer_bottom > .info {
    -ms-grid-row: 2;
    -ms-grid-column: 4;
  }
}
@media (min-width: 1200px) {
  footer .footer_bottom { padding: 80px 0; }
}

/* ロゴ */
footer .footer_bottom figure {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  text-align: center;
  grid-area: a;
}
footer .footer_bottom figure img {
  display: inline-block;
  width: 200px;
  height: auto;
  margin: 0 auto 40px;
}
@media (min-width: 600px) {
  footer .footer_bottom figure img { margin: 0 0 40px; }
}
@media (min-width: 1025px) {
  footer .footer_bottom figure { text-align: left; }
  footer .footer_bottom figure img { margin: 0; }
}
/* インフォ */
footer .footer_bottom .info { grid-area: b; }
footer .footer_bottom .info ul {
  line-height: 1.4;
  margin-bottom: 40px;
}
footer .footer_bottom .info ul li {
  font-size: 14px;
  margin-bottom: 8px;
}
footer .footer_bottom .info ul li span {
  display: inline-block;
  width: 72px;
  padding: 2px 0;
  margin-right: 8px;
  background: var(--main_color);
  color: #fff;
  text-align: center;
}
footer .footer_bottom .info ul li .indent {
  display: block;
  width: auto;
  margin-top: 8px;
  text-align: left;
  background: transparent;
  color: var(--black);
}
@media (min-width: 600px) {
  footer .footer_bottom .info ul li .indent {
    margin-top: 0;
    text-indent: 80px;
  }
}
@media (min-width: 1025px) {
  footer .footer_bottom .info ul {
    border-bottom: none;
    margin-bottom: 0;
    padding: 0;
  }
}

/* SNS＆コピーライト */
footer .footer_bottom .sns {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: c;
}
@media (min-width: 600px) {
  footer .footer_bottom .sns { justify-content: flex-end; }
}
footer .footer_bottom .copyright {
  display: block;
  grid-area: d;
  color: var(--gray);
  font-size: 12px;
  text-align: center;
}
@media (min-width: 1025px) {
  footer .footer_bottom .copyright {
    align-self: flex-end;
    text-align: right;
  }
}

/* 上へ戻るボタン */
footer .arrow_top {
  display: flex;
  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;
    box-shadow: 2px 2px 6px rgb(0 0 0 / 0.1);
    border-radius: 100%;
    color: var(--main_color);
    display: flex;
    justify-content: 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 {
  position: relative;
  margin-bottom: 40px;
  font-size: clamp(28px, 5vw, 32px);
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.4;
}
.title::before {
  content: "";
  border-radius: 10px;
  position: absolute;
  top: -24%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--main_color);
  height: 4px;
  width: 3rem;
}
main.index .section_philosophy .title:before,
main .section_access h2.title:before,
footer address .title:before {
  content: none;
}
.title span {
  color: var(--main_color);
  display: block;
  font-size: 0.4em;
  font-family: var(--font-number1);
  font-weight: 400;
  letter-spacing: 6px;
}
@media (min-width: 600px) {
  .title { margin-bottom: 64px; }
}

.sub_title {
  font-size: 24px;
  text-align: center;
  letter-spacing: 2px;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media (min-width: 600px) {
  .sub_title { font-size: 32px; }
}
.sub_title span {
  color: var(--main_color);
  display: block;
  font-size: 0.6em;
  letter-spacing: 0;
}

/* 下層ページの共通タイトル1 */
h3.secondary_title {
  color: var(--main_color);
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
  margin-bottom: 40px;
}
h3.secondary_title span {
  display: block;
  position: relative;
  padding-left: 2.5em;
  color: var(--gray);
  font-size: 0.5em;
  font-family: var(--font-number1);
  font-weight: 400;
  letter-spacing: 0.1em;
}
h3.secondary_title span:before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2em;
  height: 2px;
  background: var(--main_color);
}

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

/*--------------------------------------
共通のボタン
--------------------------------------*/
/* Moreボタン */
.btn_01 {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: min(100%, 240px);
  margin: 0 auto;
  padding: 16px 0;
  background: #fff;
  border: 1px solid currentColor;
  font-size: 14px;
  text-align: center;
  transition: all 0.3s;
}
.btn_01:after {
  display: block;
  content: "";
  width: 6px;
  height: 11px;
  background: url(../images/icon_arrow.svg) center / cover no-repeat;
  filter: var(--filter_black);
  position: absolute;
  right: 16px;
}
.btn_01:hover {
  color:var(--main_color);
  border-color: var(--main_color);
  background: #fff;
}
.btn_01:hover:after { filter: var(--filter_main_color); }

/* カテゴリリンクボタン、一覧へ戻るボタン */
.btn_02 {
  background: #fff;
  color: var(--main_color);
  border: 1px solid var(--main_color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  max-width: 350px;
  padding: 15px 10px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 0;
  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);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease 0.3s;
}
.btn_02:after {
  display: block;
  content: "";
  width: 6px;
  height: 11px;
  background: url(../images/icon_arrow.svg) center / cover no-repeat;
  position: absolute;
  left: 16px;
  transform: rotate(180deg);
  filter: var(--filter_main_color);
  transition: all 0.3s;
}
.btn_02:hover { color: #fff; }
.btn_02:hover:before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.btn_02:hover:after { filter: var(--filter_white); }
.btn_02 i:first-child { font-size: 1.4em; }
@media (min-width: 600px) {
  .btn_02 { margin: 0 auto; }
}

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

.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;
    transform: rotate(45deg);
  }
}

/*--------------------------------------
共通のSNSアイコン
--------------------------------------*/
.sns {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.sns a {
  background: var(--main_color);
  color: #fff;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: 0.5s !important;
}
.sns a:hover { opacity: 0.7 !important; }
.sns a:last-child { margin-right: 0; }
.sns a i {
  color: #fff;
  font-size: 18px !important;
}
.sns a img {
  width: 18px;
  height: auto;
  filter: var(--filter_white);
}

/*--------------------------------------
下層ページ
--------------------------------------*/
main:not(.index) .inner { padding: 60px 20px; }
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 {
  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 .section_concept {
  width: 100vw;
  /* padding: 80px 20px; */
  /* margin: -40px calc(50% - 50vw) 0; */
  text-align: center;
  background: url(../images/bg_under_about.webp) no-repeat 50% 65%/cover;
}
.contents_about .section_concept h3 {
  margin-bottom: 24px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
  color: var(--yasuragi_color1);
}
.contents_about .section_concept .concept_text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_about .section_concept .concept_text p { margin-bottom: 16px; }
.contents_about .section_concept .concept_text p:last-of-type{ margin-bottom: 0; }


/* 店舗案内 */
.contents_about .section_office .office_wrap {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}
.contents_about .section_office .office_wrap > div { width: 100%; }

/* 支店情報がある場合は、マップの下と各支店に下線を入れる */
.contents_about .section_office .office_wrap:has(+ div) div.map
/* ,.contents_about .section_office .office_wrap:nth-of-type(2) > div  */{
  padding-bottom: 24px;
  border-bottom: var(--border) var(--gray);
}
.contents_about .section_office .office_wrap:nth-of-type(2) {
  /* display: grid;
  grid-template-columns: 1fr; */
}
.contents_about .section_office .office_wrap .map { order: 1; }
.contents_about .section_office .office_wrap address ul li {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 10px;
}
.contents_about .section_office .office_wrap address ul li a {
  color: var(--main_color)
}
.contents_about .section_office .office_wrap address ul li p:first-child {
  width: min(30%, 72px);
  margin-right: 10px;
  text-align: left;
}
.contents_about .section_office .office_wrap .btn_01 {
  margin: 24px 0 0;
  padding: 10px;
  font-size: 16px;
  display: flex;
  justify-content: center;
  gap: 5px;
}
.contents_about .section_office .office_wrap .btn_01 img {
  width: 16px;
  height: auto;
  filter: var(--filter_black);
  transition: all ease 0.3s;
}
.contents_about .section_office .office_wrap .btn_01:hover img { filter: var(--filter_main_color); }
@media (min-width: 600px) {
  .contents_about .section_office .office_wrap {
    flex-direction: row;
    align-items: center;
    gap: 0 40px;
    margin-bottom: 40px;
  }
  .contents_about .section_office .office_wrap:nth-of-type(2) {
    grid-template-columns: repeat(2, 1fr); /* 支店数によって増減してください */
    /* align-items: stretch; */
  }
  .contents_about .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_about .section_office .office_wrap:nth-of-type(2) address,
  .contents_about .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_about .section_office .office_wrap .map {
    order: 0;
    border: none !important;
  }
}


/* ---------- 下層ページ CORPORATE ---------- */
/* 企業概要 */
.contents_corporate .section_company.sec:last-child { margin-bottom: 64px; }
.contents_corporate .section_company .map { padding-top: 64px; }


/* ---------- 下層ページ RECRUIT ---------- */
/* メッセージ */
.contents_recruit .sec.section_recruit_message {
  width: 100%;
  background: url(../images/bg_under_recruit.webp) no-repeat 50% 50%/cover;
  text-align: center;
  margin-bottom: 0;
}
.contents_recruit .section_recruit_message h3 {
  margin-bottom: 24px;
  font-size: clamp(26px, 4vw, 34px);
  line-height: 1.5;
  color: #42b3d1;
}
.contents_recruit .sec.section_recruit_message .text {
  width: min(100%, 1040px);
  margin: auto;
  font-size: 16px;
}
.contents_recruit .sec.section_recruit_message .text p { margin-bottom: 16px; }
.contents_recruit .sec.section_recruit_message .text p:last-of-type { margin-bottom: 0; }

/* 募集要項 */
.contents_recruit .section_job_description .job_tab_list {
  display: flex;
  gap: 8px;
  width: min(100%, 1040px);
  margin: 0 auto 8px;
}
.contents_recruit .section_job_description .job_tab_list .job_tab {
  display: flex;
  justify-content: 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;
  }
}


/* ---------- 下層ページ NEWS ---------- */
main.contents_news .sec.section_news { padding: 0 20px; }
.contents_news .section_news .news_list {
  width: min(100%, 800px);
  margin: auto;
}
.contents_news .section_news .news_list li a .news_date { margin-bottom: 0; }


/* ---------- 下層ページ NEWS詳細 ---------- */
.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-right: 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 .title {
  font-family: var(--font-number1);
  font-weight: 400;
}