@charset "UTF-8";
/* Foundation (まとめファイル) */
/* CSS Document */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
* {
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

html {
  height: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/*要素のフォントサイズやマージン・パディングをリセットしています*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, p, q, samp,
small, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th,
section, 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: 100%;
  vertical-align: baseline;
}

body {
  font-size: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  font-weight: 400;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  vertical-align: bottom;
}

/*新規追加要素のデフォルトはすべてインライン要素になっているので、section要素などをブロック要素へ変更しています*/
section, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, nav {
  display: block;
}

/*nav要素内ulのマーカー（行頭記号）を表示しないようにしています*/
ul,
li {
  list-style: none;
}

/*引用符の表示が出ないようにしています*/
blockquote, q {
  quotes: none;
}

a {
  outline: none;
  text-decoration: none;
  color: inherit;
}

a:focus {
  outline: none;
}

/*隣接するセルのボーダーを重ねて表示し、間隔を0に指定しています*/
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*水平罫線のデフォルトである立体的な罫線を見えなくしています*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

/*縦方向の揃え位置を中央揃えに指定しています*/
input, select {
  vertical-align: middle;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

.clearfix:after {
  content: "."; /* 新しい要素を作る */
  display: block; /* ブロックレベル要素に */
  clear: both;
  height: 0;
  visibility: hidden;
}

.clearfix {
  /*min-height: 1px;*/
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*box-sizingを全ブラウザに対応*/
*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

svg {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%; /* 16px × 62.5% = 10px → 1rem = 10px */
}

body {
  line-height: 1;
  font-family: YakuHanMP, "Noto Serif JP", serif;
  font-style: normal;
  font-size: 1.6rem;
  font-feature-settings: "palt" 1;
  -webkit-text-size-adjust: 100%;
}
@media (max-width: 956px) {
  body {
    font-size: 1.4rem;
  }
}

/* Layout */
.l_ctns {
  max-width: 930px;
  margin: 0 auto;
  display: block;
  width: 88%;
}

.l_inner {
  max-width: 1000px;
  width: 88%;
  margin: 0 auto;
  display: block;
}

.l_wrap {
  max-width: 1200px;
  width: 88%;
  margin: 0 auto;
  display: block;
}

.l_flx {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.__rowReverse {
  flex-direction: row-reverse;
}

.l_pc {
  display: block;
}
@media (max-width: 600px) {
  .l_pc {
    display: none;
  }
}

.l_sp {
  display: none;
}
@media (max-width: 600px) {
  .l_sp {
    display: block;
  }
}

.l_2clmn {
  justify-content: space-between;
}
.l_2clmn li {
  display: block;
  width: 48%;
}
@media (max-width: 600px) {
  .l_2clmn li {
    width: 90%;
  }
}
.l_2clmn-item {
  width: 49% !important;
}
@media (max-width: 600px) {
  .l_2clmn-item {
    width: 100% !important;
  }
}

.l_3clmn {
  justify-content: space-between;
}
.l_3clmn li {
  display: block;
  width: 31%;
}
@media (max-width: 600px) {
  .l_3clmn li {
    width: 100%;
  }
}

.l_4clmn {
  justify-content: space-between;
}
.l_4clmn li {
  display: block;
  width: 24%;
}
@media (max-width: 600px) {
  .l_4clmn li {
    width: 49%;
  }
}

/*フォントカラー*/
.l_clrBlack {
  color: black;
}

.l_clrWht {
  color: white;
}

.l_clrBlue {
  color: #285794;
}

/*グラデーションフォントカラー*/
.l_clrGrdtnGold {
  background: linear-gradient(to right, #59523b, #a79b77, #59523b);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/*背景カラー*/
.l_bgClrBlack {
  background-color: black;
}

.l_bgClrWhite {
  background-color: white;
}

.l_bgClrBlunss {
  background-color: #071632;
}

.l_bgClrBrown {
  background-color: #6e5204;
}

.l_bgClrRed {
  background-color: #a9181e;
}

.l_bgClrDarkred {
  background-color: #490000;
}

.l_bgClrWineRed {
  background-color: #821319;
}

.l_bgClrGray {
  background-color: #4c4948;
}

/*背景グラデーションカラー*/
.l_bgGrdtnWhite__left {
  background-image: linear-gradient(to left, #e6e7e8, #fafafb);
}

.l_bgGrdtnWhite__right {
  background-image: linear-gradient(to right, #e6e7e8, #fafafb);
}

.l_bgGrdtnRed {
  background-image: linear-gradient(to right, #a9181e, #490000);
}

.l_bgGrdtnBrown {
  background-image: linear-gradient(to right, #ce9d00, #6e5204);
}

.l_bgRdlGrdtnDrkBlue {
  background-image: radial-gradient(#004762, #071632);
}

.l_bgRdlGrdtnBlue {
  background-image: radial-gradient(#1178bf, #285794);
}

/*フォントシャドウ*/
.l_txtShadow {
  text-shadow: 4px 0px 3px black;
}

/*ボーダーグラデーション*/
.l_brdrGrdtnGold {
  border: 2px solid;
  -o-border-image: linear-gradient(to right, #59523b, #a79b77, #59523b) 1;
     border-image: linear-gradient(to right, #59523b, #a79b77, #59523b) 1;
}

/* Parts */
.p_frontArrow__B {
  position: relative;
  padding-left: 15px;
  transition: 0.3s;
}
.p_frontArrow__B::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 8px;
  height: 8px;
  border-top: 1px solid black;
  border-right: 1px solid black;
  transform: translate(0, -50%) rotate(45deg);
  transition: 0.6s;
}
.p_frontArrow__B:hover {
  opacity: 0.5;
}
.p_frontArrow__B:hover::before {
  left: 5px;
}

.p_frontArrow__Wicon {
  position: relative;
  transition: 0.3s;
}
.p_frontArrow__Wicon i {
  position: absolute;
  top: 51%;
  right: 10px;
  transform: translate(0, -51%);
  color: white;
  font-size: 8px;
  transition: 0.6s;
}
.p_frontArrow__Wicon:hover {
  opacity: 0.5;
}
.p_frontArrow__Wicon:hover i {
  right: 5px;
}

.p_frontArrow__Wtrngl {
  position: relative;
  transition: 0.3s;
}
.p_frontArrow__Wtrngl::after {
  content: "";
  display: block;
  position: absolute;
  background-color: white;
  top: 50%;
  right: 10px;
  width: 8px;
  height: 10px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  transform: translate(0, -50%);
  transition: 0.6s;
}
.p_frontArrow__Wtrngl:hover {
  opacity: 0.5;
}
.p_frontArrow__Wtrngl:hover::after {
  right: 5px;
}

.sa {
  opacity: 0;
  transition: all 0.5s ease-in-out;
}

.sa--up {
  transform: translate(0, 20px);
}

.sa.show {
  opacity: 1;
  transform: none;
  animation-name: fadein;
  animation-delay: 0;
  animation-duration: 1.3s;
}

/*
@import "common/parts/scroll";
@import "common/parts/figure";
@import "common/parts/font";
@import "common/parts/sup";
@import "common/parts/mv";
@import "common/parts/lead";*/
/* Component */
.header {
  position: fixed;
  z-index: 10;
  transition: 0.3s;
  width: 100%;
  height: 82px;
}
@media (max-width: 956px) {
  .header {
    height: 73px;
  }
}
@media (max-width: 600px) {
  .header {
    height: 56px;
  }
}

.hdr_wrap {
  justify-content: space-between;
  align-items: center;
  padding: 2.5rem 3rem 2rem;
}
@media (max-width: 956px) {
  .hdr_wrap {
    padding: 2rem;
  }
}
@media (max-width: 600px) {
  .hdr_wrap {
    padding: 1.5rem 1rem;
  }
}

.hdr_logo {
  align-items: center;
}
.hdr_logo img {
  display: block;
  width: 260px;
}
@media (max-width: 956px) {
  .hdr_logo img {
    width: 230px;
  }
}
@media (max-width: 600px) {
  .hdr_logo img {
    width: 180px;
  }
}
.hdr_logo h1 {
  display: block;
  letter-spacing: 0.3px;
  font-size: 13.5px;
  margin-left: 30px;
}
@media (max-width: 956px) {
  .hdr_logo h1 {
    font-size: 13px;
    margin-left: 20px;
  }
}
@media (max-width: 600px) {
  .hdr_logo h1 {
    font-size: 10px;
    margin-left: 20px;
  }
}

.hdr_nav-list {
  align-items: center;
}
.hdr_nav-list-map {
  display: block;
  margin-right: 20px;
}
.hdr_nav-list-reserve a, .hdr_nav-list-entry a {
  display: block;
  text-align: center;
  width: 150px;
  padding: 10px 15px;
  font-size: 15px;
}
.hdr_nav-list-reserve {
  display: block;
  margin-right: 20px;
}
@media (max-width: 956px) {
  .hdr_nav {
    display: none !important;
  }
}

.hdr_fixNav {
  display: none;
}
@media (max-width: 956px) {
  .hdr_fixNav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  .hdr_fixNav-list {
    justify-content: space-between;
    align-items: stretch;
  }
  .hdr_fixNav-list li {
    display: block;
    width: 33.3333333333%;
  }
  .hdr_fixNav-list li a {
    text-align: center;
    display: block;
    width: 100%;
    padding: 10px 0;
    font-size: 12px;
  }
  .hdr_fixNav-list li a i {
    display: block;
    font-size: 35px;
    margin-top: 5px;
  }
}

main {
  width: 100%;
  padding-top: 82px;
}
@media (max-width: 956px) {
  main {
    padding-top: 72px;
  }
}
@media (max-width: 600px) {
  main {
    padding-top: 56px;
  }
}

.aside {
  display: block;
  line-height: 1.3;
  padding: 3rem 0 5rem;
  font-size: 1.2rem;
}
.aside li {
  display: flex;
  flex-wrap: nowrap;
  margin-bottom: 3px;
}
.aside li:last-child {
  margin-bottom: 0;
}
.aside li i {
  font-style: normal;
}

@media (max-width: 956px) {
  .ftr {
    padding-bottom: 72px;
  }
}
.ftr_about {
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
}
@media (max-width: 956px) {
  .ftr_about {
    flex-direction: column;
  }
}
.ftr_about-ttl {
  position: relative;
  font-size: 2.1rem;
  padding: 3rem 1rem;
  margin-right: 3rem;
  width: -moz-fit-content;
  width: fit-content;
  letter-spacing: 1px;
}
.ftr_about-ttl::before, .ftr_about-ttl::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: black;
}
.ftr_about-ttl::before {
  top: 0;
  left: 0;
}
.ftr_about-ttl::after {
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1050px) {
  .ftr_about-ttl {
    font-size: 1.6rem;
  }
}
@media (max-width: 956px) {
  .ftr_about-ttl {
    width: 100%;
    font-size: 1.8rem;
    padding: 0;
    text-align: center;
    margin-right: 0;
    margin-bottom: 2rem;
  }
  .ftr_about-ttl::before, .ftr_about-ttl::after {
    width: 30%;
  }
  .ftr_about-ttl::before {
    top: 50%;
    left: 0;
    transform: translate(0, -50%);
  }
  .ftr_about-ttl::after {
    left: auto;
    bottom: auto;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
  }
}
.ftr_about-tel {
  margin-right: 2rem;
}
@media screen and (max-width: 1050px) {
  .ftr_about-tel {
    margin-right: 1rem;
  }
}
@media (max-width: 956px) {
  .ftr_about-tel {
    margin-right: 0;
  }
}
.ftr_about-tel-txt {
  display: block;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 1050px) {
  .ftr_about-tel-txt {
    font-size: 1.5rem;
  }
}
@media (max-width: 956px) {
  .ftr_about-tel-txt {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }
}
.ftr_about-tel a {
  font-size: 7rem;
  width: -moz-fit-content;
  width: fit-content;
  align-items: baseline;
  cursor: pointer;
  text-align: center;
}
.ftr_about-tel a i {
  font-size: 4.8rem;
  margin-right: 15px;
  display: block;
}
@media screen and (max-width: 1050px) {
  .ftr_about-tel a {
    font-size: 6rem;
  }
  .ftr_about-tel a i {
    font-size: 3.8rem;
  }
}
@media (max-width: 956px) {
  .ftr_about-tel a {
    font-size: 4.5rem;
    margin-bottom: 10px;
  }
  .ftr_about-tel a i {
    font-size: 2.8rem;
    margin-right: 10px;
  }
}
.ftr_about-opening {
  align-items: baseline;
  font-size: 1.4rem;
}
.ftr_about-opening dt {
  margin-right: 10px;
}
.ftr_about-opening dd {
  line-height: 1.5;
}
@media (max-width: 956px) {
  .ftr_about-opening {
    font-size: 1.3rem;
  }
}
.ftr_cmpny {
  max-width: 800px;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  justify-content: space-between;
  align-items: center;
  container-type: inline-size;
}
.ftr_cmpny-kotsu, .ftr_cmpny-hudosan {
  width: 280px;
}
@container (width <= 800px) {
  .ftr_cmpny-kotsu, .ftr_cmpny-hudosan {
    width: 30%;
  }
}
@media (max-width: 600px) {
  .ftr_cmpny-kotsu, .ftr_cmpny-hudosan {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
  }
}
.ftr_cmpny-kotsu p, .ftr_cmpny-hudosan p {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}
@container (width <= 800px) {
  .ftr_cmpny-kotsu p, .ftr_cmpny-hudosan p {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .ftr_cmpny-kotsu p, .ftr_cmpny-hudosan p {
    text-align: center;
  }
}
.ftr_cmpny-group {
  width: 160px;
}
@media (max-width: 600px) {
  .ftr_cmpny-group {
    width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
.ftr_right {
  display: block;
  text-align: center;
  width: 100%;
  letter-spacing: 0.03rem;
  padding: 5rem 0 3rem;
  font-size: 1rem;
}

/* Pages */
.top_lead {
  padding: 3rem 0;
}

.top_about {
  text-align: center;
  width: 100%;
  padding: 8rem 0;
}
@media (max-width: 600px) {
  .top_about {
    padding: 5rem 0;
  }
}
.top_about-ttl {
  letter-spacing: 5px;
  font-size: 60px;
  margin-bottom: 40px;
}
@media (max-width: 600px) {
  .top_about-ttl {
    letter-spacing: 3px;
    font-size: 35px;
    margin-bottom: 30px;
  }
}
.top_about-ttl span {
  display: block;
  letter-spacing: 2px;
  font-size: 30px;
  margin-bottom: 10px;
}
@media (max-width: 600px) {
  .top_about-ttl span {
    letter-spacing: 1px;
    font-size: 20px;
  }
}
.top_about-subttl {
  display: block;
  letter-spacing: 2px;
  font-size: 40px;
  margin-bottom: 20px;
}
@media (max-width: 600px) {
  .top_about-subttl {
    letter-spacing: 1px;
    font-size: 23px;
    margin-bottom: 20px;
  }
}
.top_about-txt {
  line-height: 1.5;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.top_about-txt i {
  font-style: normal;
}
@media (max-width: 600px) {
  .top_about-txt {
    font-size: 1.6rem;
  }
}
.top_about-btn {
  letter-spacing: -1px;
  display: inline-block;
  font-size: 3.2rem;
  padding: 15px 50px;
}
@media (max-width: 600px) {
  .top_about-btn {
    padding: 15px 35px;
    margin-bottom: 20px;
    font-size: 2rem;
  }
}
.top_about-ctns-list {
  max-width: 750px;
  margin: -10rem auto 0;
  width: 88%;
  justify-content: space-between;
}
@media (max-width: 600px) {
  .top_about-ctns-list {
    margin: -5rem auto 0;
  }
}
.top_about-ctns-list li {
  display: block;
  width: 30%;
}
@media (max-width: 600px) {
  .top_about-ctns-list li {
    width: 31.5%;
  }
}

.top_ctns {
  padding: 6rem 0 8rem;
}
@media (max-width: 600px) {
  .top_ctns {
    padding: 5rem 0;
  }
}
.top_ctns-kv {
  display: block;
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
}
@media (max-width: 600px) {
  .top_ctns-kv {
    margin-bottom: 3rem;
  }
}
.top_ctns-item {
  max-width: 880px;
  width: 80%;
}
@media (max-width: 600px) {
  .top_ctns-item {
    width: 100%;
  }
}
.top_ctns .__right {
  margin-left: auto;
  margin-right: 0;
}
.top_ctns-inner {
  max-width: 1000px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1289px) {
  .top_ctns-inner {
    max-width: 100%;
  }
}
.top_ctns-img:first-of-type {
  max-width: 1140px;
  width: 100%;
  margin-right: -140px;
  margin-left: auto;
}
@media screen and (max-width: 1289px) {
  .top_ctns-img:first-of-type {
    margin-right: 0;
  }
}
@media screen and (max-width: 1100px) {
  .top_ctns-img:first-of-type {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .top_ctns-img:first-of-type {
    width: 80%;
    margin-right: auto;
    margin-left: 0;
  }
}
.top_ctns-img:last-of-type {
  max-width: 1115px;
  width: 100%;
  margin-top: 5rem;
  margin-left: -115px;
}
@media screen and (max-width: 1289px) {
  .top_ctns-img:last-of-type {
    margin-left: 0;
  }
}
@media screen and (max-width: 1100px) {
  .top_ctns-img:last-of-type {
    width: 90%;
  }
}
@media (max-width: 600px) {
  .top_ctns-img:last-of-type {
    width: 80%;
    margin-top: 3rem;
    margin-left: auto;
    margin-right: 0;
  }
}

.top_map {
  padding: 8rem 0 6rem;
  scroll-margin-top: 30px;
}
@media (max-width: 600px) {
  .top_map {
    padding: 5rem 0;
  }
}
.top_map-inner {
  max-width: 840px;
  width: 88%;
  margin: 0 auto;
}
.top_map h4 {
  text-align: center;
  line-height: 1.8;
  letter-spacing: 1px;
  font-size: 22px;
  margin-bottom: 4rem;
}
@media (max-width: 600px) {
  .top_map h4 {
    font-size: 14px;
    margin-bottom: 2rem;
  }
}

.top_outline small {
  display: block;
  line-height: 1.5;
  font-size: 14px;
}
.top_outline small span {
  display: block;
  font-size: 18px;
}
@media (max-width: 600px) {
  .top_outline small {
    font-size: 13px;
  }
  .top_outline small span {
    font-size: 16px;
  }
}

/*.top_mv {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: calc(100dvh - 232px);

  picture,
  img {
    display: block;
    width: 100%;
    height: 100%;
  }

  img {
    object-fit: cover;
    object-position: center;
  }
  @include sm {
  }
}*//*# sourceMappingURL=app.css.map */