@charset "UTF-8";
/* ── RESET & BASE ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --red: #9E3123;
  --dred: #893429;
  --olive: #B8B97A;
  --orange: #C69C6D;
  --dark: #3C3C3C;
  --white: #FFFFFF;
  --light: #F4F2EE;
  --text: #333333;
  --gray: #777777;
  --border: #DDDDDD;
}

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: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* 画像余白を消す
-----------------------------------------*/
img {
  vertical-align: top;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Noto Serif JP", sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  font-weight: 300;
}

a {
  color: var(--dred);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* ── HEADER ── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--red);
  border-bottom: 1px solid var(--border);
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
}
@media (max-width: 860px) {
  header {
    padding: 0 20px;
  }
}
header nav {
  font-family: "Optima", serif;
}
header nav ul {
  display: flex;
  gap: 28px;
  list-style: none;
}
@media (max-width: 860px) {
  header nav ul {
    display: none;
  }
}
header nav a {
  font-size: 13px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.08em;
  opacity: 0.75;
  transition: opacity 0.2s, color 0.2s;
}
header nav a:hover {
  opacity: 1;
}

.logo {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
  font-family: "Optima", "Noto Sans JP", sans-serif;
}
.logo img {
  max-width: 190px;
  margin-top: 10px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (max-width: 860px) {
  .hamburger {
    display: flex;
  }
}
.hamburger span {
  display: block;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  width: 0;
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 190;
  background: var(--white);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 13px;
  letter-spacing: 0.15em;
  color: var(--text);
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .mobile-nav a {
    font-size: 4vw;
    font-weight: 400;
  }
}

/* ── HERO ── */
.hero {
  padding-top: 52px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url(../img/hero-back.jpg) no-repeat 50% top/cover #fff;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .hero {
    background-size: 230vw;
    background-color: #E9D5C6;
  }
}
.hero-invisible {
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1;
  font-family: "Optima", serif;
  position: relative;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .hero-invisible {
    font-size: 21vw;
  }
}
.hero-visible {
  font-size: clamp(60px, 10vw, 140px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--red);
  line-height: 1;
  font-family: "Optima", serif;
  opacity: 0;
  filter: blur(10px);
}
@media screen and (max-width: 768px) {
  .hero-visible {
    font-size: 21vw;
  }
}
.hero-tagline-ja {
  font-size: 25px;
  font-weight: 400;
  color: var(--text);
  margin-top: 20px;
  margin-bottom: 30px;
  letter-spacing: 0.15em;
}
.hero-tagline-en {
  font-size: 18px;
  color: var(--dred);
  letter-spacing: 0.1em;
  line-height: 2;
  font-weight: 400;
  margin-top: 40px;
  font-family: "Optima", serif;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .hero-tagline-en {
    font-size: 4vw;
    margin-top: 8vw;
    margin-bottom: 8vw;
  }
}
.hero-deco {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  color: var(--gray);
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.6;
}
.hero-deco::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--gray);
}
.hero .hero-text-area {
  background-color: rgba(255, 255, 255, 0.6);
  min-width: 600px;
  padding: 30px 50px;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .hero .hero-text-area {
    min-width: auto;
  }
}
.hero .hero-text-area p.hero-text-center {
  text-align: center;
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  margin-top: 30px;
}
.hero .main-text {
  position: relative;
  height: 500px;
  width: 100%;
}
.hero .main-text .hero-invisible, .hero .main-text .hero-visible {
  position: absolute;
  top: 200px;
  left: 50%;
  left: calc(50% - 350px);
  width: 700px;
  font-size: 180px;
}
@media screen and (max-width: 768px) {
  .hero .main-text .hero-invisible, .hero .main-text .hero-visible {
    font-size: 21vw;
    width: 100%;
    left: 0;
  }
}

/* ── SHARED SECTION ── */
.section-white {
  background: var(--white);
}
.section-light {
  background: var(--light);
}
.section-red {
  background: var(--red);
}
.section-olive {
  background: var(--olive);
}
.section-dark {
  background: var(--dark);
}
.section-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
}
@media (max-width: 860px) {
  .section-wrap {
    padding: 64px 28px;
  }
}
@media (max-width: 540px) {
  .section-wrap {
    padding: 56px 20px;
  }
}
.section-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-align: center;
  margin-bottom: 56px;
  font-family: "Optima", "Noto Sans JP", sans-serif;
}
.section-title.on-dark, .section-title.on-red {
  color: var(--white);
}

.section-ring {
  background: url(../img/ring-back.png) no-repeat center top/cover;
}

/* ── WHY WE ARE ── */
section#why .section-title {
  color: var(--dred);
  font-size: 50px;
  position: relative;
  z-index: 1;
}
section#why .why-text {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 2;
  color: var(--text);
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  section#why .why-text {
    text-align: left;
  }
}
section#why .why-text p + p {
  margin-top: 20px;
}
section#why .section-wrap {
  position: relative;
  min-height: 700px;
}
section#why .section-wrap .ring {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}
section#why .section-wrap .ring img {
  max-height: 100%;
}

/* ── MVV: 3 COLOR BLOCKS ── */
.mvv-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 860px) {
  .mvv-row {
    grid-template-columns: 1fr;
  }
}

.mvv-block {
  padding: 64px 56px;
  text-align: center;
}
@media (max-width: 860px) {
  .mvv-block {
    padding: 48px 28px;
  }
}
@media (max-width: 540px) {
  .mvv-block {
    padding: 40px 20px;
  }
}
.mvv-block.red {
  background: var(--red);
}
.mvv-block.orange {
  background: var(--orange);
}
.mvv-block.olive {
  background: var(--olive);
}
.mvv-block.dark {
  background: var(--dark);
  grid-column: 1/-1;
}
@media (max-width: 860px) {
  .mvv-block.dark {
    grid-column: 1;
  }
}

.mvv-kw {
  font-size: 50px;
  text-transform: lowercase;
  color: #fff;
  margin-bottom: 24px;
  font-family: "Optima", serif;
}

.mvv-heading {
  font-size: 22px;
  font-weight: 400;
  line-height: 2;
  color: var(--white);
  margin-bottom: 28px;
}

.mvv-body {
  font-size: 16px;
  line-height: 2;
  color: #000;
  font-weight: 400;
  max-width: 370px;
  margin: auto;
  text-align: left;
}

/* ── WHAT WE DO ── */
section#what {
  background: var(--red);
  color: #fff;
}
section#what .section-title {
  font-size: 50px;
}
section#what .section-title .small-text {
  display: block;
  font-size: 18px;
}

.flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  width: 960px;
  margin: 0 auto;
}
@media (max-width: 860px) {
  .flow {
    flex-wrap: wrap;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .flow {
    max-width: 480px;
    width: auto;
  }
}

.flow-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 8px;
}
@media (max-width: 860px) {
  .flow-step {
    flex: 0 0 calc(50% - 16px);
  }
}
@media (max-width: 540px) {
  .flow-step {
    flex: 0 0 100%;
  }
}
.flow-step ul {
  text-align: left;
  width: 130px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .flow-step ul {
    margin-bottom: 20vw;
    width: 36vw;
  }
}
.flow-step ul li {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .flow-step ul li {
    font-size: 4vw;
  }
}
.flow-step::after {
  content: "";
  display: block;
  position: absolute;
  width: 10px;
  height: 10px;
  border-left: 50px solid #fff;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  right: -20px;
  top: 60px;
}
@media screen and (max-width: 768px) {
  .flow-step::after {
    top: auto;
    bottom: 0;
    right: calc(50% - 30px);
    transform: rotate(90deg);
  }
}
.flow-step:last-child::after {
  display: none;
}
.flow-step.o-wrap::after {
  right: -26px;
}
@media screen and (max-width: 768px) {
  .flow-step.o-wrap::after {
    right: calc(50% - 30px);
  }
}

.flow-arrow {
  position: absolute;
  top: 30px;
  right: -18px;
  z-index: 1;
  font-size: 22px;
  color: var(--red);
  line-height: 1;
}
@media (max-width: 860px) {
  .flow-arrow {
    display: none;
  }
}

.flow-circle {
  display: block;
}
.flow-circle span {
  position: absolute;
  z-index: 0;
  top: 0;
  left: calc(50% - 90px);
}
.flow-circle span.a {
  width: 180px; /* 三角形の横幅 */
  height: 180px; /* 三角形の縦幅 */
  background-color: #ffffff; /* 三角形の色 */
  /* 上中央(50% 0%)、右下(100% 100%)、左下(0% 100%)の3点を結んで切り抜く */
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}
.flow-circle span.b {
  left: calc(50% - 50px);
}
.flow-circle span.b img {
  height: 180px;
}
.flow-circle span.o::before {
  content: "";
  display: block;
  position: absolute;
  height: 180px;
  width: 180px;
  background: #fff;
  border-radius: 50%;
  text-align: center;
}

.flow-sublabel {
  font-size: 18px;
  color: var(--text);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  z-index: 1;
  position: relative;
  margin-top: 53px;
}

.flow-kanji {
  font-size: 30px;
  font-weight: 500;
  color: var(--red);
  margin-bottom: 100px;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow-kanji {
    margin-bottom: 20vw;
  }
}

.flow-desc {
  font-size: 11px;
  line-height: 1.9;
  color: var(--gray);
}

/* ─── PROJECT DESIGN CASE ─── */
.case {
  background: var(--light);
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .case {
    padding: 8vw 2vw 16vw;
  }
}
.case .case-title {
  font-family: "Optima", serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--red);
  text-align: center;
  margin-bottom: 64px;
  letter-spacing: 0.05em;
}
.case .case-table-wrap {
  overflow-x: auto;
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.case .case-table-wrap .case-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .case .case-table-wrap .case-table {
    width: 118vw;
  }
}
.case .case-table-wrap .case-table th, .case .case-table-wrap .case-table td {
  padding: 16px 20px;
  vertical-align: top;
  border: 1px solid #ccc;
  line-height: 1.9;
  font-weight: 400;
}
.case .case-table-wrap .case-table th {
  background: var(--red);
  color: #fff;
  font-weight: 500;
  text-align: center;
  writing-mode: horizontal-tb;
  white-space: nowrap;
  font-size: 20px;
  width: 80px;
}
@media screen and (max-width: 768px) {
  .case .case-table-wrap .case-table th {
    font-size: 4vw;
    padding: 2vw;
  }
}
.case .case-table-wrap .case-table th.no-back {
  background: var(--light);
  border: 0;
}
.case .case-table-wrap .case-table thead th {
  width: 47%;
}
.case .case-table-wrap .case-table thead th:first-child {
  width: 10%;
}
.case .case-table-wrap .case-table tbody th {
  writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .case .case-table-wrap .case-table tbody th {
    position: sticky;
    left: 0;
    line-height: 3;
    padding: 0;
    width: 0;
  }
}
.case .case-table-wrap .case-table tbody tr:nth-child(odd) td:not(.row-label) {
  background: #f8f8f8;
}
.case .case-table-wrap .case-table tbody tr:nth-child(even) td:not(.row-label) {
  background: var(--white);
}

/* contact button */
.contact-btn-wrap {
  text-align: center;
  margin-top: 80px;
}

.contact-btn {
  display: inline-block;
  background: var(--red);
  color: #fff;
  padding: 14px 56px;
  font-size: 20px;
  text-decoration: none;
  border-radius: 15px;
  transition: background 0.2s;
  font-weight: 500;
}

.contact-btn:hover {
  opacity: 0.8;
  text-decoration: none;
}

.contact-btn-note {
  font-size: 20px;
  color: var(--red);
  margin-bottom: 25px;
  font-weight: 400;
}

/* ─── MESSAGE / PROFILE ─── */
.profile {
  background: var(--red);
  padding: 96px 48px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 16vw 5vw;
  }
}

.profile-inner {
  max-width: 800px;
  margin: 0 auto;
}

.profile-title {
  font-family: "Optima", serif;
  font-size: 50px;
  font-weight: 300;
  color: #fff;
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.05em;
}

.profile-text {
  font-size: 18px;
  line-height: 2;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.88);
}

.profile-photo {
  width: 140px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 11px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .profile-photo {
    margin: 10vw auto 0;
  }
}

.profile-name-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .profile-name-block {
    display: block;
  }
}

.profile-name {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin-bottom: 8px;
}

.profile-roles {
  font-size: 16px;
  line-height: 2;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
}

/* ─── CONTACT ─── */
.contact {
  background: var(--white);
  padding: 96px 48px;
}

.contact-inner {
  max-width: 560px;
  margin: 0 auto;
}

.contact-title {
  font-family: "Optima", serif;
  font-size: 50px;
  font-weight: 300;
  color: var(--red);
  text-align: center;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.contact-note {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-row {
  margin-bottom: 16px;
}

.form-label {
  display: block;
  font-size: 16px;
  color: #333;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
}

.form-input, .form-textarea {
  width: 100%;
  border: 1px solid #ccc;
  padding: 10px 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  color: var(--text);
  outline: none;
  background: #fff;
  border-radius: 0;
  transition: border-color 0.2s;
}

.form-input:focus, .form-textarea:focus {
  border-color: var(--red);
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-submit .wpcf7-submit {
  width: 100%;
  padding: 14px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 18px;
  letter-spacing: 0.15em;
  margin-top: 8px;
  transition: background 0.2s;
  font-family: "Noto Sans JP", sans-serif;
}
.form-submit .wpcf7-submit:hover {
  background: #9a1f14;
}

.wpcf7-response-output {
  margin-top: 0 !important;
}

/* ─── COMPANY ─── */
section#company .company-wrap {
  position: relative;
  min-height: 700px;
  max-width: 1100px;
  margin: 0 auto;
}
section#company .company-wrap .ring {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
}

.company-inner {
  max-width: 750px;
  margin: 0 auto;
  padding: 80px 0;
  z-index: 1;
  position: relative;
}
.company-inner .company-title {
  font-family: "Optima", serif;
  font-size: 50px;
  font-weight: 500;
  color: var(--red);
  text-align: center;
  margin-bottom: 56px;
  letter-spacing: 0.05em;
}
.company-inner .company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 16px;
}
.company-inner .company-table th {
  width: 120px;
  padding: 16px 20px 16px 0;
  font-weight: 500;
  vertical-align: middle;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--text);
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .company-inner .company-table th {
    border-bottom: 0;
  }
}
.company-inner .company-table td {
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 2;
  font-weight: 400;
  color: var(--text-s);
}
.company-inner .company-table td ul {
  margin-left: 16px;
}
@media screen and (max-width: 768px) {
  .company-inner .company-table td ul {
    margin-left: 5vw;
  }
}
.company-inner .company-table tr:last-child th {
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .company-inner .company-table {
    width: 90%;
    margin: auto;
  }
  .company-inner .company-table th, .company-inner .company-table td {
    display: block;
    width: 100%;
    text-align: left;
    padding: 3.5vw;
  }
  .company-inner .company-table th + td {
    padding-top: 1.5vw;
  }
}
.company-inner .company-table tr:last-child th,
.company-inner .company-table tr:last-child td {
  border-bottom: none;
}

/* ── FOOTER ── */
footer {
  background: #222222;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 540px) {
  footer {
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px;
  }
}

.footer-logo {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}

.footer-copy {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.08em;
}

/* ── REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

.news-area {
  background: var(--red);
  padding: 50px 50px 30px;
  scroll-margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .news-area {
    padding: 10vw 0;
  }
}
.news-area .hero-news {
  background: #fff;
  max-width: 700px;
  width: 90%;
  margin: auto;
  padding: 30px 50px;
  border-radius: 30px;
}
@media screen and (max-width: 768px) {
  .news-area .hero-news {
    border-radius: 6vw;
    padding: 10vw 5vw;
  }
}
.news-area .hero-news .hero-news-title {
  text-align: center;
  font-size: clamp(20px, 2.5vw, 28px);
  font-family: "Optima", serif;
}
.news-area .hero-news .hero-news-box {
  margin-top: 20px;
  max-height: 120px;
  overflow-y: scroll;
}
.news-area .hero-news .hero-news-box .news-item {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: #ccc 1px solid;
}
@media screen and (max-width: 768px) {
  .news-area .hero-news .hero-news-box .news-item {
    font-weight: 400;
  }
}
.news-area .hero-news .hero-news-box .news-item a {
  text-decoration: none;
  color: var(--text);
}
.news-area .hero-news .hero-news-box .news-item a:hover {
  opacity: 0.5;
}
.news-area .hero-news .hero-news-box .news-item .news-date {
  display: inline-block;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .news-area .hero-news .hero-news-box .news-item .news-date {
    display: block;
  }
}
.news-area .sns-box {
  margin-top: 30px;
}
.news-area .sns-box ul {
  display: flex;
  justify-content: center;
}
.news-area .sns-box ul li {
  list-style-type: none;
  margin: 0 10px;
}
.news-area .sns-box ul li.icon-x {
  width: 40px;
}
.news-area .sns-box ul li.icon-note {
  width: 100px;
}
.news-area .sns-box ul li a:hover {
  opacity: 0.5;
}

.flex-box {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .flex-box {
    display: block;
  }
}
.flex-box .flex-inner {
  width: 30%;
  min-width: 500px;
}
@media screen and (max-width: 768px) {
  .flex-box .flex-inner {
    min-width: auto;
    width: auto;
  }
}

.news {
  margin: 150px 0;
  min-height: calc(100vh - 350px);
}
.news .news_inner {
  max-width: 700px;
  width: 90%;
  margin: auto;
}
.news .news_inner .ttl_h2 {
  font-size: 20px;
  margin-bottom: 40px;
}
.news .news_inner p {
  line-height: 2;
}
.news .news_inner p + p {
  margin-top: 20px;
}
.news .news_inner .back_btn {
  margin-top: 40px;
  text-align: center;
}
.news .news_inner .back_btn a {
  font-weight: 400;
  text-decoration: underline;
}

.pc-none {
  display: none;
}
@media screen and (max-width: 768px) {
  .pc-none {
    display: block !important;
  }
}

.sp-none {
  display: none;
}
@media screen and (min-width: 769px) {
  .sp-none {
    display: block !important;
  }
}

/* アニメーションさせたい要素の初期スタイル */
.hero-invisible {
  display: inline-block; /* transformを効かせるために必要 */
  transition: filter 1s ease-out, opacity 1s ease-out; /* ボケと透明度の変化を滑らかに */ /* 【修正点】アニメーション開始前の初期値（1倍）をCSSであらかじめ明示 */
  border-spacing: 1px;
  transform: scale(1);
}

.hero-visible {
  /* 順番： アニメーション名 | 再生時間 | 変化の度合い | 遅延時間（3秒） | 終了時の状態維持 */
  animation: blurIn 2s ease-out 3s forwards;
}

.hero-text-area {
  animation: blurIn 2s ease-out 5s forwards;
}

@keyframes blurIn {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0px); /* ぼかしを完全に無くす */
  }
}
.date {
  text-align: right;
  margin-top: 1rem;
  font-size: 0.9rem;
}/*# sourceMappingURL=style.css.map */