@charset "UTF-8";
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 10px;
  font-weight: 400;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  font-size: 10px;
}
@media screen and (max-width: 350px) {
  body {
    /*　画面サイズが1024pxからはここを読み込む　*/
    font-size: 8rem;
  }
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@font-face {
  font-family: "Marion";
  src: url(../../fonts/marion-regular.ttf);
}
@font-face {
  font-family: "Copperplate";
  src: url("../../fonts/Copperplate-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* =========================
   CopperplateCC 用フォントMixin
   使い方: .Section__ttl__en span { @include COP; }
   ========================= */
/* =========================
 CopperplateCC 用フォントMixin
 ========================= */
html {
  font-size: 0.829231vw;
}
@media screen and (min-width: 1200px) {
  html {
    font-size: 9.5px;
  }
}
@media screen and (max-width: 756px) {
  html {
    font-size: 2.6666666667vw;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

.pc-over {
  display: flex !important;
}

.sp-over {
  display: none !important;
}

/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media screen and (max-width: 756px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc-over {
    display: none !important;
  }
  .sp-over {
    display: flex !important;
  }
}
body {
  overflow-x: hidden;
  min-width: auto;
  margin: 0 auto;
  font-size: 1.6rem;
  background-color: #000;
  font-family: "Noto Sans JP", sans-serif !important;
  color: white;
}

.Inner {
  max-width: 1200px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  .Inner {
    padding: 0 1.5rem;
  }
}
.Inner--min {
  max-width: 980px;
}
@media screen and (max-width: 756px) {
  .Inner--min {
    max-width: 100%;
    padding: 0;
  }
}

.Inner--map {
  max-width: 1200px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  .Inner--map {
    max-width: auto;
    padding: 0rem;
  }
}

.Inner--map2 {
  max-width: 1200px;
  min-width: auto;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  .Inner--map2 {
    padding: 0 1.5rem;
  }
}

.PageUp {
  padding-top: 15rem;
}
@media screen and (max-width: 756px) {
  .PageUp {
    padding-top: 11rem;
  }
}

a {
  color: white;
}
a:hover {
  color: rgba(255, 255, 255, 0.799);
}

/*========= ナビゲーションのためのCSS ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
  position: fixed;
  z-index: -1;
  opacity: 0; /*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh; /*ナビの高さ*/
  background: #000; /* 背景色 */
  /*動き*/
  transition: all 0.2s;
}
@media screen and (max-width: 756px) {
  #g-nav {
    background-color: rgba(47, 47, 47, 0.6);
  }
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  position: relative;
  /*ナビゲーション天地中央揃え*/
  z-index: 999;
  top: 0rem;
  background-color: #fff;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
#g-nav ul .page-link_cv {
  display: flex;
  justify-content: space-between;
  max-width: 97rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  #g-nav ul .page-link_cv {
    flex-direction: column;
    margin-top: 2rem;
  }
}
#g-nav ul .page-link_cv__item {
  background: #fff;
  display: block;
  text-decoration: none;
  text-align: center;
  transition: all 300ms;
}
@media screen and (max-width: 756px) {
  #g-nav ul .page-link_cv__item {
    margin-bottom: 1rem;
    height: -moz-fit-content;
    height: fit-content;
    padding: 2rem 0;
    width: 100%;
  }
}
#g-nav ul .page-link_cv__item:hover {
  opacity: 0.6;
  transition: all 300ms;
}
#g-nav ul .page-link_cv__item span {
  letter-spacing: 0.04rem;
}
#g-nav ul .page-link_cv__item--tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background-color: #0A345D;
}
#g-nav ul .page-link_cv__item--tel .num {
  font-family: "Oswald", sans-serif;
  font-size: 3.1rem;
  line-height: 3.1rem;
  line-height: 4rem;
  letter-spacing: 0.04rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 3rem;
  text-align: center;
  position: relative;
}
#g-nav ul .page-link_cv__item--tel .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 40%;
  left: 0px;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 4.6rem;
  background: url(../img/common/phone_icon.webp) no-repeat center/contain;
}
#g-nav ul .page-link_cv__item--tel .time {
  font-size: 1.2rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  letter-spacing: 0.04rem;
}
#g-nav ul .page-link_cv__item--contact {
  background-color: #BAAA6D;
}
#g-nav ul .page-link_cv__item--contact span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: #fff;
  line-height: 10rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  #g-nav ul .page-link_cv__item--contact span {
    line-height: 3rem;
  }
}
#g-nav ul .page-link_cv__item--line {
  background-color: #02C755;
}
#g-nav ul .page-link_cv__item--line span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: #fff;
  line-height: 10rem;
  position: relative;
  padding-left: 4rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  #g-nav ul .page-link_cv__item--line span {
    line-height: 3rem;
  }
}
#g-nav ul .page-link_cv__item--line span::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0px;
  transform: translateY(-50%);
  width: 2.8rem;
  height: 2.8rem;
  background: url(../img/common/line_icon_white.webp) no-repeat center/contain;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #2f2f2f;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.6rem;
  font-weight: 500;
  padding: 1.5rem 0;
  text-align: left;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 1rem;
  right: 2rem;
  cursor: pointer;
  background-color: #0a345d;
  width: 3rem;
  height: 3rem;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0.8rem; /*  線の位置*/
  height: 1px; /*  線の太さ*/
  background-color: #fff; /* ボタンの色*/
  width: 1.4rem;
}

.openbtn1 span:nth-of-type(1) {
  top: 1.3rem;
}

.openbtn1 span:nth-of-type(2) {
  top: 1.8rem;
}

.openbtn1.active span:nth-of-type(1) {
  top: 0.9rem;
  left: 0.9rem;
  transform: translateY(6px) rotate(-45deg);
  width: 40%;
}

.openbtn1.active span:nth-of-type(2) {
  top: 2rem;
  left: 0.9rem;
  transform: translateY(-6px) rotate(45deg);
  width: 40%;
}

.Pager .Inner .pagination {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 0;
}
.Pager .Inner .pagination a,
.Pager .Inner .pagination span {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 4rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  height: 4rem;
  margin: 0 0.5rem;
  font-size: 2rem;
}
.Pager .Inner .pagination a.prev,
.Pager .Inner .pagination a.next {
  background: linear-gradient(to right, #728C96, #A1BAC4);
  color: #fff;
  font-size: 1.6rem;
  width: 6rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  text-decoration: none;
}
.Pager .Inner .pagination a.pager {
  background: #fff;
  box-shadow: 0px 3px 20px 0px rgba(0, 0, 0, 0.15);
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #333;
  text-decoration: none;
}
.Pager .Inner .pagination span.current.pager {
  background: #003A5B;
  color: #fff;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  border: none;
}

.Btn {
  background-color: #003C55 !important;
  text-align: center !important;
  line-height: 6rem !important;
  height: 6rem !important;
  width: 38rem !important;
  color: #fff !important;
  font-size: 1.8rem !important;
  font-weight: 200 !important;
  text-decoration: none !important;
  display: block !important;
  margin: 0 auto;
  position: relative !important;
  transition: all 300ms !important;
  padding: 0 !important;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 756px) {
  .Btn {
    width: 100% !important;
    font-size: 1.6rem !important;
    height: 5rem !important;
    line-height: 5rem !important;
  }
}
.Btn:hover {
  opacity: 0.6 !important;
  color: #fff !important;
  transition: all 300ms !important;
}
.Btn::before {
  content: "" !important;
  display: block !important;
  position: absolute !important;
  top: 50% !important;
  right: 3rem !important;
  transform: translateY(-50%) !important;
  width: 1.2rem !important;
  height: 0.8rem !important;
  background: url("../img/top/btn-allow-white.webp") no-repeat center/contain !important;
}
@media screen and (max-width: 756px) {
  .Btn::before {
    right: 1rem !important;
  }
}

.Btn__white {
  background-color: white;
  border: solid #003C55 0.1rem;
  display: flex;
  color: #003C55;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 7rem;
  font-size: 2.2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  width: 38rem;
}
.Btn__white:hover {
  opacity: 0.6rem;
}
@media screen and (max-width: 756px) {
  .Btn__white {
    font-size: 1.8rem;
    height: 5rem;
  }
}

.Link {
  font-size: 2.3rem;
  color: rgb(0, 0, 0);
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border-radius: 0.3rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  width: 28rem;
  background: rgb(232, 232, 232);
  position: relative;
}
.Link:hover {
  color: #292929 !important;
}
.Link::after {
  content: ">";
  position: absolute;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.6rem;
  right: 1rem;
  width: 5rem;
  top: 35%;
  height: 5rem;
  color: #959595;
}
.Link span {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  padding-left: 3rem;
}

/*
<a class="Btn" href="<?php echo home_url(); ?>">
     テキスト
</a>
*/
.Map {
  padding-left: 5rem;
  padding-right: 5rem;
  height: 80rem;
}
@media screen and (max-width: 756px) {
  .Map {
    padding-left: 0rem;
    padding-right: 0rem;
  }
}
.Map iframe {
  height: 100%;
  width: 100%;
}

.Map__content {
  width: 23rem;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 756px) {
  .Map__content {
    width: auto;
  }
}
.Map__content__img {
  margin-bottom: 2rem;
  max-height: 20rem;
  height: 100%;
}
@media screen and (max-width: 756px) {
  .Map__content__img {
    max-height: 8.9rem;
  }
}
.Map__content__img img {
  width: 100%;
  height: 20rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.Map__content__title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #000;
}
@media screen and (max-width: 756px) {
  .Map__content__title {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
  }
}
.Map__content__dis {
  font-size: 1.8rem;
  color: #333;
  line-height: 2.4rem;
}
@media screen and (max-width: 756px) {
  .Map__content__dis {
    font-size: 1rem;
  }
}
.Map__content a {
  color: #333;
  font-size: 1.8rem;
  display: inline-block;
  padding: 0.8em 2em;
  background: #f5f5f5;
  border-radius: 2em;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #ccc;
  font-weight: 600;
  text-align: center;
}
.Map__content a:hover {
  background: #333;
  color: #fff;
  border-color: #333;
}
@media screen and (max-width: 756px) {
  .Map__content {
    flex-direction: row;
    gap: 1rem;
  }
  .Map__content__img {
    width: 40%;
    margin-bottom: 0;
    height: 10rem;
  }
  .Map__content__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .Map__content__title {
    font-size: 1.6rem;
  }
  .Map__content__dis {
    font-size: 1.2rem;
  }
  .Map__content a {
    font-size: 1rem;
    width: 7rem;
  }
  .Map__content .Map__content__text {
    width: 60%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}

.Title {
  position: relative;
  display: flex;
  justify-content: center;
  position: relative;
  width: 100%;
  padding-top: 12rem;
  padding-bottom: 3rem;
  height: 15.2rem;
  background: #252525;
}
@media screen and (max-width: 756px) {
  .Title {
    padding-top: 4rem;
    padding-bottom: 1rem;
    height: 5.5rem;
  }
}
.Title::after {
  content: "";
  position: absolute;
  top: 8rem;
  right: 21rem;
  left: auto;
  width: 200%;
  height: 0.3rem;
  z-index: 0;
  background: #3d3d3d;
}
.Title .Title__left {
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.5rem;
}
.Title .Title__left .Title__left__num {
  font-size: 5.876rem;
  position: relative;
  bottom: 7rem;
  right: 0;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 0.5rem;
  z-index: 4;
  font-family: "Marion";
  font-size: 15.823rem;
  color: #707070;
  font-style: italic;
}
@media screen and (max-width: 756px) {
  .Title .Title__left .Title__left__num {
    font-size: 7.2rem;
    bottom: 2.5rem;
  }
}
.Title::before {
  content: "";
  position: absolute;
  content: "";
  background: #252525 !important;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  transform: translateX(-100%);
  width: 100%;
  height: 100%;
}
.Title .Title__right {
  width: -moz-fit-content;
  width: fit-content;
}
.Title .Title__right .Title__right__en {
  position: relative;
}
.Title .Title__right .Title__right__en span {
  z-index: 1;
  padding: 0 1.5rem;
  font-size: 5.876rem;
  height: -moz-fit-content;
  height: fit-content;
  font-family: "Marion";
  background: white;
  /* 背景を文字にクリップ */
  -webkit-background-clip: text;
  background-clip: text;
  /* 文字色を透明に */
  color: white;
}
@media screen and (min-width: 1200px) {
  .Title .Title__right .Title__right__en span {
    padding: 0 0.5rem;
  }
}
@media screen and (max-width: 756px) {
  .Title .Title__right .Title__right__en span {
    font-size: 1.85rem;
    padding: 0 0.3rem;
    letter-spacing: 0.1rem;
  }
  .Title .Title__right .Title__right__en span::first-letter {
    font-size: 4rem;
  }
}
@media screen and (max-width: 756px) {
  .Title .Title__right .Title__right__en:first-of-type:first-letter {
    font-size: 4rem;
  }
}
.Title .Title__right .Title__right__bottom {
  padding-top: 2rem;
}
@media screen and (max-width: 756px) {
  .Title .Title__right .Title__right__bottom {
    padding-top: 0rem;
  }
}
.Title .Title__right .Title__right__bottom p {
  padding-left: 2.5rem;
  font-size: 2.5rem;
  color: white;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 1rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  position: relative;
}
@media screen and (max-width: 756px) {
  .Title .Title__right .Title__right__bottom p {
    padding: 0;
    font-size: 0.8rem;
  }
}
.Title .Title__right .Title__right__bottom p span {
  display: inline-block;
  background: url(../img/ttl-arrow.webp) no-repeat center center/cover;
  background-size: 100% 100%;
  width: 19rem;
  height: 2rem;
  margin-left: 3rem;
}
@media screen and (max-width: 756px) {
  .Title .Title__right .Title__right__bottom p span {
    height: 1rem;
    width: 8rem;
  }
}

.Page__title {
  height: 52.9rem;
  width: 100%;
  padding-top: 14rem;
}
@media screen and (max-width: 756px) {
  .Page__title {
    height: 28.6rem;
    padding-top: 3.5rem;
  }
}
.Page__title .Page__title__en {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  color: white;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.729);
  font-size: 5rem;
  border-bottom: solid 0.09rem rgba(255, 255, 255, 0.377);
  padding-bottom: 1.2rem;
}
@media screen and (max-width: 756px) {
  .Page__title .Page__title__en {
    font-size: 3.2rem;
    border-bottom: solid 0.1rem rgba(255, 255, 255, 0.73);
  }
  .Page__title .Page__title__en::first-letter {
    font-size: 5rem;
  }
}
.Page__title .Page__title__dis {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.9rem;
  text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.67);
  padding-bottom: 4rem;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
@media screen and (max-width: 756px) {
  .Page__title .Page__title__dis {
    font-size: 2.4rem;
    padding-top: 2rem;
    padding-bottom: 1rem;
    line-height: 3.5rem;
    padding-left: 1rem;
    text-shadow: 0px 3px 6px rgb(0, 0, 0);
  }
}

.Page__recruit__title {
  padding-bottom: 6.1rem;
}
@media screen and (max-width: 756px) {
  .Page__recruit__title {
    padding-bottom: 4rem;
  }
}
.Page__recruit__title .Page__recruit__title__wrap {
  display: flex;
  justify-content: start;
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Page__recruit__title .Page__recruit__title__wrap {
    display: block;
    padding-bottom: 2.4rem;
  }
}
.Page__recruit__title .Page__recruit__title__wrap .Page__recruit__title__wrap__jp {
  font-size: 3.2rem;
  margin-right: 3.2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #383838;
}
@media screen and (max-width: 756px) {
  .Page__recruit__title .Page__recruit__title__wrap .Page__recruit__title__wrap__jp {
    font-size: 2rem;
    padding-bottom: 1.2rem;
  }
}
.Page__recruit__title .Page__recruit__title__wrap .Page__recruit__title__wrap__en {
  font-size: 3.2rem;
  font-family: "Playfair Display", serif;
  font-style: italic;
  color: #adc5d0;
}
@media screen and (max-width: 756px) {
  .Page__recruit__title .Page__recruit__title__wrap .Page__recruit__title__wrap__en {
    font-size: 2.1rem;
  }
}
.Page__recruit__title .Page__recruit__title__dis {
  font-size: 2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.3rem;
  line-height: 3.2rem;
}
@media screen and (max-width: 756px) {
  .Page__recruit__title .Page__recruit__title__dis {
    font-weight: 400;
    font-style: normal;
    font-size: 1.6rem;
    letter-spacing: 0rem;
    line-height: 2.5rem;
  }
}

.title__normal {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
}
@media screen and (max-width: 756px) {
  .title__normal {
    font-size: 2.4rem;
  }
}

.Section__ttl {
  text-align: center;
}
.Section__ttl__en span {
  letter-spacing: 0.3rem;
  display: inline-block;
  font-size: 4.5rem;
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 756px) {
  .Section__ttl__en span {
    font-size: 2.5rem !important;
    letter-spacing: 0;
  }
}
.Section__ttl__en span:first-of-type::first-letter {
  color: #858585;
  font-size: 6.5rem;
}
@media screen and (max-width: 756px) {
  .Section__ttl__en span:first-of-type::first-letter {
    font-size: 4.5rem !important;
  }
}
.Section__ttl__en span::first-letter {
  font-size: 5.5rem;
}
@media screen and (max-width: 756px) {
  .Section__ttl__en span::first-letter {
    font-size: 3rem !important;
  }
}
.Section__ttl__jp {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #707070;
  font-size: 2.3rem;
  padding-top: 3rem;
}
@media screen and (max-width: 756px) {
  .Section__ttl__jp {
    padding-top: 0rem !important;
    font-size: 0.9rem !important;
    letter-spacing: 0rem;
  }
}

.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

@font-face {
  font-family: "slick";
  font-weight: normal;
  font-style: normal;
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
}
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev:before,
.slick-next:before:hover {
  opacity: 0;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "";
}

[dir=rtl] .slick-prev:before {
  content: "";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "";
}

[dir=rtl] .slick-next:before {
  content: "";
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: "•";
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

/*-----スライダーのためのcss------*/
.slider {
  position: relative;
  z-index: 1;
  /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
  /* height: 100vh; */
  /* height: 300px; */
  /*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  padding: 0;
}

.slider-item {
  width: 100%; /*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
  /* height:100vh; */
  /* height: 300px; */
  /*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
  background-repeat: no-repeat; /*背景画像をリピートしない*/
  background-position: center; /*背景画像の位置を中央に*/
  background-size: cover; /*背景画像が.slider-item全体を覆い表示*/
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute; /*絶対配置にする*/
  z-index: 3;
  top: 50%; /*矢印の位置*/
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid red; /*矢印の色*/
  border-right: 2px solid red; /*矢印の色*/
  height: 25px;
  width: 25px;
}

.slick-prev { /*戻る矢印の位置と形状*/
  left: 2.5%;
  transform: rotate(-135deg);
}

.slick-next { /*次へ矢印の位置と形状*/
  right: 2.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -50px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px; /*ドットボタンのサイズ*/
  height: 8px; /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc; /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333; /*ドットボタンの現在地表示の色*/
}

/* .slick-active{
  opacity: 0.5;    

} */
.SheetList .SheetList__ttl {
  padding-top: 4.7rem;
  font-size: 2.4rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 2.5rem;
}
.SheetList .SheetList__dis {
  font-size: 1.6rem;
  line-height: 2.3rem;
  font-weight: 500;
}
@media screen and (max-width: 756px) {
  .SheetList .SheetList__dis {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 756px) {
  .SheetList {
    margin-top: 0;
  }
}
.SheetList__item {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 2.8rem 0;
  border-top: 0.1rem solid #b2b2b2;
  transition: opacity 0.2s;
}
.SheetList__item:last-of-type {
  border-bottom: 0.1rem solid #b2b2b2;
}
.SheetList__item:last-child {
  border-bottom: 0.1rem solid #b2b2b2;
}
.SheetList__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 756px) {
  .SheetList__item {
    display: block;
    padding: 2rem 0rem;
  }
}
.SheetList__item__meta {
  flex-shrink: 0;
  font-size: 1.8rem;
  color: #383838;
  width: 25%;
}
@media screen and (max-width: 756px) {
  .SheetList__item__meta {
    font-size: 1.4rem;
    margin-right: 0;
    margin-bottom: 0.5rem;
  }
}
.SheetList__item__body {
  font-size: 1.8rem;
  color: #383838;
  line-height: 1.4;
  width: 75%;
}
@media screen and (max-width: 756px) {
  .SheetList__item__body {
    width: 100%;
    font-size: 1.4rem;
    line-height: 1.6;
    padding-top: 0.8rem;
  }
}

.SheetList__item--last {
  border-bottom: 0.1rem solid #b2b2b2;
}

/*
  コンポーネント
<?php
            // functions.php にあらかじめ以下を追加しておくと便利です：
// require_once get_theme_file_path( 'components/sheet-list.php' );

            // 呼び出し部
            $sheet_items = [
                [
                    'meta' => '職種',
                    'body' => 'リテールセールス(ファイナンシャルプランニング業務)',
                ],
                [
                    'meta' => '雇用形態',
                    'body' => '正社員',
                ],
                [
                    'meta' => '勤務地',
                    'body' => '東京・大阪・名古屋・福岡　※上記以外も柔軟に対応するため相談可。',
                ],
                [
                    'meta' => '勤務時間',
                    'body' => '9:00～18:00（フレックスタイム制）',
                ],
                [
                    'meta' => '給与',
                    'body' => '経験・スキルにより応相談',
                ],
                [
                    'meta' => '交通費',
                    'body' => '支給（上限あり）',
                ],
                [
                    'meta' => '福利厚生',
                    'body' => '社会保険完備、年次有給休暇、研修制度、その他福利厚生',
                ],
            ];

            sheet_list_render(['items' => $sheet_items]);
            ?>


  <div class="SheetList">
  <h3 class="SheetList__ttl">募集要項</h3>
<div class="SheetList__item">
  <div class="SheetList__item__meta">職種</div>
  <div class="SheetList__item__body">
  リテールセールス(ファイナンシャルプランニング業務)
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  雇用形態
  </div>
  <div class="SheetList__item__body">
  正社員
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  勤務地
  </div>
  <div class="SheetList__item__body">
  東京・大阪・名古屋・福岡　※上記以外も柔軟に対応するため相談可。
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  勤務時間
  </div>
  <div class="SheetList__item__body">
  9:00～18:00（フレックスタイム制）
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  給与
  </div>
  <div class="SheetList__item__body">
  経験・スキルにより応相談
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  交通費
  </div>
  <div class="SheetList__item__body">
  支給（上限あり）
  </div>
</div>
<div class="SheetList__item">
  <div class="SheetList__item__meta">
  福利厚生
  </div>
  <div class="SheetList__item__body">
  社会保険完備、年次有給休暇、研修制度、その他福利厚生
  </div>

</div>
<h3 class="SheetList__ttl">仕事内容</h3>
<div class="SheetList__dis">
ダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミーダミー
</div>
</div>
*/
.Nav {
  height: 8.5rem;
  display: flex;
  position: relative;
  bottom: 18.5rem;
  align-items: center;
}
@media screen and (max-width: 756px) {
  .Nav {
    flex-wrap: wrap;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    bottom: 12.5rem;
  }
}
.Nav .Nav__wrap {
  margin: 0 auto;
  max-width: 120rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3.68rem;
}
@media (max-width: 1200px) {
  .Nav .Nav__wrap {
    max-width: 98%;
  }
}
@media screen and (max-width: 756px) {
  .Nav .Nav__wrap {
    padding-left: 3rem;
    padding-right: 3rem;
    flex-wrap: wrap;
    line-height: 3rem;
    gap: 0rem;
  }
  .Nav .Nav__wrap .Nav__wrap__item:nth-child(-n+3) {
    width: 30%;
    margin-bottom: 1.5rem;
    display: block;
  }
  .Nav .Nav__wrap .Nav__wrap__item:nth-child(n+4) {
    width: 23%;
    max-width: 23%;
    display: block;
  }
}
.Nav .Nav__wrap a {
  font-size: 3rem;
  text-shadow: 0 0 1rem rgb(0, 0, 0);
  min-width: -moz-fit-content;
  min-width: fit-content;
  color: white;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 0.4rem;
  border-bottom: 0.1rem solid #fff;
  font-family: "Marion";
  letter-spacing: 0.1em;
  transition: opacity 0.2s ease;
}
@media screen and (max-width: 756px) {
  .Nav .Nav__wrap a {
    min-width: auto;
    font-size: 1.3rem;
    text-align: left;
    line-height: 2rem;
    padding-bottom: 0rem;
    margin-bottom: 1.5rem;
  }
}
.Nav .Nav__wrap a:hover {
  transition: opacity 0.2s ease;
  opacity: 0.6;
}

.Cv {
  display: flex;
  height: 58rem;
  justify-content: space-between;
  /* ===== CV パネル ===== */
  /* ===== 内包コンテンツ ===== */
}
@media screen and (max-width: 756px) {
  .Cv {
    display: block;
    height: -moz-fit-content !important;
    height: fit-content !important;
  }
}
.Cv__item {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
  /* ---- 背景（モディファイア） ---- */
}
.Cv__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 756px) {
  .Cv__item {
    width: 100%;
  }
}
.Cv__item--left {
  background: url("../img/common/footer-left.webp") no-repeat;
  background-size: 100% 100%;
}
.Cv__item--right {
  background: url("../img/common/footer-right.webp") no-repeat center/cover;
}
.Cv__content {
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .Cv__content {
    padding: 7rem 2rem;
  }
}
.Cv__title {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 756px) {
  .Cv__title {
    font-size: 2.4rem;
  }
}
.Cv__body {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 756px) {
  .Cv__body {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 3rem;
  }
}
.Cv__btn {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.Cv__btn img {
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Cv__btn {
    width: 6rem;
    height: 6rem;
  }
}

/* 変数・mixin は既存のものを流用 */
.info-block {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 756px) {
  .info-block {
    display: block;
    margin-top: 1rem;
  }
}
.info-block__item {
  margin-top: 2.5rem;
  background: linear-gradient(135deg, #728C96 0%, #A1BAC4 100%);
  padding: 3rem;
  width: calc(50% - 7rem);
  margin-bottom: 2rem;
}
@media screen and (max-width: 756px) {
  .info-block__item {
    width: calc(100% - 3rem);
    padding: 1.5rem;
    margin: 1rem 0 1.5rem;
  }
}
.info-block__item__title, .info-grid__title {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  color: #fff;
  font-style: italic;
  margin-bottom: 1.5rem;
  padding-bottom: 3rem;
  border-bottom: #83AABA solid 0.1rem;
}
@media screen and (max-width: 756px) {
  .info-block__item__title, .info-grid__title {
    font-size: 2.2rem;
    padding: 0.5rem 0 2rem;
  }
}
.info-block__item__body {
  font-size: 1.8rem;
  color: #fff;
  line-height: 3.5rem;
}
@media screen and (max-width: 756px) {
  .info-block__item__body {
    font-size: 1.4rem;
    line-height: 2.5rem;
  }
}

.info-grid {
  background: linear-gradient(135deg, #728C96 0%, #A1BAC4 100%);
  padding: 3rem;
  margin: 0.5rem 0 5rem;
}
@media screen and (max-width: 756px) {
  .info-grid {
    padding: 1.5rem 1.5rem 2rem;
    margin-bottom: 3rem;
  }
}
.info-grid__title { /* “Value.” 見出し */ }
.info-grid__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width: 756px) {
  .info-grid__wrap {
    margin-top: 2rem;
  }
}
.info-grid__card {
  width: calc(33.3% - 1rem);
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 10rem;
  margin-bottom: 1.5rem;
  color: #fff;
  border: #B8CED6 solid 0.1rem;
  border-radius: 0.2rem;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
@media screen and (max-width: 756px) {
  .info-grid__card {
    width: calc(50% - 1rem);
    height: 8.5rem;
    margin-bottom: 0.8rem;
    border: rgba(184, 206, 214, 0.8588235294) solid 0.2rem;
    border-radius: 0.4rem;
  }
}
.info-grid__card__num {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  font-style: italic;
  font-size: 3rem;
}
@media screen and (max-width: 756px) {
  .info-grid__card__num {
    font-size: 1.5rem;
    top: 0.2rem;
    left: 0.2rem;
  }
}
.info-grid__card__text {
  font-size: 2.2rem;
  line-height: 3rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .info-grid__card__text {
    font-size: 1.4rem;
    line-height: 2.3rem;
  }
}

.Header {
  background: white;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.Header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 10rem;
  width: 95%;
  box-sizing: border-box;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  .Header__container {
    height: 5rem;
  }
}
.Header__container__logo {
  width: 11.3rem;
}
@media screen and (max-width: 756px) {
  .Header__container__logo {
    width: 11.1rem;
  }
}
.Header__container__logo img {
  width: 100%;
}
.Header__container__right {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 756px) {
  .Header__container__right {
    display: none;
  }
}
.Header__container__right__menu {
  display: flex;
  align-items: center;
}
.Header__container__right__menu__item {
  list-style-type: none;
  padding: 0 1.5rem;
}
.Header__container__right__menu__item a {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0rem;
  color: #003C55;
  text-decoration: none;
  transition: all 300ms;
}
.Header__container__right__menu__item a:hover {
  color: #2F2F2F;
  opacity: 0.6;
  transition: all 300ms;
}
.Header__container__right__cv {
  display: flex;
}
.Header__container__right__cv__tel {
  background-color: #0A345D;
  width: 31rem;
  height: 10rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 300ms;
}
.Header__container__right__cv__tel:hover {
  opacity: 0.6;
  color: #2F2F2F;
  transition: all 300ms;
}
.Header__container__right__cv__tel .num {
  font-family: "Oswald", sans-serif;
  font-size: 3.1rem;
  line-height: 3.1rem;
  line-height: 4rem;
  letter-spacing: 0.04rem;
  color: #fff;
  border-bottom: 1px solid #fff;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  padding-left: 3rem;
  text-align: center;
  position: relative;
  letter-spacing: 0.14rem;
}
.Header__container__right__cv__tel .num::before {
  content: "";
  display: block;
  position: absolute;
  top: 42%;
  left: 0px;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 4.6rem;
  background: url(../img/common/phone_icon.webp) no-repeat center/contain;
}
.Header__container__right__cv__tel .time {
  font-size: 1.2rem;
  font-weight: 500;
  color: white;
  text-align: center;
  letter-spacing: 0.04rem;
}
.Header__container__right__cv__contact {
  border: #003C55 solid 0.1rem;
  height: -moz-fit-content;
  height: fit-content;
  display: block;
  text-align: center;
  text-decoration: none;
  transition: all 300ms;
}
.Header__container__right__cv__contact:hover {
  opacity: 0.6;
  color: #2F2F2F;
  transition: all 300ms;
}
.Header__container__right__cv__contact span {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04rem;
  color: #003C55;
  line-height: 5rem;
  padding-left: 2rem;
  padding-right: 4rem;
  position: relative;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
.Header__container__right__cv__contact span::after {
  content: "";
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 0.5rem;
  height: 0.6rem;
  background: url("../img/common/btn-arrow.webp") no-repeat center center/cover;
}
.Fixed {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: none;
}
@media screen and (max-width: 756px) {
  .Fixed {
    display: flex;
  }
}
.Fixed .Btn {
  position: relative;
}
.Fixed .Btn::before {
  display: none !important;
  content: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 5rem;
  height: 5rem;
}
.Fixed .Btn svg {
  position: relative;
  top: 0.3rem;
}

.sp .openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 1rem;
  cursor: pointer;
  background-color: #0a345d;
  height: 5rem;
  top: 0rem;
  right: 0;
  width: 5rem;
}
.sp .openbtn1 span:nth-of-type(2) {
  top: 2.8rem;
  left: 1.8rem;
}
.sp .openbtn1 span:nth-of-type(1) {
  top: 2.3rem;
  left: 1.8rem;
}

.sp .openbtn1.active span:nth-of-type(2) {
  top: 3rem;
  left: 1.8rem;
}
.sp .openbtn1.active span:nth-of-type(1) {
  top: 1.9rem;
  left: 1.8rem;
}

#g-nav footer-mega__child {
  display: none;
}
#g-nav footer-mega.is-open > .footer-mega__child {
  display: block;
}
#g-nav .Footer__content {
  margin-top: 5rem;
  background: white url("../img/common/backgournd.webp") no-repeat center center/cover;
}
#g-nav .Footer__content__item {
  padding: 0.5rem 1.5rem;
}
#g-nav .footer-mega::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  width: 2rem;
  top: 1.5rem;
  height: 2.5rem;
  background: url(../img/common/parent-plus.webp) no-repeat center center/cover;
}
#g-nav .footer-mega.is-open::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
  width: 2.1rem;
  height: 2.1rem;
  background: url(../img/common/parent-minus.webp) no-repeat center center/cover;
}
#g-nav .footer-mega.is-open .Footer__content__item {
  padding: o;
}
#g-nav .footer-mega__child {
  margin-top: 0rem;
  list-style: none;
  margin-left: 0rem;
  margin-right: 0rem;
  margin-bottom: 0rem;
}
#g-nav .is-open {
  padding: 0;
}
#g-nav .is-open .footer-mega__link {
  padding: 2rem 1.5rem;
}

#g-nav .footer-mega.is-open .Footer__content__item {
  padding: o;
  background: white;
}
#g-nav .footer-mega.is-open .Footer__content__item a {
  padding: 1rem 0rem;
  font-size: 1.2rem;
  color: #383838;
}

.megamenu_parent {
  position: relative;
  padding-right: 2.5rem;
}
.megamenu_parent::after {
  content: "";
  position: absolute;
  right: 0rem;
  width: 2rem;
  top: -0.6rem;
  height: 2.5rem;
  background: url(../img/common/parent-plus.webp) no-repeat center center/cover;
}

@media screen and (max-width: 1273px) and (min-width: 1200px) {
  .Header__container__right__menu__item a {
    font-size: 1.12rem;
    font-weight: 500;
    letter-spacing: 0rem;
    color: #003C55;
    text-decoration: none;
    transition: all 300ms;
  }
}
.Header__container__right__menu__item.megamenu_parent {
  position: relative;
}

.Header__container__right__menu__item.megamenu_parent .megamenu_child {
  display: none;
  position: absolute;
  top: 1.5rem;
  left: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  z-index: 1000;
  min-width: 25rem;
  border-radius: 0.6rem;
}

.Header__container__right__menu__item.megamenu_parent .megamenu_child li {
  margin-bottom: 0.5rem;
}

.Header__container__right__menu__item.megamenu_parent .megamenu_child li:last-child {
  margin-bottom: 0;
}

.Header__container__right__menu__item.megamenu_parent .megamenu_child li a {
  display: block;
  padding: 0.5rem 0;
  color: #003C55;
  text-decoration: none;
  transition: color 200ms;
}

.Header__container__right__menu__item.megamenu_parent .megamenu_child li a:hover {
  color: #2F2F2F;
}

/* PC ではホバーで開く */
.Header__container__right__menu__item.megamenu_parent:hover .megamenu_child {
  display: block;
}

/* モバイルでは is-open クラスで開く */
.Header__container__right__menu__item.megamenu_parent.is-open .megamenu_child {
  display: block;
}

/* ホバー時は「−」アイコンに切り替え */
.Header__container__right__menu__item.megamenu_parent {
  position: relative;
  padding-right: 2.5rem;
  /* 通常時は「＋」アイコン */
  /* ホバー時は「−」アイコンに切り替え */
  /* is-open が付いたら常に「−」アイコン */
}
.Header__container__right__menu__item.megamenu_parent::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2.5rem;
  background: url("../img/common/parent-plus.webp") no-repeat center center/cover;
  transition: background 200ms;
}
.Header__container__right__menu__item.megamenu_parent:hover::after {
  background: url("../img/common/parent-minus.webp") no-repeat center center/cover;
  width: 2rem;
  height: 2rem;
}
.Header__container__right__menu__item.megamenu_parent.is-open::after {
  background: url("../img/common/parent-minus.webp") no-repeat center center/cover;
  width: 2rem;
  height: 2rem;
}

.Footer {
  padding-top: 19.8rem;
  background: url("../img/Fotter-bg.webp") no-repeat center center/cover;
}
@media screen and (max-width: 756px) {
  .Footer {
    padding-top: 9.8rem;
    background: url("../img/Fotter-bg-sp.webp") no-repeat center center/cover;
  }
}
.Footer .Footer__bottom {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.076);
}
@media screen and (max-width: 756px) {
  .Footer .Footer__bottom {
    justify-content: space-between;
  }
}
.Footer .Footer__bottom .Footer__bottom__logo {
  width: calc(20% - 1rem);
  transition: all 0.3s ease;
}
.Footer .Footer__bottom .Footer__bottom__logo:hover {
  opacity: 0.6;
  transition: all 0.3s ease;
}
.Footer .Footer__bottom .Footer__bottom__logo img {
  width: 28.9rem;
  height: 19.4rem;
}
@media screen and (max-width: 756px) {
  .Footer .Footer__bottom .Footer__bottom__logo img {
    width: 10.9rem;
    height: 7.4rem;
  }
}
.Footer .Footer__bottom .Footer__bottom__nav {
  width: 40%;
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  justify-content: unset;
}
@media screen and (max-width: 756px) {
  .Footer .Footer__bottom .Footer__bottom__nav {
    width: 70%;
  }
}
.Footer .Footer__bottom .Footer__bottom__nav .Footer__bottom__nav__item {
  font-size: 2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 3rem;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.Footer .Footer__bottom .Footer__bottom__nav .Footer__bottom__nav__item:hover {
  color: #fff;
  opacity: 0.6;
}
@media screen and (max-width: 756px) {
  .Footer .Footer__bottom .Footer__bottom__nav .Footer__bottom__nav__item {
    font-size: 0.9rem;
    padding: 0;
  }
}
@media screen and (max-width: 756px) and (max-width: 756px) {
  .Footer .Footer__bottom .Footer__bottom__nav .Footer__bottom__nav__item {
    width: 33.3333333333%;
    text-align: center;
    justify-content: space-between;
  }
  .Footer .Footer__bottom .Footer__bottom__nav .Footer__bottom__nav__item:nth-child(n+4) {
    max-width: 25%;
    max-width: calc;
    width: -moz-fit-content;
    width: fit-content;
    padding: 0 0.5rem;
  }
}
.Footer .Footer__dis {
  height: 4.5rem;
  width: 100%;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  background-color: #202020;
}
@media screen and (max-width: 756px) {
  .Footer .Footer__dis {
    height: 3.5rem;
    font-size: 0.8rem;
  }
}

.Fv {
  position: relative;
  top: 0;
  background-size: 100% 100%;
  height: 75rem;
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Fv {
    height: 66rem;
    background-size: 100%;
  }
}
.Fv .fv-video {
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
  /* 動画の下部を基準に表示 */
  z-index: -1;
  width: 100%;
  height: 100%;
  z-index: -1;
}
@media screen and (max-width: 756px) {
  .Fv .fv-video {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: bottom;
       object-position: bottom;
    /* 動画の下部を基準に表示 */
  }
}
.Fv .Inner {
  max-width: 10000px;
  height: 75rem;
}
@media screen and (max-width: 756px) {
  .Fv .Inner {
    padding: 0;
  }
}
.Fv__container {
  position: relative;
  height: 61.5rem;
  height: 75rem;
}
.Fv__container .Fv__container__img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  min-width: 31.5rem;
  width: 31.5rem;
  display: none;
  height: 21.1rem;
}
@media screen and (max-width: 756px) {
  .Fv__container .Fv__container__img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    min-width: 13.5rem;
    width: 14.5rem;
    height: 6.1rem;
  }
}
.Fv__container .Fv__container__img img {
  min-width: 31.5rem;
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Fv__container .Fv__container__img img {
    min-width: 13.5rem;
  }
}
@media screen and (max-width: 756px) {
  .Fv__container {
    box-sizing: border-box;
    bottom: 1rem;
  }
}
.Fv__container__logo {
  width: 100%;
  height: 100Vh;
  position: relative;
}
.Fv__container__logo__area {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 48rem;
  z-index: 1;
}
@media screen and (max-width: 756px) {
  .Fv__container__logo__area {
    max-width: 30rem;
  }
}
.Fv__container__logo__area img {
  max-width: 100%;
  width: 100%;
}

.Fv__food__container {
  height: 50rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 756px) {
  .Fv__food__container {
    height: 35rem;
  }
}
.Fv__food__container__content {
  justify-content: space-between;
}
.Fv__food__container__content .en {
  font-family: "Hind", serif;
  font-size: 2.5rem;
  letter-spacing: 0.1rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 756px) {
  .Fv__food__container__content .en {
    font-size: 2rem;
    letter-spacing: 0.12rem;
    margin-bottom: 1.5rem;
  }
}
.Fv__food__container__content .ttl {
  font-size: 2.2rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 756px) {
  .Fv__food__container__content .ttl {
    font-size: 1.8rem;
    line-height: 3.2rem;
    margin-bottom: 3rem;
  }
}
.Fv__food__container__content .dis {
  font-size: 2rem;
  letter-spacing: 0.08rem;
  line-height: 4.1rem;
}
@media screen and (max-width: 756px) {
  .Fv__food__container__content .dis {
    font-size: 1.6rem;
    line-height: 3rem;
    text-align: justify;
  }
}

.Fv__container__content__scroll {
  font-family: "Playfair Display", serif;
  color: white;
  font-size: 1.9rem;
  padding-top: 0.5rem;
  transform: rotate(90deg);
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 16rem;
  left: 0;
  right: -5%;
  margin: 0 auto;
  animation: floatX 3s ease-in-out infinite;
}
@media screen and (max-width: 756px) {
  .Fv__container__content__scroll {
    text-align: center;
    font-size: 1rem;
    width: 9rem;
    height: 0.5rem;
    position: absolute !important;
  }
}
.Fv__container__content__scroll:after {
  content: "";
  display: block;
  position: absolute;
  bottom: -2rem;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 1rem;
  background-color: white;
  background: url("../img/about/scroll-border.webp") no-repeat center;
  background-size: 100% 100%;
  height: 11rem;
  transform: rotate(-90deg);
}
@media screen and (max-width: 756px) {
  .Fv__container__content__scroll:after {
    height: 7rem;
    /* background-size: cover; */
    width: rem;
    bottom: -0.5rem -5.2px;
  }
}
@media screen and (max-width: 756px) {
  .Fv__container__content__scroll {
    font-size: 1rem;
    width: 9rem;
    position: absolute;
    animation: floatX 4s ease-in-out infinite;
  }
}

#page-loader {
  position: fixed;
  inset: 0;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease;
}
#page-loader.loaded {
  opacity: 0;
  pointer-events: none;
}
#page-loader #loader-logo {
  -o-object-fit: fill;
     object-fit: fill;
}

/* スクロール後に付与するクラス */
.Nav.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  /* 必要に応じて調整 */
  /* 下の要素が透けないように */
}

.Business {
  background-size: cover;
}
.Business .Inner .Title {
  justify-content: flex-start;
}
.Business .Inner .Title .Title__left {
  padding-right: 1rem;
}
.Business .Inner .Title::before {
  content: "";
  position: absolute;
  content: "";
  background: url(../img/bus-ttl.webp) no-repeat center;
  background-size: 99% 110%;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
}
@media screen and (max-width: 756px) {
  .Business .Inner .Title:after {
    left: 0rem;
    height: 0.1rem;
    left: -36rem;
    top: 3.5rem;
  }
}
.Business .Inner .Business__wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 7rem;
  padding-bottom: 3.2rem;
}
@media screen and (max-width: 756px) {
  .Business .Inner .Business__wrap {
    display: block;
    width: 80%;
    padding-top: 3rem;
    margin: 0 auto;
  }
}
.Business .Inner .Business__wrap .Business__wrap__item {
  width: calc(50% - 3.5rem);
  margin-bottom: 4.9rem;
}
.Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__img {
  -o-object-fit: fill;
     object-fit: fill;
}
.Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__img img {
  -o-object-fit: fill;
     object-fit: fill;
  width: 100%;
}
.Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__ttl {
  background: #646464;
  display: flex;
  margin-top: -0.2rem;
  position: relative;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 8rem;
  font-size: 3.3rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  text-shadow: 0px 3px 6px rgb(0, 0, 0);
  background: linear-gradient(61deg, rgb(100, 100, 100) 0%, rgb(104, 104, 104) 5%, rgb(122, 122, 122) 21%, rgb(157, 157, 157) 61%, rgb(188, 188, 188) 78%, rgb(196, 196, 196) 83%, rgb(234, 234, 234) 100%);
}
@media screen and (max-width: 756px) {
  .Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__ttl {
    font-size: 1.75rem;
    height: 5.5rem;
    text-shadow: 0px 2px 6px rgba(0, 0, 0, 0.8);
    margin-bottom: 1rem;
  }
}
.Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__ttl::after {
  content: "＞";
  position: absolute;
  right: 0;
  width: 5rem;
  font-size: 2rem;
  height: 1rem;
  color: e2e2ea;
}
@media screen and (max-width: 756px) {
  .Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__ttl::after {
    height: 2rem;
  }
}
.Business .Inner .Business__wrap .Business__wrap__item .Business__wrap__item__ttl span {
  font-size: 2.6rem;
  position: absolute;
  right: 3rem;
}

#map {
  height: 48rem;
}
@media screen and (max-width: 756px) {
  #map {
    height: 50rem;
  }
}

.Map {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-size: 200%;
}
@media screen and (max-width: 756px) {
  .Map {
    padding-top: 5rem;
    overflow: hidden;
    height: 70rem;
    padding-bottom: 0rem;
  }
}
.Map .Inner--map .Title .Title__right__en span {
  padding: 0 0.1rem;
}
@media screen and (max-width: 756px) {
  .Map .Inner--map .Title .Title__right__en span {
    padding: 0;
    letter-spacing: 0rem;
  }
}
.Map .Inner--map .Title::before {
  content: "";
  position: absolute;
  content: "";
  background: #252525;
  background-size: 99% 110%;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
}
.Map .Inner--map .Title::after {
  left: -128rem;
  width: 200%;
  height: 0.3rem;
  z-index: 0;
  background: #3d3d3d;
}
@media screen and (max-width: 756px) {
  .Map .Inner--map .Title::after {
    left: 0rem;
    height: 0.1rem !important;
    left: -36rem;
    top: 3.5rem;
  }
}
.Map .Inner--map .Map__container {
  margin-top: 7rem;
  width: 100%;
  height: 60rem;
}
@media screen and (max-width: 756px) {
  .Map .Inner--map .Map__container {
    height: 50rem;
    width: 100%;
    overflow: hidden;
    width: 100%;
    margin: 4rem auto 4rem;
  }
}
.Map .Inner--map .Map__container iframe {
  height: 100%;
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Map .Inner--map .Map__container iframe {
    margin-left: -55rem;
    margin-top: -5rem;
    width: 300%;
    height: 200%;
  }
}
.Map .Title__wrap {
  padding-bottom: 2.5rem;
}

.MapWrapper {
  position: relative;
}
@media screen and (max-width: 756px) {
  .MapWrapper {
    height: 50rem;
  }
}
.MapWrapper #map {
  width: 100%;
}
.MapWrapper #property-info {
  position: absolute;
  box-sizing: border-box;
  top: 0;
  right: 0;
  width: 20%;
  height: 100%;
  background: #fff;
  border-left: 1px solid #ccc;
  padding: 1.5rem;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
  overflow-y: auto;
  z-index: 10;
  display: none;
}
.MapWrapper #property-info.is-active {
  display: block;
}
.MapWrapper #property-info .Map__info-window__close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  color: #999;
  z-index: 11;
}
.MapWrapper #property-info .Map__info-window__close:hover {
  color: #333;
}
.MapWrapper #property-info .Map__info-window__inner {
  padding-top: 2rem;
}
@media screen and (max-width: 756px) {
  .MapWrapper #property-info .Map__info-window__inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 768px) {
  .MapWrapper #property-info {
    top: auto;
    bottom: 0;
    right: 0;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 60%;
    border-left: none;
    border-top: 1px solid #ccc;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    transform: translateY(100%);
    display: block;
    visibility: hidden;
    opacity: 0;
  }
  .MapWrapper #property-info.is-active {
    transform: translateY(0);
    visibility: visible;
    opacity: 1;
  }
  .MapWrapper #property-info .Map__info-window__close {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 2.5rem;
    background: transparent;
    border: none;
    z-index: 11;
    color: #999;
  }
  .MapWrapper #property-info .Map__info-window__close:hover {
    color: #333;
  }
}

.Works {
  background-color: #f2f2f2;
}
.Works__container {
  padding: 10.5rem 0;
}
@media screen and (max-width: 756px) {
  .Works__container {
    padding: 7rem 0;
  }
}
.Works__container .Title {
  margin-bottom: 7rem;
}
@media screen and (max-width: 756px) {
  .Works__container .Title {
    margin-bottom: 4rem;
  }
}
.Works__container__wrap {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.6rem;
}
@media screen and (max-width: 756px) {
  .Works__container__wrap {
    margin: 0;
    padding-bottom: 0.5rem;
  }
}
@media screen and (max-width: 756px) {
  .Works__container__wrap .Works__item:nth-child(n+5) {
    display: none;
  }
}

.Works__item {
  width: 25%;
  display: block;
  text-decoration: none;
  color: #2f2f2f;
  padding: 0 1.6rem;
  box-sizing: border-box;
  margin-bottom: 5rem;
}
@media screen and (max-width: 756px) {
  .Works__item {
    width: 100%;
    padding: 0;
    padding-bottom: 2rem;
    margin-bottom: 2.5rem;
    border-bottom: 1px solid #D9D9D9;
  }
}
.Works__item:hover {
  opacity: 0.6;
  color: #2f2f2f;
}
@media screen and (max-width: 756px) {
  .Works__item__head {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
  }
}
.Works__item__head__img {
  aspect-ratio: 1/1;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 756px) {
  .Works__item__head__img {
    width: 10rem;
    height: 10rem;
    margin-bottom: 0;
  }
}
.Works__item__head__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(10px);
}
.Works__item__head__ttl {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2.4rem;
  text-align: center;
  margin-bottom: 2.5rem;
  letter-spacing: 0.14rem;
}
@media screen and (max-width: 756px) {
  .Works__item__head__ttl {
    font-size: 1.4rem;
    margin-bottom: 0;
    padding-left: 3rem;
    letter-spacing: 0.08rem;
  }
}
.Works__item__food__before, .Works__item__food__after {
  position: relative;
  background-color: #fff;
  padding: 2rem 0;
}
@media screen and (max-width: 756px) {
  .Works__item__food__before, .Works__item__food__after {
    padding: 1.5rem 0;
  }
}
.Works__item__food__before::before, .Works__item__food__after::before {
  content: "";
  display: block;
  position: absolute;
  font-size: 1.4rem;
  letter-spacing: 0rem;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
}
.Works__item__food__before p, .Works__item__food__after p {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.08rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .Works__item__food__before p, .Works__item__food__after p {
    font-size: 1.4rem;
  }
}
.Works__item__food__before::before {
  content: "BEFORE";
  color: #808080;
}
.Works__item__food__before p {
  color: #808080;
}
.Works__item__food__allow {
  width: 2.8rem;
  height: 1.2rem;
  margin: 0 auto;
  padding: 1rem 0 2rem 0;
}
.Works__item__food__allow img {
  width: 100%;
}
.Works__item__food__after::before {
  content: "AFTER";
  color: #0a345d;
}
.Works__item__food__after p {
  color: #0a345d;
}

.Recruitment {
  padding-bottom: 10.6rem;
}
@media screen and (max-width: 756px) {
  .Recruitment {
    padding-bottom: 5.6rem;
  }
}
.Recruitment .Inner {
  text-align: center;
}
.Recruitment .Inner .Link {
  display: inline-block;
  margin: 0 auto;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Link {
    width: 23rem;
    border-radius: 0rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Link::after {
    right: -1rem;
    width: 5rem;
    top: 30%;
    font-size: 1.2rem;
  }
}
.Recruitment .Inner .Title {
  justify-content: center;
}
.Recruitment .Inner .Title::after {
  content: "";
  position: absolute;
  right: -120rem;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Title::after {
    right: -36rem;
    top: 3.8rem;
    height: 0.1rem;
  }
}
.Recruitment .Inner .Title::before {
  content: "";
  position: absolute;
  content: "";
  background: url(../img/recruit-ttl.webp) no-repeat center;
  background-size: 99% 110%;
  left: -25rem;
  top: 0;
  transform: translateX(0%);
  width: 200%;
  height: 100%;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Title::before {
    left: 0;
  }
}
.Recruitment .Inner .Recruitment__wrap {
  padding: 4rem 0;
  padding-bottom: 6rem;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Recruitment__wrap {
    width: 95%;
    margin: 0 auto;
    padding-bottom: 5rem;
  }
}
.Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__h2 {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  padding: 2.3rem 0;
  font-size: 2.3rem;
  padding-bottom: 5rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__h2 {
    font-size: 1.6rem;
    letter-spacing: -0.05rem;
    padding-bottom: 3.5rem;
  }
}
.Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__img {
  width: 90.8rem;
  margin: 0 auto;
  padding-bottom: 3.2rem;
}
.Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__img img {
  width: 100%;
}
.Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__p {
  font-size: 1.8rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  line-height: 2.55rem;
}
@media screen and (max-width: 756px) {
  .Recruitment .Inner .Recruitment__wrap .Recruitment__wrap__p {
    letter-spacing: -0.05rem;
    font-size: 1.25rem;
    line-height: 2rem;
  }
}

.Contact {
  background-size: 100%;
}
.Contact .Inner .Title {
  justify-content: center;
}
.Contact .Inner .Title::after {
  right: -135rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Title::after {
    right: 10rem !important;
    right: -36rem !important;
    height: 0.1rem !important;
    top: 3.8rem !important;
  }
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Title .Title__left {
    padding-right: 1.5rem !important;
  }
}
.Contact .Inner .Title::before {
  content: "";
  position: absolute;
  background: url(../img/contact-ttl.webp) no-repeat center;
  background-size: 99% 110%;
  left: 0;
  top: 0;
  transform: translateX(0%);
  width: 200%;
  height: 100%;
}
.Contact .Inner .Contact__wrap {
  text-align: center;
  padding-top: 7.3rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__wrap {
    width: 79% !important;
    margin: 0 auto !important;
    padding-top: 3.3rem !important;
  }
}
.Contact .Inner .Contact__wrap .Contact__wrap__h3 {
  font-size: 2.5rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 5.3rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__wrap .Contact__wrap__h3 {
    font-size: 1.6rem !important;
    line-height: 3rem !important;
    padding-bottom: 2rem !important;
  }
}
.Contact .Inner .Contact__wrap .Contact__wrap__p {
  font-size: 2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  line-height: 4rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__wrap .Contact__wrap__p {
    font-size: 1.35rem !important;
    line-height: 3rem !important;
  }
}
.Contact .Inner .Contact__links {
  display: flex;
  padding: 14rem 0;
  gap: 2rem;
  justify-content: center;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links {
    display: block !important;
    padding: 4rem 0 !important;
    padding-bottom: 12rem !important;
  }
}
.Contact .Inner .Contact__links .Link {
  height: 5rem;
  width: 40rem;
  font-size: 3.3rem;
  border-radius: 0;
  position: relative;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Link {
    width: 24rem !important;
    margin: 0.5rem auto !important;
    height: 2rem !important;
    font-size: 1.75rem !important;
  }
}
.Contact .Inner .Contact__links .Link::before {
  content: "";
  position: absolute;
  top: 0.3rem;
  left: 0.3rem;
  right: 0.3rem;
  bottom: 0.3rem;
  border: solid 0.1rem rgb(210, 210, 210);
  pointer-events: none;
  z-index: 1;
}
.Contact .Inner .Contact__links .Link::after {
  font-size: 2.5rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Link::after {
    font-size: 1rem !important;
    right: -0.5rem !important;
    width: 5rem !important;
    top: 36% !important;
  }
}
.Contact .Inner .Contact__links .Contact__links___left .Tel {
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Contact__links___left .Tel {
    justify-content: space-around !important;
  }
}
.Contact .Inner .Contact__links .Contact__links___left .Tel span {
  height: -moz-fit-content;
  height: fit-content;
}
.Contact .Inner .Contact__links .Contact__links___left .Tel .Tel__left {
  height: 5rem;
  width: 5rem;
  margin-left: 1.5rem;
  margin-right: -3rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Contact__links___left .Tel .Tel__left {
    height: 3.5rem !important;
    width: 3.5rem !important;
    padding-right: 2rem !important;
  }
}
.Contact .Inner .Contact__links .Contact__links___left .Tel img {
  width: 100%;
}
.Contact .Inner .Contact__links .Contact__links___left .Tel__right .Tel__right__top {
  font-size: 3.5rem;
  font-weight: 600;
  font-weight: bold;
  font-family: "dinosaur", sans-serif;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Contact__links___left .Tel__right .Tel__right__top {
    font-size: 1.75rem !important;
  }
}
.Contact .Inner .Contact__links .Contact__links___left .Tel__right .Tel__right__bottom {
  font-size: 2rem;
  text-align: center;
  padding-top: 0.5rem;
}
@media screen and (max-width: 756px) {
  .Contact .Inner .Contact__links .Contact__links___left .Tel__right .Tel__right__bottom {
    font-size: 1rem !important;
  }
}
.Contact .Inner .Contact__links___right {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}

.Contact-white {
  color: black;
}
.Contact-white .Section__ttl__en {
  color: black;
}

.Tel {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.Tel span {
  height: -moz-fit-content;
  height: fit-content;
}
.Tel .Tel__left {
  height: 5rem;
  width: 5rem;
  margin-left: 1.5rem;
  margin-right: -3rem;
}
@media screen and (max-width: 756px) {
  .Tel .Tel__left {
    height: 3.5rem !important;
    width: 3.5rem !important;
    padding-right: 2rem !important;
  }
}
.Tel img {
  width: 100%;
}

.Tel__right .Tel__right__top {
  font-size: 3.5rem;
  font-weight: 600;
  font-family: "dinosaur", sans-serif;
}
@media screen and (max-width: 756px) {
  .Tel__right .Tel__right__top {
    font-size: 1.75rem !important;
  }
}
.Tel__right .Tel__right__bottom {
  font-size: 2rem;
  text-align: center;
  padding-top: 0.5rem;
}
@media screen and (max-width: 756px) {
  .Tel__right .Tel__right__bottom {
    font-size: 1rem !important;
  }
}

.Lineup {
  padding-top: 15rem;
  background: black;
  padding-bottom: 10rem;
  ackground: black;
}
@media screen and (max-width: 756px) {
  .Lineup {
    padding-bottom: 0rem;
    padding-top: 4rem;
  }
}
.Lineup .Inner .Title::after {
  right: -138rem;
  left: auto;
  width: 200%;
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Title::after {
    right: -37rem;
    top: 3.9rem;
    left: auto;
    width: 200%;
    height: 0.1rem;
  }
}
.Lineup .Inner .Title::before {
  content: "";
  position: absolute;
  content: "";
  background: url(../img/line-ttl.webp) no-repeat center;
  background-size: 99% 110%;
  left: 0;
  top: 0;
  transform: translateX(0%);
  width: 200%;
  height: 100%;
}
.Lineup .Inner .Lineup__wrap {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin: 8rem auto;
  gap: 7.5rem;
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Lineup__wrap {
    gap: unset;
    width: 100%;
    margin: 5rem auto;
    justify-content: space-between;
    margin-bottom: 3rem;
  }
}
.Lineup .Inner .Lineup__wrap .Lineup__wrap__item {
  width: calc(25% - 6.5rem);
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Lineup__wrap .Lineup__wrap__item {
    margin-bottom: 3rem;
    width: calc(50% - 1.5rem);
  }
}
.Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__top {
  padding-bottom: 0.5rem;
  border-bottom: 0.3rem solid #B19A58;
  color: white;
  font-size: 2.3rem;
  font-family: "Marion";
  position: relative;
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__top {
    font-size: 1.3rem;
    border-bottom: 0.1rem solid #B19A58;
  }
}
.Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__top::after {
  content: "＞";
  position: absolute;
  color: white;
  bottom: 1rem;
  font-size: 1.3rem;
  right: 0;
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__top::after {
    font-size: 1rem;
    bottom: 0.5rem;
  }
}
.Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__bottom {
  color: white;
  padding-top: 0.8rem;
  font-size: 2rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 756px) {
  .Lineup .Inner .Lineup__wrap .Lineup__wrap__item .Lineup__wrap__item__bottom {
    letter-spacing: -0.1rem;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 756px) {
  .Lineup .space-sp {
    margin-bottom: 6rem !important;
  }
}

.Cv {
  display: flex;
  height: 58rem;
  justify-content: space-between;
  /* ===== CV パネル ===== */
  /* ===== 内包コンテンツ ===== */
}
@media screen and (max-width: 756px) {
  .Cv {
    display: block;
  }
}
.Cv__item {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.3s;
  /* ---- 背景（モディファイア） ---- */
}
.Cv__item:hover {
  opacity: 0.8;
}
@media screen and (max-width: 756px) {
  .Cv__item {
    width: 100%;
  }
}
.Cv__item--left {
  background: url("../img/contact/cv.webp") no-repeat;
  background-size: 100% 100%;
}
@media screen and (max-width: 756px) {
  .Cv__item--left {
    background: url("../img/contact/cv-sp.webp") no-repeat;
    background-size: 100% 100%;
  }
}
.Cv__item--right {
  background: url("../img/common/footer-right.webp") no-repeat center/cover;
}
.Cv__content {
  padding: 2rem;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .Cv__content {
    padding-top: 7.7rem;
    padding-bottom: 6.9rem;
  }
}
.Cv__title {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  color: #fff;
  margin-bottom: 4rem;
}
@media screen and (max-width: 756px) {
  .Cv__title {
    font-size: 2.4rem;
    margin-bottom: 2.4rem;
  }
}
.Cv__body {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 4rem;
  color: #fff;
}
@media screen and (max-width: 756px) {
  .Cv__body {
    font-size: 1.4rem;
    line-height: 1.9;
    margin-bottom: 3rem;
  }
}
.Cv__btn {
  width: 8rem;
  height: 8rem;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.Cv__btn img {
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Cv__btn {
    width: 6rem;
    height: 6rem;
  }
}

.Company {
  ackground: black;
  background-size: 100%;
}
.Company .Inner .Title {
  justify-content: flex-start;
}
.Company .Inner .Title::before {
  content: "";
  position: absolute;
  content: "";
  background: url(../img/company-ttl.webp) no-repeat center;
  background-size: 99% 110%;
  left: 0;
  top: 0;
  transform: translateX(-50%);
  width: 200%;
  height: 100%;
}
@media screen and (max-width: 756px) {
  .Company .Inner .Title::after {
    left: 0rem;
    height: 0.1rem;
    left: -36rem;
    top: 3.5rem;
  }
}
.Company__profile {
  padding-top: 17.3rem;
}
.Company__history {
  padding-top: 30.2rem;
}
.Company__history .Company__table__head {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.8rem;
}
.Company__history .Company__table__head__left {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
  font-size: 2.5rem;
  font-size: 2rem;
}
.Company__history .Company__table__head__right {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
  font-size: 2rem;
}
.Company__history .Company__table__item {
  padding: 1.8rem 0rem !important;
}
.Company__history .Company__table__item.history .Company__table__item__left {
  width: calc(50% - 2rem);
  align-items: flex-start;
}
.Company__history .Company__table__item.history .Company__table__item__left__time {
  width: calc(25% - 1rem);
  font-size: 1.7rem;
  line-height: 2.5rem;
}
.Company__history .Company__table__item.history .Company__table__item__left__dis {
  width: calc(65% - 1rem);
  font-size: 1.7rem;
  line-height: 2.5rem;
}
.Company__history .Company__table__item.history .Company__table__item__right {
  width: calc(50% - 2rem);
  display: flex;
  justify-content: space-between;
  line-height: 2.5rem;
}
.Company__history .Company__table__item.history .Company__table__item__right__ttl {
  min-width: calc(50% - 1rem);
  font-size: 1.7rem;
}
.Company__history .Company__table__item.history .Company__table__item__right__dis {
  width: calc(50% - 1rem);
  display: flex;
  justify-content: space-between;
  font-size: 1.7rem;
}
.Company__history .Company__table__item.history .Company__table__item__right__dis__left {
  width: calc(50% - 1rem);
  font-size: 1.7rem;
}
.Company__history .Company__table__item.history .Company__table__item__right__dis__right {
  width: calc(50% - 1rem);
  font-size: 1.7rem;
}

.Company__table {
  padding: 5rem 0rem;
}
@media screen and (max-width: 756px) {
  .Company__table {
    padding: 5rem 2rem !important;
  }
}
.Company__table .Company__table__item {
  background-color: #202020;
  display: flex;
  justify-content: center;
  padding: 3.1rem 0rem;
}
@media screen and (max-width: 756px) {
  .Company__table .Company__table__item {
    padding: 1rem 0rem;
    justify-content: start;
    padding-left: 1rem;
  }
}
.Company__table .Company__table__item .Company__table__item__left {
  color: white;
  width: calc(25% - 1rem);
  font-size: 2.8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 756px) {
  .Company__table .Company__table__item .Company__table__item__left {
    font-size: 1.5rem;
    width: calc(30% - 1rem);
  }
}
.Company__table .Company__table__item .Company__table__item__right {
  width: calc(65% - 1rem);
  color: rgb(200, 200, 200);
  font-weight: normal;
  font-size: 2.8rem;
  line-height: 5.5rem;
}
@media screen and (max-width: 756px) {
  .Company__table .Company__table__item .Company__table__item__right {
    width: calc(77% - 1rem);
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}
.Company__table .Company__table__item:nth-of-type(even) {
  background-color: #444343;
}

/* ------- 基本リセット ------- */
/* ------- Loading Overlay ------- */
#loader {
  position: fixed;
  inset: 0; /* top/right/bottom/left: 0 */
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(0, 0, 0); /* 半透明の黒幕 */
  z-index: 9999;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
#loader img {
  width: 70rem;
}
@media screen and (max-width: 756px) {
  #loader img {
    width: 40rem;
    margin: 0 auto;
  }
}

/* スクロール禁止 */
.no-scroll {
  overflow: hidden;
  height: 100%; /* iOS Safari での慣性スクロール対策 */
  touch-action: none;
}

/* フェードアウト後にクリック等を通すため visibility も切る */
#loader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* 円形スピナー */
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
/* ------- 以降はデモ用レイアウト ------- */
.PageHeader {
  position: relative;
  height: 12rem;
  background: black;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  display: none !important;
}
@media screen and (max-width: 756px) {
  .PageHeader {
    display: block !important;
    height: 5.5rem;
  }
}
.PageHeader .Inner {
  max-width: 130rem !important;
}
@media screen and (max-width: 756px) {
  .PageHeader .Inner {
    padding: 0 1rem;
  }
}
.PageHeader .PageHeader__flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.PageHeader .PageHeader__flex__left__logo {
  width: 18rem;
  display: block;
}
@media screen and (max-width: 756px) {
  .PageHeader .PageHeader__flex__left__logo {
    width: 8rem;
  }
}
.PageHeader .PageHeader__flex__left__logo img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 756px) {
  .PageHeader .PageHeader__flex__left__logo img {
    margin-left: -1rem;
  }
}
.PageHeader .PageHeader__flex__right {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
}
.PageHeader .PageHeader__flex__right .Link {
  width: 23.28rem;
  height: 4.5rem;
  font-size: 1.98rem;
  border-radius: 0rem;
  position: relative;
}
.PageHeader .PageHeader__flex__right .Link::after {
  content: "＞";
  position: absolute;
  font-weight: thin;
  font-weight: 400;
  top: 40%;
  font-style: normal;
  font-size: 1.3rem;
  font-family: "Noto Sans JP", sans-serif;
  right: 1rem;
  width: 1rem;
  top: 50%;
  transform: translateY(-50%);
  height: 1rem;
  color: #959595;
}
.PageHeader .PageHeader__flex__right .Tel__right {
  padding-right: 3.5rem;
}
.PageHeader .PageHeader__flex__right .Tel__right__top {
  font-size: 1.6rem;
  font-size: 2.08rem;
}
.PageHeader .PageHeader__flex__right .Tel__right__bottom {
  font-size: 1.3rem;
}
.PageHeader .PageHeader__flex__right .Tel__left {
  height: 3.5rem;
  width: 5rem;
  margin-left: 0rem;
  margin-right: 0rem;
  padding-left: 0.5rem;
}
.PageHeader .PageHeader__flex__right .Tel__left img {
  width: 4rem;
  height: 4rem;
}
.PageHeader .PageHeader__flex__right .hamburger {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif !important;
  letter-spacing: 0.5rem;
}
@media screen and (max-width: 756px) {
  .PageHeader .PageHeader__flex__right .hamburger {
    font-size: 0.6rem;
  }
}
.PageHeader .PageHeader__flex__right .hamburger span {
  display: block;
  width: 30px;
  height: 2px;
  background-color: #ffffff;
  margin: 3.5px 0;
  transition: all 0.3s ease;
  text-align: center;
}
@media screen and (max-width: 756px) {
  .PageHeader .PageHeader__flex__right .hamburger span {
    width: 1.8rem;
    height: 1px;
  }
}
.PageHeader .PageHeader__flex__right .hamburger span:nth-last-of-type(2) {
  width: 4.5rem;
}
@media screen and (max-width: 756px) {
  .PageHeader .PageHeader__flex__right .hamburger span:nth-last-of-type(2) {
    width: 2.8rem;
  }
}
.PageHeader .PageHeader__flex__right .hamburger span:nth-last-of-type(1) {
  margin-bottom: 1rem;
}
.PageHeader .PageHeader__flex__right .hamburger.is-active span:nth-of-type(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.PageHeader .PageHeader__flex__right .hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.PageHeader .PageHeader__flex__right .hamburger.is-active span:nth-of-type(3) {
  transform: rotate(-45deg) translate(6px, -8px);
}
.PageHeader .header-nav {
  max-height: 0;
  overflow: hidden;
  background-color: #181818;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: max-height 0.4s ease;
}
.PageHeader .header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.PageHeader .header-nav ul li {
  padding: 1rem;
}
.PageHeader .header-nav ul li a {
  display: block;
  padding: 1rem;
  text-decoration: none;
  color: #ffffff;
  font-size: 2rem;
  text-align: center;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 756px) {
  .PageHeader .header-nav ul li a {
    font-size: 1.1rem;
  }
}
.PageHeader .header-nav ul li a:hover {
  background-color: #636262;
}
.PageHeader .header-nav.active {
  max-height: 100vh !important;
}

.Company-page {
  background: #181818;
}
.Company-page .Map {
  background: #181818;
  padding-top: 27rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Map {
    padding-top: 0rem;
  }
}
.Company-page.PageUp {
  padding-top: 8rem;
}
@media screen and (max-width: 756px) {
  .Company-page.PageUp {
    padding-top: 5rem;
  }
}
.Company-page .Contact {
  padding-top: 32rem;
  padding-bottom: 31rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Contact {
    padding-top: 7rem;
    padding-bottom: 0rem;
  }
}
.Company-page .Contact__wrap {
  padding-top: 14.3rem;
}
.Company-page .Contact__wrap__h3 {
  padding-top: 7rem;
  padding-bottom: 5.3rem;
  line-height: 5.5rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Contact__wrap__h3 {
    padding-top: 0rem;
  }
}
.Company-page .Map iframe {
  padding-top: 9rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Map iframe {
    padding-top: 4rem;
    width: 100%;
    margin-right: -40rem;
  }
}
.Company-page .Inner {
  max-width: 110rem;
}
.Company-page .Company__table {
  padding: 5rem 0rem;
  padding-top: 10rem;
}
.Company-page .Company__table__item {
  padding: 2.1rem 0rem !important;
}
.Company-page .Company__table__item__left {
  font-size: 2.1rem !important;
}
.Company-page .Company__table__item__right {
  font-size: 2rem !important;
}
.Company-page .Section__ttl__jp {
  font-size: 2.3rem;
  padding-top: 1rem;
}
.Company-page .Section__ttl__en span {
  font-size: 4.5rem;
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
}
.Company-page .Section__ttl__en span:first-of-type::first-letter {
  color: #858585;
  font-size: 6.5rem;
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
}
.Company-page .Section__ttl__en span::first-letter {
  font-size: 5.5rem;
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
}
.Company-page .Page__title {
  background: url(../img/company/top.webp) no-repeat center center/cover;
}
@media screen and (max-width: 756px) {
  .Company-page .Page__title {
    background: url(../img/company/top-sp.webp) no-repeat center center/cover;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Page__title__dis {
    padding-top: 0rem;
    padding-bottom: 1rem;
    line-height: 2.5rem;
    font-size: 1.3rem;
  }
}
.Company-page .Company__profile {
  padding-top: 15.8rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile {
    padding-top: 8.3rem;
  }
}
.Company-page .Company__profile .Company__table {
  padding-top: 10rem !important;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table {
    padding-top: 4rem !important;
  }
}
.Company-page .Company__profile .Company__table__head {
  display: flex;
  justify-content: space-between;
}
.Company-page .Company__profile .Company__table__head__left {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
}
.Company-page .Company__profile .Company__table__head__right {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
  align-items: self-start;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__head__right {
    justify-content: space-around;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item {
    padding: 1.3rem 0rem !important;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item.history {
    padding-top: 3.4rem;
  }
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__left {
  width: calc(50% - 1rem);
  align-items: flex-start;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item.history .Company__table__item__left {
    font-size: 1.3rem !important;
    width: calc(24% - 3rem) !important;
  }
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__left__time {
  width: calc(25% - 1rem);
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item.history .Company__table__item__left__time {
    padding-right: 2rem;
  }
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__left__dis {
  width: calc(65% - 1rem);
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__right {
  width: calc(50% - 1rem);
  display: flex;
  justify-content: space-between;
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__right__ttl {
  width: calc(20% - 1rem);
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item.history .Company__table__item__right__ttl {
    display: flex;
    align-items: center;
  }
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__right__dis {
  width: calc(80% - 1rem);
  display: flex;
  justify-content: space-between;
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__right__dis__left {
  width: calc(50% - 1rem);
}
.Company-page .Company__profile .Company__table__item.history .Company__table__item__right__dis__right {
  width: calc(34% - 1rem);
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item.history .Company__table__item__right__dis__right {
    justify-content: space-around;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item__left {
    font-size: 1.3rem !important;
    width: calc(30% - 1rem);
    justify-content: start;
    padding-left: 1rem;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__profile .Company__table__item__right {
    width: calc(80% - 1rem);
    font-size: 1.3rem !important;
  }
}
.Company-page .Company__history {
  padding-top: 20.4rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history {
    padding-top: 3.4rem;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table {
    padding-top: 5rem;
  }
}
.Company-page .Company__history .Company__table__head {
  display: flex;
  justify-content: space-between;
}
.Company-page .Company__history .Company__table__head__left {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
  font-size: 2.4rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__head__left {
    font-size: 1.3rem;
    width: calc(24% - 3rem) !important;
  }
}
.Company-page .Company__history .Company__table__head__right {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
  font-size: 2.4rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__head__right {
    font-size: 1.3rem;
  }
}
.Company-page .Company__history .Company__table__item {
  padding: 2rem 2rem !important;
}
@media screen and (min-width: 1200px) {
  .Company-page .Company__history .Company__table__item {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item {
    padding: 1rem 0rem !important;
    justify-content: space-between;
  }
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history:first-of-type .Company__table__item__left {
    width: 100%;
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__left {
  width: calc(52% + 1rem);
  align-items: flex-start;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__left {
    width: calc(40% - 0rem);
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__left__time {
  width: calc(27% - 1rem);
  font-size: 2.5rem;
  line-height: 3.5rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__left__time {
    font-size: 1.3rem;
    line-height: 1.5rem;
    text-align: center;
    width: 61%;
    padding-left: 1rem;
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__left__dis {
  width: calc(65% - 1rem);
  font-size: 2.1rem;
  line-height: 4rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__left__dis {
    width: calc(80% - 3rem);
    font-size: 1.1rem;
    line-height: 1.5rem;
    padding-left: 2rem;
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__left__dis span {
  font-size: 1.2rem;
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__right {
  width: calc(50% - 1rem);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__right {
    width: calc(83% - 1rem);
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__right__ttl {
  width: calc(100% - 0rem);
  font-size: 2.2rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__right__ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    text-align: center;
    line-height: 1.5rem;
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis {
  width: calc(0% - 1rem);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis {
    width: calc(63% - 1rem);
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis__left {
  width: calc(30% - 1rem);
  font-size: 2.2rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis__left {
    font-size: 1.3rem;
    width: 100%;
    display: flex;
    align-items: center;
  }
}
.Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis__right {
  width: calc(30% - 1rem);
  font-size: 2.2rem;
}
@media screen and (max-width: 756px) {
  .Company-page .Company__history .Company__table__item.history .Company__table__item__right__dis__right {
    width: calc(74% - 1rem);
    font-size: 1.3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
  }
}
.Company-page__history .Company__table {
  padding-top: 10.2rem;
}
.Company-page__history .Company__table__head {
  display: flex;
  justify-content: space-between;
}
.Company-page__history .Company__table__head__left {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
}
.Company-page__history .Company__table__head__right {
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: calc(50% - 1rem);
}
.Company-page__history .Company__table__item.history .Company__table__item__left {
  width: calc(50% - 1rem);
  align-items: flex-start;
}
@media screen and (max-width: 756px) {
  .Company-page__history .Company__table__item.history .Company__table__item__left {
    width: calc(45% - 3rem) !important;
    padding-right: 2rem;
  }
}
.Company-page__history .Company__table__item.history .Company__table__item__left__time {
  width: calc(25% - 1rem);
}
@media screen and (max-width: 756px) {
  .Company-page__history .Company__table__item.history .Company__table__item__left__time {
    width: calc(27% - 4rem);
    padding-right: 2rem;
  }
}
.Company-page__history .Company__table__item.history .Company__table__item__left__dis {
  width: calc(65% - 1rem);
}
.Company-page__history .Company__table__item.history .Company__table__item__right {
  width: calc(50% - 1rem);
  display: flex;
  justify-content: space-between;
}
.Company-page__history .Company__table__item.history .Company__table__item__right__ttl {
  width: calc(20% - 1rem);
}
.Company-page__history .Company__table__item.history .Company__table__item__right__dis {
  width: calc(80% - 1rem);
  display: flex;
  justify-content: space-between;
}
.Company-page__history .Company__table__item.history .Company__table__item__right__dis__left {
  width: calc(50% - 1rem);
}
.Company-page__history .Company__table__item.history .Company__table__item__right__dis__right {
  width: calc(50% - 1rem);
}
@media screen and (max-width: 756px) {
  .Company-page__history .Company__table__item.history .Company__table__item__right__dis__right {
    align-items: self-start;
  }
}

.first-content {
  width: calc(57% - 0rem) !important;
}

@media screen and (max-width: 756px) {
  .Company__table__item__left.table-full {
    width: 100% !important;
  }
  .Company__table__item__left.table-full .Company__table__item__left__time {
    width: 44%;
  }
}

@media screen and (max-width: 756px) {
  .left-side {
    width: calc(27% - 5rem) !important;
  }
}

@media screen and (max-width: 756px) {
  .right-side {
    width: 100rem !important;
  }
}

.ShowMoreBtn {
  display: none;
}

@media (max-width: 768px) {
  .show-more-table {
    position: relative;
    max-height: 27rem;
    padding: 0 !important;
    overflow: hidden;
    transition: max-height 0.5s ease;
  }
  .show-more-table.open {
    max-height: 3000rem !important; /* 全表示用の高さ */
  }
  .show-more-table::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    /* z-index: 9; */
    width: 100%;
    -webkit-backdrop-filter: blur(1px);
            backdrop-filter: blur(1px);
    /* filter: blur(0px); */
    height: 7rem;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.54) 0%, #181818 46%);
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .show-more-table.open::after {
    opacity: 0; /* 全開時は影を消す */
  }
  .ShowMoreBtn {
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    margin: 2rem auto;
    position: relative;
    top: -7rem;
    font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 400;
    font-style: normal;
    width: 20rem;
  }
  .ShowMoreBtn::after {
    content: "";
    position: absolute;
    background: url(../img/down.webp) no-repeat center center/cover;
    /* top: 0; */
    bottom: 1rem;
    right: 4rem;
    width: 2rem;
    height: 1rem;
  }
}
.Company__tableshow-more-table {
  padding: 0;
}

.Business-page .Page__title__en {
  text-shadow: 3px 3px 6px 0.54px rgba(0, 0, 0, 0.78);
  border-bottom: none;
}
@media screen and (max-width: 756px) {
  .Business-page .Page__title__en {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 756px) {
  .Business-page .Page__title__en::first-letter {
    font-size: 3.2rem !important;
  }
}

.Page__title__hudousann {
  background: url(../img/hudousann.webp) no-repeat center center/cover !important;
}

.Page__title__kikaku {
  background: url(../img/kikaku.webp) no-repeat center center/cover !important;
}

.Page__title__kodate {
  background: url(../img/kodate.webp) no-repeat center center/cover !important;
}

.Page__title__reform {
  background: url(../img/reform.webp) no-repeat center center/cover !important;
  height: 59.9rem;
  padding-top: 21rem;
}
@media screen and (max-width: 756px) {
  .Page__title__reform {
    height: 27.9rem;
    padding-top: 7rem;
  }
}
@media screen and (max-width: 756px) {
  .Page__title__reform .Page__title .Page__title__en {
    font-size: 3rem;
    letter-spacing: 0.1rem;
    border-bottom: solid 0.1rem rgba(255, 255, 255, 0.73);
  }
}

.Page__business {
  background-color: #fff;
}
.Page__business__dis {
  padding: 8rem 0;
}
.Page__business__dis__text {
  font-size: 2.5rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 600;
  text-align: center;
  color: #1f1f1f;
  line-height: 3.9rem;
}
@media screen and (max-width: 756px) {
  .Page__business__dis__text {
    font-size: 1.25rem;
    line-height: 2.5rem;
  }
}
.Page__business .Section__ttl__en {
  color: #1f1f1f;
}
.Page__business .Section__ttl__ja {
  color: #1f1f1f;
  font-weight: 600;
}
.Page__business__ba {
  padding-bottom: 40rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba {
    padding: 0 3rem;
    padding-bottom: 8rem;
  }
}
.Page__business__ba__ttl {
  margin-top: 7rem;
  margin-bottom: 15rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__ttl {
    margin-bottom: 5rem;
  }
}
.Page__business__ba__item {
  margin-bottom: 10rem;
}
.Page__business__ba__item:last-of-type {
  margin-bottom: 0;
}
.Page__business__ba__item__ttl {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3.5rem;
  font-weight: 600;
  color: #1f1f1f;
  text-align: center;
  margin-bottom: 8rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__ttl {
    font-size: 1.4rem;
    margin-bottom: 2rem;
  }
}
.Page__business__ba__item__flex {
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__flex {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
  }
}
.Page__business__ba__item__flex__img {
  width: 45%;
  background-color: #f9f9f8;
  height: 40rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__flex__img {
    width: 100%;
    height: 20rem;
  }
}
.Page__business__ba__item__flex__img img {
  width: 100%;
}
.Page__business__ba__item__flex__allow {
  width: 5%;
  padding: 0 3rem;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__flex__allow {
    width: 10%;
  }
}
.Page__business__ba__item__flex__allow img {
  width: 100%;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__flex__allow img {
    transform: rotate(90deg);
  }
}
.Page__business__ba__item__text {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.3rem;
  line-height: 4rem;
  color: #1f1f1f;
}
@media screen and (max-width: 756px) {
  .Page__business__ba__item__text {
    font-size: 1rem;
    line-height: 2rem;
  }
}
.Page__business__case {
  padding-bottom: 10rem 0 5rem 0;
}
.Page__business__case .Section__ttl {
  margin-bottom: 15rem;
}
@media screen and (max-width: 756px) {
  .Page__business__case .Section__ttl {
    margin-bottom: 5rem;
  }
}
.Page__business__case__content__item {
  display: flex;
  margin-bottom: 10rem;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item {
    margin-bottom: 1rem;
  }
}
.Page__business__case__content__item__even {
  flex-direction: row-reverse;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__even {
    flex-direction: row-reverse;
  }
}
.Page__business__case__content__item__even .Page__business__case__content__item__img {
  padding-left: 0rem !important;
  padding-right: 5rem !important;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__even .Page__business__case__content__item__img {
    padding-right: 3rem !important;
  }
}
.Page__business__case__content__item:nth-child(even) {
  flex-direction: row-reverse;
}
.Page__business__case__content__item:nth-child(even) .Page__business__case__content__item__img {
  padding-left: 0rem !important;
  padding-right: 5rem !important;
}
.Page__business__case__content__item__text {
  width: 55%;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__text {
    width: 50%;
    text-align: center;
  }
}
.Page__business__case__content__item__text__number {
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
  font-size: 4.5rem;
  font-weight: bold;
  border-bottom: 0.3rem solid #1f1f1f;
  margin-bottom: 3rem;
  color: #1f1f1f;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__text__number {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
  }
}
.Page__business__case__content__item__text__number span {
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
  font-size: 5.5rem;
  font-weight: bold;
  color: #1f1f1f;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__text__number span {
    font-size: 2.2rem;
  }
}
.Page__business__case__content__item__text__ttl {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 6rem;
  color: #1f1f1f;
  margin-bottom: 1rem;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__text__ttl {
    font-size: 1.25rem;
    line-height: 2rem;
    margin-bottom: 0.5rem;
    text-align: left;
  }
}
.Page__business__case__content__item__text__dis {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  font-weight: 600;
  line-height: 4rem;
  color: #1f1f1f;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__text__dis {
    font-size: 1rem;
    line-height: 2rem;
    text-align: left;
    margin-bottom: 5rem;
  }
}
.Page__business__case__content__item__img {
  padding-left: 5rem;
  box-sizing: border-box;
  width: 45%;
}
@media screen and (max-width: 756px) {
  .Page__business__case__content__item__img {
    width: 50%;
    padding-left: 3rem;
  }
}
.Page__business__case__content__item__img img {
  width: 100%;
}
.Page__business__map .Page__business__map__ttl {
  margin-bottom: 8rem;
}
@media screen and (max-width: 756px) {
  .Page__business__map .Page__business__map__ttl {
    margin-bottom: 3rem;
  }
}
.Page__business__map__container {
  max-width: 170rem;
  width: 100%;
  margin: 0 auto;
  width: 100%;
  height: 75rem;
}
@media screen and (max-width: 756px) {
  .Page__business__map__container {
    height: 30rem;
  }
}
.Page__business__map__container iframe {
  width: 100%;
  height: 100%;
}
.Page__business__voice {
  padding-bottom: 5rem;
}
.Page__business__voice .Section__ttl {
  margin-bottom: 4rem;
}
.Page__business__voice__content__item {
  padding: 3rem 0;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item .Inner {
    width: 82% !important;
  }
}
.Page__business__voice__content__item:nth-child(odd) {
  background-color: #f9f9f8;
}
.Page__business__voice__content__item__flex {
  display: flex;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item__flex {
    flex-direction: column;
    align-items: center;
  }
}
.Page__business__voice__content__item__flex__img {
  width: 30%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item__flex__img {
    width: 70%;
    margin: 0 auto;
    margin-bottom: 1rem;
  }
}
.Page__business__voice__content__item__flex__img img {
  width: 100%;
}
.Page__business__voice__content__item__flex__text {
  width: 70%;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item__flex__text {
    width: 100%;
  }
}
.Page__business__voice__content__item__flex__text__ttl {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 3.6rem;
  color: #1f1f1f;
  margin-bottom: 2rem;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item__flex__text__ttl {
    font-size: 1.25rem;
    line-height: 2.5rem;
    margin-bottom: 0.5rem;
  }
}
.Page__business__voice__content__item__flex__text__dis {
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  font-weight: 600;
  line-height: 3.6rem;
  color: #1f1f1f;
}
@media screen and (max-width: 756px) {
  .Page__business__voice__content__item__flex__text__dis {
    font-size: 1rem;
    line-height: 2rem;
    text-align: center;
  }
}
.Page__business .Contact {
  padding: 10rem 0 15rem 0;
}
@media screen and (max-width: 756px) {
  .Page__business .Contact {
    padding: 5rem 0 0rem 0;
  }
}
.Page__business .Contact .Contact__wrap__h3 {
  color: #1f1f1f;
}
.Page__business .Contact .Contact__wrap__p {
  color: #1f1f1f;
}

@media screen and (max-width: 756px) {
  .page__rehome .Page__business__dis {
    padding-top: 5rem;
    padding-bottom: 0rem;
  }
}
@media screen and (max-width: 756px) {
  .page__rehome .Page__business__dis .Page__business__dis__text {
    font-size: 1.45rem;
    line-height: 2.9rem;
  }
}

.revers .Page__business__voice__content__item {
  background: white;
  padding: 11rem 0;
  padding-top: 2rem;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item {
    padding: 6rem 0;
  }
}
.revers .Page__business__voice__content__item .Page__business__voice__content__item__flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item .Page__business__voice__content__item__flex {
    display: block important;
  }
}
.revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__img {
  width: 40%;
  padding-right: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__img {
    width: 100% !important;
    margin-left: 0;
    padding-right: 0;
    margin: 0 auto;
  }
}
.revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text {
  width: calc(70% - 19rem);
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text__dis {
    text-align: left;
    font-size: 1.2rem;
  }
}
.revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text__ttl {
  font-size: 2rem;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text__ttl {
    width: 100%;
    font-size: 1.4rem;
  }
}
.revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex {
  display: flex;
  flex-direction: row-reverse;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex {
    display: block important;
    flex-direction: column;
  }
}
.revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__img {
  width: 40%;
  padding-left: 5%;
  box-sizing: border-box;
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__img {
    padding-right: 0%;
    padding-left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
.revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text {
  width: calc(70% - 19rem);
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text__dis {
    text-align: left;
  }
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text__ttl {
    width: 100%;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 756px) {
  .revers .Page__business__voice__content__item:nth-of-type(even) .Page__business__voice__content__item__flex .Page__business__voice__content__item__flex__text {
    padding: 0;
    width: 100%;
  }
}

.Page__title__contact {
  background: url(../img/contact.webp) no-repeat center center/cover !important;
  padding-top: 31rem;
  height: 34.9rem;
}
@media screen and (max-width: 756px) {
  .Page__title__contact {
    padding-top: 17rem;
    height: 15.9rem;
    background-position-x: -13rem !important;
  }
}

.Page__contact {
  background-color: #1f1f1f;
}
.Page__contact .Inner {
  max-width: 107rem;
}
@media screen and (max-width: 756px) {
  .Page__contact .Link::after {
    content: ">";
    position: absolute;
    font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;
    right: -1rem;
    width: 5rem;
    top: 29%;
    height: 5rem;
    color: #959595;
  }
}
.Page__contact__container {
  padding: 21rem 0 20rem 0;
}
@media screen and (max-width: 756px) {
  .Page__contact__container {
    padding: 4rem 0 10rem 0;
  }
}
.Page__contact__container__form__item {
  display: flex;
  margin-bottom: 7rem;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item {
    margin-bottom: 3.9rem;
  }
}
.Page__contact__container__form__item__label {
  width: 42%;
  display: flex;
  justify-content: space-between;
  padding-right: 10rem;
  box-sizing: border-box;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__label {
    width: 45%;
    padding-right: 2.5rem;
  }
}
.Page__contact__container__form__item__label label {
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__label label {
    font-size: 1.2rem;
    padding-top: 0.5rem;
  }
}
.Page__contact__container__form__item__label .hissu {
  background-color: #525252;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  padding: 0.5rem 1rem;
  display: block;
  height: 3.3rem;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__label .hissu {
    font-size: 1rem;
    height: 1rem;
  }
}
.Page__contact__container__form__item__input {
  width: 60%;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__input {
    width: 55%;
  }
}
.Page__contact__container__form__item__input input,
.Page__contact__container__form__item__input textarea {
  width: 100%;
  padding: 1.5rem;
  border-radius: 0.2rem;
  border: none;
  background-color: #fff;
  color: #1f1f1f;
  font-size: 1.4rem;
  box-sizing: border-box;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__input input,
  .Page__contact__container__form__item__input textarea {
    font-size: 1.1rem;
    padding: 0.5rem;
  }
}
.Page__contact__container__form__item__input textarea {
  height: 18rem;
  resize: none;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__form__item__input textarea {
    height: 10rem;
  }
}
.Page__contact__container__privacy {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 11rem;
  color: #fff;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__privacy {
    margin-top: 4.5rem;
    font-size: 1.2rem;
  }
}
.Page__contact__container__privacy input {
  -webkit-appearance: auto !important;
     -moz-appearance: auto !important;
          appearance: auto !important;
  width: 3rem;
  height: 3rem;
  margin-right: 2rem;
}
@media screen and (max-width: 756px) {
  .Page__contact__container__privacy input {
    width: 1.5rem;
    height: 1.5rem;
    margin-right: 1rem;
  }
}
.Page__contact__container .Contact__btn {
  position: relative;
}
.Page__contact__container .Contact__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/allow_contact_btn.webp) no-repeat center/contain;
}
@media screen and (max-width: 756px) {
  .Page__contact__container .Contact__btn::before {
    width: 1rem;
    height: 1rem;
  }
}
.Page__contact__container .Contact__btn button {
  background-color: #e2e2ea;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  text-align: center;
  height: 10rem;
  width: 46rem;
  display: block;
  margin: 0 auto;
  margin-top: 8rem;
  cursor: pointer;
}
@media screen and (max-width: 756px) {
  .Page__contact__container .Contact__btn button {
    padding-top: 0.5rem;
    padding-bottom: 3rem;
    margin-top: 5rem;
    font-size: 1.6rem;
    height: 3rem;
    max-width: 100%;
    width: 22.5rem;
  }
}
.Page__contact__container .Contact__btn button:hover {
  opacity: 0.7;
  transition: all 300ms;
  color: #000;
}

@media screen and (max-width: 756px) {
  .Footer {
    padding-top: 3.8rem;
  }
}

.Detail {
  background: white;
}
.Detail.PageUp {
  padding-top: 8rem;
}
.Detail .Inner {
  max-width: 110rem;
}
@media screen and (max-width: 756px) {
  .Detail .Inner {
    padding: 0 1rem;
  }
}
.Detail .Page__title {
  background: url(../img/detail/top.webp) no-repeat center center/cover;
}
@media screen and (max-width: 756px) {
  .Detail .Page__title {
    background: url(../img/detail/top-sp.webp) no-repeat center center/cover;
  }
}
.Detail .Page__title__dis {
  font-size: 3.9rem;
  text-shadow: 3px 3px 6px 0.54px rgba(0, 0, 0, 0.78);
}
@media screen and (max-width: 756px) {
  .Detail .Page__title__dis {
    font-size: 2.9rem;
    padding-bottom: 1rem;
  }
}
.Detail__top {
  margin-top: 14rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 756px) {
  .Detail__top {
    margin-top: 9rem;
    padding-bottom: 1rem;
  }
}
.Detail__top__img {
  height: 73.2rem;
}
@media screen and (max-width: 756px) {
  .Detail__top__img {
    height: 28.2rem;
  }
}
.Detail__top__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.Detail .Detail__four {
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Detail .Detail__four {
    margin-bottom: 3.5rem;
  }
}
.Detail__sheet {
  margin-bottom: 14rem;
}
@media screen and (max-width: 756px) {
  .Detail__sheet {
    margin-bottom: 7rem;
  }
}
.Detail__sheet__item {
  display: flex;
  justify-content: space-between;
  color: rgb(37, 37, 37);
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: solid 0.2rem black;
}
@media screen and (max-width: 756px) {
  .Detail__sheet__item {
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-bottom: solid 0.1rem black;
  }
}
.Detail__sheet__item__left {
  width: calc(20% - 1rem);
  font-size: 2.3rem;
  color: black;
  display: flex;
  text-align: center;
  justify-content: start;
  align-items: center;
}
@media screen and (max-width: 756px) {
  .Detail__sheet__item__left {
    width: calc(20% - 0rem);
    font-size: 1.3rem;
  }
}
.Detail__sheet__item__right {
  width: calc(80% - 1rem);
  font-size: 2.5rem;
  display: flex;
  justify-content: flex-start;
  line-height: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Detail__sheet__item__right {
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
}
.Detail__sheet__item__right__right2 {
  width: calc(50% - 1rem);
  font-size: 2.5rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Detail__sheet__item__right__right2 {
    font-size: 1.2rem;
    line-height: 2.5rem;
    width: calc(62% - 1rem);
  }
}
.Detail__sheet__item__right__left2 {
  width: calc(50% - 1rem);
  font-size: 2.5rem;
  line-height: 4.5rem;
}
@media screen and (max-width: 756px) {
  .Detail__sheet__item__right__left2 {
    font-size: 1.2rem;
    width: calc(50% - 4rem);
    line-height: 2.5rem;
  }
}
.Detail__type__ttl {
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
  font-size: 3.5rem;
  color: #6c6b6a;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 756px) {
  .Detail__type__ttl {
    font-size: 1.5rem;
    padding-right: 0.5rem;
    margin-bottom: 1.4rem;
  }
}
.Detail__type__ttl span {
  font-family: "Copperplate", sans-serif;
  font-weight: 300;
  font-size: 4.5rem;
  font-weight: bold;
}
@media screen and (max-width: 756px) {
  .Detail__type__ttl span {
    font-size: 2.5rem;
  }
}
.Detail .Contact {
  margin-top: 25.7rem;
  padding-bottom: 26rem;
}
@media screen and (max-width: 756px) {
  .Detail .Contact {
    margin-top: 9.7rem;
    padding-bottom: 0rem;
  }
}

.Detail__four {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.Detail__four .Detail__middle__img {
  width: calc(50% - 1rem);
  height: 35.4rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 756px) {
  .Detail__four .Detail__middle__img {
    width: calc(50% - 0rem);
    height: 18.4rem;
    margin-bottom: 0rem;
  }
}
.Detail__four .Detail__middle__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.req.PageUp {
  padding-top: 4rem;
}

.Page__title__recruit {
  background: url(../img/recruit_fv.webp) no-repeat center center/cover !important;
}
@media screen and (max-width: 756px) {
  .Page__title__recruit {
    background: url(../img/recruit_fv_sp.webp) no-repeat center center/cover !important;
  }
}

@media screen and (max-width: 756px) {
  .Company__table {
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (max-width: 756px) {
  .Company__table__item__left {
    font-size: 1.2rem !important;
    width: calc(30% - 3rem) !important;
    align-items: flex-start !important;
    padding-top: 0.7rem !important;
  }
}
@media screen and (max-width: 756px) {
  .Company__table__item__right {
    font-size: 1.1rem !important;
  }
}

.Page__recruit {
  background-color: #fff;
}
.Page__recruit__message {
  padding: 15rem 0;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message {
    padding: 5rem 0;
  }
}
.Page__recruit__message .Section__ttl {
  margin-bottom: 5rem;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message .Section__ttl {
    margin-bottom: 3rem;
  }
}
.Page__recruit__message__flex {
  display: flex;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex {
    flex-direction: column-reverse;
  }
}
.Page__recruit__message__flex__text {
  width: 60%;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex__text {
    width: 100%;
  }
}
.Page__recruit__message__flex__text__ttl {
  font-size: 2.5rem;
  color: #171717;
  margin-bottom: 3rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: bold;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex__text__ttl {
    font-size: 1.6rem;
    text-align: center;
    line-height: 2.8rem;
  }
}
@media screen and (min-width: 1200px) {
  .Page__recruit__message__flex__text__ttl {
    width: 66rem;
  }
}
.Page__recruit__message__flex__text__dis {
  font-size: 2.5rem;
  letter-spacing: 0rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #171717;
  line-height: 3.5rem;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex__text__dis {
    font-size: 1.2rem;
    line-height: 2.5rem;
    text-align: center;
  }
}
.Page__recruit__message__flex__img {
  position: relative;
  width: 40%;
  margin-top: 5rem;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex__img {
    width: 100%;
    margin-bottom: 1rem;
  }
}
.Page__recruit__message__flex__img img {
  width: 100%;
  position: absolute;
  display: block;
  top: 0;
  left: calc(15vw - 50%);
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 756px) {
  .Page__recruit__message__flex__img img {
    position: relative;
    width: 100%;
    height: 18rem;
    left: 0;
  }
}
@media screen and (min-width: 1200px) {
  .Page__recruit__message__flex__img img {
    min-width: 70rem;
  }
}
.Page__recruit__entry {
  padding: 10rem 0;
}
@media screen and (max-width: 756px) {
  .Page__recruit__entry {
    padding: 5rem 0;
  }
}
.Page__recruit__entry__text {
  font-size: 2.5rem;
  line-height: 3.5rem;
  text-align: center;
  color: #171717;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (max-width: 756px) {
  .Page__recruit__entry__text {
    font-size: 1.5rem;
    line-height: 2.5rem;
  }
}
.Page__recruit__entry__btn {
  position: relative;
  color: #fff;
  background-color: #333333;
  font-family: "Shippori Mincho", "shippori-mincho", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4rem;
  text-align: center;
  height: 10rem;
  line-height: 10rem;
  text-decoration: none;
  color: #fff;
  width: 46rem;
  display: block;
  margin: 0 auto;
  margin-top: 4rem;
  cursor: pointer;
}
.Page__recruit__entry__btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  background: url(../img/allow_contact_btn.webp) no-repeat center/contain;
}
@media screen and (max-width: 756px) {
  .Page__recruit__entry__btn::before {
    width: 1rem;
    height: 1rem;
  }
}
@media screen and (max-width: 756px) {
  .Page__recruit__entry__btn {
    font-size: 1.4rem;
    height: 2.8rem;
    line-height: 2.8rem;
    max-width: 100%;
    max-width: 70%;
    color: #fff;
  }
}
.Page__recruit__entry__btn:hover {
  opacity: 0.7;
  transition: all 300ms;
  color: #fff;
}

.top-bg {
  background: #0c0c0c;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  opacity: 0.8;
  color: gray;
}/*# sourceMappingURL=style.css.map */