@charset "utf-8";

/*===================================
 ローディング画面
====================================*/
.loader {
  z-index: 9999;
  transition: opacity 0.8s ease;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--base);
  width: 100%;
  height: 100dvh;
  overflow: hidden;
}

/*===================================
 ヘッダー
====================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  display: grid;
  align-content: center;
  width: 100%;
  height: 70px;
  background-color: transparent;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3) 10%,
    rgba(0, 0, 0, 0) 100%
  );
  transition: 0.3s;
  z-index: 999;
}
@media screen and (min-width: 992px) {
  header {
    height: 80px;
  }
}

.header_inner {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
}
@media screen and (min-width: 992px) {
  .header_inner {
    height: 80px;
  }
}

.header_logo a {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  font-size: clamp(1rem, 0.523rem + 2.04vw, 1.5rem);
  color: #fff;
}

.header_logo img {
  width: 38px;
  height: 38px;
}
@media screen and (min-width: 992px) {
  .header_logo a {
    font-size: 1.5rem;
  }

  .header_logo img {
    width: 58px;
    height: 58px;
  }
}

.header_nav {
  display: none;
  position: fixed;
  top: 70px;
  right: 0;
  background-color: var(--base);
  color: var(--black);
  font-size: 1rem;
  width: 86%;
  height: calc(100dvh - 70px);
  overflow: auto;
}
@media screen and (min-width: 768px) {
  .header_nav {
    font-size: clamp(1rem, 0.917rem + 0.17vw, 1.125rem);
  }
}
@media screen and (min-width: 992px) {
  .header_nav {
    display: grid;
    align-content: center;
    position: static;
    background-color: transparent;
    margin-left: auto;
    color: #fff;
    width: auto;
    height: 100%;
  }
}

.header_nav a {
  color: inherit;
  text-decoration: none;
}

/* ヘッダーナビのリスト */
.header_nav_list {
  list-style: none;
  display: flex;
  flex-direction: column;
  padding: 0 1.5rem;
  margin: 0;
}
.header_nav_list > li {
  border-bottom: 1px solid #efdda5;
}
.header_nav_list > li:has(.btn) {
  border-bottom: none;
}

.header_nav_list > li > a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.header_nav_list > li > a.btn {
  justify-content: center;
  color: #fff;
  text-align: center;
}

/* ヘッダーナビ 第二階層リスト */
.header_nav_child_list {
  display: none;
  list-style: none;
  padding-left: 1rem;
  background-color: #fff;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
}
.header_nav_child_list > li > a {
  display: block;
  padding: 0.25rem;
}

.header_nav_en {
  color: var(--red);
  font-family: var(--font_gothic_family);
  font-size: 0.75rem;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  .header_nav_list {
    flex-direction: row;
    gap: clamp(1rem, -1.672rem + 4.31vw, 3.5rem);
    height: 100%;
  }
  .header_nav_list > li {
    padding: 0;
    border-bottom: none;
  }
  .header_nav_list > li > a {
    position: relative;
    padding: 0;
    height: 80px;
  }

  .header_nav_list > li > a::after {
    content: "";
    position: absolute;
    bottom: 1.3rem;
    left: 0;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background-color: #fff;
    transition: width 0.3s ease;
  }
  .header_nav_list > li > a:hover::after,
  .header_nav_list > li > a:active::after {
    width: 100%;
  }

  .header_nav_en {
    display: none;
  }
}

@media screen and (min-width: 992px) {
  .header_nav_child_list {
    display: none;
    position: absolute;
    top: 100%;
    left: 2rem;
    grid-template-columns: repeat(4, auto);
    gap: 0.5rem;
    background-color: var(--base);
    color: var(--black);
    font-size: inherit;
    padding: 1.5rem 2rem;
    width: calc(100% - 4rem);
  }

  .header_nav_child_list > li > a {
    position: relative;
    display: inline-block;
    padding: 0.5rem;
  }
  .header_nav_child_list > li > a:hover,
  .header_nav_child_list > li > a:active {
    color: var(--red);
  }
  .header_nav_child_list > li > a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    border-radius: 999px;
    background-color: var(--red);
    transition: width 0.3s ease;
  }
  .header_nav_child_list > li > a:hover::after,
  .header_nav_child_list > li > a:active::after {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .header_nav .d_none_pc {
    display: none;
  }
}

/* ハンバーガーボタン */
.hamburger_btn {
  position: relative;
  display: block;
  background: transparent;
  cursor: pointer;
  border: none;
  outline: none;
  margin: 0 0 0 auto;
  width: 2.25rem;
  height: calc((4px * 3) + (0.5rem * 2));
  padding: 0.5rem;
}
@media screen and (min-width: 992px) {
  .hamburger_btn {
    display: none;
  }
}

.hamburger_btn > span {
  position: absolute;
  left: 0;
  display: block;
  width: 2.25rem;
  height: 4px;
  border-radius: 999px;
  background-color: #fff;
  transition: 0.3s;
}

.hamburger_btn > span:first-child {
  top: 0;
}
.hamburger_btn > span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.hamburger_btn > span:nth-child(3) {
  bottom: 0;
}

.hamburger_btn[aria-expanded="true"] > span:first-child {
  top: 50%;
  transform: rotate(-45deg);
}
.hamburger_btn[aria-expanded="true"] > span:nth-child(2) {
  opacity: 0;
  animation: animation_hambtn 0.5s forwards;
}
.hamburger_btn[aria-expanded="true"] > span:nth-child(3) {
  top: 50%;
  transform: rotate(45deg);
}
@keyframes animation_hambtn {
  0% {
    left: 0;
  }
  100% {
    left: 50%;
  }
}

/*===================================
 フッター
====================================*/
.common_link_list {
  list-style: none;
  padding-left: 0;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .common_link_list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
}

.common_link_list > li {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  color: #fff;
  font-size: clamp(1.75rem, 1.204rem + 2.33vw, 4rem);
  height: clamp(7rem, 2.244rem + 20.29vw, 20rem);
}

.common_link_list > li.fs_small {
  font-size: clamp(1.25rem, 0.825rem + 1.81vw, 3rem);
}

.common_link_list > li:first-child {
  background-image: url(../img/footer_common_link1.jpg);
}
.common_link_list > li:nth-child(2) {
  background-image: url(../img/footer_common_link2.jpg);
}
.common_link_list > li:nth-child(3) {
  background-image: url(../img/footer_common_link3.jpg);
}
.common_link_list > li:nth-child(4) {
  background-image: url(../img/footer_common_link4.jpg);
}

.common_link {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  padding: 0 6% 0 9%;
}

.common_link::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(168, 134, 78, 1);
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.5s ease;
  transition-property: transform;
}

@media (hover: hover) {
  .common_link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
  }
}

.common_link .text {
  position: relative;
}

.common_link .arrow {
  position: relative;
}

/* footer */
footer {
  background-color: var(--red);
  color: #fff;
  font-weight: 500;
}
footer ul {
  list-style: none;
  padding-left: 0;
}

.footer_inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto auto;
  max-width: 1408px;
  width: 100%;
  margin: 0 auto;
  padding: 1rem 1.5rem 0.5rem 1.5rem;
}
@media screen and (min-width: 768px) {
  .footer_inner {
    grid-template-columns: 120px auto auto;
    grid-template-rows: auto auto auto;
    gap: 1rem 2rem;
  }
}

/* Grid item1 */
.footer_nav {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  padding-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer_nav {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }
}

.footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
  .footer_nav_list {
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
    margin-top: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .footer_nav_list {
    flex-direction: row;
    gap: clamp(2rem, 4.17vw, 5rem);
  }
}

.footer_nav_btn_list {
  grid-column: 1 / 3;
  grid-row: 2 / 3;
  margin: 0;
}
@media screen and (min-width: 768px) {
  /* Grid Item2 */
  .footer_nav_btn_list {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
    margin: 1.5rem 0;
    font-size: clamp(1rem, 0.833rem + 0.35vw, 1.25rem);
  }
}
.footer_nav_btn_list > li {
  margin-bottom: 1rem;
}

.footer_nav_list a {
  text-decoration: none;
  color: #fff;
  position: relative;
}

.footer_nav_list a::after {
  content: "";
  position: absolute;
  bottom: -0.45rem;
  left: 0;
  width: 0;
  height: 1.5px;
  border-radius: 999px;
  background-color: #fff;
  transition: width 0.3s ease;
}
.footer_nav_list a:hover::after,
.footer_nav_list a:active::after {
  width: 100%;
}

.footer_shop_btn {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  display: block;
  text-align: center;
  padding: 1rem 2rem;
}

.footer_shop_btn:link,
.footer_shop_btn:visited {
  background-color: var(--gold);
  color: #fff;
  transition: 0.3s;
}
.footer_shop_btn:hover,
.footer_shop_btn:active {
  background-color: var(--gold_dark);
  color: #fff;
}

.footer_inq_btn {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  display: block;
  text-align: center;
  padding: 1rem 2rem;
}

.footer_inq_btn:link,
.footer_inq_btn:visited {
  background-color: var(--base_yellow);
  color: var(--red);
  transition: 0.3s;
}
.footer_inq_btn:hover,
.footer_inq_btn:active {
  background-color: #fff1ba;
  color: var(--red);
}

/* Grid Item3 */
.footer_info_logo {
  display: grid;
  align-items: center;
  justify-content: end;
  padding-right: 1rem;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.footer_info_logo img {
  width: 18vw;
}

@media screen and (min-width: 768px) {
  .footer_info_logo {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
  }
  .footer_info_logo img {
    width: 96px;
  }
}

/* Grid Item4 */
.footer_info {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .footer_info {
    grid-column: 2 / 4;
    grid-row: 2 / 3;
    font-size: 1rem;
  }
}

.footer_info ul {
  list-style: none;
  padding-left: 0;
}
.footer_info ul > li:first-child {
  margin-bottom: 0.5rem;
}

/* iPhoneで電話番号がリンクになる場合用 */
.footer_info a {
  color: #fff;
}

/* Grid Item5 */
.copyright {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
  font-size: 12px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .copyright {
    grid-column: 1 / 4;
    grid-row: 3 / 4;
  }
}

/*===================================
 コンテナ
====================================*/
/* ヘッダー分のpadding-top */
.main_padding {
  padding-top: 70px;
  padding-bottom: 7rem;
}
@media screen and (min-width: 992px) {
  .main_padding {
    padding-top: 80px;
    padding-bottom: 10;
  }
}

.container {
  max-width: 1408px;
  width: 100%;
  padding: 0 clamp(1.5rem, 1.196rem + 1.3vw, 2rem);
  margin: 0 auto;
}

.section_padding {
  padding: clamp(3rem, 1.636rem + 5.82vw, 6rem) 0;
}

.section_padding_narrow {
  padding: 2rem 0;
}

/* 各セクションのタイトル */
.section_title {
  display: flex;
  flex-direction: column;
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.75rem, 0.727rem + 4.36vw, 4rem);
  word-break: break-all;
  text-wrap: unset;
}
@media screen and (min-width: 768px) {
  .section_title {
    flex-direction: row;
    align-items: center;
    gap: clamp(1.5rem, 0.167rem + 2.78vw, 3.5rem);
    margin-bottom: 3.5rem;
  }
}

.section_title > span.section_title_en {
  color: var(--gold);
  font-family: var(--font_gothic_family);
  font-size: clamp(0.875rem, 0.495rem + 1.62vw, 1.5rem);
  font-weight: bold;
  padding-top: 0.75rem;
}

.bc_base_yellow .section_title > span.section_title_en {
  color: var(--red);
}

.bc_red .section_title {
  color: var(--base);
}
.bc_red .section_title > span.section_title_en {
  color: var(--gold);
}

/* 背景オーバーレイ */
.cover {
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(47, 19, 0, 0.4);
  width: 0;
  height: 100%;
  cursor: pointer;
}

/*===================================
 テキスト
====================================*/
.page_title {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  text-align: center;
  padding: clamp(1.5rem, 0.773rem + 3.64vw, 3.5rem) 0;
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  margin: 0;
}

.max_24_text {
  font-size: clamp(1rem, 0.538rem + 1.28vw, 1.5rem);
}

/*===================================
 ボタン
====================================*/
.btn {
  cursor: pointer;
  border: none;
  outline: none;
  text-decoration: none;
}

.btn:disabled {
  background-color: #ccc;
  color: var(--black);
  cursor: not-allowed;
}

.btn:disabled:link,
.btn:disabled:visited,
.btn:disabled:hover,
.btn:disabled:active {
  background-color: #ccc;
  color: var(--black);
}

/* 赤色のボタン */
.red_btn {
  background-color: var(--red);
  padding: 1rem 2rem;
  color: #fff;
  transition: 0.3s;
}
.red_btn:link,
.red_btn:visited {
  background-color: var(--red);
  color: #fff;
}
.red_btn:hover,
.red_btn:active {
  background-color: var(--red_hover);
  color: #fff;
}

/* 金色のボタン */
.gold_btn {
  background-color: var(--gold);
  padding: 1rem 2rem;
  color: #fff;
}

/* 白色のボタン */
.white_btn {
  background-color: #fff;
  padding: 1rem 2rem;
  color: var(--red);
  transition: 0.3s;
}
.white_btn:link,
.white_btn:visited {
  background-color: #fff;
  color: var(--red);
}
.white_btn:hover,
.white_btn:active {
  background-color: #f9e8e9;
  color: var(--red);
}

.white_btn--border {
  border: 2px solid var(--red);
}

.max_400_btn {
  display: block;
  max-width: 400px;
  width: 100%;
  font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
  font-weight: bold;
  padding: 1.4rem 1rem;
  text-align: center;
  letter-spacing: 2px;
  margin: 0 auto;
}
@media screen and (min-width: 576px) {
  .max_400_btn {
    margin: 0;
    padding: 1.5rem 1rem;
  }
}

/* キャンセルボタン */
.cancel_btn {
  position: relative;
  background-color: #e7e1c8;
  color: var(--gold_dark);
  width: 100%;
  padding: 1rem 2rem;
  transition: 0.3s;
}

.cancel_btn::before {
  content: "\F284";
  font-family: "Bootstrap-icons";
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
}

.cancel_btn:link,
.cancel_btn:visited {
  background-color: #f6f2e1;
  color: var(--gold_dark);
}

.cancel_btn:hover,
.cancel_btn:active {
  background-color: #b2ab8a;
  color: #fff;
}

/* 次へアイコンボタン */
.next_arrow_btn {
  position: relative;
}
.next_arrow_btn::after {
  content: "\F285";
  font-family: "Bootstrap-icons";
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/*===================================
 スライダ―
====================================*/

@media screen and (min-width: 576px) {
  .slide_right_overflow_container {
    overflow: hidden;
  }

  .slide_right_overflow_container .splide__track {
    overflow: visible;
  }
}

.splide.restaurant_slider a {
  text-decoration: none;
}

.splide.restaurant_slider .slide_name {
  color: var(--black);
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
  margin-top: 1rem;
  text-align: center;
}

.splide.restaurant_slider a:hover .slide_name,
.splide.restaurant_slider a:active .slide_name {
  color: var(--red);
}

/* arrows */
.splide.restaurant_slider .splide__arrows {
  position: static;
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}
@media screen and (min-width: 576px) {
  .splide.restaurant_slider .splide__arrows {
    justify-content: start;
  }
}

.splide.restaurant_slider .splide__arrow {
  position: static;
  transform: none;
  width: 10rem;
  height: 1.5rem;
  border-radius: 0;
  background: transparent;
  opacity: 1;
}

.splide.restaurant_slider .splide__arrow:disabled {
  opacity: 0.3;
}

.splide.restaurant_slider .splide__arrow--next {
  width: 7rem;
}

.splide.restaurant_slider .splide__arrow--prev::before {
  content: "";
  background-image: url(../img/left_arrow.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.splide.restaurant_slider .splide__arrow--prev::after {
  content: "";
  width: 3px;
  height: 2rem;
  background-color: var(--red);
  margin: 0 1.5rem;
}

.splide.restaurant_slider .splide__arrow--next::before {
  content: "";
  background-image: url(../img/right_arrow.svg);
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* ページネーション */
.splide.restaurant_slider .splide__pagination {
  position: static;
  padding-left: 0;
  padding-right: 0;
  margin-top: 1.5rem;
}

.splide.restaurant_slider .splide__pagination__page {
  background-color: #f0e8d9;
  height: 6px;
  border-radius: 0;
  width: 2rem;
  transition: 0.3s;
}

.splide.restaurant_slider .splide__pagination__page.is-active {
  background-color: var(--red);
  transform: none;
  width: 3rem;
  transition: 0.3s;
}

@media screen and (min-width: 576px) {
  .splide.restaurant_slider .splide__pagination {
    justify-content: start;
  }
  .splide.restaurant_slider .splide__pagination__page {
    width: 3rem;
  }
  .splide.restaurant_slider .splide__pagination__page.is-active {
    width: 5rem;
  }
}

/*===================================
 テーブル
====================================*/
.table {
  border-collapse: collapse;
  width: 100%;
}

.table th,
.table td {
  text-align: left;
  padding: 0.75rem 1.5rem;
  border: 1px solid var(--gold);
}

.table th {
  background-color: #f6f2e1;
}

.table td {
  background-color: #fff;
}

/*===================================
 リスト
====================================*/
/* パンくずリスト */
.breadcrumb {
  list-style: none;
  padding-left: 0;
  display: flex;
  font-size: clamp(0.875rem, 0.756rem + 0.51vw, 1rem);
  margin-top: 0;
}
.breadcrumb > li::after {
  content: "/";
  padding: 0 0.5em;
}
.breadcrumb > li:last-child::after {
  content: none;
}

/* 事業内容 */
.business_list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  list-style: none;
  padding-left: 0;
}
@media screen and (min-width: 768px) {
  .business_list {
    flex-direction: row;
    gap: clamp(1.5rem, -0.833rem + 4.86vw, 5rem);
    list-style: none;
    padding-left: 0;
  }
}

.business_list > li {
  max-width: 548px;
}
.business_list > li img {
  max-width: 100%;
}

.business_list_title {
  color: var(--red);
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.5rem, 1.317rem + 0.78vw, 2rem);
  text-align: center;
  margin: 1.5rem 0;
}

.business_list > li > p {
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .business_list > li {
    width: calc((100% - clamp(1.5rem, -0.833rem + 4.86vw, 5rem)) / 2);
  }

  .business_list > li > p {
    font-size: clamp(1rem, 0.556rem + 0.93vw, 1.25rem);
  }
}

.business_list > li > button {
  display: block;
  margin: 2rem auto 0;
}

/* 動画リスト */
.movie_list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  list-style: none;
  padding-left: 0;
}

.movie_list > li {
  max-width: 548px;
  width: 100%;
}

.movie_list_youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

.movie_list > li figcaption {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  text-align: center;
  margin-top: 0.75rem;
  font-size: clamp(1.25rem, 1.098rem + 0.65vw, 1.5rem);
  color: var(--base);
}

@media screen and (min-width: 768px) {
  .movie_list {
    flex-direction: row;
    gap: clamp(1.5rem, -0.833rem + 4.86vw, 5rem);
  }
}

/*===================================
 フォーム
====================================*/
.form_container {
  max-width: 800px;
  margin: 0 auto;
}

.form_title {
  margin-top: 2rem;
}

.form {
  width: 100%;
}

fieldset {
  border: none;
  padding: 0;
}

legend {
  margin-bottom: 0.75rem;
  font-weight: bold;
}

label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: bold;
}
.radio_group label {
  font-weight: normal;
}

input:not([type="checkbox"], [type="radio"]),
textarea {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

select {
  padding: 0.5rem 0.75rem;
  padding-right: 20px;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-width: 100px;
  font-size: 0.875rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input:focus,
textarea:focus {
  border-color: var(--base_yellow);
  outline: 2px solid var(--base_yellow);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(168, 134, 78, 0.3);
}

.form_group {
  margin-bottom: 2rem;
}

.radio_group {
  display: flex;
  gap: 1.5em;
}
.radio_group label {
  margin-bottom: 0;
}

.radio_group input[type="radio"] {
  margin-right: 0.3em;
}

.checkbox_group {
  display: flex;
}
.checkbox_group label {
  margin-bottom: 0;
}

.label_tag {
  background-color: #7b7b7b;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  font-weight: normal;
  margin-left: 0.5rem;
}

.label_tag.hissu {
  background-color: var(--red);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
  font-weight: normal;
  margin-left: 0.5rem;
}

.form_btn_container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.form_btn_container button {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .form_btn_container {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 3rem;
  }
}

/* エラー時 */
.errmsg_box {
  margin-bottom: 2rem;
  background-color: #f9e8e9;
  border: 1px solid #e7a2a7;
  padding: 1rem;
  color: var(--red);
  scroll-margin-top: 100px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .errmsg_box {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.errmsg {
  color: var(--red);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}
/* 
input.is-invalid,
textarea.is-invalid,
select.is-invalid {
  border: 2px solid var(--red);
  background-color: #fdf0f0;
}

input.is-invalid:focus,
textarea.is-invalid:focus,
select.is-invalid:focus {
  border-color: var(--red);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px rgba(194, 23, 36, 0.3);
} */

/*===================================
 トップページ
====================================*/
/* main view */
.main_view_container {
  width: 100%;
  height: 100svh;
  position: relative;
}

.main_view_item {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100svh;
}

.main_view_item:first-child {
  background-image: url(../img/main_view1.jpg);
}
.main_view_item:nth-child(2) {
  background-image: url(../img/main_view2.jpg);
  background-position: center right;
}
.main_view_item:nth-child(3) {
  background-image: url(../img/main_view3.jpg);
}
.main_view_item:nth-child(4) {
  background-image: url(../img/main_view4.jpg);
}
.main_view_item:nth-child(5) {
  background-image: url(../img/main_view5.jpg);
}

.main_view_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
}
.main_view_logo > img {
  width: clamp(6.875rem, 3.489rem + 16.93vw, 16.188rem);
}
@media screen and (min-width: 768px) {
  .main_view_logo {
    top: 65%;
    width: 100%;
  }
}

.main_view_online_link {
  position: absolute;
  bottom: 4.5rem;
  right: 0;
  display: none;
  background-color: var(--gold);
  padding: 1rem 4rem 1rem 3rem;
  color: #fff;
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: 1.25rem;
  text-decoration: none;
  transition: 0.3s;
}

.main_view_online_link:link,
.main_view_online_link:visited {
  background-color: var(--gold);
  color: #fff;
}

.main_view_online_link:hover,
.main_view_online_link:active {
  background-color: var(--gold_dark);
  color: #fff;
}

@media screen and (min-width: 768px) {
  .main_view_online_link {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
}

.main_view_scroll_marker {
  position: absolute;
  bottom: -3rem;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 5rem;
  background-color: #fff;
  border-radius: 999px;
  animation: 3s ease-out 1s infinite reverse forwards running
    scroll_mark_animation;
}

.main_view_scroll_marker::before {
  content: "scroll";
  position: absolute;
  bottom: 5.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
}
.main_view_scroll_marker::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 3rem;
  background-color: var(--red);
}

@keyframes scroll_mark_animation {
  0% {
    height: 0;
  }
  100% {
    height: 5rem;
  }
}

@media screen and (min-width: 992px) {
  .main_view_scroll_marker {
    display: none;
  }
}

/* 天とてんについて */
.top_concept_grid {
  display: grid;
  gap: 2rem;
}

.top_concept_grid > .top_concept_grid_img > img {
  width: 100%;
  height: 200px;
  object-position: center;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .top_concept_grid {
    grid-template-columns: 1fr 53.3%;
    grid-template-rows: 1fr auto;
    gap: clamp(1.5rem, -0.833rem + 4.86vw, 5rem);
  }

  .top_concept_grid > .top_concept_grid_img {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    margin-left: calc(50% - 50vw);
    padding-top: 5rem;
  }

  .top_concept_grid > .top_concept_grid_img {
    position: relative;
  }
  .top_concept_grid > .top_concept_grid_img::after {
    content: "";
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    background-color: var(--gold);
    width: 90%;
    height: 1px;
    margin-right: calc(50% - 50vw);
  }

  .top_concept_grid > .top_concept_grid_img > img {
    height: 639px;
    object-position: center;
    object-fit: cover;
  }

  .top_concept_grid > .top_concept_grid_text {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }

  .top_concept_grid > .top_concept_grid_button {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}

.top_concept_title > span {
  position: relative;
  display: inline;
  width: 9em;
}
.top_concept_title > span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  background-color: var(--gold);
  width: 100vw;
  height: 1px;
  margin-right: calc(50% - 50vw);
}

.concept_text {
  line-height: 2;
  font-size: clamp(1rem, 0.538rem + 1.28vw, 1.5rem);
}

/* news */
.news_container {
  max-width: 960px;
  margin: 0 auto;
}

.news_list {
  list-style: none;
  margin-bottom: 5rem;
  padding-left: 0;
  width: 100%;
}

.news_list > li {
  display: grid;
  align-items: center;
  grid-template-columns: 90px auto 1fr;
  gap: 0.75rem 1rem;
  border-bottom: 1px solid var(--gold);
  padding: 1rem 0.5rem;
  font-size: 0.875rem;
}

.news_list > li:first-child {
  border-top: 1px solid var(--gold);
}

.news_list > li > .date {
  grid-column: 1 / 2;
  grid-row: 1 / 2;
  font-weight: bold;
}

.news_list > li > .tag {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  background-color: var(--gold);
  color: #fff;
  font-size: 0.875rem;
  font-weight: bold;
  text-align: center;
  padding: 0.25rem 0.5rem;
}

.news_list > li > .tag--red {
  background-color: var(--red);
}

.news_list > li > .text {
  grid-column: 1 / 4;
  grid-row: 2 / 3;
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .news_list > li {
    padding: 1.75rem 2rem;
    gap: 2rem;
    font-size: 1rem;
  }

  .news_list > li > .date {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
  }
  .news_list > li > .tag {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
  }
  .news_list > li > .text {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
  }
}

/*===================================
 会社案内
====================================*/
/* メッセージ */
.company_message {
  line-height: 2;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
.company_message > p {
  margin-top: 2rem;
}

/* 経営理念 */
.philosophy_title {
  color: var(--gold);
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.25rem, -0.477rem + 8.64vw, 6rem);
}

.philosophy_flex {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.philosophy_flex_right > img {
  width: 100%;
  object-fit: cover;
}

@media screen and (min-width: 992px) {
  .philosophy_flex {
    flex-direction: row;
  }

  .philosophy_flex_left {
    width: 50%;
    padding-left: 3.5rem;
  }
  .philosophy_flex_right {
    margin-right: calc(50% - 50vw);
    width: 50vw;
  }

  .philosophy_flex_right > img {
    height: 546px;
  }
}

.philosophy_flex_left h4 {
  display: inline-block;
  background-color: #f6f2e1;
  color: var(--gold);
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  padding: 0.5rem 0.75rem;
  margin: 0;
}

ol.principle_list {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
ol.principle_list > li {
  margin-top: 0.5rem;
  padding-left: 0.5rem;
}
ol.principle_list > li::marker {
  color: var(--gold);
  font-family: var(--font_gothic_family);
  margin-right: 1rem;
}

/* 会社概要テーブル */
.company_table th,
.company_table td {
  display: block;
  width: 100%;
  border-bottom: none;
}

.company_table tr:last-child td {
  border: 1px solid var(--gold);
}

@media screen and (min-width: 576px) {
  .company_table th,
  .company_table td {
    display: table-cell;
    border: 1px solid var(--gold);
  }
  .company_table th {
    width: 30%;
  }

  .company_table td {
    width: 70%;
  }
}

/*===================================
 店舗情報
====================================*/
.restaurant_list {
  list-style: none;
  padding-left: 0;
  margin-top: 2rem;
}

.restaurant_list > li {
  padding: 3rem 0;
  border-bottom: 1px solid #dcd4b5;
}
@media screen and (min-width: 576px) {
  .restaurant_list > li {
    padding: 5rem 0;
  }
}

.restaurant_title {
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.5rem, 1.273rem + 0.97vw, 2rem);
  margin-top: 0.25rem;
  margin-bottom: 1rem;
  text-wrap: unset;
}
.restaurant_catch {
  font-size: clamp(1rem, 0.848rem + 0.65vw, 1.25rem);
}

.restaurant_flex_container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 1.5rem;
}
@media screen and (min-width: 992px) {
  .restaurant_flex_container {
    flex-direction: row;
  }
}

.restaurant_info {
  width: 100%;
}
@media screen and (min-width: 992px) {
  .restaurant_info {
    width: 60%;
  }
}

.restaurant_map {
  width: 100%;
  height: 250px;
}

@media screen and (min-width: 992px) {
  .restaurant_map {
    width: 40%;
    height: auto;
  }
}

.restaurant_map iframe {
  width: 100%;
  height: 100%;
}

.splide.restaurant_img_slider {
  font-family: var(--font_gothic_family);
}

@media screen and (min-width: 576px) {
  .splide.restaurant_img_slider ul > li {
    max-width: 400px;
  }
}
.splide.restaurant_img_slider img {
  width: 100%;
  object-fit: cover;
}

/* 店舗スライド ページネーション */
.splide.restaurant_img_slider .splide__pagination {
  position: static;
  padding-left: 0;
  padding-right: 0;
  margin-top: 0.5rem;
}

.splide.restaurant_img_slider .splide__pagination__page {
  background-color: #eedfc2;
  height: 6px;
  border-radius: 0;
  width: 2rem;
  transition: 0.3s;
}

.splide.restaurant_img_slider .splide__pagination__page.is-active {
  background-color: var(--red);
  transform: none;
  /* width: 3rem;
  transition: 0.3s; */
}

@media screen and (min-width: 576px) {
  .splide.restaurant_img_slider .splide__pagination {
    display: none;
  }
}

/* 店舗スライド arrows */
.splide.restaurant_img_slider .splide__arrow {
  opacity: 1;
  background: transparent;
}
.splide.restaurant_img_slider .splide__arrow svg {
  fill: #fff;
}

.splide.restaurant_img_slider .splide__arrow--prev {
  left: 0.2em;
}
.splide.restaurant_img_slider .splide__arrow--next {
  right: 0.2em;
}
.splide.restaurant_img_slider .splide__arrow:disabled {
  opacity: 0;
}

.restaurant_logo {
  width: 180px;
  margin-bottom: 1.5rem;
}
.restaurant_logo > img {
  width: 100%;
}

.restaurant_info_list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 576px) {
  .restaurant_info_list {
    flex-direction: row;
    gap: 1rem;
  }
}
.restaurant_info_list > dt {
  font-weight: bold;
  width: 150px;
  max-width: 150px;
  min-width: 150px;
}
.restaurant_info_list > dd {
  width: auto;
  margin-left: 0;
}

.restaurant_movie {
  margin-top: 2rem;
}
.restaurant_movie video {
  width: 100%;
}
@media screen and (min-width: 576px) {
  .restaurant_movie {
    max-width: 400px;
  }
}

.restaurant_link_list {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(0.5rem, -0.423rem + 2.56vw, 1.5rem);
  margin: 1.5rem 0;
}

@media screen and (min-width: 576px) {
  .restaurant_link_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .restaurant_link_list {
    grid-template-columns: repeat(3, minmax(0, 310px));
  }
}

.restaurant_link_list > li > a {
  display: grid;
  align-content: center;
  height: 100%;
  background-color: var(--red);
  border: 2px solid var(--red);
  color: #fff;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  padding: 1rem 0.5rem;
  transition: 0.3s;
}

.restaurant_link_list > li > a:hover,
.restaurant_link_list > li > a:active {
  background-color: var(--red_hover);
  border: 2px solid var(--red_hover);
}

.restaurant_link_list > li > a.gold_btn {
  background-color: var(--gold);
  border: 2px solid var(--gold);
  transition: 0.3s;
}

.restaurant_link_list > li > a.gold_btn:hover,
.restaurant_link_list > li > a.gold_btn:active {
  background-color: var(--gold_dark);
  border: 2px solid var(--gold_dark);
}

.restaurant_link_list > li > a.instagram_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(29px / 2 + 5px);
  background-color: #fff;
  border: 2px solid;
  border-image: linear-gradient(
    150deg,
    rgba(255, 214, 0, 1) 10%,
    rgba(255, 122, 0, 1) 38%,
    rgba(255, 0, 105, 1) 62%,
    rgba(211, 0, 197, 1) 80%,
    rgba(156, 51, 149, 1)
  );
  border-image-slice: 1;
  transition: 0.3s;
}

.restaurant_link_list > li > a.instagram_btn:hover,
.restaurant_link_list > li > a.instagram_btn:hover {
  background-color: var(--base_yellow);
}

.restaurant_link_list > li > a.instagram_btn > span.text {
  background: linear-gradient(
    150deg,
    rgba(255, 214, 0, 1) 10%,
    rgba(255, 122, 0, 1) 38%,
    rgba(255, 0, 105, 1) 62%,
    rgba(211, 0, 197, 1) 80%,
    rgba(156, 51, 149, 1)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*===================================
 採用情報トップ
====================================*/
/* メイン画像 */
.recruit_main_img > img {
  object-fit: cover;
  width: 100%;
}
@media screen and (min-width: 992px) {
  .recruit_main_img > img {
    height: 603px;
  }
}

.recruit_gold_subtitle {
  font-size: clamp(1.125rem, 0.5rem + 2.67vw, 2.5rem);
  color: var(--gold);
  line-height: 1.5;
  text-wrap: initial;
}

.recruit_gold_subtitle > span {
  position: relative;
  padding-left: calc(100px + 0.5em);
  background: linear-gradient(to right, var(--gold) 0%, var(--gold) 100%);
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 100px 1px;
}
@media screen and (min-width: 992px) {
  .recruit_gold_subtitle > span {
    padding-left: calc(200px + 0.5em);
    background-size: 200px 1px;
  }
}

.recruit_about_text {
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
  line-height: 2;
}

.recruit_works_list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  width: 100%;
  gap: clamp(1rem, 0.545rem + 1.94vw, 2rem);
  padding-left: 0;
}

.recruit_works_list > li {
  margin-bottom: 2rem;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
}

.recruit_works_list_title {
  color: var(--red);
  font-family: var(--font_mincho_family);
  font-weight: var(--font_mincho_weight);
  font-style: var(--font_mincho_style);
  font-size: clamp(1.5rem, 1.317rem + 0.78vw, 2rem);
  margin: clamp(1rem, 0.817rem + 0.78vw, 1.5rem) 0;
  text-align: center;
}

.recruit_pdf_flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  width: 100%;
  padding: 2rem 1.5rem;
  font-weight: 500;
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
}

@media screen and (min-width: 768px) {
  .recruit_pdf_flex {
    flex-direction: row;
    padding: 3rem;
  }
}

.current_recruit_list {
  list-style: none;
  padding-left: 0;
}

.current_recruit_list_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 7.5rem;
}

.current_recruit_list_item:first-child {
  margin-top: 2rem;
}

@media screen and (min-width: 768px) {
  .current_recruit_list_item {
    grid-template-columns: 40% 60%;
  }
}

@media screen and (min-width: 992px) {
  .current_recruit_list_item {
    gap: 1.5rem;
    flex-direction: row;
  }
}

.current_recruit_list_title {
  font-size: clamp(1.5rem, 1.134rem + 1.56vw, 2.5rem);
  text-wrap: unset;
  margin: 0;
}
.current_recruit_list_title > span {
  font-size: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
  color: var(--red);
  display: block;
  margin-bottom: 0.5rem;
}

.current_recruit_list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  padding-left: 0;
  font-weight: 500;
  margin-top: 0.75rem;
}

.current_recruit_list_tag > li {
  background-color: #f6f2e1;
  color: var(--gold_dark);
  font-size: 0.875rem;
  padding: 0.25rem 0.5rem;
}

.current_recruit_list_info {
  background-color: #fff;
  padding: 1rem 2rem;
  width: 100%;
  margin-top: 2rem;
  width: 100%;
}

.current_recruit_list_info dl {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: 1fr;
}
@media screen and (min-width: 768px) {
  .current_recruit_list_info dl {
    grid-template-columns: 100px 1fr;
  }
}

.current_recruit_list_info dl > dt {
  font-weight: bold;
}

.current_recruit_list_info dl > dd {
  margin-left: 0;
}

.current_recruit_list_btn {
  margin-top: 3rem;
}

/* インタビュー */
.recruit_interview_list {
  list-style: none;
  padding-left: 0;
}

.recruit_interview_list_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 5rem;
}
@media screen and (min-width: 576px) {
  .recruit_interview_list_item {
    grid-template-columns: minmax(200px, 25%) 1fr;
    gap: clamp(1rem, -0.66rem + 4.61vw, 3.375rem);
    /* gap: 1rem; */
  }
}

.recruit_interview_profile .name {
  font-weight: bold;
  text-align: center;
  font-size: 1.25rem;
  margin: 1.5rem 0 1rem;
}
.recruit_interview_profile .info {
  font-style: 500;
  font-size: 1rem;
}
.recruit_interview_profile .info span {
  font-weight: bold;
  display: inline-block;
  margin-right: 1rem;
  width: 70px;
}

.recruit_interview_profile ul {
  list-style: none;
  padding-left: 0;
}

.recruit_interview_img img {
  aspect-ratio: 1 / 1;
  width: 100%;
  background-color: #eee;
}

.recruit_interview_text {
  font-style: 500;
  line-height: 1.7;
  font-size: 1rem;
  /* padding: 0 1rem; */
}

.recruit_company_flex {
  display: grid;
  align-content: center;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media screen and (min-width: 576px) {
  .recruit_company_flex {
    grid-template-columns: 50% 50vw;
  }
}

.recruit_company_flex_left h3 {
  font-size: clamp(1.125rem, 0.852rem + 1.17vw, 2.25rem);
  font-weight: bold;
}

.recruit_company_flex_left dl {
  display: grid;
  grid-template-columns: auto;
  gap: 0.5rem;
  font-size: clamp(1rem, 0.909rem + 0.45vw, 1.25rem);
}
@media screen and (min-width: 768px) {
  .recruit_company_flex_left dl {
    grid-template-columns: 120px auto;
  }
}
.recruit_company_flex_left dl > dt {
  font-weight: bold;
}
.recruit_company_flex_left dl > dd {
  margin-left: 0;
}

.recruit_company_flex_btn {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 4rem;
}

@media screen and (min-width: 576px) {
  .recruit_company_flex_right {
    margin-right: calc(50% - 50vw);
  }
}

.recruit_company_flex_right iframe {
  height: clamp(13.75rem, 7.985rem + 24.6vw, 37.5rem);
}

/*===================================
 採用情報詳細
====================================*/
.recruit_detail_flex {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media screen and (min-width: 768px) {
  .recruit_detail_flex {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2rem;
  }
}

/* スライダ― */
.splide.recruit_img_slider {
  max-width: 624px;
  margin: auto;
}

.splide.recruit_img_slider img {
  width: 100%;
}

.recruit_img_thumbnail {
  margin-top: 10px;
}

.recruit_img_thumbnail .splide__list {
  flex-wrap: wrap;
}

.recruit_img_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit_detail_table th,
.recruit_detail_table td {
  display: block;
  width: 100%;
  border-bottom: none;
}

.recruit_detail_table tr:last-child td {
  border-bottom: 1px solid var(--gold);
}

@media screen and (min-width: 576px) {
  .recruit_detail_table th,
  .recruit_detail_table td {
    display: table-cell;
    border: 1px solid var(--gold);
  }

  .recruit_detail_table th {
    width: 256px;
  }

  .recruit_detail_table td {
    width: calc(100% - 256px);
  }
}

/*===================================
 採用応募
====================================*/

/*===================================
 お問い合わせ
====================================*/

/*===================================
 プライバシーポリシー
====================================*/
.policy_container > h2 {
  margin-top: 3rem;
}

/*===================================
 JS操作によるスタイル
====================================*/
/* ページ読み込み時のローディング画面 */
#js-loader.is-fadeout {
  opacity: 0;
  pointer-events: none;
}

#js-loader > img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
}

/* トップページでスクロールするとヘッダーの背景色を変える */
header.is-scrolled {
  background: var(--base);
  color: var(--black);
  border-bottom: 1px solid var(--gold);
  transition: 0.3s;
}

header.is-scrolled a {
  color: var(--black);
}

header.is-scrolled .hamburger_btn > span {
  background-color: var(--gold);
}

@media screen and (min-width: 992px) {
  header.is-scrolled .header_nav_list > li > a:hover,
  header.is-scrolled .header_nav_list > li > a:active {
    color: var(--red);
  }
  header.is-scrolled .header_nav_list > li > a::after {
    background-color: var(--red);
  }
}

/* ハンバーガーメニューを開く */
.header_nav.is-open {
  display: block;
}

/* ハンバーガーメニュー開いたとき、ヘッダーの色を変える */
header:has(.header_nav.is-open) {
  background: var(--base);
  color: var(--black);
  border-bottom: 1px solid var(--gold);
}

header:has(.header_nav.is-open) .header_logo a {
  color: var(--black);
}

header:has(.header_nav.is-open) .hamburger_btn > span {
  background-color: var(--gold);
}

/* ハンバーガーメニュー開いたとき、背景にレイヤーを敷く */
.cover.is-active {
  width: 100%;
}

/* ハンバーガーメニュー開いたとき、背景を固定する */
body.is-hidden {
  overflow: hidden;
}

/* ヘッダーの第二階層を開く */
.header_nav_child_list.is-open {
  display: block;
}
@media screen and (min-width: 992px) {
  .header_nav_child_list.is-open {
    display: grid;
  }

  header.is-scrolled .js-nav_child_link.is-focus {
    color: var(--red);
  }
  .js-nav_child_link.is-focus::after {
    width: 100%;
  }
}

/*===================================
 Utility style
====================================*/
/*********************************
 text
**********************************/
.u-fw_bold {
  font-weight: bold !important;
}
.u-text_center {
  text-align: center !important;
}

/*********************************
 margin
**********************************/
/* margin 0 */
.u-mt_0 {
  margin-top: 0 !important;
}
.u-mb_0 {
  margin-bottom: 0 !important;
}
.u-me_0 {
  margin-right: 0 !important;
}
.u-ms_0 {
  margin-left: 0 !important;
}
.u-mx_0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.u-my_0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.u-m_0 {
  margin: 0 !important;
}

/* margin 1rem */
.u-mt_1 {
  margin-top: 1rem !important;
}
.u-mb_1 {
  margin-bottom: 1rem !important;
}
.u-me_1 {
  margin-right: 1rem !important;
}
.u-ms_1 {
  margin-left: 1rem !important;
}
.u-mx_1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}
.u-my_1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}
.u-m_0 {
  margin: 1rem !important;
}

/* margin 2rem */
.u-mt_2 {
  margin-top: 2rem !important;
}
.u-mb_2 {
  margin-bottom: 2rem !important;
}

.u-mx_auto {
  margin-right: auto !important;
  margin-left: auto !important;
}

/*********************************
 padding
**********************************/
.u-py_1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

/*********************************
 width
**********************************/
.u-w_100 {
  width: 100% !important;
}

/*********************************
 display none/block
**********************************/
.u-d_none {
  display: none !important;
}
.u-d_block {
  display: block !important;
}
.u-d_md_none {
  display: block !important;
}
.u-d_lg_none {
  display: block !important;
}
@media screen and (min-width: 768px) {
  .u-d_md_none {
    display: none !important;
  }
}
@media screen and (min-width: 992px) {
  .u-d_lg_none {
    display: none !important;
  }
}

/*********************************
 others
**********************************/
.u-overflow_hidden {
  overflow: hidden !important;
}
