@charset "utf-8";

.fv {
  width: 100%;
  height: 100svh;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background: #fff;
}

.fv-visual,
.fv-visual img {
  display: block;
  width: 100%;
  height: 100%;
}

.fv-visual img {
  object-fit: cover;
  object-position: center center;
}

.fv-visual {
  opacity: 0;
  transform: translateY(20px);
  animation: fvFadeUp 1s ease 0.2s forwards;
}

.crown::before {
  content: "";
  display: inline-block;
  width: 46px; /* サイズ調整 */
  height: 36px;
  background: url("../img/crown.png") no-repeat center / contain;
  margin-right: 5px;
  vertical-align: middle;
}

@keyframes fvFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===============================
   1. ベース
================================ */
:root {
  --color-gold: #c9a24c;
  --color-gold-dark: #b68b2c;
  --color-text-brown: #3f3125;
  --color-text-brown-light: #5a4632;
  --color-bg-soft: #f7f3ec;
  /*--color-bg-soft-2: #faf7f2;*/
  --color-bg-soft-2: #fff;
  --color-border-soft: #d8d1c8;
  --color-border-gray: #ddd;
  /*--color-section-gray: #e9e6e1;*/
  --color-section-gray: #f0eeeb;
  --color-title-border: #8a7a67;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

* {
  box-sizing: border-box;
}

/* ===============================
   2. ヒーロー背景
================================ */
.bg {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.bg:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100vh;
  background: url("../img/bg.jpg") center / cover no-repeat;
}

.light {
  position: absolute;
  border-radius: 50%;
}

/* ===============================
   3. ラッパー
================================ */
.header-wrap {
  margin: 0 auto;
  width: min(97vw, 1000px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
}

.mv-wrap {
  margin: 0 auto;
  width: min(90vw, 1000px);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 20;
  transform: translate(-50%, -50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4%;
}

#container {
  position: relative;
  z-index: 1;
  background: #fff;
  text-align: center;
}

/* ===============================
   4. ヒーロー画像
================================ */
h1.top-img {
  width: 72%;
  height: auto;
  display: block;
}

.goldaward-ribbon {
  width: 24%;
  height: auto;
  display: block;
}

/* ===============================
   5. セクション共通
================================ */
.section {
  padding: 100px 20px;
}

.section p {
    font-size: 1.8rem;
    line-height: 1.9;
}

.section + .section {
  border-top: 1px solid #eee;
}

.section-inner {
  max-width: 1000px;
  margin: 0 auto;
}

/* ===============================
   6. セクションタイトル
================================ */
.section-title {
  margin-bottom: 40px;
  padding: 18px 20px 10px;
  text-align: center;
  border: none;
  border-bottom: 1px solid var(--color-title-border);
}

.section-title h2 {
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  font-size: 2.8rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

/* ===============================
   7. 本文共通
================================ */
.section-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  margin-bottom: 20px;
  text-align: justify;
}

.section-text a {
  text-decoration: underline;
  text-decoration-color: #999;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.section-text img {
  width: 50%;
}

.section-text-detail {
  display: block;
  color: var(--color-text-brown);
  text-align: left;
}

.section-text-detail p {
  margin: 0 0 1.4em;
}

.lead-text p {
  margin: 30px 0 40px;
  font-size: 20px;
  line-height: 2.5;
  color: var(--color-text-brown-light);
  font-weight: 600;
}

.section-text-detail,
.section-media-text p {
  text-align: justify;
}

/* ===============================
   8. ブランド一覧・地図
================================ */


.hitachi {
  color: var(--color-gold-dark);
  font-weight: bold;
}

.map-wrap {
  margin: 0 0 50px;
  text-align: center;
}

.map-wrap img {
  width: 100%;
  max-width: 700px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.official-link-wrap {
  padding: 40px 0;
  background: #fff;
}

.official-link {
  margin: 0px auto;
	  padding: 40px 0;

  border-top: 1px solid var(--color-border-soft);
  border-bottom: 1px solid var(--color-border-soft);
  font-size: 17px;
}

/* ===============================
   9. 特徴紹介・画像＋テキスト
================================ */
.section-text-feature {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.section-text-feature img {
  width: 50%;
  display: block;
}

.section-media {
  gap: 30px;
}

.section-media img {
  width: 50%;
}

.section-media-text {
  width: auto;
}

.section-media-text h3 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.section-dark .section-media-text {
  width: 50%;
}

.section-dark .section-media-text h3 {
  margin: 0 0 24px;
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: 500;
  color: #fff;
}

.section-dark .section-media-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
}

.section-dark .section-media-text p + p {
  margin-top: 1em;
}

/* ===============================
   10. とんかつビジュアル
================================ */
.tonkatsu-visual {
  margin: 60px 0 50px;
}

.tonkatsu-visual img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.tonkatsu-caption {
    padding: 0 0 20px;
    text-align: center;
	font-weight: bold;
    letter-spacing: 0.15em;
    color: #333;
}

.section-text-detail p.tonkatsu-caption {
    margin-top: 20px;
    font-size: 2rem;
}

/* ===============================
   11. リスト・コメント系ボックス
================================ */
.judge-list {
  margin: 0px 0 28px;
  padding: 18px 24px;
  background-color: var(--color-bg-soft);
  border-left: 4px solid var(--color-gold);
}

.judge-list p {
  margin: 0;
  line-height: 1.9;
  font-size: 1.8rem;
}

.judge-list .judge-role {
  display: inline;
}

.section-text-detail p.judge-heading {
  margin: 36px 0 0;
  padding-left: 25px;
  padding-bottom: 10px;	
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--color-text-brown);
  text-align: left;
}

.award-list {
  margin: 50px 0 36px;
  padding: 24px 28px;
  background-color: #fff;
  border-left: 4px solid var(--color-gold);
}

.award-list p {
  margin: 0;
  font-size: 1.8rem;
  line-height: 1.9;
  color: var(--color-text-brown);
}

.award-list p + p {
  margin-top: 10px;
}

.award-comment {
  margin-bottom: 40px;
}

.comment-author {
  margin: 0 0 24px;
  font-size: 2rem;
  line-height: 1.8;
  color: var(--color-text-brown);
  font-weight: 500;
}



.review-list {
  margin-bottom: 40px;
}

.review-item {
  padding: 20px 24px;
  background-color: var(--color-bg-soft-2);
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.review-item + .review-item {
  margin-top: 16px;
}

.section .review-name {
  margin: 0 0 8px;
  font-size: 2.2rem;
  line-height: 1.6;
  font-weight: 600;
  color: var(--color-text-brown);
}

.section .review-text {
  margin: 0;
  font-size: 2.2rem;
  line-height: 1.9;
  color: var(--color-text-brown);
}


.award-comment-layout {
  display: flex;
  align-items: center;
  gap: 36px;
  margin-top: 30px;
}

.award-comment-photo {
  width: 48%;
  margin: 0;
}

.award-comment-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.award-comment-photo figcaption {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

.award-comment-layout .award-comment {
  width: 52%;
  margin-bottom: 0;
}

.award-comment-layout .comment-author {
  margin: 0 0 24px;
  font-size: 1.7rem;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-align: center;
}

.award-comment-layout .comment-text {
  margin: 0;
  background-color: var(--color-bg-soft);
  border: 1px solid var(--color-gold);
  padding: 26px 30px;
}

.award-comment-layout .comment-text p {
  margin: 0;
  font-size: 2rem;
  color: var(--color-text-brown);
  line-height: 2;
  text-align: left;
}


/* ===============================
   12. 写真装飾
================================ */
.award-photo {
  margin: 40px auto;
  padding: 1px;
  background: #fff;
  border: 1px solid var(--color-border-gray);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.award-photo img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===============================
   13. ボタン
================================ */
.section-button {
  margin-top: 20px;
}

.section-dark .section-button {
  margin-top: 30px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: #000;
  color: #fff;
  text-decoration: none;
  border: 1px solid #343434;
}

.link-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 11px solid #fff;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.section-dark .link-arrow {
  min-width: 210px;
  justify-content: center;
}

/* ===============================
   14. ギャラリー
================================ */
.section-gallery {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

.section-gallery figure {
  width: 50%;
}

.section-gallery img {
  width: 100%;
}

figure {
  margin: 0;
}

figcaption {
  margin-top: 8px;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #000;
  text-align: center;
}

/* ===============================
   15. カラー系
================================ */
.section-white {
  background: #fff;
}

.section-gray {
  background: var(--color-section-gray);
}

.section-dark {
  background: #222;
  color: #fff;
}

.section-dark .section-title h2 {
  border-color: #fff;
}

.section-accent {
  background: linear-gradient(180deg, #fffdf8 0%, #f3ede3 100%);
}

.gold {
  color: var(--color-gold);
  font-weight: bold;
}

.footer#footer {
	background: #d9d4cc;
}

.footer_copyright.footer {
	background: #d9d4cc;
}
/* ===============================
   16. ユーティリティ
================================ */
.sp-br {
  display: none;
}

.gap1::before,
.gap2::before,
.gap3::before
{
  content: "　";
}

.gap3 {
  display: none;
}

/* ===============================
   17. アニメーション
================================ */
@keyframes twinkle {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(0.8);
  }
}

/* ===============================
    レスポンシブ 800px以下
================================ */
@media screen and (max-width: 800px) {

  .sp-br {
    display: block;
  }

  .section {
    padding: 40px 15px;
  }

  .section-title h2 {
  font-size: 2.8rem;
  line-height: 1.4;
  }

  .section-text {
    font-size: 14px;
  }

  .section-media {
    flex-direction: column;
  }

  .section-media img,
  .section-media-text {
    width: 100%;
  }

  .section-gallery {
    flex-direction: column;
  }

  .section-gallery figure,
  .section-gallery img {
    width: 100%;
  }

  .section-text-feature {
    display: block;
  }

  .section-text-feature img {
    width: 100%;
    margin-bottom: 30px;
  }

  .section-dark .section-media-text {
    width: 100%;
  }	
	
  .map-wrap {
    margin: 24px 0 32px;
  }

  .comment-author {
    font-size: 1.2em;
    letter-spacing: 0;
  }

  .comment-text {
    text-align: left;
  }

  .role {
    display: block;
  }

  .gap1 {
    display: none;
  }
	
  .gap3 {
    display: inline;
  }
	
  .section .review-name {
    font-size: 2.1rem;
    line-height: 1.5;
  }

  .section .review-text {
    font-size: 2.0rem;
    line-height: 1.7;
  }	

  .crown::before {
    display: block;
    margin: 0 auto 10px;
  }

  .judge-list p {
    line-height: 1.2;
   }
	
  .judge-list .judge-role {
    display: block;
    line-height: 1.5;
	margin-top: 0.2em;
	margin-left: 0.5em;
	}
	
  .award-comment-layout {
    flex-direction: column;
    gap: 24px;
  }

  .award-comment-photo,
  .award-comment-layout .award-comment {
    width: 100%;
  }

  .award-comment-layout .comment-author {
    font-size: 1.8rem;
    line-height: 1.2;
  }

  .award-comment-layout .comment-text p {
    font-size: 1.8rem;
    line-height: 1.9;
  }	
}

/* ===============================
    レスポンシブ 550px以下
================================ */
@media screen and (max-width: 550px) {
	
  .sp-br-550 {
      display: block;
    }	
	
  .section-title h2 {
    font-size: 2.6rem;
    line-height: 1.5;
  }
	
  .lead-text p {
    font-size: 19px;
    line-height: 2;
  }

  .section .review-name {
    font-size: 2.0rem;
    line-height: 1.4;
  }

  .section .review-text {
    font-size: 1.9rem;
    line-height: 1.6;
	text-align: left;
  }	
	
  .judge-list .judge-role {
      font-size: 0.9em;
	}	
	
}


/* ===============================
    レスポンシブ 420px以下
================================ */
@media screen and (max-width: 420px) {
  .sp-br {
    display: block;
  }

  .company {
    display: block;
  }

  .gap2 {
    display: none;
  }
	
  .section-title h2 {
    font-size: 2.1rem;
    line-height: 1.3;
  }
	
  .lead-text p {
    font-size: 15px;
    line-height: 2.1;
  }
	
  .award-comment-layout .comment-author {
    line-height: 1.7;
  }

  .award-comment-layout .comment-text {
    padding: 20px 18px;
  }

  .award-comment-layout .comment-text p {
    line-height: 1.8;
  }	
	
}