@charset "UTF-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

a {
  background-color: transparent;
  color: #333;
  text-decoration: none;
}

img {
  width: 100%;
  border-style: none;
}

li {
  list-style: none;
}

h1 {
  color: #333;
  font-family: "Noto Serif JP", serif;
  font-size: 60px;
  letter-spacing: 3px;
}

h2 {
  color: #333;
  font-size: 60px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 3px;
}

h3 {
  color: #333;
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
}

p {
  color: #333;
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 2em;
}
tr, th {
  font-size: 18px;
}

a:hover {
  opacity: .7;
}

.w-container {
  width: 96%;
  margin-left: 2%;
  margin-right: 2%;
}

/* 消してる要素 */
.header {
  display: none;
}

.sp-br {
  display: none;
}

.mobile-fixed-nav {
  display: none;
}

/* ヘッダー */
#header {
  background-image: url(../image/header-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.header-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 22px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 60px;
}

.header-logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-right {
  display: flex;
  gap: 18px;
}

.header-link {
  display: flex;
  align-items: center;
}

.header-nav {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.header-nav nav ul {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
}

.header-nav nav ul a {
  color: #333;
  font-size: 18px;
  font-weight: 500; 
}

.header-logo-text span:first-child {
  color: #333;
  font-size: 56px;
  font-family: "Noto Serif JP", serif;
}

.header-logo-text span:last-child {
  color: #333;
  font-size: 16px;
  font-weight: 300;
}

.header-adls p {
  color: #333;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

.header-tel {
  position: relative;
  padding-left: 25px; 
  margin-left: 20px;
  margin-right: 30px;
}

.header-tel::before {
  content: ""; 
  background-image: url('../image/tel.png'); 
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;

  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.header-tel span {
  font-size: 30px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
}

.header-logo a {
  width: 90px;
  height: 90px;
}

.header-inst {
  width: 37px;
  height: 37px;
}

.header-blank {
  width: 175px;
  height: auto;
}

/* トップ */
.main {
  width: 100%;
  /* height: calc(100vh - 100px); */
  height: 810px;
  position: relative;
  overflow: hidden;
}

.main-container {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.slideshow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.slide-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  
  opacity: 0;
  
  animation: slideshow-fade 10.5s infinite;
}

.slide-item {
    transition: opacity 1.5s ease-in-out; 
}

.img-1 { background-image: url("../image/top-main1.png"); }
.img-2 { background-image: url("../image/top-main2.png"); }
.img-3 { background-image: url("../image/top-main3.png"); }
.img-2 { animation-delay: 3.5s; }
.img-3 { animation-delay: 7s; }

@keyframes slideshow-fade {
  0%   { opacity: 0; }
  14.28% { opacity: 1; }
  
  33.33% { opacity: 1; }
  38.09% { opacity: 0; }
  
  100% { opacity: 0; }
}

.main-box {
  display: inline-block;
  position: absolute; 
  right: 26%;
  bottom: 30%;
  text-align: center;
}

.main-h1 h1 {
  font-size: 100px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
}

.main-p p {
  font-size: 50px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 5px;
}

.p1-a {
  background-image: url(../image/top-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 190px;
  padding-bottom: 640px;
}

.p1-a-box {
  display: flex;
  gap: 100px;
}

.p1-a-img {
  flex: 0 1 50%;
  max-width: 1200px;
  height: auto;
}

.p1-a-text {
  min-width: 400px;
}

.p1-a-h2 {
  position: relative;
  text-align: center;
}

.p1-a-h2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
}

.p1-a-h2::before {
  content: "";
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0; 
  right: 50%; 
  margin-right: 140px;
}

.p1-a-p {
  padding-top: 110px;
  padding-bottom: 30px;
}

.p1-a-p p {
  font-weight: 500;
  padding-top: 50px;
}

.p1-b {
  width: 100%;
  height: 1500px;
  position: relative;
  background-image: url(../image/top-back2.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-b-img1 {
  max-width: 707px;
  height: auto;
  padding-top: 380px;
}

.p1-b-img2 {
  max-width: 1169px;
  height: auto;
}

.p1-b-img3 {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  height: auto;
}

.p1-b-item {
  width: 100%;
  position: absolute;
  top: -330px;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}

.p1-b-h2 {
  position: relative;
  text-align: center;
}

.p1-b-h2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
}

.p1-b-h2::after {
  content: "";
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0; 
  left: 50%; 
  margin-left: 140px;
}

.p1-c {
  width: 100%;
  height: 1500px;
  position: relative;
  background-image: url(../image/top-back3.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-c-container {
  padding-top: 260px;
}

.p1-c-item {
  text-align: center;
}

.p1-c-h2 {
  position: relative;
  text-align: center;
}

.p1-c-item2 .p1-a-p h3 {
  line-height: 1.5em;
}

.p1-c-h2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-bottom: 10px;
}

.p1-c-h2 h2::before {
  content: "";
  width: 115px;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p1-c-h3 {
  padding-top: 80px;
}

.p1-c-bptan {
  display: inline-block;
  margin-top: 90px;
}

.p1-c-bptan a {
  display: flex;
  gap: 30px;
  padding: 25px 28px;
  border: 2px solid #333;
}

.p1-c-bptan a p {
  font-size: 20px;
  font-weight: 500;
  line-height: normal;
}

.p1-c-img1 {
  width: 67px;
  height: 16px;
}

.p1-c-item2 {
  width: 100%;
  position: absolute;
  bottom: -135px;
  z-index: 10;
}

.p1-c-item2 .p1-c-bptan {
  margin-top: 45px;
}

.p1-c-item2 .p1-c-bptan p {
  padding-top: 0;
}

.p1-d {
  width: 100%;
  height: 1490px;
  position: relative;
  background-image: url(../image/top-back4.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p1-d-img1 {
  max-width: 1280px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

.p1-d-item {
  width: 100%;
  position: absolute;
  bottom: -85px;
  z-index: 10;
}

.p1-d-item .p1-c-item {
  margin-top: 125px;
}

.p1-d .p1-c-h3 p {
  padding-top: 20px;
}

/* メニュー */
.sub {
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../image/sub-back.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.sub-title {
  padding-top: 200px;
  padding-bottom: 150px;
  position: relative; 
  z-index: 1;
}

.sub-title h1 {
  color: #fff;
}

.sub-title h3 {
  color: #fff;
  font-weight: 300;
  padding-top: 20px;
}

.p2-a {
  background-color: #fffff5;
  padding-top: 115px;
  padding-bottom: 620px;
}

.p2-a-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p2-a-img {
  width: 100%;
  height: auto;
}

.p2-a-title {
  text-align: center;
  margin-top: 30px;
}

.p2-a-title h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-bottom: 10px;
}

.p2-a-title h2::before {
  content: "";
  width: 115px;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p2-a-title h3 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.p2-a-item {
  display: flex;
  justify-content: space-between;
  padding-top: 65px;
}

.p2-a-left, .p2-a-right {
  width: 48%;
}

.p2-a-glade {
  width: 100%;
  height: 9px;
  background-image: url(../image/p2-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p2-a-item-title {
  padding: 20px 0 20px 14px;
  border-bottom: 2px solid #67b5f4;
}

.p2-a-table table {
  width: 100%;
  padding-top: 20px;
  padding-left: 14px;
}

.p2-a-table table tr th, .p2-a-table table tr td {
  font-size: 18px;
  font-weight: 500;
  padding-top: 20px;
}

.p2-a-table table tr th {
  text-align: left;
}

.p2-a-table table tr td {
  text-align: right;
}

.p2-a-table table .menu-description td {
  text-align: left;
  font-size: 16px;
  color: #777777;
  padding-top: 0;
}

.p2-a-table table tr .p2-td {
  padding-right: 18px;
}

.p2-a-item .p2-a-table-p {
  text-align: left;
  padding-top: 57px;
}

.p2-a-table-p p {
  display: inline-block;
  text-align: right;
  font-size: 16px;
  line-height: normal;
}

.p2-a-table table .menu-description2 td {
  text-align: left;
  font-size: 16px;
  color: #777777;
  padding-top: 25px;
}

/* アクセス */
.access {
  background-color: #fffff5;
  padding-top: 115px;
  padding-bottom: 318px;
}

.access-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p3-a-title {
  text-align: center;
  margin-top: 110px;
}

.p3-a-title h2, .p3-b-title h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-bottom: 10px;
}

.p3-a-title h2::before, .p3-b-title h2::before {
  content: "";
  width: 115px;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p3-a-title h3 {
  margin-top: 70px;
  margin-bottom: 20px;
}

.p3-a-box {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.p3-a-item {
  width: 50%;
  position: relative;
  box-sizing: border-box;
  display: flex;
}

.p3-a-img2 {
  max-width: 362px;
  height: auto;
  padding-bottom: 15px;
}

.p3-a-img3 {
  display: flex;
}

.p3-a-img3 img {
  width: 35px;
  height: 35px;
  margin-left: 20px;
}

.p3-a-text {
  display: inline-block;
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #fffff5;
}

.p3-a-glade {
  width: 100%;
  height: 9px;
  background-image: url(../image/p3-back1.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.p3-a-text-box {
  width: 348px;
  padding: 30px 5px 40px 10px;
}

.p3-a-text-box h3 {
  padding-bottom: 14px;
}

.p3-a-text-box h3 span {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  padding-left: 12px;
}

.p3-a-text-box p {
  font-size: 20px;
  line-height: normal;
}

.p3-b-title {
  text-align: center;
  margin-top: 270px;
}

.p3-b-table {
  padding-top: 110px;
  padding-bottom: 215px;
  margin-left: 13%;
  margin-right: 13%;
}

.p3-b-table table {
  width: 100%;
  border-collapse: collapse;
}

.p3-b-table table tr th, .p3-b-table table tr td {
  color: #333;
  font-size: 18px;
  padding: 20px 10px;
  border-bottom: 1px solid #333;
}

.p3-b-table table tr th {
  width: 40%;
  text-align: left;
  font-weight: 400;
}

.p3-b-map {
  text-align: center;
}

.p3-b-map-text-box {
  display: inline-block;
}

.p3-b-map-title {
  text-align: left;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
}

.p3-b-map-title h3 {
  position: relative; 
  display: inline-block; 
  font-family: "Noto Serif JP", serif;
  margin-left: 10px;
  padding-left: 35px;
}

.p3-b-map-title h3::after {
  content: ""; 
  background-image: url('../image/map-mark.png'); 
  width: 24px;
  height: 35px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
  position: absolute;
  top: 50%;
  left: 0; 
  transform: translateY(-50%); 
}

.p3-b-map-p {
  text-align: left;
}

.p3-b-map-p p {
  padding: 0 10px;
}

.p3-b-g-map {
  max-width: 1170px;
  height: 660px;
  margin: 35px auto 0;
}

.p3-b-g-map iframe {
  width: 100%;
  height: 100%;
}

/* 求人情報 */
.recruit {
  background-color: #fffff5;
}

.recruit-container {
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}

.p4-a {
  padding-top: 115px;
}

.p4-a-item {
  text-align: center;
  padding-top: 140px;
}

.p4-a-h2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
  padding-bottom: 10px;
}

.p4-a-h2 h2::before {
  content: "";
  width: 115px;
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

.p4-a-h3 {
  padding-top: 70px;
}

.p4-a-p {
  padding-top: 70px;
}

.p4-a-p2 {
  padding-top: 50px;
}

.p4-b {
  padding-top: 160px;
  margin-left: 9%;
  margin-right: 9%;
}

.p4-b-glade {
  width: 100%;
  height: 9px;
  background-image: url(../image/p4-img2.png);
  background-repeat: no-repeat;
  background-size: cover;  
}

.p4-b-h3 {
  text-align: center;
  padding-top: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #67b5f4;
}

.p4-b-table {
  padding-top: 35px;
}

.p4-b-table table {
  width: 80%;
  border-collapse: collapse;
  margin-left: auto;
  margin-right: auto;
}

.p4-b-table table tr th, .p4-b-table table tr td {
  padding-top: 15px;
  padding-bottom: 16px;
  background-image: linear-gradient(to right, #67b5f4 50%, transparent 50%);
  background-position: bottom;
  background-size: 7px 2px; /* 8pxごとに繰り返す（点線の間隔を調整） */
  background-repeat: repeat-x;
}

.p4-b-table table tr th {
  width: 30%;
  vertical-align: top;
  text-align: left;
  font-weight: 400;
  padding-left: 5px;
} 

.p4-b-table table tr td {
  padding-right: 5px;
}

.p4-b-table .salary-item {
  padding-bottom: 10px;
}

.p4-b-table .p4-td {
  padding-top: 20px;
}

.p4-c {
  padding-top: 70px;
}

.p4-c-title {
  text-align: center;
}

.p4-c-title span {
  display: inline-block;
  font-size: 20px;
  background-image: url(../image/p4-img3.png);
  background-repeat: no-repeat;
  background-size: cover; 
  padding: 0 27px 32px;
}

.p4-c-item {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 6%;
  padding-top: 58px;
}

.p4-c-tel-p {
  text-align: center;
}

.p4-c-tel-p p {
  font-size: 16px;
  line-height: normal;
}

.p4-c-img1 {
  width: 365px;
  height: auto;
  padding-top: 14px;
}



/* レイアウト */
.layout {
  background-image: url(../image/top-back5.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 280px;
  padding-bottom: 37px;
}

.layout-box {
  display: flex;
  justify-content: flex-end;
  gap: 65px;
}

.layout-item {
  text-align: center;
}

.layout-h2 {
  position: relative;
  text-align: center;
}

.layout-h2 h2 {
  display: inline-block;
  position: relative;
  margin: 0;
}

.layout-h2::after {
  content: "";
  height: 2px;
  background-color: #333;
  display: block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 50%;
  margin-left: 140px;
}

.layout-map {
  width: 1170px;
  height: 661px;
}

.layout-map iframe {
  width: 100%;
  height: 100%;
}

.layout-table {
  padding-top: 40px;
}

.layout-table ul li {
  text-align: left;
  font-size: 18px;
  padding: 25px 5px;
  border-bottom: 1px solid #333;
}

.layout .p1-c-bptan {
  margin-top: 75px;
  margin-left: auto;
  margin-right: auto;
}

.sub-page .layout {
  background-image: none;
  background-color: #fffff5;
}

.sub-page .menu-access, .sub-page .ecruit-access {
  padding-bottom: 200px;
}


/* フッター */
footer {
  position: relative;
  background-color: #ffffff;
  background-image: none;
}
.home footer {
  position: relative;
  background-image: url(../image/footer-back.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.home .footer-container {
  padding-top: 200px;
}

.footer-link {
  display: flex;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.footer-link a {
  flex: 1;
}

.f-link-item {
  padding: 20px 50px 34px 65px;
  box-sizing: border-box;
}

.f-link-text img {
  width: 80px;
  height: 19px;
}

.f-link-item h3 {
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
}

.f-link-text {
  display: flex;
  justify-content: space-between;
  padding-top: 130px;
}

.f-link-text-box p {
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

.f-link-text-box p:first-child {
  padding-bottom: 24px;
}

.footer-link .center {
  border-left: 1px solid #333;
  border-right: 1px solid #333;
}

.f-link-item.center h3 {
  padding-right: 77px; 
  position: relative; 
  display: inline-block; 
}

.f-link-item.center h3::after {
  content: ""; 
  background-image: url('../image/inst.png'); 
  width: 47px;
  height: 47px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 0; 
  transform: translateY(-50%); 
}

.footer-nav {
  display: flex;
  align-items: center;
}

.footer-logo {
  text-align: center;
  padding: 90px 150px;
}

.footer-nav nav ul {
  display: flex;
  gap: 60px;
}

.footer-logo-text {
  display: inline-block;
  text-align: left;
  margin-top: 40px;
  margin-bottom: 30px;
} 

.footer-logo-text p {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: normal;
}

.footer-nav nav {
  margin-left: 220px;
}

.copy-right {
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  border-top: 5px solid #333;
}

.copy-right p {
  font-size: 18px;
}

.top-botan {
  width: 27px;
  height: 147px;
  position: fixed;
  bottom: 15%;
  right: 2%;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.5s ease;
}

.top-botan.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.top-botan a {
  display: block;
  text-decoration: none;
  transition: opacity 0.3s;
}

.top-botan a:hover {
  opacity: 0.7;
}

.top-botan img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 1199px) {
  /* 全体 */
  .w-container {
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }

  /* トップ */
  .p1-a {
    padding-bottom: 140px;
  }

  .p1-a-box {
    flex-direction: column;
    align-items: center;
  }

  .p1-a-h2 {
    /* 親要素の余白を完全にリセット */
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: relative;
  }

  .p1-a-h2 h2 {
    /* h2タグが持つデフォルトの余白を消す */
    margin: 0;
    padding: 0 0 15px 0; /* 下に線との隙間を作る */
    display: inline-block; /* 文字の幅に合わせる */
  }

  .p1-a-h2::before {
    content: "";
    position: absolute;
    bottom: 0;
    /* 中央寄せの設定 */
    left: 50%;
    transform: translateX(-50%);
    
    /* 線自体の設定 */
    width: 115px;
    height: 2px;
    background-color: #333;
    
    /* PC版の設定を打ち消し */
    top: auto;
    right: auto;
    margin-right: 0;
  }

  .p1-b {
    height: auto;
  }

  .p1-b-item {
    position: static;
    flex-direction: column-reverse;
    gap: 20px;
  }

  .p1-b-h2 {
    padding-top: 20px;
  }

  .p1-b-item-box {
    position: relative;
    display: flex;
    flex-direction: column-reverse;
    padding-top: 440px;
  }

  .p1-b-img1 {
    width: 50%;
    position: absolute;
    top: 0;
    left: -4%;
    padding-top: 0;
  }

  .p1-b-img3 {
    position: static;
    transform: translateX(0%);
    padding-top: 135px;
  }


  .p1-b-h2 {
    /* 親要素の余白を完全にリセット */
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: relative;
  }

  .p1-b-h2 h2 {
    /* h2タグが持つデフォルトの余白を消す */
    margin: 0;
    padding: 0 0 15px 0; /* 下に線との隙間を作る */
    display: inline-block; /* 文字の幅に合わせる */
  }

  .p1-b-h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* 中央寄せの設定 */
    left: 50%;
    transform: translateX(-50%);
    
    /* 線自体の設定 */
    width: 115px;
    height: 2px;
    background-color: #333;
    
    /* PC版の設定を打ち消し */
    top: auto;
    right: auto;
    margin-left: 0;
  }

  .p1-c {
    height: auto;
  }

  .p1-c-container {
    padding-top: 140px;
  }

  .p1-c-item2 {
    position: static;
    padding-top: 110px;
  }

  .p1-d {
    height: auto;
    padding-bottom: 50px;
  } 

  .p1-d-item {
    position: static;
    padding-top: 140px;
  }

  /* レイアウト */
  .layout {
    padding-top: 140px;
  }

  /* フッター */
  .footer-nav nav {
    margin-left: 50px;
  }

  .footer-logo {
    padding-left: 10px;
    padding-right: 60px;
  }

  .f-link-item {
    padding: 20px 20px;
  }



}



@media screen and (max-width: 930px) {
  /* ヘッダー */
  .header-container {
    display: none;
  }

  /* ハンバーガーメニュー */
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1000;
    position: fixed;
    width: 100%;   /* ハンバーガーボタンのサイズに固定 */
    height: 60px;  /* ハンバーガーボタンのサイズに固定 */
    top: 0;     /* 上からの位置を固定 */
    right: 0;   /* 右からの位置を固定 */

    left: auto !important;
  }
  .header .header-logo {
    margin-left: 22px;
  }
  .header__inner {
    margin-right: 22px;
  }
  .header .header-logo a {
    width: 47px;
    height: 47px;
  }
  .header .header-logo-text span:first-child {
    font-size: 38px;
  }
  .header .header-logo-text span:last-child {
    font-size: 12px;
  }
  .hamburger {
    display: block;
    height: 60px;
    position: relative;
    z-index: 1110;
    width: 60px;
    border: none;
    background-color: transparent;
    /* background-color: #A9907E; */
  } 
  .hamburger.-active .hamburger__line {
      background-color: transparent;
  }
  .hamburger.-active .hamburger__line::before {
      top: 0;
      transform: rotate(45deg);
  }
  .hamburger.-active .hamburger__line::after {
      top: 0;
      transform: rotate(-45deg);
  }
  .hamburger__line {
    display: block;
    height: 2px;
    position: absolute;
    top: 22.5px; 
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    background-color: #333;
    transition: 0.4s;
  }
  .hamburger__line:before,
  .hamburger__line:after {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    width: 100%;
    background-color: #333;
    transition: inherit;
  }
  .hamburger__line:before {
    top: -8px;
  }
  .hamburger__line:after {
    top: 8px;
  }
  .hamburger__text {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    color: #333;
    font-size: 11px;
    font-weight: 600;
  }

  .header__nav-area {
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 1100;
    height: 100vh;
    width: 100vw;
    visibility: hidden;
    padding-top: 60px;
    background-image: url(../image/top-back1.png);
    background-repeat: no-repeat;
    background-size: cover;;
    transition: 0.4s;
  }
  .header__nav-area.-active {
    left: 0;
    visibility: visible;
  }
  .global-navigation {
    padding-top: 40px;
    padding-right: 25px;
    padding-bottom: 120px;
    padding-left: 25px;
  }
  .global-navigation__list > li {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
  }
  .global-navigation__list > li + li {
    margin-top: 20px;
  }
  .global-navigation__link {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-weight: 900;
    transition: color 0.4s;
    font-size: 24px;
  }
  .global-navigation__link.-accordion {
    position: relative;
    background: none;
    border: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    padding: 0;
  }
  .global-navigation__link.-accordion::after {
    content: '';
    display: block;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 5px;
    width: 2px;
    background-color: #ed3242;
    transform: translateY(-50%);
    transition: transform 0.4s;
  }
  .global-navigation__link.-accordion::before {
    content: '';
    display: block;
    height: 2px;
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    background-color: #ed3242;
    transform: translateY(-50%);
      
  }
  .global-navigation__link.-active::after {
    transform: translateY(-50%) rotate(-90deg);
  }
  .accordion {
    height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: 0.4s;
  }
  .accordion.-active {
    height: auto;
    padding-top: 30px;
    visibility: visible;
  }
  .accordion__list li {
    font-size: 0.75rem;
  }
  .accordion__list li + li {
    margin-top: 21px;
  }
  .accordion__link {
    color: #172e59;
  }

  .global-navigation__list li a {
    display: block;
    font-family: "Noto Serif JP", serif;
  }

  /* トップ */
  main {
    margin-top: 60px;
  }


  /* レイアウト */
  .layout-box {
    flex-direction: column;
  }

  .layout-h2 {
    /* 親要素の余白を完全にリセット */
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
    position: relative;
  }

  .layout-h2 h2 {
    /* h2タグが持つデフォルトの余白を消す */
    margin: 0;
    padding: 0 0 15px 0; /* 下に線との隙間を作る */
    display: inline-block; /* 文字の幅に合わせる */
  }

  .layout-h2::after {
    content: "";
    position: absolute;
    bottom: 0;
    /* 中央寄せの設定 */
    left: 50%;
    transform: translateX(-50%);
    
    /* 線自体の設定 */
    width: 115px;
    height: 2px;
    background-color: #333;
    
    /* PC版の設定を打ち消し */
    top: auto;
    right: auto;
    margin-left: 0;
  }

  .layout-map {
    width: 100%;
  }

  /* フッター */
  .j-container {
    width: 96%;
    margin-left: 2%;
    margin-right: 2%;
  }

  .footer-link {
    flex-direction: column;
    border-left: 1px solid #333;
    border-right: 1px solid #333;
  }

  .footer-link a {
    background-color: #fff;
  }

  .footer-link .center {
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
    border-left: none;
    border-right: none;
  }

}

@media screen and (max-width: 789px) {
  /* メニュー */
  .p2-a {
    padding-bottom: 80px;
  }

  .p2-a-item {
    flex-direction: column;
    gap: 30px;
  }

  .p2-a-left, .p2-a-right {
    width: 100%;
  }

  /* アクセス */
  .p3-a-box {
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
  }

  .p3-a-item {
    width: 100%;
  }

  /* 求人情報 */
  .p4-c-item {
    flex-direction: column;
    align-items: center;
  }

  .p4-b-table table {
    width: 100%;
  }

  /* フッター */
  .footer-nav {
    flex-direction: column;
  }

  .footer-logo {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-nav nav {
    padding-top: 50px;
    padding-bottom: 50px;
    margin-left: 0;
  }

}

@media screen and (max-width: 680px) {
  /* 全体 */
  .w-container {
    max-width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 40px;
  }

  tr, th {
    font-size: 16px;
  }

  .sp-br {
    display: block;
  }

  /* トップ */
  .img-1 { background-image: url("../image/sp-top-main1.png"); }
  .img-2 { background-image: url("../image/sp-top-main2.png"); }
  .img-3 { background-image: url("../image/sp-top-main3.png"); }

  .main-box {
    top: 20%;
    right: 4%;
    bottom: auto;
  }

  .main-h1 h1 {
    font-size: 69px;
    text-shadow: 3px 3px 5px #ffffff, -3px -3px 5px #ffffff;
  }

  .main-p p {
    font-size: 44px;
    text-shadow: 3px 3px 5px #ffffff, -3px -3px 5px #ffffff;
    letter-spacing: 2px;
    line-height: normal;
  }

  .p1-a {
    background-image: url(../image/sp-top-back1.png);
    padding-top: 85px;
    padding-bottom: 545px;
  }

  .p1-a-box {
    gap: 65px;
  }

  .p1-a-p {
    padding-top: 48px;
  }

  .p1-a-p p {
    padding-top: 40px;
  }

  .p1-b {
    height: 1490px;
    position: relative;
    background-image: url(../image/sp-top-back2.png);
  }

  .p1-a-text {
    min-width: auto;
  }


  .p1-b-box {
    position: absolute;
    top: -430px;
    left: 0;
  }

  .p1-b-item-box {
    padding-top: 240px;
  }

  .p1-c {
    height: 1595px;
    position: relative;
    background-image: url(../image/sp-top-back3.png);
  }

  .p1-c-box {
    width: 92%;
    position: absolute;
    top: -775px;
    padding-top: 75px;
    margin-left: 4%;
    margin-right: 4%;
  }

  .p1-c-h3 {
    text-align: left;
  }

  .p1-c-h3 {
    padding-top: 45px;
  }

  .p1-c-bptan {
    margin-top: 45px;
  }

  .p1-c-bptan a {
    padding: 25px 24px 25px 46px;
  }

  .p1-c-item2 .p1-a-box {
    gap: 45px;
  }

  .p1-c-item2 .p1-a-p {
    text-align: center;
    padding-top: 45px;
  }

  .p1-c-item2 .p1-a-p h3, .p1-c-item2 .p1-a-p p {
    text-align: left;
  }

  .p1-c-item2 .p1-c-bptan {
    margin-top: 60px;
  }

  .p1-d {
    height: 1490px;
    position: relative;
    background-image: url(../image/sp-top-back4.png);
    padding-bottom: 0;
  }

  .p1-d-item {
    padding-top: 0;
  }

  .p1-d-box {
    /* width: 92%; */
    position: absolute;
    top: -880px;
    padding-top: 110px;
  }
  
  .p1-d-item .p1-c-item {
    margin-top: 50px;
  }

  .p1-d .p1-c-h3 p {
    padding-top: 30px;
  }

  /* メニュー */
  .sub-title h3 {
    padding-top: 5px;
  }

  .p2-a-title h3 {
    margin-bottom: 0;
  }

  /* アクセス */
  .access {
    padding-bottom: 78px;
  }

  .p3-b-title {
    margin-top: 110px;
  }

  .p3-b-table {
    margin-left: 0;
    margin-right: 0;
  }

  .p3-a-text-box {
    width: 290px;
    padding: 15px 5px 25px 10px;
  }

  .p3-a-text-box h3 {
    padding-bottom: 8px;
  }

  .p3-a-text-box h3 span {
    font-size: 16px;
  }

  /* 求人情報 */
  .p4-b {
    margin-left: 0;
    margin-right: 0;
  }

  .p4-c-title span {
    font-size: 15px;
    padding: 0 10px 21px;
  }

  .p4-c-img1 {
    width: 300px;
}




  /* レイアウト */
  .home .layout {
    position: relative;
    padding-top: 0;
    padding-bottom: 0;
  }

  .home .layout-box {
    width: 92%;
    position: absolute;
    top: -1490px;
    padding-top: 75px;
  }

  .layout-map {
    height: 276px;
  }

  .layout {
    padding-top: 75px;
    padding-bottom: 0;
  }

  .layout-table {
    padding-top: 30px;
  }

  .layout-table ul li {
    display: flex;
    flex-direction: column;
  }

  .layout-table ul li span {
    padding-bottom: 25px;
    border-bottom: 1px solid #333;
    margin-bottom: 25px;
  }

  .layout-table ul li:nth-of-type(2) {
    line-height: 2em;
  }

  .layout .p1-c-bptan {
    margin-top: 50px;
  }

  .sub-page .menu-access, .sub-page .recruit-access {
    padding-bottom: 78px;
}

  /* フッター */
  .top-botan {
    display: none;
  }

  .home .footer-container {
    padding-top: 78px;
  }

  .f-link-item {
    padding-left: 30px;
    padding-right: 30px;
  }

  .f-link-text {
    padding-top: 40px;
  }

  .footer-logo {
    padding-top: 85px;
  }

  .footer-logo .header-logo {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .footer-logo .header-logo-text span:first-child {
    font-size: 70px;
  }

  .footer-logo .header-logo-text span:last-child {
    font-size: 20px;
  }

  .footer-logo-text {
    margin-top: 30px;
  }

  .footer-logo {
    padding-bottom: 30px;
  }

  .footer-nav nav {
    padding-top: 70px;
    padding-bottom: 65px
  }

  .footer-nav nav ul {
    flex-direction: column;
    gap: 30px;
  }

  .footer-nav nav ul li {
    font-size: 18px;
    position: relative;
    padding-left: 15px;
  }

  .footer-nav nav ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    
    width: 10px;
    height: 2px;
    background-color: #333;
  }

  .copy-right {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .copy-right p {
    line-height: normal;
  }

  .mobile-fixed-nav {
    display: flex;         /* 横並び */
    position: fixed;       /* 画面下に固定 */
    bottom: 0;
    left: 0;
    width: 100%;
    height: 73px;          /* 本体の高さ */
    z-index: 9999;         /* 一番手前に表示 */
    border-top: 1px solid #fff;
  }

  .mobile-fixed-item {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: bold;
    border-right: 1px solid #fff; /* 境界線 */
  }

  .mobile-fixed-item:last-child {
    border-right: none;    /* 最後の要素の線は消す */
  }

  /* 真ん中の店名を目立たせる場合 */
  .mobile-fixed-item:nth-child(2) {
    font-family: "Noto Serif JP", serif;
    font-size: 18px;
  }

  .home footer {
    background-image: url(../image/sp-top-back5.png), url(../image/sp-top-back6.png);
    background-position: top center,bottom center;
    background-size: 100% 1145px,100% auto;
  }

  /* 固定ナビが出る分、フッターの最後に余白を作る */
  footer {
    padding-bottom: 73px;
  }

  .mobile-fixed-nav .mobile-fixed-tel, .mobile-fixed-nav .mobile-fixed-apl {
    display: flex;
    flex-direction: column;
  }

  .mobile-fixed-nav .back-to-top {
    display: flex;
    align-items: flex-end;
  } 

  .mobile-fixed-item p img {
    width: 24px;
    height: 24px;
  }

  .back-to-top img {
    width: 16px;
    height: 63px;
  }

  .mobile-fixed-item p {
    line-height: 1.2em;
  }

  .mobile-fixed-tel {
    width: 45%;
    background-color: #fff9dd;    
  }

  .mobile-fixed-tel p:last-child {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .mobile-fixed-apl {
    width: 35%;
    background-color: #e5e7cf;
  }

  .mobile-fixed-apl p:first-child {
    font-size: 30px;
  }

  .mobile-fixed-apl p:last-child {
    font-size: 16px;
    font-weight: 600;
  }

  .back-to-top {
    width: 20%;
    background-color: #e3fef5;
  }

  .back-to-top span {
    text-align: right;
    font-size: 18px;
    padding-bottom: 3px;
  }

}

@media screen and (max-width: 430px) {
  /* トップ */
  .p1-b-box {
    top: -360px;
  }

  .p1-c-box {
    top: -905px;
  }

  .p1-c {
    height: 1490px;
  }

  /* アクセス */
  .p4-c-title span {
    font-size: 14px;
    padding: 0 10px 20px;
  }

  /* フッター */
  .home footer {
    background-size: 100% 1305px, 100% auto;
  }

}