@charset "UTF-8";
/* --------------------------------------------------
   RESET & VARIABLES
-------------------------------------------------- */
:root {
  /* ベースカラー（グレー系） */
  --bg-base: #1e1e20; /* メインの背景グレー */
  --bg-base-light: #2a2a2d; /* 少し明るいサブグレー */
  --text-main: #e0e0e0; /* ベーステキスト（薄グレー） */
  --text-muted: #8e8e93; /* 補足テキスト */
  --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
  text-box: trim-both cap alphabetic;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-main);
  overflow-x: hidden;
  text-align: justify;
  font-family: "M PLUS U", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO", "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
  font-weight: normal;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}

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

img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------
   HEADER
-------------------------------------------------- */
body {
  padding-top: 4rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 4rem;
  padding: 0 5vw;
}

.name {
  font-family: sans-serif;
  font-weight: bold;
  font-size: 1.75rem;
  color: white;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 3rem;
}

nav a {
  display: inline-block;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.1em;
  margin-right: -0.1em;
  color: white;
  transition: color 0.25s ease;
}
nav a:hover {
  color: var(--text-main);
}

.to-top {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: fixed;
  bottom: 5vw;
  right: 5vw;
  width: 4rem;
  height: 4rem;
  padding-left: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 2rem;
  background-color: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(20px);
  letter-spacing: 0.05em;
  transition: all 1s var(--transition-smooth) 0.3s;
}
.to-top::after {
  content: "\e5d8";
  position: absolute;
  bottom: calc(0.5rem - 1px);
  right: calc(0.5rem - 1px);
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  line-height: 1;
  letter-spacing: normal;
}
.to-top span {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}
.to-top:hover {
  width: 12rem;
  transition: all 1s var(--transition-smooth) 0s;
}
.to-top:hover span {
  opacity: 1;
  transition: opacity 1s ease 0.3s;
}

.business-nav li {
  opacity: 0;
  transition: opacity 0.5s ease 0s;
}

.cursor {
  cursor: default;
}

/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */
.footer-about {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  gap: 3rem;
  margin-top: 8vw;
  padding: 3rem 5vw;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
}

.footer-copy {
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}

.footer-logo {
  display: flex;
  align-items: center;
}
.footer-logo span {
  font-family: "Cinzel", serif;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
}
.footer-logo img {
  width: 10rem;
  margin: 0 1rem;
}

.footer-end {
  height: 4rem;
  padding: 0 5vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: var(--text-muted);
  background-color: var(--bg-base);
}

/* --------------------------------------------------
   HERO
-------------------------------------------------- */
.hero {
  overflow: clip;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: sticky;
  position: -webkit-sticky;
  top: 4rem;
  z-index: -100;
  height: 46vw;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.hero-image.home {
  background-image: url(https://www.sharaku.co.jp/image/hero-index.webp);
}
.hero-image.video {
  background-image: url(https://www.sharaku.co.jp/image/hero-video.webp);
}
.hero-image.live {
  background-image: url(https://www.sharaku.co.jp/image/hero-live.webp);
}
.hero-image.webinar {
  background-image: url(https://www.sharaku.co.jp/image/hero-webinar.webp);
}
.hero-image.system {
  background-image: url(https://www.sharaku.co.jp/image/hero-system.webp);
}
.hero-image video {
  width: 100vw;
}

.hero-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 46vw;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0.5;
  animation: scrollIn linear forwards;
  animation-timeline: scroll();
}
@keyframes scrollIn {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
}

.hero-logo {
  width: 25%;
  animation: scrollOut linear forwards;
  animation-timeline: scroll();
}
@keyframes scrollOut {
  0% {
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
}

.hero-content {
  display: flex;
  flex-flow: column;
  gap: 2rem;
  min-height: 46vw;
  padding: 8vw 5vw;
  background: linear-gradient(transparent, black);
}

.hero-title {
  margin-bottom: auto;
  text-align: center;
  font-size: clamp(1.75rem, 3vw, 2rem);
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.hero-text {
  padding: 0 calc(50% - 30rem);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  letter-spacing: 0.07em;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (min-width: 744px) {
  .business-nav-hover::before {
    content: "";
    box-sizing: border-box;
    position: fixed;
    top: calc(7rem - 2px);
    left: 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity 0.5s ease 0s;
  }
  .business-nav {
    justify-content: end;
    align-items: center;
    position: fixed;
    top: calc(-7rem - 1px);
    left: 0;
    z-index: -50;
    width: 100%;
    height: 7rem;
    padding-top: 3rem;
    padding-right: 5vw;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: top 1s var(--transition-smooth) 0.3s;
  }
  .business-nav-hover:hover::before {
    opacity: 1;
    transition-delay: 0.5s;
  }
  .business-nav-hover:hover ul {
    top: -1px;
    transition-delay: 0s;
  }
  .business-nav-hover:hover li {
    opacity: 1;
    transition: opacity 1s ease;
    /* ↪️ マウスが乗ったとき（1 → 5 の順で出る） */
  }
  .business-nav-hover:hover li:nth-child(1) {
    transition-delay: 0.1s;
  }
  .business-nav-hover:hover li { /* 最初に出る */ }
  .business-nav-hover:hover li:nth-child(2) {
    transition-delay: 0.2s;
  }
  .business-nav-hover:hover li:nth-child(3) {
    transition-delay: 0.3s;
  }
  .business-nav-hover:hover li:nth-child(4) {
    transition-delay: 0.4s;
  }
  .business-nav-hover:hover li:nth-child(5) {
    transition-delay: 0.5s;
  }
  .business-nav-hover:hover li { /* 最後に出る */ }
  .hero-content {
    margin-top: -4vw;
  }
}
@media (max-width: 743px) {
  html {
    font-size: 75%;
  }
  .menu-icon {
    width: 3rem;
    height: 3rem;
    translate: 0.5em;
    text-box: normal;
  }
  .menu-icon::before {
    content: "\e5d2";
    font-family: "Material Symbols Outlined";
    font-size: 3rem;
    line-height: 1;
  }
  #menu-toggle:checked ~ header .menu-icon::before {
    content: "\e5cd";
  }
  nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -50;
    width: 100%;
    height: 0;
    padding-left: 3rem;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(20px);
    transition: all 1s var(--transition-smooth) 0.3s;
  }
  nav ul {
    flex-direction: column;
    align-items: start;
  }
  .business-nav {
    margin-left: 5vw;
    margin-top: 2rem;
    border-left: 1px solid transparent;
    transition: border-color 1s ease 0.5s;
  }
  nav li {
    padding-left: 5vw;
    opacity: 0;
    transition: opacity 0.5s ease 0s;
  }
  nav a {
    font-size: 1.25rem;
  }
  .cursor {
    color: var(--text-muted);
  }
  #menu-toggle:checked ~ header nav {
    height: 100vh;
    padding-top: 7rem;
    transition: all 1s var(--transition-smooth) 0s;
  }
  #menu-toggle:checked ~ header nav .business-nav {
    border-color: rgba(255, 255, 255, 0.4);
  }
  #menu-toggle:checked ~ header nav li {
    opacity: 1;
    transition: opacity 1s ease;
  }
  #menu-toggle:checked ~ header nav .global-nav li:nth-child(1) {
    transition-delay: 0.1s;
  }
  #menu-toggle:checked ~ header nav .global-nav li:nth-child(2) {
    transition-delay: 0.7s;
  }
  #menu-toggle:checked ~ header nav .global-nav li:nth-child(3) {
    transition-delay: 0.8s;
  }
  #menu-toggle:checked ~ header nav .business-nav li:nth-child(1) {
    transition-delay: 0.2s;
  }
  #menu-toggle:checked ~ header nav .business-nav li:nth-child(2) {
    transition-delay: 0.3s;
  }
  #menu-toggle:checked ~ header nav .business-nav li:nth-child(3) {
    transition-delay: 0.4s;
  }
  #menu-toggle:checked ~ header nav .business-nav li:nth-child(4) {
    transition-delay: 0.5s;
  }
  #menu-toggle:checked ~ header nav .business-nav li:nth-child(5) {
    transition-delay: 0.6s;
  }
  .to-top {
    display: none;
  }
  .hero-image {
    position: static;
  }
}
/* --------------------------------------------------
   BUSINESS
-------------------------------------------------- */
.business-section {
  margin: 8vw 5vw 4rem;
}

.section-label {
  text-align: center;
  margin: 4rem 0 6vw;
  font-size: 1.5rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
}

.grid-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

.business-card {
  width: 28rem;
  padding: 2rem;
  padding-bottom: 21rem;
  border-radius: 1.25rem;
  letter-spacing: 0.1em;
  transition: all 1s var(--transition-smooth);
  background-color: var(--bg-base-light);
  background-repeat: no-repeat;
  background-position: bottom;
  background-size: contain;
}
.business-card.video {
  background-image: url(https://www.sharaku.co.jp/image/business-icon-video.webp);
}
.business-card.live {
  background-image: url(https://www.sharaku.co.jp/image/business-icon-live.webp);
}
.business-card.webinar {
  background-image: url(https://www.sharaku.co.jp/image/business-icon-webinar.webp);
}
.business-card.cg {
  background-image: url(https://www.sharaku.co.jp/image/business-icon-cg.webp);
}
.business-card.system {
  background-image: url(https://www.sharaku.co.jp/image/business-icon-system.webp);
}

/* カードホバー時のダイナミック変化 */
.business-card:hover {
  transform: scale(1.02);
}

.biz-title {
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.biz-desc {
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* --------------------------------------------------
   SECTION
-------------------------------------------------- */
.article-area {
  margin: 8vw 5vw 4rem;
  letter-spacing: 0.07em;
}

.article-title {
  text-align: center;
  margin: 4rem 0 6vw;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.section-line {
  margin: 4rem 0 6vw;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  opacity: 0.5;
}

.section-area {
  max-width: 60rem;
  margin: 4rem auto 6vw;
}

.section-flex {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2rem 4vw;
  margin: 2.5rem 0;
  padding: 2.5rem 5vw;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
}
.section-flex div {
  flex: 1;
}
.section-flex .p {
  flex: 1.5;
}

.section-title {
  margin-bottom: 2rem;
  font-size: 1.75rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.section-text {
  font-size: 1.25rem;
}
.section-text.accent {
  margin-top: 2.5rem;
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75;
}

.inline-btn {
  display: inline-flex;
  vertical-align: 1.25px;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 3rem;
  margin: 0.5rem;
  margin-right: 0;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  font-weight: bold;
  font-size: 1rem;
  color: white;
  transition: all 0.25s ease;
}
.inline-btn span {
  margin: 0 0.25rem;
}
.inline-btn::after {
  content: "\f710";
  font-family: "Material Symbols Outlined";
  font-size: 1.5rem;
  line-height: 1;
  letter-spacing: normal;
}
.inline-btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  color: var(--text-main);
}

.image-grid {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin: 2.5rem 0;
}
.image-grid img {
  border-radius: 1.25rem;
}

.image-wrapper {
  margin: 2.5rem -5vw;
}

.image-caption {
  text-align: center;
  margin-top: 1.5rem;
  font-size: 1rem;
}

.image-arrow {
  position: relative;
  max-width: 28rem;
  margin: 6rem auto 0;
}
.image-arrow::after {
  content: "\e69d";
  font-family: "Material Symbols Outlined";
  font-size: 6rem;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: -6rem;
  left: calc(50% - 3rem);
}

@keyframes displayToggleOut {
  from {
    display: block;
  }
  to {
    display: none;
  }
}
.tab-content {
  animation: displayToggleOut 0.25s step-end forwards;
  opacity: 0;
  transition: opacity 0.25s ease;
  will-change: opacity; /* Safari対策 GPUに準備をさせる */
}

.tab-labels {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 28rem;
  height: 4rem;
  padding: calc(0.5rem - 1px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
  margin: 2rem auto 6vw;
}
.tab-labels::before {
  content: "";
  box-sizing: border-box;
  position: absolute;
  left: calc(0.5rem - 1px);
  width: calc(27rem / var(--tab-size));
  height: 3rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--text-main);
  transition: all 0.5s var(--transition-smooth);
}
.tab-labels label {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3rem;
  font-weight: bold;
  color: white;
  mix-blend-mode: difference;
  cursor: pointer;
  transition: color 0.25s ease;
}
.tab-labels label:hover {
  color: var(--text-main);
}

@keyframes displayToggleIn {
  from {
    display: none;
  }
  to {
    display: block;
  }
}
#tab-1:checked ~ main #tab-content-1,
#tab-2:checked ~ main #tab-content-2,
#tab-3:checked ~ main #tab-content-3 {
  animation: displayToggleIn 0.25s step-end forwards;
  opacity: 1;
}
@starting-style {
  #tab-1:checked ~ main #tab-content-1,
  #tab-2:checked ~ main #tab-content-2,
  #tab-3:checked ~ main #tab-content-3 {
    opacity: 0;
  }
}

#tab-1:checked ~ main .tab-labels::before {
  translate: 0;
}

#tab-2:checked ~ main .tab-labels::before {
  translate: calc(27rem / var(--tab-size));
}

#tab-3:checked ~ main .tab-labels::before {
  translate: calc(27rem / var(--tab-size) * 2);
}

.watermark {
  position: relative;
  z-index: 1;
}
.watermark::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background: url(https://www.sharaku.co.jp/image/cg-5-4-5.webp) no-repeat right bottom;
  background-size: contain;
  opacity: 0.2;
}

.data-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 1.25rem;
}

.data-list dl {
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 20rem;
  min-height: 4rem;
  padding: calc(0.5rem - 1px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
}

.data-list dt {
  min-width: 7rem;
  padding-left: 1.5rem;
}

.data-list dd {
  flex: 1;
  display: flex;
  align-items: center;
  min-height: 3rem;
  padding: calc(1rem - 1px) calc(2rem - 1px);
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
}

.data-list .column {
  flex-direction: column;
  align-items: stretch;
}
.data-list .column dt {
  margin: 1rem 0;
}
.data-list .column dd {
  padding: calc(1.5rem - 1px);
}

.modal-btn {
  cursor: pointer;
}

.modal-img {
  display: none;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  cursor: zoom-out;
  transition: opacity 0.5s ease;
}
.modal-img img {
  width: auto;
  height: auto;
  max-width: 75vw;
  max-height: 75vh;
}

#modal:checked ~ .modal-img {
  display: flex;
  opacity: 1;
}
@starting-style {
  #modal:checked ~ .modal-img {
    opacity: 0;
  }
}

/* --------------------------------------------------
   FORM
-------------------------------------------------- */
form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 4rem;
  font-size: 1.25rem;
}

form div,
form dl {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0;
  width: 100%;
  min-height: 4rem;
  padding: calc(0.5rem - 1px);
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
}
form div label,
form div dt,
form dl label,
form dl dt {
  min-width: 14rem;
  padding: 1rem 0;
  padding-left: 1.5rem;
}
form div input,
form div select,
form div textarea,
form div dd,
form dl input,
form dl select,
form dl textarea,
form dl dd {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  flex: 1;
  display: flex;
  align-items: center;
  min-width: 25rem;
  min-height: 3rem;
  padding: 0 calc(1.5rem - 1px);
  padding-bottom: 0.1em;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(0, 0, 0, 0.2);
  font-family: "M PLUS U", sans-serif;
  font-size: 1.25rem;
  color: var(--text-main);
  transition: all 0.25s ease;
}
form div ::-moz-placeholder, form dl ::-moz-placeholder {
  color: rgba(255, 255, 255, 0.2);
}
form div ::placeholder,
form dl ::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
form div input:focus,
form div select:focus,
form div textarea:focus,
form dl input:focus,
form dl select:focus,
form dl textarea:focus {
  border-color: var(--text-muted);
  outline: none; /* ブラウザ標準の枠を消す */
}
form div input:not(:-moz-placeholder):valid, form div textarea:not(:-moz-placeholder):valid, form dl input:not(:-moz-placeholder):valid, form dl textarea:not(:-moz-placeholder):valid {
  border-color: green;
}
form div input:user-valid,
form div input:not(:placeholder-shown):valid,
form div textarea:not(:placeholder-shown):valid,
form dl input:user-valid,
form dl input:not(:placeholder-shown):valid,
form dl textarea:not(:placeholder-shown):valid {
  border-color: green;
}
form div input:not(:-moz-placeholder):invalid, form div textarea:not(:-moz-placeholder):invalid, form dl input:not(:-moz-placeholder):invalid, form dl textarea:not(:-moz-placeholder):invalid {
  border-color: red;
}
form div input:user-invalid,
form div select:user-invalid,
form div textarea:user-invalid,
form div input:not(:placeholder-shown):invalid,
form div textarea:not(:placeholder-shown):invalid,
form dl input:user-invalid,
form dl select:user-invalid,
form dl textarea:user-invalid,
form dl input:not(:placeholder-shown):invalid,
form dl textarea:not(:placeholder-shown):invalid {
  border-color: red;
}
form div select:not(:invalid),
form dl select:not(:invalid) {
  border-color: green;
}

#comments {
  padding-top: calc(1rem - 1px);
}

.prefecture {
  position: relative;
  text-box: normal;
}
.prefecture::after {
  content: "\e5c5";
  font-family: "Material Symbols Outlined";
  font-size: 3rem;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  bottom: calc(0.5rem - 1px);
  right: calc(1rem - 1px);
}

input[type=submit],
input[type=reset] {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 10rem;
  height: 3rem;
  margin-top: 3rem;
  border-radius: 1.5rem;
  font-weight: bold;
  font-size: 1rem;
  color: var(--text-main);
  transition: all 0.25s ease;
  cursor: pointer;
}
input[type=submit]:hover,
input[type=reset]:hover {
  border-color: white;
}

input[type=submit] {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: green;
}

input[type=reset] {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: var(--bg-base-light);
}

form:invalid input[type=submit] {
  background-color: var(--bg-base);
  color: var(--text-muted);
  cursor: not-allowed; /* 禁止マーク */
  /* クリックイベントを完全に無効化する */
  pointer-events: none;
}

/* --------------------------------------------------
   RESPONSIVE
-------------------------------------------------- */
@media (min-width: 744px) {
  .image-wrapper img {
    border-radius: 1.25rem;
  }
  .table-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr;
    grid-template-rows: auto auto auto auto auto auto;
    gap: 1rem 0.5rem;
    padding-right: 0.5rem;
  }
  .column-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 4rem;
    margin: 0 0.25rem;
    border-radius: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-base-light);
    font-weight: bold;
  }
  .row-title {
    display: flex;
    align-items: center;
    gap: 0;
    position: relative;
    z-index: -1;
    margin-right: -0.5rem;
    margin-bottom: 0;
    padding: 1.5rem;
    padding-right: 74%;
    border-radius: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: var(--bg-base-light);
    font-size: 1rem;
    line-height: 1.75;
  }
  .row-title .title-nmb {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    font-size: 1.5rem;
    text-box: normal;
    line-height: 1;
  }
  .row-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    margin: 0.5rem 0;
    padding: calc(1.5rem - 1px) calc(1rem - 1px);
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
  }
  .row-text h4 {
    text-align: center;
  }
  .br-sp {
    display: none;
  }
}
@media (max-width: 743px) {
  .section-flex {
    flex-flow: column;
  }
  .column-title {
    display: none;
  }
  .row-title {
    margin-top: 4rem;
    line-height: 1.5;
  }
  .row-title .title-nmb {
    margin-right: 0.5rem;
    vertical-align: -0.5px;
  }
  .row-text {
    margin-top: 1rem;
  }
  .row-text h4 {
    font-size: 1.5rem;
  }
  .row-text p {
    font-size: 1.25rem;
  }
}/*# sourceMappingURL=style.css.map */