@charset "utf-8";

/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Yu Mincho", "Hiragino Mincho ProN", serif;
  overflow-x: hidden;
  font-size: 16px;
  color: #333;
}

/* スプラッシュ画面 */
#splash {
  position: fixed;
  inset: 0;
  background-color: #f5f3ee;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s ease, visibility 1s ease;
}

#splash-logo img {
  width: 320px;
  height: auto;
  animation: fadeIn 1.5s ease-out;
}

/* スプラッシュ非表示 */
#splash.fade-out {
  opacity: 0;
  visibility: hidden;
}

/* ロゴフェードインアニメーション */
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* ヘッダー全体 */
header {
  width: 100%;
  background: none;
  position: relative;
  z-index: 10;
}

.noren {
  width: 100%;
  min-height: 360px;
  position: relative;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin: 0;
  padding: 0;
}

.noren img {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
}

.header-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  pointer-events: none;
  padding: 0 16px;
}

.header-left {
  width: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  pointer-events: auto;
  margin-top: 32px;
}

.vertical-text {
  writing-mode: vertical-rl;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.header-logo {
  align-content: center;
  align-items: center;
  display: flex;
  flex: none;
  flex-direction: row;
  flex-wrap: nowrap;
  height: 100%;
  justify-content: center;
  left: 0;
  margin: 0 0 0 0;
  position: absolute;
  top: 60%;
  width: 100%;
  z-index: 1;
  max-width: 100%;
}

.header-logo img {
  width: 260px;
  height: auto;
  display: block;
  position: absolute;
  top: 0;
}

.header-right {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  pointer-events: auto;
  margin: 20px 60px;
  font-weight: 900;
}

.menu {
  display: flex;
  gap: 10px;
}

.menu a {
  writing-mode: vertical-rl;
  font-size: 1.1rem;
  text-decoration: none;
  transition: color 0.2s;
  cursor: pointer;
  color: inherit;
}

.menu a:hover {
  color: #2e7d32;
}

.main-visual {
  width: 100%;
  height: 800px;
  background-image: url("../img/main.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  z-index: 1;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 1200px) {
  .header-right {
    margin: 20px 30px;
  }
}

@media screen and (max-width: 1000px) {
  .header-right {
    margin: 20px 10px;
  }
}

@media screen and (max-width: 650px) {
  .main-visual {
    height: 360px;
    background-size: contain;
    background-attachment: local;
  }
}

/* ==================
割烹あさやについて
================== */
.section.about {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 0;
}

.about-left {
  display: flex;
  flex: 1;
  padding: 40px;
  gap: 60px;
  height: 450px;
}

.about-left p {
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 2.0;
}

.about-left .vertical-title {
  writing-mode: vertical-rl;
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.about-left .vertical-txt {
  writing-mode: vertical-rl;
}

.vertical-body {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 14px;
  color: #222;
  line-height: 2.2;
  letter-spacing: 0.08em;
  width: 32px;
}

.about-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  height: 450px;
}

/* .about-right::before {
  content: "";
  display: block;
  width: 100%;
  max-width: 600px;
  height: 100%;
  background-image: url(../img/about_img.jpg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 50px;
} */


.concept-title {
  font-size: 14px;
  color: #fff;
  background: #1a3c2b;
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 12px;
  border-radius: 4px;
}

.concept_img {
  width: 100%;
}

@media (max-width: 1550px) {
  .noren img {
    height: 100%;
  }

  .header-logo img {
    height: auto;
  }
}

@media (max-width: 900px) {
  .section {
    flex-direction: column;
    padding: 32px 0;
  }

  .about-right {
    margin: 0 0 24px 0;
    min-height: 120px;
  }

  .about-left {
    justify-content: flex-start;
    width: 90%;
    margin: 0 auto;
  }
}

@media (max-width: 700px) {
  .header-logo img {
    width: 180px;
  }

  .header-left,
  .header-right {
    width: 48px;
  }

  .vertical-text,
  .menu a {
    font-size: 14px;
  }
}

.main-contents {
  background-color: #f4f2ee;
  width: 100%;
  margin-top: 440px;
}

@media (max-width: 650px) {
  .noren img {
    height: 180px;
  }

  .header-logo {
    height: 180px;
    top: 100px;
  }

  .header-logo img {
    height: auto;
  }

  .main-contents {
    margin-top: 0;
  }
}

@media (max-width: 620px) {
  .header-logo {
    height: 60px;
  }

  .main-visual {
    background-size: cover;
  }
}

@media (max-width:500px) {
  .header-logo img {
    width: 160px;
  }
}

@media (max-width:450px) {
  .about-left {
    gap: 40px;
    margin: 0;
  }
}

@media (max-width:405px) {
  .about-left {
    padding: 20px;
    gap: 30px;
  }

  .about-left p {
    line-height: 1.8;
  }
}

@media (max-width: 400px) {
  .about-left {
    gap: 10px;
    flex-direction: column;
    margin: auto;
  }

  .about-left .vertical-title {
    writing-mode: horizontal-tb;
  }

  .about-left .vertical-txt {
    writing-mode: horizontal-tb;
  }

  .about-left p {
    line-height: 1.4;
  }
}

/* ==================
割烹あさやのこだわり
================== */
.section.concept {}

.concept_box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  background: #001722;
  position: relative;
  overflow: hidden;
  padding: 40px 0 0 0;
}

.concept-left {
  width: 50%;
  flex: 1 1 0;
  text-align: center;
}

.concept-left img {
  width: 100%;
  height: 600px;
  object-fit: contain;
}

.concept-right {
  flex: 1 1 0;
  min-width: 0;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 40px 0 40px;
  box-sizing: border-box;
}

.concept-title {
  background: rgba(250, 250, 250, .2);
  color: #fff;
  padding: 6px 18px;
  border-radius: 0;
  font-size: 1.0rem;
  margin-bottom: 18px;
  display: inline-block;
  font-weight: 900;
}

.concept-right h2 {
  font-size: 1.6rem;
  font-weight: 900;
  margin-bottom: 18px;
  text-align: center;
  line-height: 2.0;
  color: #fff;
}

.concept-right h2 span {
  display: block;
}

.concept-txt {
  line-height: 1.8;
  text-align: left;
  color: #fff;
  width: 700px;
}

.noren_bk {
  left: 0;
  top: -2px;
  height: 350px;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  min-height: 220px;
  position: relative;
  background: none;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.noren_bk img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fade-up {
  opacity: 0;
  transform: translateY(100px);
  transition: opacity 0.8s cubic-bezier(.4, 0, .2, 1);
  transform: 0.8s cubic-bezier(.4, 0, .2, 1);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media screen and (max-width: 1550px) {
  .noren_bk {
    top: -2px;
  }
}

@media screen and (max-width: 1400px) {
  .concept-right {
    width: 50%;
  }

  .concept-right h2 {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
  }

  .concept-txt {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  .concept_box {
    flex-direction: column;
  }

  .concept-left {
    width: 80%;
    margin: auto;
    order: 2;
  }

  .concept-right {
    width: 90%;
    margin: auto;
  }

  .concept-left img {
    height: auto;
  }

  .noren_bk {
    height: 200px;
  }
}

@media screen and (max-width: 780px) {
  .noren_bk {
    height: auto;
    width: 100%;
    top: -80px;
  }
}

@media screen and (max-width: 780px) {
  .noren_bk {
    top: -90px;
  }
}

@media screen and (max-width: 640px) {
  .noren_bk {
    top: -100px;
  }
}

@media screen and (max-width: 580px) {
  .noren_bk {
    min-height: 0;
  }

  .noren_bk {
    top: 0;
  }
}

@media screen and (max-width: 450px) {
  .concept-right {
    padding: 20px 0;
  }

}

/* ==================
　お品書き
================== */


#ryouri,
#koi,
#drink,
#reserv,
#news {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.ryouri>h2,
.koi>h2,
.drink>h2,
.reserv>h2 {
  text-align: center;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.ryouri_ttl {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  height: 500px;
}

.ryouri_txt {
  background-color: #003322;
  color: #fff;
  padding: 40px;
  width: 900px;
  height: 500px;
  font-size: 0.95em;
  line-height: 1.7;
  /* margin-right: 30px; */
  position: absolute;
  left: -30px;
}

.ryouri_txt h2 {
  margin-bottom: 1rem;
  text-align: left;
}

.ryouri_txt span {
  display: block;
}

.ryouri_txt p {
  width: 450px;
  text-align: left;
}

.ryouri_img {
  width: 600px;
  height: 500px;
  position: absolute;
  right: 0;
  top: 80px;
}

.ryouri_img img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.ryouri_box {
  padding: 80px 0;
}

.ryouri_li {
  display: flex;
  width: 100%;
  gap: 60px;
  justify-content: space-between;
}

.ryouri_li h2 {
  font-size: 1.1em;
  border-bottom: 1px solid #ccc;
  margin-top: 30px;
  margin-bottom: 15px;
  letter-spacing: 0.1em;
}

.ryouri_li ul {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0;
  margin: 0 0 8px 0;
  list-style: none;
  font-size: 0.98em;
}

.ryouri_li ul li {
  width: 50%;
  padding: 2px 0;
}

.ryouri_li ul li:first-child {
  text-align: left;
}

.ryouri_li ul li:last-child {
  text-align: right;
}

.ryouri_li ul li:last-child {
  text-align: right;
}

.ryouri_li ul li.txt-left {
  text-align: left;
}

.txt-right {
  text-align: right;
}

.ryouri_li p,
.ryouri_box>p {
  font-size: 0.9em;
  margin-top: 30px;
  text-align: right;
}

.ippin,
.nabe,
.gohan,
.men,
.drink_box,
.alcohol {
  width: 50%;
}

.koi-course01,
.koi-course02,
.koi-course03 {
  width: 33.3%;
}

.ryouri_li ul.koi02 {
  justify-content: center;
}

.ryouri_li ul.koi02 li.li_center {
  text-align: left;
}

@media screen and (max-width: 1200px) {
  .ryouri_txt {
    padding: 40px 0;
  }

  .ryouri_txtbox {
    width: 55%;
    padding: 0 20px;
  }

  .ryouri_img {
    width: 50%;
    height: auto;
    top: 140px;
  }

  .ryouri_img img {
    height: 400px;
    width: 100%;
    object-fit: cover;
  }
}

@media screen and (max-width: 1050px) {

  #koi,
  #drink {
    padding: 0;
  }

  .koi_box .ryouri_li {
    width: 80%;
    gap: 20px;
    flex-direction: column;
    margin: auto;
  }

  .koi-course01,
  .koi-course02,
  .koi-course03 {
    width: 100%;
  }

  .ryouri_li .koi-course01 ul,
  .ryouri_li .koi-course03 ul {
    width: 90%;
    margin: auto;
  }

  .ryouri_li ul.koi02 li.li_center {
    width: 90%;
  }
}

@media screen and (max-width: 1000px) {
  .ryouri_txtbox {
    width: 90%;
    padding: 0;
    margin: auto;
  }

  .ryouri_txt p {
    width: 100%;
  }

  .ryouri_img {
    width: 60%;
    height: auto;
    top: 240px;
  }

  .ryouri_img.koi_img {
    width: 80%;
    height: auto;
    top: 340px;
    right: 50%;
    transform: translateX(50%);
  }

  .ryouri_box.koi_box {
    padding-top: 200px;
  }
}


@media screen and (max-width: 990px) {
  .ryouri_txt {
    width: 100%;
    margin-right: 0;
    left: 0;
  }

  .ryouri_img {
    width: 80%;
    height: auto;
    top: 200px;
    right: 50%;
    transform: translateX(50%);
    margin-top: 20px;
  }

  .ryouri_txt span {
    display: inline-block;
  }
}

@media screen and (max-width: 900px) {
  .ryouri_img.koi_img {
    height: 325px;
    top: 300px;
  }

  .ryouri_box.koi_box {
    padding-top: 120px;
  }
}

@media screen and (max-width: 850px) {
  .ryouri_img {
    width: 90%;
  }

  .ryouri_img img {
    height: auto;
  }

  .ryouri_li {
    width: 80%;
    gap: 20px;
    flex-direction: column;
    margin: auto;
  }

  .ippin,
  .nabe,
  .gohan,
  .men,
  .drink_box,
  .alcohol {
    width: 100%;
  }

  .ryouri_box>p {
    margin-right: 20px;
  }
}

@media screen and (max-width: 790px) {
  .ryouri_img.koi_img {
    top: 320px;
  }

  #drink {
    padding: 20px 0;
  }
}

@media screen and (max-width: 750px) {
  .ryouri_img.koi_img {
    top: 340px;
  }
}

@media screen and (max-width: 710px) {
  .ryouri_img {
    top: 220px;
  }
}

@media screen and (max-width: 700px) {
  .ryouri_img {
    top: 240px;
  }
}

@media screen and (max-width: 660px) {
  .ryouri_box {
    padding: 0;
  }

  .ryouri_img.koi_img {
    top: 380px;
  }

  .ryouri_img.koi_img img {
    height: 280px;
  }
}

@media screen and (max-width: 610px) {
  .ryouri_img.koi_img {
    top: 340px;
  }
}

@media screen and (max-width: 600px) {

  #ryouri,
  #koi,
  #drink,
  #reserv,
  #news {
    width: 100%;
  }

  .ryouri_img img {
    height: auto;
  }

  .ryouri_box {
    padding: 10px 0;
  }

  .koi_txt .none,
  .koi_txt.none {
    display: none;
  }

  .reserv_box {
    width: 90%;
  }
}

@media screen and (max-width: 530px) {
  .ryouri_ttl {
    margin-bottom: 0;
  }

  .ryouri_txt {
    padding: 20px 0;
  }

  .ryouri_img {
    width: 80%;
  }

  .ryouri_li p,
  .ryouri_box>p {
    padding-right: 20px;
  }

  .ryouri_img.koi_img img {
    height: 225px;
  }
}

@media screen and (max-width: 490px) {
  .ryouri_img.koi_img {
    top: 380px;
  }
}

@media screen and (max-width: 480px) {
  .ryouri_li ul li:first-child {
    width: 70%;
  }

  .ryouri_li ul li:last-child {
    width: 30%;
  }

  .ryouri_li .koi-course01 ul,
  .ryouri_li .koi-course03 ul {
    flex-direction: column;
  }

  .ryouri_li .koi-course01 ul li:first-child,
  .ryouri_li .koi-course02 ul li:first-child,
  .ryouri_li .koi-course03 ul li:first-child {
    width: 100%;
    font-weight: 900;
  }

  .ryouri_li .koi-course01 ul li.txt-left,
  .ryouri_li .koi-course02 ul li.txt-left,
  .ryouri_li .koi-course03 ul li.txt-left {
    text-align: left;
    width: 100%;
    padding-left: 1.2rem;
  }

  .ryouri_li .koi-course01 ul li:first-child::before,
  .ryouri_li .koi-course02 ul li:first-child::before,
  .ryouri_li .koi-course03 ul li:first-child::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #003322;
    border-radius: 10vw;
    margin-right: 6px;
    margin-bottom: 2px;
  }

  .ryouri_li ul.koi02 {
    padding-left: 1.2rem;
  }

  .drink_box {
    margin-top: 80px;
  }
}

@media screen and (max-width: 390px) {
  .ryouri_img.koi_img {
    top: 400px;
  }
}

@media screen and (max-width: 375px) {
  .ryouri_img {
    top: 320px;
  }
}

@media screen and (max-width: 370px) {

  .ryouri_txt.koi_txt h2 {
    font-size: clamp(1.2rem, 4vw, 1.6rem);
  }

  .ryouri_txt.koi_txt h2 span {
    text-wrap: nowrap;
  }

  .ryouri_img.koi_img {
    top: 400px;
  }

  .ryouri_img.koi_img img {
    height: 200px;
  }
}

/* 予約ボックス */
#reserv {
  padding: 40px 0 30px 0;
  text-align: center;
}

.reserv_box {
  margin: 100px auto 50px;
}

#reserv .reserv_box p {
  margin: 0 0 10px 0;
  font-size: 14px;
}

#reserv .reserv_box h2 {
  font-size: 22px;
  margin: 0 0 10px 0;
  font-weight: 500;
  letter-spacing: 0.05em;
}


a.reserv_tel {
  text-decoration: none;
  font-size: 1.8rem;
  font-weight: 900;
  color: #333;
  position: relative;
}

a.reserv_tel::before {
  content: "";
  display: block;
  background-image: url(../img/tel_icon.png);
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  position: absolute;
  left: -50px;
  background-size: cover;
}


@media screen and (max-width: 400px) {
  #reserv .reserv_box h2 {
    font-size: clamp(1.2rem, 4vw, 1.4rem);
    font-weight: 900;
  }
}

/* ==================
　店舗情報
================== */
.access {
  padding: 60px 0 0 0;
  position: relative;
  background-color: #001722;
}

.access h2 {
  color: #fff;
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
  letter-spacing: 0.1em;
}

.access_box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
  max-width: 700px;
  margin: 0 auto;
  padding: 36px 36px 24px 36px;
  position: relative;
  z-index: 2;
}

.access_box>p {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 18px;
  letter-spacing: 0.08em;
}

.access_box table,
.access_box tr,
.access_box th,
.access_box td {
  border: none;
  background: none;
  padding: 0;
  margin: 0;
}

.access_box table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.access_box th {
  text-align: left;
  font-weight: 500;
  width: 90px;
  vertical-align: top;
}

.access_box tr {
  border-bottom: 1px solid #ccc;
}

.access_box tr:first-child {
  border-top: 1px solid #ccc;
}

.access_box td,
.access_box th {
  padding: 8px 10px;
}

.access_box th {
  text-align: left;
  font-weight: 500;
  width: 18%;
  vertical-align: top;
}

.access_box td {
  width: 70%;
  padding-left: 10px;
}

.flex-li {
  display: flex;
}


.flex-li li {
  width: 50%;
  text-align: center;
}

.flex-li li:last-child {
  border-left: 1px solid #ccc;
}

.close p {
  text-align: center;
  padding-top: 10px;
}

.map iframe {
  display: block;
  width: 100% !important;
  border: 0;
}

@media screen and (max-width: 750px) {
  .access_box {
    max-width: 90%;
  }
}

@media screen and (max-width: 550px) {
  .access_box th {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #17512b;
    color: #fff;
    padding: 4px;
  }

  .access_box td {
    display: block;
    width: 90%;
    margin: auto;
  }
}

@media screen and (max-width: 480px) {
  .map iframe {
    height: 300px;
  }
}

@media screen and (max-width: 450px) {
  .access_box td {
    display: block;
    width: 100%;
    margin: auto;
    text-align: center;
  }
}

/* ====================
お知らせ
==================== */
.news-box {
  display: flex;
  gap: 50px;
  margin: 50px auto;
}

.news-list {
  display: flex;
  flex-direction: column;
}

.news-box .news-ttl {
  writing-mode: vertical-rl;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
  border-top: 1px solid #023222;
  padding-top: 10px;
}

article.news-item {
  padding: 20px 30px;
  border-bottom: 1px solid #023222;
}

article.news-item:first-child {
  border-top: 1px solid #023222;
}

.news-date {
  font-size: .9rem;
  padding-bottom: 8px;
}

.news-item-title {
  font-size: 1.1rem;
  font-weight: 900;
  padding-bottom: 8px;
}

@media screen and (max-width: 600px) {
  #news {
    width: 90%;
  }

  .news-box {
    gap: 10px;
    margin-top: 50px;
    flex-direction: column;
    margin-top: 0;
  }

  .news-box .news-ttl {
    writing-mode: horizontal-tb;
    text-align: center;
    border: none;
    margin-bottom: 0;
    padding-top: 0;
  }
}

/* ====================
フッター
==================== */
.footer {
  width: 100%;
  background: #fff;
  padding: 10px 0;
  bottom: 0;
  left: 0;
  text-align: center;
}

.footer_img img {
  width: 200px;
  margin: 50px auto;
}

.footer small {
  color: #888;
  font-size: .8rem;
  letter-spacing: 0.5px;
}


/* ハンバーガーメニュー */
.menu-area {
  position: fixed;
  top: 20px;
  right: 30px;
  z-index: 1000;
  display: none;
}

/* チェックボックス非表示 */
.menu-check {
  display: none;
}

.menu-line {
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  background-color: #17512b;
  padding: 20px;
  border-radius: 8px;
  z-index: 99;
}

.menu-line span {
  position: absolute;
  left: 10px;
  width: 60%;
  height: 3px;
  background-color: #fff;
  border-radius: 4px;
}

.menu-line,
.menu-line span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}

.menu-line span:nth-of-type(1) {
  top: 12px;
}

.menu-line span:nth-of-type(2) {
  top: 23px;
}

.menu-line span:nth-of-type(3) {
  bottom: 12px;
}

/* ハンバーガー開いた時の変形 */
.menu-check:checked+.menu-line span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}

.menu-check:checked+.menu-line span:nth-of-type(2) {
  opacity: 0;
}

.menu-check:checked+.menu-line span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

.hamburger-nav {
  position: fixed;
  width: 30%;
  top: 0;
  right: 0;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  /* border-radius: 8px; */
  padding: 40px;
  padding-top: 80px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.menu-check:checked~.hamburger-nav {
  display: flex;
}

.hamburger-nav a {
  color: #333;
  text-decoration: none;
}

.hamburger-nav a:hover {
  font-weight: 900;
  color: #003322;
}

@media screen and (max-width: 895px) {
  .header-inner .menu {
    display: none;
  }

  #hamburger {
    display: block;
  }
}

@media screen and (max-width: 810px) {
  .hamburger-nav {
    width: 60%;
  }
}

@media screen and (max-width: 400px) {
  .hamburger-nav {
    width: 80%;
  }
}

.telbtn {
  text-align: center;
  padding: 10px;
  background-color: #001722;
  color: #fff !important;
  font-size: 1.2rem;
  font-weight: 900;
  border-radius: 10vw;
}


[id] {
  scroll-margin-top: 60px;
}

/* 404 */
.erroe-contents {
  background-color: #f4f2ee;
  width: 100%;
  height: 100vh;
  position: relative;
}

.error {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.error p {
  text-align: center;
}

.error p.error_txt {
  padding: 80px;
  font-size: 2.8rem;
  font-weight: 900;
}

.error p.error_btn a {
  background-color: #fff;
  border: 1px solid #003322;
  padding: 10px 30px;
  border-radius: 10vh;
}

.error p.error_btn a {
  background-color: #fff;
  border: 1px solid #003322;
  padding: 10px 30px;
  border-radius: 10VH;
  text-decoration: none;
  color: #003322;
  font-size: 1.4rem;
  font-weight: 500;
}

.error p.error_btn a:hover {
  color: #fff;
  background-color: #003322;
}