@charset "UTF-8";
/*########## Foundation ##########*/
:root {
  --font-family-base: Arial, "Hiragino Kaku Gothic Pro W3", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  --font-family-sefif: 游明朝, "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Hiragino Mincho Pro", HGS明朝E, メイリオ, Meiryo;
  --color-text: #333;
  --color-border-gray: #999;
  --color-brown: #482f1a;
  --color-beige: #b4783c;
  --color-red: #900;
  --font-size-small: 0.8125rem;
  --font-size-medium: 1rem;
  --font-size-large: clamp(1.125rem, calc(1.125rem + ((1vw - 7.68px) * 0.6944)), 1.3125rem);
  --font-size-xlarge: clamp(1.25rem, calc(1.25rem + ((1vw - 7.68px) * 1.3889)), 1.625rem);
  --font-size-xxlarge: clamp(1.375rem, 1.081rem + 1.47vw, 2rem);
  --line-height-base: 1.8;
  --line-height-small: 1.5;
  --font-size-heading-h1: clamp(1.375rem, 1.081rem + 1.47vw, 2rem);
  --font-size-heading-h2: clamp(1.25rem, calc(1.25rem + ((1vw - 7.68px) * 1.3889)), 1.625rem);
  --font-size-heading-h3: clamp(1.125rem, calc(1.125rem + ((1vw - 7.68px) * 0.6944)), 1.3125rem);
  --font-size-heading-h4: clamp(1.0625rem, calc(1.0625rem + ((1vw - 7.68px) * 0.463)), 1.1875rem);
  --font-size-heading-h5: clamp(1rem, calc(1rem + ((1vw - 7.68px) * 0.463)), 1.125rem);
  --font-size-heading-h6: clamp(1rem, calc(1rem + ((1vw - 7.68px) * 0.2315)), 1.0625rem);
}

@media screen and (min-width: 768px) {
  :root {
    --width-container: 1000px;
    --font-size-large: 1.3125rem;
    --font-size-xlarge: 1.625rem;
    --font-size-xxlarge: 2rem;
    --font-size-heading-h1: 2rem;
    --font-size-heading-h2: 1.625rem;
    --font-size-heading-h3: 1.3125rem;
    --font-size-heading-h4: 1.1875rem;
    --font-size-heading-h5: 1.125rem;
    --font-size-heading-h6: 1.0625rem;
  }
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  padding: 0;
  margin: 0;
  font-size: 100%;
  border: 0;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  word-break: break-word;
}

html {
  font-size: 100%;
}

body {
  font-family: var(--font-family-base);
  line-height: var(--line-height-base);
  color: var(--color-text);
  background: linear-gradient(to right, #f1bc6c 10%, rgb(252.0869565217, 241.0590062112, 224.4130434783) 40%, rgb(249.8695652174, 230.4472049689, 201.1304347826) 60%, #f1bc6c 90%);
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  body {
    min-width: 1040px;
  }
}

ul {
  list-style: none;
}

a {
  color: var(--color-red);
}

address,
em {
  font-style: normal;
}

pre,
code {
  font-size: 14px;
  background-color: #fff;
}

img {
  max-width: 100%;
  height: auto;
  font-size: inherit;
  line-height: 0;
  vertical-align: middle;
  border: 0;
}

sup,
sub {
  font-size: smaller;
}

a img {
  transition: opacity 0.3s;
}
a img:hover {
  opacity: 0.8;
}

table {
  border-collapse: collapse;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 0.25em;
  line-height: var(--line-height-small);
}

h1 {
  font-size: var(--font-size-heading-h1);
}

h2 {
  font-size: var(--font-size-heading-h2);
}

h3 {
  font-size: var(--font-size-heading-h3);
}

h4 {
  font-size: var(--font-size-heading-h4);
}

h5 {
  font-size: var(--font-size-heading-h5);
}

h6 {
  font-size: var(--font-size-heading-h6);
}

/*########## Layout ##########*/
.header {
  position: relative;
}
.header__bar {
  display: flex;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  line-height: 1;
  color: #fff;
  background-color: #000;
}
.header__bar-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 30px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .header__bar-inner {
    justify-content: space-between;
  }
}
@media screen and (min-width: 768px) {
  .header__bar-inner {
    width: 1040px;
    height: 40px;
    padding-right: 30px;
    padding-left: 30px;
  }
}
.header__bar-kabukiglasses {
  font-family: var(--font-family-sefif);
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .header__bar-kabukiglasses {
    margin-right: 1em;
    font-size: 1.625rem;
  }
}
.header__bar-kabukiglasses a {
  color: inherit;
  text-decoration: none;
}
.header__bar-kabukiglasses-en {
  font-family: var(--font-family-sefif);
  font-size: 1.1875rem;
}
@media screen and (min-width: 768px) {
  .header__bar-kabukiglasses-en {
    font-size: 1.625rem;
  }
}
.header__bar-catch {
  margin-top: 5px;
}
.header__bar-patent {
  padding: 0.2em 1em;
  margin-top: 5px;
  margin-left: auto;
  font-size: 0.625rem;
  white-space: nowrap;
  border: 1px solid #fff;
}
@media screen and (min-width: 768px) {
  .header__bar-patent {
    margin-left: 2em;
    font-size: 0.8125rem;
  }
}
.header__content {
  display: flex;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .header__content {
    height: 40px;
    padding-right: 15px;
    padding-left: 15px;
    border-bottom: 1px solid var(--color-brown);
  }
}
@media screen and (min-width: 768px) {
  .header__content {
    width: 1040px;
    padding-right: 30px;
    padding-left: 30px;
    margin: 10px auto;
  }
}
@media screen and (max-width: 767px) {
  .header__content-logo img {
    width: 150px;
  }
}
.header__content-catch {
  margin-right: 50px;
  font-family: var(--font-family-sefif);
}
@media screen and (min-width: 768px) {
  .header__content-catch {
    margin-left: 1em;
    font-size: 1.375rem;
    font-style: italic;
    color: #ae8249;
  }
}
.header__content-logo-santeplus {
  margin-left: auto;
}
.header__content-logo-santeplus img {
  height: 30px;
}
.header__utilities {
  position: absolute;
  top: 25px;
  right: 15px;
  display: flex;
  align-items: center;
  margin-left: auto;
}
.header__hamburger {
  font-size: 2.1875rem;
}

.footer {
  color: #fff;
  text-align: center;
  background: linear-gradient(to bottom, #0e0504, #330605);
}
.footer__inner {
  width: 100%;
  padding: 20px 15px;
  margin-top: 50px;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    width: 1040px;
    padding-left: 30px;
    margin-top: 80px;
    margin-right: auto;
    margin-left: auto;
    font-size: 0.875rem;
  }
}
.footer__social {
  display: flex;
  justify-content: center;
  margin-bottom: 15px;
}
.footer__social a {
  color: #fff;
  text-decoration: none;
}
.footer__social i {
  font-size: 1.875rem;
}
.footer__social span {
  margin-left: 10px;
}
.footer__social-item {
  margin: 0 10px;
}
.footer__social-item a {
  display: flex;
  align-items: center;
}
.footer__social-item--facebook i {
  color: #1877f2;
}
.footer__social-item--twitter i {
  color: #1da1f2;
}
.footer__social-item--instagram i {
  color: #d93177;
}
.footer__link {
  margin-bottom: 20px;
}
.footer__link a {
  color: #fff;
}
.footer__copyright {
  display: block;
}

.main {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media screen and (min-width: 768px) {
  .main {
    width: 1040px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
.main--wide {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
}

/*########## Project ##########*/
@media screen and (min-width: 768px) {
  .inner {
    margin-right: auto;
    margin-left: auto;
  }
  .inner.inner--800 {
    width: 800px;
  }
  .inner.inner--980 {
    width: 980px;
  }
  .inner.inner--1000 {
    width: 1000px;
  }
}
/* ======================================================================
   カラム
    例：class="col sp-col--2 sp-col--gutter10 col--3 col--gutter30" 前
    例：class="col col--sp-2 col--sp-gutter10 col--3 col--gutter30"

   ====================================================================== */
.col {
  display: grid;
}
@media screen and (max-width: 767px) {
  .col.col--sp-1 {
    grid-template-columns: repeat(1, 1fr);
  }
  .col.col--sp-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .col.col--sp-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .col.col--sp-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .col.col--sp-gutter0 {
    gap: 0;
  }
  .col.col--sp-gutter10 {
    gap: 10px;
  }
  .col.col--sp-gutter20 {
    gap: 20px;
  }
  .col.col--sp-gutter30 {
    gap: 30px;
  }
}
.col--2 {
  grid-template-columns: repeat(2, 1fr);
}
.col--3 {
  grid-template-columns: repeat(3, 1fr);
}
.col--4 {
  grid-template-columns: repeat(4, 1fr);
}
.col--5 {
  grid-template-columns: repeat(5, 1fr);
}
.col--6 {
  grid-template-columns: repeat(6, 1fr);
}
.col--gutter10 {
  gap: 10px;
}
.col--gutter20 {
  gap: 20px;
}
.col--gutter30 {
  gap: 30px;
}
.col--gutter40 {
  gap: 40px;
}
.col--gutter50 {
  gap: 50px;
}
.col--gutter60 {
  gap: 60px;
}
.col--gutter70 {
  gap: 70px;
}

.section {
  padding-top: 35px;
  padding-bottom: 35px;
}
@media screen and (min-width: 768px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.section--small {
  padding-top: 20px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .section--small {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}

.youtube {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list-disc {
  padding-left: 1.3em;
  list-style: disc;
}

.list-number {
  padding-left: 1.3em;
  list-style: decimal;
}

.heading-a {
  padding: 0.25em 1em;
  margin-bottom: 1em;
  font-size: var(--font-size-heading-h2);
  color: #fff;
  background-color: var(--color-brown);
}

.heading-b {
  padding: 0.25em 0;
  margin-bottom: 1em;
  font-size: var(--font-size-heading-h3);
  color: var(--color-accent);
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.heading-c {
  padding: 0.25em 1em;
  margin-bottom: 0.5em;
  font-size: var(--font-size-heading-h4);
  color: #fff;
  background-color: var(--color-beige);
}

.button {
  display: inline-block;
  padding: 0.5em 1em;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-brown);
}

@media screen and (max-width: 767px) {
  .globalnav {
    position: fixed;
    top: 0;
    right: -80%;
    z-index: 10;
    width: 80%;
    height: 100%;
    padding-right: 15px;
    padding-left: 15px;
    background-color: #fff;
    transition: all 0.3s;
  }
  .globalnav-wrapper.is-open {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.8);
  }
  .globalnav-wrapper.is-open .globalnav {
    right: 0;
  }
  .globalnav-wrapper.is-open .p-sp-globalnav__close {
    right: 90%;
    margin-right: -60px;
  }
  .globalnav__close {
    width: 28px;
    height: 28px;
    font-size: 1.75rem;
  }
  .globalnav__list {
    padding: 1em 0;
    margin-top: 20px;
    border-top: 1px solid var(--color-brown);
    border-bottom: 1px solid var(--color-brown);
  }
  .globalnav__list li + li {
    border-top: 1px dotted var(--color-brown);
  }
  .globalnav__list a {
    display: flex;
    padding: 0.3em 0.5em;
  }
  .globalnav__en {
    margin-left: 1em;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .globalnav {
    width: 1040px;
    padding-right: 30px;
    padding-left: 30px;
    margin-right: auto;
    margin-left: auto;
  }
  .globalnav__list {
    display: flex !important;
    justify-content: space-between;
    background-image: url("../.././../assets/img/common/globalnav-division.png"), url("../.././../assets/img/common/globalnav-division.png");
    background-repeat: no-repeat, no-repeat;
    background-position: left center, right center;
  }
  .globalnav li {
    flex: 1 1 100%;
    font-family: var(--font-family-sefif);
    font-weight: bold;
    line-height: 1;
    text-align: center;
    letter-spacing: -1px;
  }
  .globalnav li:not(:first-child) {
    background: url("../.././../assets/img/common/globalnav-division.png") no-repeat left center;
  }
  .globalnav li:nth-child(7) .globalnav__en {
    letter-spacing: -1px;
  }
  .globalnav li:last-child a {
    margin-left: -6px;
  }
  .globalnav a {
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 3px;
    margin-left: 3px;
    text-align: center;
    transition: opacity 0.3s;
  }
  .globalnav a:hover {
    opacity: 0.7;
  }
  .globalnav__en {
    display: block;
    margin-top: 0.5em;
    font-size: 0.8125rem;
    letter-spacing: 0;
  }
}
.globalnav a {
  display: block;
  color: var(--color-brown);
  text-decoration: none;
}
.globalnav__en {
  color: var(--color-beige);
}

.lang {
  display: flex;
}
@media screen and (max-width: 767px) {
  .lang {
    justify-content: center;
    margin-top: 10px;
  }
  .lang a {
    color: var(--color-text);
    text-decoration: underline;
  }
  .lang li {
    display: flex;
    align-items: center;
    margin: 0 5px;
  }
  .lang img {
    border: 1px solid var(--color-border-gray);
    border-radius: 5px;
  }
}
@media screen and (min-width: 768px) {
  .lang {
    margin-left: auto;
  }
  .lang a {
    color: #fff;
  }
  .lang li {
    margin-left: 10px;
  }
}
.lang span {
  margin: 0 5px;
  font-size: 0.875rem;
  font-style: italic;
  text-transform: uppercase;
}

.lang2 {
  position: relative;
  width: 30px;
  height: 30px;
  margin-right: 10px;
  margin-bottom: 2px;
  line-height: 1;
}
.lang2--ja {
  background-color: #03f;
}
.lang2--en {
  background-color: #c00;
}
.lang2 span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
}

.page-header {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 100px;
  margin-bottom: 10px;
  font-family: var(--font-family-sefif);
  line-height: 1;
  background: url(../../assets/img/common/kabukiglasses.png) no-repeat;
  background-position: left center;
  background-size: 80px;
}
@media screen and (min-width: 768px) {
  .page-header {
    width: 700px;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: 200px;
    margin-right: auto;
    margin-bottom: 10px;
    margin-left: auto;
    background-size: 180px;
  }
}
.page-header--no-img {
  padding-left: 0;
  background: none;
}
.page-header__title {
  margin-bottom: 0.25em;
  font-size: 1.25rem;
  color: var(--color-brown);
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .page-header__title {
    font-size: 2.5rem;
    letter-spacing: 2px;
  }
}
.page-header__title span {
  font-size: 0.875rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .page-header__title span {
    display: block;
    margin-top: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .page-header__title span {
    font-size: 1.5625rem;
    letter-spacing: 0;
  }
}
@media screen and (min-width: 768px) {
  .page-header__title--small {
    font-size: 1.875rem;
  }
}
.page-header__kabukiglasses {
  color: #fff;
  text-align: center;
  background: linear-gradient(to right, #4d1a1a 10%, #170d0c 50%, #4d1a1a 90%);
  background-color: var(--color-brown);
}
@media screen and (min-width: 768px) {
  .page-header__kabukiglasses {
    font-size: 1.4375rem;
  }
}

.totop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #fff;
  text-align: center;
  background-color: var(--color-red);
  border-radius: 50%;
  transition: opacity 0.3s;
}
.totop:hover {
  opacity: 0.8;
}

.home__keyvisual {
  position: relative;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .home__keyvisual {
    margin-right: -15px;
    margin-left: -15px;
  }
}
.home__patent {
  margin-top: 0.25em;
  font-size: 0.625rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .home__patent {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .home__banners {
    width: 940px;
    margin-right: auto;
    margin-left: auto;
  }
}

.faq__item + .faq__item {
  margin-top: 30px;
}
.faq__title {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: 1.0625rem;
  color: var(--color-brown);
  border-bottom: 1px dotted currentColor;
}
@media screen and (min-width: 768px) {
  .faq__title {
    font-size: 1.125rem;
  }
}
.faq__number {
  flex: 0 0 2.5em;
  font-family: var(--font-family-sefif);
  font-size: 1.25rem;
  color: var(--color-beige);
}
@media screen and (min-width: 768px) {
  .faq__number {
    font-size: 1.75rem;
  }
}

.media__feature-item {
  padding: 1em;
  background-color: #fff;
  box-shadow: 0 0 8px #ccc;
}
@media screen and (min-width: 768px) {
  .media__feature-item {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .media__feature-item-img {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .media__feature-item-img {
    flex: 0 0 auto;
    width: 120px;
    margin-right: 20px;
  }
}
.media__feature-item-content {
  line-height: var(--line-height-small);
}
@media screen and (max-width: 767px) {
  .media__feature-item-content {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .media__feature-item-content {
    font-size: 0.9375rem;
  }
}
.media__feature-item-title {
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  font-size: 0.9375rem;
  color: var(--color-brown);
  border-bottom: 1px dotted currentColor;
}
@media screen and (max-width: 767px) {
  .media__feature-item-title {
    margin-top: 1em;
  }
}
@media screen and (min-width: 768px) {
  .media__feature-item-title {
    font-size: 1.0625rem;
  }
}
.media__feature-item-link {
  margin-bottom: 0.5em;
}
.media__feature-item-link::before {
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  text-decoration: none;
  content: "\f0a9";
}
.media__item {
  padding: 0.5em;
  background-color: #fff;
  box-shadow: 0 0 8px #ccc;
}
@media screen and (min-width: 768px) {
  .media__item {
    display: flex;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .media__item-img {
    display: block;
    max-height: 100px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .media__item-img {
    flex: 0 0 80px;
    width: 80px;
    margin-right: 10px;
  }
}
.media__item-img--shadow {
  border: 1px solid #ccc;
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
}
.media__item-content {
  line-height: var(--line-height-small);
}
@media screen and (max-width: 767px) {
  .media__item-content {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .media__item-content {
    font-size: 0.875rem;
  }
}
.media__item-title {
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  color: var(--color-brown);
  border-bottom: 1px dotted currentColor;
}
@media screen and (max-width: 767px) {
  .media__item-title {
    margin-top: 1em;
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) {
  .media__item-title {
    font-size: 1rem;
  }
}
.media__item-info {
  margin-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  .media__item-info-link {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .media__item-info-link {
    margin-left: 1em;
  }
}
.media__item-info-link::before {
  margin-right: 0.5em;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  text-decoration: none;
  content: "\f0a9";
}

@media screen and (max-width: 767px) {
  .stores__intro a {
    max-width: 150px;
    margin-right: 20px;
  }
}
.stores__intro-banner {
  max-width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  background-color: #fff;
  border: 1px solid #000;
}
.stores__intro-text {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .stores__intro-text {
    font-size: 0.875rem;
  }
}
.stores__intro-text-products {
  padding: 0.25em 0.5em;
  margin-right: 0.5em;
  color: #fff;
  background-color: var(--color-beige);
}
.stores__shopinfo-title {
  padding: 0.2em 1em;
  margin-bottom: 1.5em;
  font-family: var(--font-family-sefif);
  font-size: 1.125rem;
  color: #fff;
  letter-spacing: 2px;
  background-color: var(--color-brown);
}
.stores__area-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .stores__area-nav {
    min-width: 380px;
  }
}
.stores__area-nav-wrapper {
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .stores__area-nav-wrapper {
    width: 100%;
  }
}
.stores__area-nav li {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20%;
  text-align: center;
}
.stores__area-nav li + li {
  border-left: 1px solid #fff;
}
.stores__area-nav a {
  width: 100%;
  padding: 0.5em;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .stores__area-nav a {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .stores__area-nav a::before {
    margin-right: 1em;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f0ab";
  }
}
.stores__area-title {
  padding: 0.5em 1em;
  margin-bottom: 1em;
  font-size: 1.25rem;
  line-height: 1;
  color: var(--color-brown);
  letter-spacing: 2px;
  border-bottom: 1px dotted currentColor;
  border-left: 3px solid currentColor;
}
.stores__item {
  display: flex;
  align-items: flex-start;
  font-size: 0.875rem;
  line-height: var(--line-height-small);
}
.stores__item-thumb {
  flex: 0 0 100px;
  margin-right: 20px;
  background-color: #fff;
}
.stores__item-title {
  margin-bottom: 0.5em;
  font-size: 1.125rem;
  color: var(--color-brown);
}
.stores__item-title span {
  font-size: 0.9375rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .stores__item-title span {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .stores__item-title span {
    margin-left: 1em;
  }
}
.stores__item-access {
  display: inline-block;
  padding: 0.2em 1em;
  margin-top: 0.5em;
  font-size: 0.625rem;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-brown);
  border-radius: 5px;
}
.stores__item-access::before {
  margin-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: bold;
  content: "\f054";
}

.stores-shopping__title {
  padding: 0.25em 1em;
  margin-bottom: 1em;
  font-size: 1.375rem;
  color: #fff;
  background-color: var(--color-brown);
}
.stores-shopping__price {
  margin-bottom: 1em;
  font-size: 1.875rem;
  font-weight: bold;
}
.stores-shopping__price span {
  margin-left: 0.5em;
  font-size: 0.5em;
}
.stores-shopping__buttons {
  padding-bottom: 1em;
  font-weight: bold;
  border-bottom: 1px solid var(--color-border-gray);
}

.corporate__title {
  position: relative;
  z-index: -1;
  padding-bottom: 0.25em;
  margin-bottom: 1em;
  font-size: 1.25rem;
  color: var(--color-brown);
  border-bottom: 4px solid var(--color-beige);
}
@media screen and (min-width: 768px) {
  .corporate__title {
    font-size: 1.375rem;
    letter-spacing: 2px;
  }
}
.corporate__title::before {
  position: absolute;
  bottom: -4px;
  left: 0;
  z-index: 1;
  width: 20%;
  height: 4px;
  content: "";
  background: currentColor;
}
.corporate__product-item-title {
  margin-top: 0.5em;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .corporate__product-item-title {
    font-size: 1.375rem;
  }
}
.corporate__member-item {
  font-size: 0.9375rem;
}
.corporate__member-item-title {
  margin-bottom: 0.5em;
  font-size: 0.8125rem;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .corporate__member-item-title {
    font-size: 0.9375rem;
  }
}
.corporate__member-item-title span {
  font-size: 1rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .corporate__member-item-title span {
    font-size: 1.125rem;
  }
}
.corporate__member-item-content {
  padding: 1em;
  margin-top: 1em;
  font-size: 0.8125rem;
  background-color: #fff;
  border: 1px dotted var(--color-brown);
}
.corporate__other-table {
  font-size: 0.75rem;
  border-top: 1px solid var(--color-brown);
  border-right: 1px solid var(--color-brown);
  border-left: 1px solid var(--color-brown);
}
.corporate__other-table th,
.corporate__other-table td {
  padding: 1em;
  border-bottom: 1px solid var(--color-brown);
}
.corporate__other-table th {
  width: 9em;
  color: #fff;
  vertical-align: top;
  background-color: var(--color-beige);
}
.corporate__other-table td {
  background-color: #fff;
}

.story__profile-title {
  margin-bottom: 1em;
  font-family: var(--font-family-sefif);
  font-size: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .story__profile-title {
    font-size: 1.25rem;
  }
}
.story__profile-title span {
  margin-right: 1em;
  margin-left: 1em;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .story__profile-title span {
    font-size: 1.4375rem;
  }
}
.story__profile-content {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .story__profile-content {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .story__profile img {
    width: 80px;
    margin-right: 15px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 768px) {
  .story__profile img {
    flex: 0 0 120px;
    margin-right: 30px;
  }
}
.story__chap-title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5em;
  font-family: var(--font-family-sefif);
  font-size: 1.125rem;
  color: var(--color-brown);
}
@media screen and (min-width: 768px) {
  .story__chap-title {
    font-size: 1.5rem;
  }
}
.story__chap-title img {
  margin-right: 1em;
}
@media screen and (max-width: 767px) {
  .story__chap-title img {
    width: 80px;
  }
}
@media screen and (min-width: 768px) {
  .story__content-media {
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 767px) {
  .story__content-media-content {
    margin-bottom: 30px;
    font-size: 0.9375rem;
  }
}
@media screen and (min-width: 768px) {
  .story__content-media-media {
    flex: 0 0 270px;
    margin-left: 50px;
  }
  .story__content-media-media--en {
    flex: 0 0 450px;
  }
}
.story__img {
  max-width: 270px;
  padding: 5px;
  font-size: 0.75rem;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.story__img img {
  border: 1px solid #ccc;
}
.story__img figcaption {
  margin-top: 0.25em;
  text-align: center;
}

.story-profile2__title {
  margin-bottom: 0.5em;
  font-size: var(--font-size-heading-h1);
  color: var(--color-brown);
  text-align: center;
  letter-spacing: 0.05em;
}
.story-profile2__subtitle {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  margin-bottom: 1em;
  font-size: var(--font-size-heading-h2);
  font-weight: bold;
  color: var(--color-brown);
}
.story-profile2__subtitle::before, .story-profile2__subtitle::after {
  display: block;
  width: 3em;
  height: 1px;
  content: "";
  background-color: var(--color-brown);
}
.story-profile2__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.25em;
  margin-bottom: 1em;
  font-weight: bold;
  text-align: center;
  border-top: 1px solid var(--color-text);
  border-bottom: 1px solid var(--color-text);
}
@media screen and (min-width: 768px) {
  .story-profile2__name {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .story-profile2__name span:last-child {
    margin-top: 0.2em;
  }
}
.story-profile2__name span:first-child {
  font-size: var(--font-size-heading-h2);
}
.story-profile2__name span:last-child {
  font-size: var(--font-size-heading-h3);
}
.story-profile2__photo-txt {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .story-profile2__photo-txt {
    flex-direction: row;
  }
}
.story-profile2__photo-txt ul {
  font-size: 1.25rem;
}
.story-profile2__photo-txt li + li {
  margin-top: 0.5em;
}
.story-profile2__photo-txt li {
  display: flex;
  gap: 0.5em;
  align-items: start;
}
.story-profile2__photo-txt li span:first-child {
  flex-shrink: 0;
}
.story-profile2__profile {
  display: grid;
  place-items: center;
  margin: 30px 0;
}
.story-profile2__profile ul {
  padding: 1em;
  border-left: 3px solid var(--color-brown);
}
.story-profile2__profile li + li {
  margin-top: 0.25em;
}
.story-profile2__profile li {
  display: flex;
  gap: 0.5em;
  align-items: start;
}
.story-profile2__profile li span:first-child {
  flex-shrink: 0;
}
.story-profile2__favorite {
  padding: 1.5em;
  background-color: #ebead7;
  border-radius: 10px;
}

.spec-features__title {
  padding: 0.2em 0.5em;
  margin-bottom: 0.5em;
  font-family: var(--font-family-sefif);
  color: #fff;
  letter-spacing: 0.05em;
  background-color: var(--color-brown);
}
.spec-features__item {
  padding: 0.5em;
  background-color: #fff;
  border: 1px solid var(--color-brown);
}
.spec-features__item:nth-child(even) {
  color: #fff;
  background-color: var(--color-brown);
}
.spec-features__item-title {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  font-family: var(--font-family-sefif);
  font-size: 1.25rem;
  font-weight: bold;
}
.spec-features__item-body {
  font-size: 0.8125rem;
  line-height: 2;
}

.spec-chart__table {
  width: 100%;
  background-color: #fff;
  border: 1px solid var(--color-brown);
}
.spec-chart__table tr:not(:last-child) th,
.spec-chart__table tr:not(:last-child) td {
  border-bottom: 1px solid var(--color-brown);
}
.spec-chart__table th {
  color: #fff;
  background-color: var(--color-beige);
}
.spec-chart__table th,
.spec-chart__table td {
  width: 50%;
  padding: 0.5em;
}

@media screen and (max-width: 767px) {
  .spec-chart__table:not(.spec-chart__table--first) {
    border-top: 0;
  }
}
.baseball {
  padding-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .baseball {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.baseball__title-a {
  padding: 0.2em 1em;
  font-size: 1.125rem;
  color: #fff;
  background-color: var(--color-red);
}
@media screen and (min-width: 768px) {
  .baseball__title-a {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}
.baseball__title-a i {
  margin-right: 1em;
}
.baseball__catch {
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  font-family: var(--font-family-sefif);
  font-size: 1.25rem;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .baseball__catch {
    font-size: 2.5rem;
  }
}
.baseball__points-item {
  position: relative;
}
.baseball__points-watch {
  position: absolute;
  top: -10px;
  left: -7px;
  padding: 0.5em 0.5em 0.5em 0.75em;
  line-height: 1;
  color: #fff;
  background-color: #e83b18;
  box-shadow: 5px 5px 2px 1px rgba(0, 0, 0, 0.5);
  transform: skewY(-10deg);
}
@media screen and (min-width: 768px) {
  .baseball__points-watch {
    font-size: 1.125rem;
  }
}
.baseball__points-point {
  padding: 0.5em 1em;
  margin-top: 0.5em;
  font-weight: bold;
  background-color: #ff6;
}
@media screen and (min-width: 768px) {
  .baseball__points-point {
    text-align: center;
    transform: skew(20deg);
  }
  .baseball__points-point span {
    display: block;
    transform: skew(-20deg);
  }
}
.baseball__comment-balloon {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
  padding: 1em;
  margin: 1.5em 0;
  font-size: 16px;
  background: #fff;
  border: solid 3px var(--color-border-gray);
}
.baseball__comment-balloon::before {
  position: absolute;
  bottom: -24px;
  left: 50%;
  z-index: 2;
  margin-left: -15px;
  content: "";
  border: 12px solid transparent;
  border-top: 12px solid #fff;
}
.baseball__comment-balloon::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 1;
  margin-left: -17px;
  content: "";
  border: 14px solid transparent;
  border-top: 14px solid var(--color-border-gray);
}
@media screen and (min-width: 768px) {
  .baseball__zoom-content-img {
    display: flex;
  }
}
.baseball__zoom-content-img-content {
  display: flex;
  align-items: center;
  padding: 1em;
  line-height: 2;
  border: 3px solid var(--color-red);
  border-radius: 10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
}
.baseball__zoom-content-img-content span {
  border-bottom: dashed 2px var(--color-border-gray);
}
@media screen and (max-width: 767px) {
  .baseball__zoom-content-img-img {
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  .baseball__zoom-content-img-img {
    flex: 0 0 600px;
    margin-left: 30px;
  }
}

.meister-about {
  padding: 1em;
  border: 3px double var(--color-beige);
}
.meister-about__title {
  margin-bottom: 0.5em;
  color: var(--color-brown);
  border-bottom: 1px solid var(--color-brown);
}
@media screen and (min-width: 768px) {
  .meister-about__title {
    font-size: 1.25rem;
  }
}
.meister-about__rank {
  padding-left: 1.3em;
  list-style: disc;
}

.meister-title-a {
  margin-bottom: 1em;
  color: var(--color-brown);
  text-align: center;
  border-bottom: 1px solid currentColor;
}
@media screen and (min-width: 768px) {
  .meister-title-a {
    font-size: 1.875rem;
    letter-spacing: 2px;
  }
}
.meister-title-a span {
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .meister-title-a span {
    font-size: 1.4375rem;
    letter-spacing: 1px;
  }
}

.tenken-casestudy {
  padding: 30px;
  background-color: #fff;
  border: 1px solid var(--color-brown);
}
.tenken-casestudy__item + .tenken-casestudy__item {
  margin-top: 1em;
}
.tenken-casestudy__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 15px;
}

@media screen and (min-width: 768px) {
  .tenken-casestudy__item-content {
    margin-left: 8.5em;
    font-size: 1.0625rem;
  }
}
.products-heading {
  margin-bottom: 1em;
  font-family: var(--font-family-sefif);
  line-height: var(--line-height-small);
  color: var(--color-brown);
}
.products-heading h2 {
  font-size: var(--font-size-xxlarge);
}
.products-heading p {
  font-size: var(--font-size-large);
}

.products-frame {
  padding: 2em;
  border: 3px double var(--color-brown);
}

.products-features__item + .products-features__item {
  margin-top: 1.5em;
}
.products-features__title {
  padding: 0.25em 1em;
  margin-bottom: 0.75em;
  font-family: var(--font-family-sefif);
  color: #fff;
  background-color: var(--color-brown);
}

.products-attn {
  padding: 1em 1.5em;
  background-color: rgba(255, 255, 255, 0.7);
  border: 2px solid var(--color-beige);
}
.products-attn__title {
  padding-bottom: 0.25em;
  margin-bottom: 0.5em;
  border-bottom: 2px solid var(--color-beige);
}

.takarazuka-title {
  padding: 0.5em;
  margin-bottom: 1em;
  font-family: var(--font-family-sefif);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  background: linear-gradient(to right, var(--color-brown), var(--color-brown));
}

.takarazuka-strap__sumire {
  color: #3f3db8;
}

.eyeglasses {
  padding: 1em;
  font-size: 0.875rem;
  color: #fff;
  background-color: var(--color-brown);
  border: 1px solid var(--color-brown);
}
.eyeglasses__title {
  margin-bottom: 0.5em;
  font-size: var(--font-size-large);
}
@media screen and (min-width: 768px) {
  .eyeglasses__title {
    font-size: 1.25rem;
  }
}
.eyeglasses__title i {
  margin-right: 1em;
  color: var(--color-red);
}

.kg-theatre {
  background: url(../../assets/img/spec/bg-theatre.png) no-repeat top center;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .kg-theatre {
    margin-right: -15px;
    margin-left: -15px;
  }
}
@media screen and (max-width: 767px) {
  .kg-theatre__inner {
    padding: 15px;
  }
}
@media screen and (min-width: 768px) {
  .kg-theatre__inner {
    width: 800px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-right: auto;
    margin-left: auto;
  }
}
.kg-theatre__heading {
  padding: 1em;
  margin-bottom: 15px;
  font-family: var(--font-family-sefif);
  color: #fff;
  text-align: center;
  background-color: var(--color-brown);
}
.kg-theatre__title {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .kg-theatre__title {
    font-size: 1.875rem;
  }
}

.shops {
  padding: 1em;
  background-color: var(--color-brown);
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
}
@media screen and (min-width: 768px) {
  .shops {
    padding: 1em 2em 2em;
  }
}
.shops__title {
  margin-bottom: 0.25em;
  font-size: 1.125rem;
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
}
@media screen and (min-width: 768px) {
  .shops__title {
    font-size: 1.4375rem;
    letter-spacing: 2px;
  }
}
.shops__list {
  padding: 1em;
  background-color: #fff;
  border: 3px solid var(--color-red);
  border-radius: 20px;
}
.shops__item {
  display: inline-block;
}
.shops__item--shop span {
  color: var(--color-red);
}
.shops__item--theatre span {
  color: #0e97ac;
}

.tips {
  padding: 30px;
  background-color: #fff;
  border: 1px solid var(--color-brown);
}
.tips__title {
  padding: 0.25em 0;
  margin-bottom: 1em;
  font-size: var(--font-size-xlarge);
  color: var(--color-brown);
  text-align: center;
  letter-spacing: 0.05em;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}
.tips__item {
  border: 1px solid var(--color-brown);
}
.tips__item-title {
  position: relative;
  padding: 0.5em;
  padding-left: 40px;
  margin-bottom: 0.5em;
  font-family: var(--font-family-sefif);
  font-size: fz(20);
  color: #fff;
  text-align: center;
  background-color: var(--color-brown);
}
.tips__item-title span {
  position: absolute;
  top: -10px;
  left: -10px;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  background-color: var(--color-red);
  border-radius: 50%;
}
.tips__content {
  padding: 5px 10px;
  font-size: 0.9375rem;
}
.tips__img {
  margin-top: 30px;
  text-align: center;
}
.tips__img img {
  max-height: 150px;
}

.scene-nav {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .scene-nav {
    min-width: 600px;
  }
}
.scene-nav-wrapper {
  overflow-x: auto;
}
@media screen and (max-width: 767px) {
  .scene-nav-wrapper {
    width: 100%;
  }
}
.scene-nav li {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.scene-nav li + li {
  border-left: 1px solid #fff;
}
.scene-nav a {
  width: 100%;
  padding: 0.5em;
  color: #fff;
  text-decoration: none;
  background-color: var(--color-red);
}
@media screen and (max-width: 767px) {
  .scene-nav a {
    font-size: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .scene-nav a::before {
    margin-right: 0.5em;
    font-family: "Font Awesome 5 Free";
    font-weight: bold;
    content: "\f0ab";
  }
}

.scene-frame {
  margin: 20px auto;
  border: 10px solid;
  border-image-source: url("../../../../assets/img/guide/frame.png");
  border-image-slice: 33%;
  border-image-width: 25px;
  border-image-repeat: repeat;
}
@media screen and (min-width: 768px) {
  .scene-frame {
    padding: 20px;
    border-image-width: 50px;
  }
}
.scene-frame__inner {
  padding: 15px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .scene-frame__inner {
    padding: 50px;
  }
}
.scene-frame__title {
  padding: 0.5em;
  margin-bottom: 1em;
  font-family: var(--font-family-sefif);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  background: linear-gradient(to right, var(--color-brown), var(--color-brown));
}
.scene-frame__title span {
  font-size: var(--font-size-medium);
}
.scene-frame__lead {
  margin-bottom: 1em;
  font-family: var(--font-family-sefif);
  font-size: var(--font-size-large);
  font-weight: bold;
}
.scene-frame__profile {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .scene-frame__profile {
    flex-direction: row;
  }
}
.scene-frame__profile img {
  width: 80px;
  border: 1px dotted var(--color-border-gray);
}
.scene-frame__balloon {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 7px 10px;
  font-size: 0.75rem;
  color: #5458f4;
  text-align: center;
  background: #fff;
  border: solid 3px currentColor;
}
@media screen and (min-width: 768px) {
  .scene-frame__balloon {
    font-size: 0.875rem;
  }
}
.scene-frame__balloon::before {
  position: absolute;
  bottom: -24px;
  left: 50%;
  z-index: 2;
  margin-left: -15px;
  content: "";
  border: 12px solid transparent;
  border-top: 12px solid #fff;
}
.scene-frame__balloon::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 1;
  margin-left: -17px;
  content: "";
  border: 14px solid transparent;
  border-top: 14px solid currentColor;
}
.scene-frame__horserace-golf {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .scene-frame__horserace-golf {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .scene-frame__horserace-golf-horserace {
    padding-bottom: 1em;
    margin-bottom: 20px;
    border-bottom: 1px dotted var(--color-border-gray);
  }
}
@media screen and (min-width: 768px) {
  .scene-frame__horserace-golf-horserace {
    display: flex;
    flex: 0 0 520px;
    padding-right: 20px;
    margin-right: 20px;
    border-right: 1px solid var(--color-border-gray);
  }
}
@media screen and (max-width: 767px) {
  .scene-frame__horserace-golf-horserace-img {
    margin-bottom: 0.5em;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .scene-frame__horserace-golf-horserace-img {
    flex: 0 0 150px;
    margin-right: 20px;
  }
}
.scene-frame__horserace-golf-horserace-name {
  font-size: 1.125rem;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .scene-frame__horserace-golf-horserace-name {
    font-size: 1.25rem;
  }
}
.scene-frame__horserace-golf-horserace-catch {
  margin-bottom: 0.5em;
  font-weight: bold;
  color: var(--color-red);
}
.scene-frame__horserace-golf-golf {
  display: flex;
}
.scene-frame__horserace-golf-golf-img {
  flex: 0 0 100px;
  margin-right: 20px;
}
@media screen and (min-width: 768px) {
  .scene-frame__horserace-golf-golf-img {
    flex: 0 0 100px;
    margin-right: 20px;
  }
}
.scene-frame__birder {
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  .scene-frame__birder {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .scene-frame__birder-img {
    margin-right: 20px;
  }
}
.scene-frame__comment-title {
  display: flex;
  align-items: center;
  padding: 0.25em 1em;
  font-size: 1.125rem;
  font-weight: bold;
  line-height: var(--line-height-small);
  color: #fff;
}
@media screen and (min-width: 768px) {
  .scene-frame__comment-title {
    font-size: 1.25rem;
    letter-spacing: 2px;
  }
}
.scene-frame__comment-title--sports {
  background-color: #025500;
}
.scene-frame__comment-title img {
  flex: 0 0 30px;
  width: 30px;
  margin-right: 1em;
}
.scene-frame__comment-title img {
  margin-top: -5px;
}
.scene-frame__comment-balloon {
  position: relative;
  box-sizing: border-box;
  display: inline-block;
  min-width: 120px;
  max-width: 100%;
  padding: 1em;
  margin: 1.5em 0;
  font-size: 16px;
  background: #fff;
  border: solid 3px var(--color-border-gray);
}
.scene-frame__comment-balloon::before {
  position: absolute;
  bottom: -24px;
  left: 50%;
  z-index: 2;
  margin-left: -15px;
  content: "";
  border: 12px solid transparent;
  border-top: 12px solid #fff;
}
.scene-frame__comment-balloon::after {
  position: absolute;
  bottom: -30px;
  left: 50%;
  z-index: 1;
  margin-left: -17px;
  content: "";
  border: 14px solid transparent;
  border-top: 14px solid var(--color-border-gray);
}

.customer-comment {
  padding: 1em;
  text-align: center;
  background-color: #fff;
  border: 3px double var(--color-red);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
.customer-comment__title {
  padding: 0.25em 1em;
  margin-bottom: 0.5em;
  color: #fff;
  background-color: var(--color-red);
}
.customer-comment__title span {
  font-size: 0.8em;
  font-weight: normal;
}
.customer-comment img {
  width: min(100%, 700px);
}

.theatres {
  padding: 20px 30px;
  text-align: center;
  background-color: #fff;
  border: 1px solid var(--color-beige);
}
.theatres__title {
  padding: 0.2em;
  margin-bottom: 1em;
  color: #fff;
  background-color: var(--color-beige);
}

.kg-vs-normal__title {
  margin-bottom: 1em;
  color: var(--color-brown);
  text-align: center;
  border-bottom: 1px solid currentColor;
}

.strap-tips {
  padding: 30px;
  background-color: #fff;
}
.strap-tips__title {
  padding: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  text-align: center;
  background-color: var(--color-brown);
}
.strap-tips__catch {
  margin-bottom: 1em;
  font-size: var(--font-size-xlarge);
  font-weight: bold;
  text-align: center;
}

.strap-attachment-guidelines {
  padding: 30px;
  background-color: #fff;
}
.strap-attachment-guidelines__title {
  padding: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  text-align: center;
  background-color: var(--color-brown);
}

.before-using-kg {
  padding: 30px;
  background-color: #fff;
}
.before-using-kg__title {
  padding: 0.25em;
  margin-bottom: 1em;
  color: #fff;
  text-align: center;
  background-color: var(--color-brown);
}

@media screen and (max-width: 767px) {
  .u-pc-only {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none !important;
  }
}
/* =====================
    margin / padding
===================== */
.u-pt-0 {
  padding-top: 0 !important;
}

.u-pb-0 {
  padding-bottom: 0 !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mb-0 {
  margin-bottom: 0 !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

.u-mt-30 {
  margin-top: 30px !important;
}

.u-mb-30 {
  margin-bottom: 30px !important;
}

.u-mt-50 {
  margin-top: 50px !important;
}

.u-mb-50 {
  margin-bottom: 50px !important;
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mt-05em {
  margin-top: 0.5em !important;
}

.u-mb-05em {
  margin-bottom: 0.5em !important;
}

.u-mt-2em {
  margin-top: 2em !important;
}

.u-mb-2em {
  margin-bottom: 2em !important;
}

.u-mt-3em {
  margin-top: 3em !important;
}

.u-mb-3em {
  margin-bottom: 3em !important;
}

@media screen and (max-width: 767px) {
  .u-sp-pt-0 {
    padding-top: 0 !important;
  }
  .u-sp-pb-0 {
    padding-bottom: 0 !important;
  }
  .u-sp-mt-0 {
    margin-top: 0 !important;
  }
  .u-sp-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-sp-mt-10 {
    margin-top: 10px !important;
  }
  .u-sp-mb-10 {
    margin-bottom: 10px !important;
  }
  .u-sp-mt-20 {
    margin-top: 20px !important;
  }
  .u-sp-mb-20 {
    margin-bottom: 20px !important;
  }
  .u-sp-mt-30 {
    margin-top: 30px !important;
  }
  .u-sp-mb-30 {
    margin-bottom: 30px !important;
  }
  .u-sp-mt-50 {
    margin-top: 50px !important;
  }
  .u-sp-mb-50 {
    margin-bottom: 50px !important;
  }
  .u-sp-mt-1em {
    margin-top: 1em !important;
  }
  .u-sp-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-sp-mt-2em {
    margin-top: 2em !important;
  }
  .u-sp-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-sp-mt-3em {
    margin-top: 3em !important;
  }
  .u-sp-mb-3em {
    margin-bottom: 3em !important;
  }
}
@media screen and (min-width: 768px) {
  .u-pc-pt-0 {
    padding-top: 0 !important;
  }
  .u-pc-pb-0 {
    padding-bottom: 0 !important;
  }
  .u-pc-mt-0 {
    margin-top: 0 !important;
  }
  .u-pc-mb-0 {
    margin-bottom: 0 !important;
  }
  .u-pc-mt-10 {
    margin-top: 10px !important;
  }
  .u-pc-mb-10 {
    margin-bottom: 10px !important;
  }
  .u-pc-mt-20 {
    margin-top: 20px !important;
  }
  .u-pc-mb-20 {
    margin-bottom: 20px !important;
  }
  .u-pc-mt-30 {
    margin-top: 30px !important;
  }
  .u-pc-mb-30 {
    margin-bottom: 30px !important;
  }
  .u-pc-mt-50 {
    margin-top: 50px !important;
  }
  .u-pc-mb-50 {
    margin-bottom: 50px !important;
  }
  .u-pc-mt-1em {
    margin-top: 1em !important;
  }
  .u-pc-mb-1em {
    margin-bottom: 1em !important;
  }
  .u-pc-mt-2em {
    margin-top: 2em !important;
  }
  .u-pc-mb-2em {
    margin-bottom: 2em !important;
  }
  .u-pc-mt-3em {
    margin-top: 3em !important;
  }
  .u-pc-mb-3em {
    margin-bottom: 3em !important;
  }
}
/* =====================
    text-indent
===================== */
.u-ti-1em {
  padding-left: 1em;
  text-indent: -1em;
}

.u-ti-3em {
  padding-left: 3em;
  text-indent: -3em;
}

.u-fs-small {
  font-size: var(--font-size-small) !important;
}

.u-fs-medium {
  font-size: var(--font-size-medium) !important;
}

.u-fs-large {
  font-size: var(--font-size-large) !important;
}

.u-fs-xlarge {
  font-size: var(--font-size-xlarge) !important;
}

.u-fs-xxlarge {
  font-size: var(--font-size-xxlarge) !important;
}

.u-fw-bold {
  font-weight: bold;
}

/* =====================
    color
===================== */
.u-red {
  color: var(--color-red);
}

/* =====================
    text-align
===================== */
.u-ta-center {
  text-align: center;
}

.u-ta-right {
  text-align: right;
}

/* =====================
    その他
===================== */
.u-nowrap {
  white-space: nowrap;
}