@charset "UTF-8";
html {
  font-size: 16px;
}

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

body {
  margin: 0;
  padding: 0;
  background: #fff;
  line-height: 1.7;
  color: #1c1c1c;
  font-family: Roboto, "Noto sans JP", sans-serif;
  font-weight: 400;
  font-size: 1rem;
}

section {
  width: 100%;
}

main {
  display: block;
  text-align: center;
  margin: 0 auto;
  min-height: 800px;
}

a {
  color: #e73828;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  color: #e73828;
  opacity: 0.8;
}

p.quote {
  font-size: 0.75rem;
  font-style: oblique;
  color: #aaa;
  text-align: right;
}

h2,
h3 {
  font-weight: 500;
}

h5 {
  font-size: 0.75rem;
}

li {
  list-style: none;
}

.select-styled {
  display: inline-block;
  position: relative;
}
.select-styled::before {
  content: "\e313";
  font-family: "Material Symbols Outlined";
  font-size: 1.125rem;
  line-height: 1;
  color: #000;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

select {
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  text-overflow: "";
  background: none #fff;
  vertical-align: middle;
  line-height: 1.428;
  font-size: inherit;
  color: inherit;
  padding: 4px 30px 4px 10px;
  border: 1px solid #ccc !important;
  border-radius: 3px;
}

.sp-img {
  display: none;
}

.anchor-offset {
  padding-top: 150px;
  margin-top: -150px;
  pointer-events: none !important;
}
@media screen and (max-width: 768px) {
  .anchor-offset {
    padding-top: 90px;
    margin-top: -90px;
  }
}

header {
  display: block;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
  border-top: 8px solid #e73828;
  border-bottom: 6px solid #e73828;
}
header.fixed {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
}
header .nav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  header .nav-sp {
    display: flex;
    justify-content: center;
  }
}
header .header_logo {
  display: block;
  padding: 20px 20px 0;
}
@media screen and (max-width: 768px) {
  header .header_logo {
    display: flex;
    align-items: center;
    padding: 0 20px;
  }
}
header .header_logo img {
  width: 20%;
}
@media screen and (max-width: 768px) {
  header .header_logo img {
    width: max(50%, 240px);
  }
}

nav.header_nav ul.nav_area {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
nav.header_nav ul.nav_area li {
  position: relative;
  box-sizing: border-box;
  padding: 2px 20px;
  border-right: 1px solid #1c1c1c;
  font-weight: 500;
}
nav.header_nav ul.nav_area li:last-child {
  border-right: none;
  margin-right: 10px;
}
nav.header_nav ul.nav_area li a.language::after {
  content: "";
  position: absolute;
  margin-left: 5px;
  top: 15px;
  border: 6px solid transparent;
  border-top: 7px solid #8fc31f;
}

@media screen and (max-width: 768px) {
  /* header(SP) */
  #header_nav-sp {
    position: fixed;
    z-index: 999;
    top: 0;
    right: -120%;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.6s;
  }
  #header_nav-sp.panelactive {
    right: 0;
  }
  /*ナビゲーションの縦スクロール*/
  #header_nav-sp.panelactive #nav_list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  /*ナビゲーション*/
  #nav_list ul {
    margin: 0;
    padding: 0;
  }
  #nav_list ul.msta_menu {
    margin-top: 20px;
    padding: 20px 0;
    border: 1px solid #999;
    border-radius: 5px;
  }
  #nav_list ul.msta_menu li:last-child {
    margin-bottom: 0;
  }
  #nav_list ul.msta_menu li a {
    padding: 5px 0;
    font-size: 1rem;
  }
  #nav_list > ul {
    position: absolute;
    z-index: 999;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #header_nav-sp li {
    list-style: none;
    text-align: center;
    margin-bottom: 10px;
  }
  #header_nav-sp li a {
    text-decoration: none;
    padding: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: bold;
    font-size: 1.125rem;
  }
  /* menu_btn(SP) */
  .openbtn {
    display: block;
    position: relative;
    background-color: #e73828;
    z-index: 9999;
    cursor: pointer;
    width: 140px;
    height: 70px;
  }
  .openbtn span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background-color: #fff;
    width: 45%;
  }
  .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .openbtn span:nth-of-type(3)::after {
    content: "Menu"; /*3つ目の要素のafterにMenu表示を指定*/
    position: absolute;
    top: 5px;
    left: 0;
    color: #fff;
    font-size: 0.625rem;
    text-transform: uppercase;
  }
  .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }
  .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .openbtn.active span:nth-of-type(3)::after {
    content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
    top: 5px;
    left: 10px;
  }
}
/* 共通 */
.box-all {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
}

main.bg_brown {
  background-color: #f8f6f4;
}
main.bg_pink {
  background: repeating-linear-gradient(#fdf3f4, #fdf3f4 20px, #ffeeee 20px, #ffeeee 40px);
}

/* パンくず */
.Breadcrumb {
  display: block;
  padding: 5px 2em;
}
.Breadcrumb-ListGroup {
  display: flex;
  flex-wrap: wrap;
}
.Breadcrumb-ListGroup > * + * {
  margin-left: 0.5em;
}
.Breadcrumb-ListGroup > * + *::before {
  content: ">";
  margin-left: 0.75em;
  margin-right: 0.75em;
}
.Breadcrumb-ListGroup-Item-Link {
  color: #1c1c1c;
}

/* 各見出し h1 */
div.main_tit {
  display: block;
  position: relative;
  box-sizing: border-box;
  /* border-top: 4px solid #717171; */
}

div.main_tit.pink {
  background-color: #eb636d;
}

div.main_tit.purple {
  background-color: #8a8ca7;
}

div.main_tit.blue {
  background-color: #6a82c0;
}

div.main_tit h1.base {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  width: 85%;
  text-align: left;
  font-weight: 500;
  font-size: 1.75rem;
  letter-spacing: 0.15em;
  color: #fff;
  padding: 15px 10px 15px 45px;
}

div.main_tit h1.base::before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  background-image: url("../img/common/tit_icon.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 30px;
  height: 30px;
}

div.main_tit h1.base.pink {
  background: repeating-linear-gradient(90deg, #eb636d, #eb636d 20px, #cb6973 20px, #cb6973 40px);
}

div.main_tit h1.base.purple {
  background: repeating-linear-gradient(90deg, #8a8ca7, #8a8ca7 20px, #6b6ea2 20px, #6b6ea2 40px);
}

div.main_tit h1.base.blue {
  background: repeating-linear-gradient(90deg, #6a82c0, #6a82c0 20px, #677498 20px, #677498 40px);
}

@media screen and (max-width: 768px) {
  main {
    max-width: 100%;
  }
  .pc-img {
    display: none;
  }
  .sp-img {
    display: inline-block;
    width: 100%;
  }
  /*=== inc（all-sp） =================================*/
  /* パンくず */
  .Breadcrumb {
    display: block;
    padding: 5px 0.5em;
  }
  /* 各見出し h1（SP） */
  /*=== float_btn(SP) =================================*/
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .Breadcrumb {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .Breadcrumb-ListGroup > * + *::before {
    content: ">";
    margin-left: 0.75em;
    margin-right: 0.75em;
  }
  div.main_tit h1.base {
    width: 90%;
    padding: 15px 10px 15px;
    font-size: 1.25rem;
  }
  #page_top {
    bottom: 10px;
    right: -110px;
  }
  #page_top img {
    width: 40%;
  }
}
footer {
  font-size: 0.75rem;
  background-color: #eb636d;
}
footer .footer_top {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 40px 15px;
}
footer .footer_top .footer_nav_area {
  display: block;
  box-sizing: border-box;
}
footer .footer_top .footer_nav_area .nav_list_footer {
  display: block;
  box-sizing: border-box;
  text-align: left;
}
footer .footer_top .footer_nav_area .nav_list_footer:first-child ul.nav_list {
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  margin-bottom: 20px;
  font-size: 1rem;
}
footer .footer_top .footer_nav_area .nav_list_footer .nav_tit {
  display: block;
  color: #faf3a4;
  font-weight: bold;
  font-size: 1rem;
}
footer .footer_top .footer_nav_area .nav_list_footer ul.nav_list {
  display: flex;
  gap: 20px;
  justify-content: center;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 400;
  margin: 0;
  padding: 0;
}
footer .footer_top .footer_nav_area .nav_list_footer ul.nav_list li a:hover {
  color: #faf3a4;
}
footer .footer_top .footer_sns_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .footer_top .footer_sns_area .footer_logo img {
  width: 40%;
}
footer .footer_top .footer_sns_area .footer_sns {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_top .footer_sns_area .footer_sns li.icon {
  padding-right: 20px;
}
footer .footer_top .footer_sns_area .footer_sns li.icon img {
  width: 80px;
  height: 80px;
}
footer .footer_top .footer_sns_area .footer_sns li.sns {
  padding-right: 20px;
}
footer .footer_top .footer_sns_area .footer_sns li.sns img {
  width: 50px;
  height: 50px;
}
footer .copyright {
  width: 100%;
  color: #fff;
  background-color: #717171;
  padding: 10px;
}

@media screen and (max-width: 768px) {
  /* footer(SP) */
  footer .footer_top {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    margin: 0 auto;
    padding: 30px;
  }
  /* footer_nav */
  .footer_top .footer_nav_area {
    display: block;
    box-sizing: border-box;
  }
  .footer_nav_area .nav_list_footer {
    display: block;
    box-sizing: border-box;
    text-align: left;
  }
  .footer_nav_area .nav_list_footer .nav_tit {
    font-size: 1.125rem;
  }
  .footer_nav_area .nav_list_footer ul.nav_list {
    flex-wrap: wrap;
    font-size: 1rem;
  }
  /* footer_sns */
  .footer_top .footer_sns_area {
    display: flex;
    flex-direction: column-reverse;
    padding-top: 20px;
  }
  .footer_sns_area .footer_logo {
    display: contents;
  }
  .footer_sns_area .footer_logo img {
    width: 60%;
  }
  .footer_sns_area .footer_sns {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 10px 0;
    padding: 0;
  }
  .footer_sns_area .footer_sns li.icon {
    padding-right: 15px;
  }
  .footer_sns_area .footer_sns li.icon img {
    width: 100px;
    height: 100px;
  }
  .footer_sns_area .footer_sns li.sns {
    padding-right: 20px;
  }
  .footer_sns_area .footer_sns li.sns img {
    width: 50px;
    height: 50px;
  }
  footer .copyright {
    font-size: 0.875rem;
  }
}
.c-btn {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  overflow: hidden;
  display: flex;
  gap: 6px;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 16px;
  background: #173156;
  border: 1px solid #173156;
  border-radius: 3px;
  color: #fff;
  line-height: 1.428;
  font-size: 1rem;
  position: relative;
}
.c-btn.compact {
  padding: 4px 8px;
  font-size: 0.875rem;
}
.c-btn.large {
  padding: 10px 20px;
  font-size: 1.25rem;
}
.c-btn.main {
  border-color: #59b8c4;
  background: #59b8c4;
}
.c-btn.caution {
  border-color: #d54e4e;
  background: #d54e4e;
}
.c-btn.disabled {
  background: #999;
  border-color: #999;
  opacity: 0.5;
  pointer-events: none;
}
.c-btn.light {
  background: #fff;
  color: #173156;
}
.c-btn.light.caution {
  border-color: #d54e4e;
  color: #d54e4e;
}
.c-btn.light.disabled {
  border-color: #999;
  color: #999;
}
.c-btn.light.icon-download::before {
  background-image: url("../img/icon_download.svg");
}
.c-btn[class*=icon-] {
  padding-left: 8px;
}
.c-btn[class*=icon-]::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-btn.file + input[type=file] {
  display: none;
}

.c-table {
  width: 100%;
}
.c-table td {
  padding: 10px;
  border-bottom: 1px solid #657ea4;
  vertical-align: baseline;
  white-space: nowrap;
  font-size: 0.875rem;
}
.c-table td:has(.item-title) {
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  max-width: 0;
}
.c-table td:has([class*=items-]) {
  padding-bottom: 15px;
}
.c-table td.num {
  text-align: right !important;
}
.c-table td.caution,
.c-table td .caution {
  color: #d54e4e;
}
.c-table td.blank {
  background: #fff !important;
}
.c-table td .item-note {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 10em;
}
.c-table td .items-vertical {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-table td .items-file {
  display: flex;
  gap: 10px;
}
.c-table td .items-file__heading {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-table td .items-file__heading-title {
  width: 4em;
  padding: 2px;
  background: #657ea4;
  color: #fff;
  text-align: center;
  font-weight: 500;
}
.c-table td .items-file__img {
  display: block;
  width: 160px;
  height: 120px;
  background: #eee;
  position: relative;
}
.c-table td .items-file__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-table td .items-file__img .c-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.c-table td .items-file__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}
.c-table td .items-file__body:has(> *:first-child:last-child) {
  align-self: center;
}
.c-table thead td,
.c-table tr.head td {
  padding: 5px 10px;
  border: 0;
  background: #657ea4;
  text-align: left;
  vertical-align: middle;
  color: #fff;
  font-size: 0.8125rem;
}
.c-table tbody td {
  background: #fff;
}
.c-table.zebra tbody tr:nth-child(2n) td {
  background: #f0f2f6;
}
.c-table.status {
  table-layout: fixed;
}
.c-table.status col:nth-child(1) {
  width: 25%;
}
.c-table.status thead td:not(:first-child) {
  text-align: center;
  vertical-align: bottom;
}
.c-table.status thead td:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.4);
}
.c-table.status thead td .status::before {
  content: attr(data-label);
  display: block;
  width: 100%;
  margin-top: 2px;
  padding: 2px;
  border-radius: 100px;
  text-align: center;
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
.c-table.status thead td .status[data-label=A]::before, .c-table.status thead td .status[data-label=F]::before {
  background: #02afc3;
}
.c-table.status thead td .status[data-label="A'"]::before, .c-table.status thead td .status[data-label="B'"]::before, .c-table.status thead td .status[data-label=C]::before, .c-table.status thead td .status[data-label="C'"]::before, .c-table.status thead td .status[data-label=E]::before, .c-table.status thead td .status[data-label=H]::before, .c-table.status thead td .status[data-label=K]::before {
  background: #fbb42e;
}
.c-table.status thead td .status[data-label=B]::before, .c-table.status thead td .status[data-label=D]::before, .c-table.status thead td .status[data-label=G]::before {
  background: #0561ac;
}
.c-table.status tbody td:not(:first-child) {
  text-align: center;
}
.c-table.status tbody td:not(:last-child) {
  border-right: 1px solid #657ea4;
}

.c-modal__overlay {
  position: fixed;
  z-index: 10009;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-modal.is-active .c-modal__overlay {
  opacity: 1;
  visibility: visible;
}
.c-modal__close {
  width: 30px;
  height: 30px;
  position: fixed;
  z-index: 10011;
  top: 40px;
  right: 40px;
  opacity: 0;
  visibility: hidden;
}
.c-modal.is-active .c-modal__close {
  opacity: 1;
  visibility: visible;
}
.c-modal__close::before, .c-modal__close::after {
  content: "";
  position: absolute;
  display: inline-block;
  top: 50%;
  left: 50%;
  width: 42px;
  height: 3px;
  background: #fff;
  cursor: pointer;
}
.c-modal__close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-modal__close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-modal__wrapper {
  position: fixed;
  z-index: 10010;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  padding: 0 10px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.c-modal.is-active .c-modal__wrapper {
  opacity: 1;
  visibility: visible;
}
.c-modal__card {
  width: 1024px;
  max-height: calc(100svh - 100px);
  overflow: auto;
  padding: 0;
  border-radius: 10px;
  background: #fff;
  position: absolute;
  z-index: 1;
  transform: translate3d(0, 48px, 0);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease, visibility 0.6s ease, transform 0.3s ease-in-out;
}
.c-modal__card.fixed-height {
  height: calc(100svh - 100px);
}
.c-modal__card.is-active {
  position: relative;
  z-index: 2;
  opacity: 1; /* 非表示を解除 */
  visibility: visible; /* 非表示を解除 */
  transform: translate3d(0, 0, 0);
}
.c-modal__card-container {
  display: flex;
  flex-direction: column;
  padding: 20px;
}
.c-modal__card-heading {
  margin: -20px -20px 20px;
  padding: 10px 20px;
  border-radius: 10px 10px 0 0;
  background: #173156;
  color: #fff;
  font-weight: 500;
  font-size: 1.125rem;
}
.c-modal__card-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-modal__card-foot {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px 0 0;
}
.c-modal__card-content-img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 560px;
  background: #eee;
  overflow: hidden;
}
.c-modal__card-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-modal__card-content-img:not(:has(img)):not(.is-loading)::before {
  content: "画像が登録されていません。";
}
.c-modal__card-content-row {
  display: flex;
}

.c-status {
  display: flex;
  line-height: 1;
  font-size: 0.8125rem;
}
.c-status span {
  display: flex;
  align-items: center;
  padding: 5px 10px 5px 8px;
  border: 1px solid #173156;
  border-radius: 0 100px 100px 0;
  background: #fff;
}
.c-status::before {
  content: attr(data-label);
  width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #173156;
  border-right: 0;
  border-radius: 100px 0 0 100px;
  color: #fff;
  font-weight: 600;
}
.c-status[data-label=A]::before, .c-status[data-label=F]::before {
  background: #02afc3;
}
.c-status[data-label="A'"]::before, .c-status[data-label="B'"]::before, .c-status[data-label=C]::before, .c-status[data-label="C'"]::before, .c-status[data-label=E]::before, .c-status[data-label=H]::before, .c-status[data-label=K]::before {
  background: #fbb42e;
}
.c-status[data-label=B]::before, .c-status[data-label=D]::before, .c-status[data-label=G]::before {
  background: #0561ac;
}
.c-status[data-mark]::after {
  margin-left: 8px;
  align-self: center;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-status[data-mark=attention]::after {
  background-image: url("../img/icon_attention.svg");
}
.c-status__panel {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
}
.c-status__panel-item {
  width: calc((100% - 60px) / 7);
  display: flex;
  flex-direction: column;
  border: 1px solid #173156;
  border-radius: 5px;
  opacity: 0.3;
}
.c-status__panel-item.is-passed, .c-status__panel-item.is-active {
  opacity: 1;
}
.c-status__panel-heading {
  padding: 4px;
  border-bottom: 1px solid #173156;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-weight: 600;
}
[data-label=A].is-active .c-status__panel-heading, [data-label=F].is-active .c-status__panel-heading {
  background: #02afc3;
  color: #fff;
}
[data-label="A'"].is-active .c-status__panel-heading, [data-label="B'"].is-active .c-status__panel-heading, [data-label=C].is-active .c-status__panel-heading, [data-label="C'"].is-active .c-status__panel-heading, [data-label=E].is-active .c-status__panel-heading, [data-label=H].is-active .c-status__panel-heading, [data-label=K].is-active .c-status__panel-heading {
  background: #fbb42e;
  color: #fff;
}
[data-label=B].is-active .c-status__panel-heading, [data-label=D].is-active .c-status__panel-heading, [data-label=G].is-active .c-status__panel-heading {
  background: #0561ac;
  color: #fff;
}
.c-status__panel-body {
  padding: 10px;
  border-radius: 0 0 5px 5px;
}
[data-label=A].is-active .c-status__panel-body, [data-label=F].is-active .c-status__panel-body {
  background: #e5f7f8;
}
[data-label="A'"].is-active .c-status__panel-body, [data-label="B'"].is-active .c-status__panel-body, [data-label=C].is-active .c-status__panel-body, [data-label="C'"].is-active .c-status__panel-body, [data-label=E].is-active .c-status__panel-body, [data-label=H].is-active .c-status__panel-body, [data-label=K].is-active .c-status__panel-body {
  background: #fef7e9;
}
[data-label=B].is-active .c-status__panel-body, [data-label=D].is-active .c-status__panel-body, [data-label=G].is-active .c-status__panel-body {
  background: #e5eef6;
}
.c-status__panel-user {
  text-align: center;
}
.c-status__panel-date {
  margin-top: 5px;
  text-align: center;
}
.c-status__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.875rem;
}
.c-status__summary:not(:first-child) {
  margin-top: 20px;
}
.c-status__summary-item {
  width: calc((100% - 60px) / 7);
  display: flex;
  flex-direction: column;
  border: 1px solid #173156;
  border-radius: 5px;
  opacity: 0.3;
  pointer-events: none;
}
.c-status__summary-item.is-active {
  opacity: 1;
  pointer-events: auto;
}
.c-status__summary-heading {
  padding: 4px;
  border-bottom: 1px solid #173156;
  border-radius: 5px 5px 0 0;
  text-align: center;
  font-weight: 600;
  position: relative;
}
.c-status__summary-heading::before {
  content: attr(data-label);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  border-radius: 100px;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 10px;
  bottom: 0;
  transform: translateY(50%);
}
.c-status__summary-heading[data-label=A]::before, .c-status__summary-heading[data-label=F]::before {
  background: #02afc3;
  color: #fff;
}
.c-status__summary-heading[data-label="A'"]::before, .c-status__summary-heading[data-label="B'"]::before, .c-status__summary-heading[data-label=C]::before, .c-status__summary-heading[data-label="C'"]::before, .c-status__summary-heading[data-label=E]::before, .c-status__summary-heading[data-label=H]::before, .c-status__summary-heading[data-label=K]::before {
  background: #fbb42e;
  color: #fff;
}
.c-status__summary-heading[data-label=B]::before, .c-status__summary-heading[data-label=D]::before, .c-status__summary-heading[data-label=G]::before {
  background: #0561ac;
  color: #fff;
}
.c-status__summary-body {
  padding: 10px;
  border-radius: 0 0 5px 5px;
}
.c-status__summary-num {
  text-align: center;
  line-height: 1;
  font-weight: 600;
  font-size: 1.5rem;
  position: relative;
}
.c-status__summary-num.attention::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url("../img/icon_attention.svg") no-repeat center/contain;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
}
.c-status__summary-btn {
  margin-top: 8px;
}
.c-status__summary-btn .c-btn {
  width: 100%;
  justify-content: center;
}

.c-tab__menu {
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-tab__menu-item {
  background: #fff;
  border: 1px solid #657ea4;
  color: #657ea4;
}
.c-tab__menu-item.is-active {
  background: #657ea4;
  color: #fff;
}
.c-tab__menu-item:first-child {
  border-radius: 3px 0 0 3px;
}
.c-tab__menu-item:last-child {
  border-radius: 0 3px 3px 0;
}
.c-tab__menu-item a {
  display: block;
  padding: 6px 20px;
  color: inherit;
}

.c-panel {
  margin: 20px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.875rem;
}
.c-panel__item {
  width: calc((100% - 60px) / 4);
  padding: 10px 16px 16px;
  border: 1px solid #173156;
  border-radius: 5px;
  background: #fff;
}
.c-panel__item *:last-child {
  margin-bottom: 0;
}
.c-panel__heading {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 -16px 10px -16px;
  padding: 0 10px 10px 16px;
  border-bottom: 1px solid #173156;
}
.c-panel__heading .code {
  font-weight: 600;
}
.c-panel__title {
  margin-bottom: 10px;
  font-weight: 600;
}
.c-panel__title + .c-panel__title {
  padding-top: 10px;
  border-top: 1px solid #ccc;
}
.c-panel__img {
  margin-bottom: 10px;
  width: 100%;
}
.c-panel__img.has-title {
  display: flex;
  flex-direction: column;
}
.c-panel__img.has-title::before {
  content: attr(data-title);
  display: block;
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  background: #657ea4;
  color: #fff;
  font-weight: 500;
}
.c-panel__img-wrapper {
  display: block;
  height: 150px;
  background: #eee;
  position: relative;
}
.c-panel__img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-panel__img-wrapper:not(:has(img))::before {
  content: "画像が登録されていません。";
  display: inline-block;
  position: absolute;
  left: 8px;
  top: 8px;
}
.c-panel__img-wrapper .c-btn {
  position: absolute;
  right: 8px;
  bottom: 8px;
}
.c-panel__body {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c-panel__body.has-title::before {
  content: attr(data-title);
  display: block;
  padding: 5px 10px;
  border-radius: 5px 5px 0 0;
  background: #657ea4;
  color: #fff;
  font-weight: 500;
}
.c-panel__body-item {
  display: flex;
  gap: 10px;
  align-items: center;
}
.c-panel__body-item .icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.c-panel__body-item .icon.ai::before {
  background-image: url("../img/icon_ai.svg");
}
.c-panel__body-item .icon.pdf::before {
  background-image: url("../img/icon_pdf.svg");
}

.c-splide__shop-thumb {
  margin-top: 8px;
}
.c-splide__slide {
  border: 0 !important;
}
.c-splide__slide.is-active {
  border: 0 !important;
}
.c-splide__shop .c-splide__slide {
  height: 500px;
  position: relative;
  background: #eee;
}
@media screen and (max-width: 768px) {
  .c-splide__shop .c-splide__slide {
    height: auto;
  }
}
.c-splide__shop .c-splide__slide img {
  -o-object-fit: contain;
     object-fit: contain;
}
.c-splide__shop-thumb .c-splide__slide {
  aspect-ratio: 3/2;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .c-splide__shop-thumb .c-splide__slide {
    aspect-ratio: auto;
  }
}
.c-splide__shop-thumb .c-splide__slide.is-active {
  opacity: 1;
}
.c-splide__shop-thumb .c-splide__slide img {
  -o-object-fit: cover;
     object-fit: cover;
}
.c-splide__slide img {
  width: 100%;
  height: 100%;
}
.c-splide__caption:not(:empty) {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  padding: 5px 10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-weight: 500;
  position: absolute;
  right: 0;
  bottom: 0;
}

/*=== top =================================*/
#top {
  border-bottom: 8px solid #e73828;
}

#top .top_mv {
  display: block;
  background-color: #000602;
}

#top .top_mv img {
  text-align: center;
  vertical-align: top;
  margin: 0 auto;
}

#top .top_mv-sp {
  display: none;
}

/* topバナーエリア ----------------------------------*/
#top_history {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  background: repeating-linear-gradient(90deg, #e73828, #e73828 20px, #fff 20px, #fff 40px);
  margin: 50px 0;
}

#top_history .history_area {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  padding: 20px 10px;
  width: 70%;
  margin-bottom: 4em;
  background-color: rgba(255, 255, 255, 0.8);
}

#top_history .history_area .history_area_tit {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 10px;
}

#top_history .history_area .history_area_tit p {
  display: block;
}

#top_history .history_area .history_area_tit p:before {
  content: "●";
  display: inline-block;
  margin-left: -1em;
  padding-right: 5px;
  color: #6398a7;
}

#top_history .history_area .history_area_tit p:after {
  content: "●";
  display: inline-block;
  margin-right: -1em;
  padding-left: 5px;
  color: #b91721;
}

#top_history .history_area .history_bnrarea {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.history_bnrarea .bnr {
  display: block;
  box-sizing: border-box;
  position: relative;
  margin: 1.5em;
}

.history_bnrarea .bnr img {
  width: 300px;
}

.history_bnrarea .bnr p.bnr_txt {
  display: block;
  position: absolute;
  width: 100%;
  top: 80%;
  padding: 0.4em;
  color: #fff;
  font-weight: 500;
  font-size: 1.3em;
}

.history_bnrarea .bnr p.bnr_txt.taro {
  background-repeat: round;
  background-size: contain;
  background-image: url("../img/top/top_bnr_history01-taro_bg.jpg");
}

.history_bnrarea .bnr p.bnr_txt.otanu {
  background-repeat: round;
  background-size: contain;
  background-image: url("../img/top/top_bnr_history02-otanu_bg.jpg");
}

@media screen and (max-width: 768px) {
  /*=== top(SP) =================================*/
  #top .top_mv-sp {
    display: block;
    vertical-align: top;
  }
  /* topバナーエリア（SP） ----------------------------------*/
  #top_history .history_area .history_area_tit p span {
    display: block;
  }
  #top_history .history_area .history_area_tit p:before {
    display: none;
  }
  #top_history .history_area .history_area_tit p:after {
    display: none;
  }
}
.welcome-message {
  margin: 5px 0 10px;
  padding: 20px 30px;
  border: 1px solid #fff;
  border-radius: 3px;
  background: transparent;
  color: #fff;
  text-align: left;
}
.welcome-message__heading {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
  text-align: center;
  font-weight: 600;
}
.welcome-message__body {
  display: flex;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .welcome-message__body {
    flex-direction: column;
    align-items: center;
  }
}
.welcome-message__body p:nth-child(1) {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .welcome-message__body p:nth-child(1) {
    width: 100%;
  }
}
.welcome-message__body p:nth-child(2) {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .welcome-message__body p:nth-child(2) {
    width: 60%;
  }
}
.welcome-message__body p:nth-child(2) img {
  border-radius: 50%;
}

/*=== news =================================*/
/* top用 */
#news {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  width: 60%;
  margin: 10px auto;
  padding: 10px 15px 20px;
  color: #fff;
  background-color: #eb636d;
}

#news h2.news_tit {
  display: inline-block;
  padding: 10px 30px;
  border-bottom: 2px solid #fff;
  margin-bottom: 20px;
}

#news .news_area {
  display: grid;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

#news .news_area .sub {
  display: flex;
  align-items: center;
  padding-left: 5px;
}

#news .news_area .sub .day {
  display: inline-block;
  margin-right: 10px;
}

#news .news_area .sub .category p {
  display: inline-block;
  box-sizing: border-box;
  background-color: #faf3a4;
  font-size: 0.625rem;
  line-height: 1.4em;
  color: #1c1c1c;
  padding: 5px;
}

#news .news_area .txt {
  display: block;
  box-sizing: border-box;
  text-align: left;
  padding: 5px;
  border-bottom: 1px solid #fff;
}

#news .news_btn_area {
  margin-top: 20px;
}

#news .news_btn_area a.news_btn {
  display: inline-block;
  position: relative;
  box-sizing: border-box;
  min-width: 200px;
  padding: 10px 25px;
  border-radius: 20px;
  color: #eb636d;
  background-color: #fff;
}

#news .news_btn_area a.news_btn:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid #eb636d;
  border-right: 3px solid #eb636d;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: 50%;
  right: 20px;
  border-radius: 1px;
  transition: 0.3s ease-in-out;
}

/* news一覧 ----------------------------------*/
.news_list {
  display: block;
  margin: 0 auto;
  width: 70%;
  padding: 6em 0;
}

.news_list .news_list_area {
  display: flex;
  align-items: center;
  padding: 10px 2em;
  border-bottom: 1px solid #aaaaaa;
}

.news_list .news_list_area div.sub {
  display: flex;
  align-items: center;
}

.news_list .news_list_area div.sub .day {
  display: inline-block;
  margin-right: 10px;
}

.news_list .news_list_area div.sub .category {
  margin-right: 15px;
}

.news_list .news_list_area div.sub .category p {
  display: inline-block;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 0.625rem;
  line-height: 1.4em;
  color: #eb636d;
  border: 1px solid #eb636d;
  padding: 5px;
  min-width: 120px;
  max-width: 120px;
}

.news_list .news_list_area div.txt {
  text-align: left;
}

/* news詳細 ----------------------------------*/
#archive {
  width: 70%;
  padding: 6em 0;
}

#archive .archive_area {
  display: grid;
}

#archive .archive_area .sub {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

#archive .archive_area div.sub .day {
  margin-right: 10px;
}

#archive .archive_area div.sub .category p {
  display: inline-block;
  box-sizing: border-box;
  background-color: #fff;
  font-size: 0.625rem;
  line-height: 1.4em;
  color: #eb636d;
  border: 1px solid #eb636d;
  padding: 5px;
  min-width: 120px;
  max-width: 200px;
}

#archive .archive_area .txt_area {
  text-align: left;
}

#archive .archive_area .txt_area p.txt_tit {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 5px;
}

@media screen and (max-width: 768px) {
  /*=== news（SP） =================================*/
  /* top用（SP） */
  #news {
    width: 90%;
    margin: 10px auto;
    padding: 10px 15px 20px;
  }
  /* news一覧（SP） ----------------------------------*/
  .news_list {
    display: block;
    margin: 0 auto;
    width: 90%;
    padding: 4em 0;
  }
  .news_list .news_list_area {
    display: grid;
    align-items: center;
    padding: 15px 1em;
    border-bottom: 1px solid #aaaaaa;
  }
  .news_list .news_list_area div.sub {
    margin-bottom: 10px;
  }
  .news_list .news_list_area div.sub .day {
    display: inline-block;
    margin-right: 10px;
  }
  .news_list .news_list_area div.sub .category {
    margin-right: 0;
  }
  .news_list .news_list_area div.sub .category p {
    font-size: 0.625rem;
    padding: 5px;
  }
  /* news詳細（SP） ----------------------------------*/
  #archive {
    width: 80%;
    padding: 5em 0;
  }
  #archive .archive_area .sub {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
  }
  #archive .archive_area .txt_area p.txt_tit {
    font-size: 1.125rem;
  }
}
#shop {
  padding: 40px 0;
}
#shop.shop_top {
  background-color: #f8f6f4;
}
#shop .shop_main_tit {
  display: block;
  margin-bottom: 40px;
}
#shop .shop_main_tit .shop_tit_icon {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 0 0 20px;
  width: 80%;
  border-bottom: 1px solid #727272;
  position: relative;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon {
    width: 90%;
  }
}
#shop .shop_main_tit .shop_tit_icon::before {
  content: "";
  display: block;
  width: 320px;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon::before {
    width: 210px;
  }
}
#shop .shop_main_tit .shop_tit_icon.gourmet::before {
  height: 104px;
  background: url("../img/shop/shop_category_gourmet.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon.gourmet::before {
    height: 68px;
  }
}
#shop .shop_main_tit .shop_tit_icon.entertainment::before {
  height: 113px;
  background: url("../img/shop/shop_category_entertainment.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon.entertainment::before {
    height: 74px;
  }
}
#shop .shop_main_tit .shop_tit_icon.shop::before {
  height: 126px;
  background: url("../img/shop/shop_category_shop.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon.shop::before {
    height: 83px;
  }
}
#shop .shop_main_tit .shop_tit_icon.amusement::before {
  height: 128px;
  background: url("../img/shop/shop_category_amusement.svg") no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon.amusement::before {
    height: 84px;
  }
}
#shop .shop_main_tit .shop_tit_icon::after {
  content: "";
  display: block;
  width: 240px;
  height: 4px;
  border-radius: 100px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit .shop_tit_icon::after {
    width: 120px;
  }
}
#shop .shop_main_tit .shop_tit_icon.gourmet::after {
  background: #b91721;
}
#shop .shop_main_tit .shop_tit_icon.entertainment::after {
  background: #910782;
}
#shop .shop_main_tit .shop_tit_icon.shop::after {
  background: #f18e00;
}
#shop .shop_main_tit .shop_tit_icon.amusement::after {
  background: #49999a;
}
#shop .shop_main_tit h2.tit {
  display: block;
  box-sizing: border-box;
  padding-top: 15px;
  font-family: Oswald, "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #shop .shop_main_tit h2.tit {
    font-size: 1.125rem;
  }
}
#shop .shop_main_tit h2.tit::before {
  content: "●";
  margin-left: -1em;
  padding-right: 5px;
}
#shop .shop_main_tit h2.tit.gourmet::before {
  color: #b91721;
}
#shop .shop_main_tit h2.tit.shop::before {
  color: #f18e00;
}
#shop .shop_main_tit h2.tit.amusement::before {
  color: #49999a;
}
#shop .shop_main_tit h2.tit::after {
  content: "●";
  margin-right: -1em;
  padding-left: 5px;
}
#shop .shop_main_tit h2.tit.gourmet::after {
  color: #b91721;
}
#shop .shop_main_tit h2.tit.amusement::after {
  color: #49999a;
}
#shop .shop_main_tit h2.tit.shop::after {
  color: #f18e00;
}
#shop .shop_area {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto 50px;
  padding: 20px 0;
  width: 80%;
  background: repeating-linear-gradient(90deg, #fff, #fff 20px, #f8f6f4 20px, #f8f6f4 40px);
}
@media screen and (max-width: 768px) {
  #shop .shop_area {
    width: 90%;
  }
}
#shop .shop_area ul.shop_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, 300px);
  justify-content: center;
  grid-gap: 1rem;
}
#shop .shop_area ul.shop_list li {
  display: block;
  box-sizing: border-box;
  margin-right: 30px;
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.5em;
}
@media screen and (max-width: 768px) {
  #shop .shop_area ul.shop_list li {
    margin-bottom: 40px;
  }
}
#shop .shop_area ul.shop_list li .shop_list_img {
  margin-bottom: 15px;
  aspect-ratio: 3/2;
  background: #fff;
}
#shop .shop_area ul.shop_list li .shop_list_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#shop .shop_area ul.shop_list li .shop_tit {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 10px;
  min-height: 50px;
}
#shop .shop_area ul.shop_list li .shop_tit p.floor {
  display: inline-block;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  background-color: #93727d;
  padding: 5px 10px;
  margin-right: 10px;
}
#shop .shop_area ul.shop_list li .shop_tit a.tit {
  color: #1c1c1c;
  font-size: 1.125rem;
  font-weight: 500;
}

/* 店舗詳細 ----------------------------------*/
#shop_info {
  margin: 0 auto 3em;
  width: 80%;
}
@media screen and (max-width: 768px) {
  #shop_info {
    width: 90%;
  }
}
#shop_info .shop_heading {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 20px 0;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_heading {
    flex-direction: column;
    align-items: stretch;
  }
}
#shop_info .shop_heading .shop_tit_wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
#shop_info .shop_heading .shop_tit {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 0;
}
#shop_info .shop_heading p.floor {
  display: inline-block;
  box-sizing: border-box;
  color: #fff;
  font-weight: 500;
  background-color: #93727d;
  padding: 5px 10px;
  margin-right: 10px;
}
#shop_info .shop_heading h2.tit {
  font-size: 1.375rem;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}
#shop_info .shop_heading .spacer {
  flex-grow: 1 !important;
}
#shop_info .shop_heading .logo {
  width: 160px;
  aspect-ratio: 3/2;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_heading .logo {
    width: 120px;
    order: -1;
    margin-bottom: 20px;
  }
}
#shop_info .shop_heading .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right;
     object-position: right;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_heading .logo img {
    -o-object-position: left;
       object-position: left;
  }
}
#shop_info .shop_txtbox {
  display: block;
  box-sizing: border-box;
  text-align: left;
  line-height: 1.5;
  margin: 30px 0 10px;
}
#shop_info .shop_txtbox p.txtbox_subtit {
  display: flex;
  gap: 15px;
  align-items: center;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_txtbox p.txtbox_subtit {
    font-size: 1.125rem;
  }
}
#shop_info .shop_txtbox p.txtbox_subtit:not(:first-child) {
  margin-top: 20px;
}
#shop_info .shop_txtbox p.txtbox_subtit::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: #93727d;
}
#shop_info .shop_txtbox p.txtbox_txt {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_txtbox p.txtbox_txt {
    font-size: 0.875rem;
  }
}
#shop_info .shop_txtbox p.txtbox_txt:first-child {
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_txtbox p.txtbox_txt:first-child {
    font-size: 1rem;
  }
}
#shop_info .shop_share ul.share_list {
  display: flex;
  justify-content: flex-start;
  padding: 0;
}
#shop_info .shop_share ul.share_list li {
  display: inline-block;
  margin-right: 5px;
}
#shop_info .shop_etc {
  display: block;
  box-sizing: border-box;
  margin: 15px 0 20px;
  padding: 30px 40px 40px;
  background: #faf7f7;
  box-shadow: 5px 5px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  #shop_info .shop_etc {
    padding: 20px 15px;
  }
}
#shop_info .shop_etc .shop_etc_sub {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_etc .shop_etc_sub {
    font-size: 1.125rem;
  }
}
#shop_info .shop_etc .shop_etc_sub::before {
  content: "";
  display: block;
  width: 4px;
  height: 1em;
  background: #93727d;
}
#shop_info .shop_etc .etc_list {
  display: block;
}
#shop_info .shop_etc .etc_list div.etc_list_area {
  display: flex;
  text-align: left;
  padding: 10px 2rem;
  border-bottom: 1px solid #93727d;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_etc .etc_list div.etc_list_area {
    flex-wrap: wrap;
  }
}
#shop_info .shop_etc .etc_list div.etc_list_area p.tit {
  display: inline-block;
  box-sizing: border-box;
  min-width: 150px;
  max-width: 150px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  #shop_info .shop_etc .etc_list div.etc_list_area p.tit {
    min-width: 100%;
    max-width: 100%;
  }
}
#shop_info .shop_etc .etc_list div.etc_list_area p.txt {
  display: inline-block;
  box-sizing: border-box;
}
#shop_info .shop_btn {
  display: flex;
  justify-content: center;
  margin: 3em 0;
}
#shop_info .shop_btn a.shop_btn_copy {
  display: block;
  position: relative;
  padding: 5px 6em;
  color: #e73828;
  font-weight: 500;
  border: 2px solid #e73828;
  border-radius: 10px;
}
#shop_info .shop_btn a.shop_btn_copy::before {
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  width: 15px;
  height: 15px;
  top: 0.8em;
  left: 4.2em;
  background-image: url("../img/shop/btn_icon_copy.svg");
}

.shop_category ul.category_list {
  display: flex;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .shop_category ul.category_list {
    gap: 10px;
  }
}
.shop_category ul.category_list li {
  display: inline-block;
  padding: 5px;
  color: #6f849a;
  border: 1px solid #6f849a;
  min-width: 100px;
}
.shop_category ul.category_list.min {
  gap: 10px;
}
.shop_category ul.category_list.min li {
  min-width: auto;
  margin: 0 !important;
  padding: 2px 5px;
  font-size: 0.875rem;
}

/* 店舗詳細スライド（仮）  -----*/
.shop_slide {
  display: block;
  margin: 0 auto;
}

.choice-btn li {
  cursor: pointer;
  outline: none;
  background: #333;
  list-style: none;
}

.choice-btn li img {
  opacity: 0.4;
}

.choice-btn li.slick-current img {
  opacity: 1;
}

/*=== floor =================================*/
#floor {
  padding: 20px 0px 30px;
}

#floor h2.tit {
  background: #eb636d;
}

#floor h2.tit span {
  display: block;
  margin: 0 auto;
  padding: 15px 10px;
  background: url("../img/floor/floor_tit_bg.png") repeat-y;
  background-size: contain;
  width: 80%;
  /*
  background-color: rgba(154, 113, 124, 1);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 20px, rgba(235, 99, 109, 1) 20px, rgba(235, 99, 109, 1) 40px );
  */
}

#floor h2.tit img {
  margin: 0 auto;
  width: 40%;
}

#floor_all {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  width: 80%;
  margin: 35px auto;
  background-color: #fff;
  box-shadow: 6px 6px 10px 0px rgba(0, 0, 0, 0.2);
}

.floor_area {
  display: table;
  margin: 0 auto;
  width: 100%;
}

.floor_area .area_f {
  display: table-cell;
  word-break: break-all;
  vertical-align: middle;
  width: 8%;
  color: #fff;
  font-size: 1.25rem;
  font-weight: bold;
  background-color: #93727d;
  border-bottom: 2px solid #fff;
}

.floor_area .area_waku {
  width: 100%;
  padding: 40px 40px 140px;
  background-color: #fff;
  border-bottom: 2px solid #717071;
  position: relative;
  z-index: 1;
}

.floor_illust {
  width: calc(100% - 40px);
  height: 120px;
  position: absolute;
  right: 20px;
  bottom: 10px;
  z-index: -2;
}
.floor_illust img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: right bottom;
     object-position: right bottom;
}

.floor_photo_wrapper {
  width: 22%;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(calc(-50% - 50px));
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .floor_photo_wrapper {
    width: 28%;
    right: 4%;
    top: -20px;
    transform: translateY(0);
  }
  .floor-2f .floor_photo_wrapper, .floor-1f .floor_photo_wrapper {
    top: 60px;
  }
}

.floor_photo {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.floor-2f .floor_photo::after {
  content: "";
  display: block;
  width: 45%;
  height: 45%;
  background: url("../img/common/otanuki.svg") no-repeat center bottom/contain;
  position: absolute;
  right: 0;
  bottom: 0;
}
.floor_photo img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .floor_photo img {
    border: 2px solid #fff;
  }
}

.shop_title_note {
  color: #e50010;
  font-size: 1rem;
}

.floor_area .area_f.end,
.floor_area .area_waku.end {
  border-bottom: none;
}

.area_waku_right .area_waku_list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.area_waku_right .area_waku_list:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .area_waku_right .area_waku_list:not(:last-child) {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1280px) {
  .area_waku_right .area_waku_list {
    width: 68%;
  }
  .area_waku_right .area_waku_list.none_bg {
    width: 90%;
  }
}
.area_waku_right .area_waku_list ul.area_category {
  margin: 0;
  padding: 0;
}

.area_waku_right .area_waku_list ul.area_category li {
  color: #6f849a;
  background: #fff;
  border: 1px solid #6f849a;
  box-sizing: border-box;
  padding: 5px 10px;
  margin-right: 15px;
  font-size: 0.875rem;
  text-align: left;
  width: 16em;
}
@media screen and (max-width: 768px) {
  .area_waku_right .area_waku_list ul.area_category li {
    width: -moz-fit-content;
    width: fit-content;
    padding: 2px 8px;
  }
}
.area_waku_right .area_waku_list ul.area_category li:not(:last-child) {
  margin-bottom: 5px;
}

.area_waku_right .area_waku_list .area_tit {
  margin-left: 1em;
  width: 40%;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .area_waku_right .area_waku_list .area_tit {
    width: 100%;
    margin-bottom: 5px;
  }
}

.area_waku_right .area_waku_list .area_tit:before {
  content: "●";
  display: inline-block;
  text-indent: -1em;
  padding-right: 5px;
}

.area_waku_right .area_waku_list .area_tit.gourmet:before {
  color: #b91721;
}

.area_waku_right .area_waku_list .area_tit.entertainment:before {
  color: #910782;
}

.area_waku_right .area_waku_list .area_tit.amusement:before {
  color: #49999a;
}

.area_waku_right .area_waku_list .area_tit.shop:before {
  color: #f18e00;
}

.area_waku_right .area_waku_list .area_tit.etc:before {
  color: #b1b1b1;
}

.floor_area .area_waku ul.area_icon {
  display: flex;
  justify-content: flex-end;
  padding-right: 15px;
}

.floor_area .area_waku ul.area_icon li {
  width: 5%;
  margin: 0 2px;
}

.floor_area .area_bg-sp {
  display: none;
}

/*=== float_btn =================================*/
#page_top {
  position: fixed;
  bottom: 10px;
  right: -100px;
}

#page_top img {
  width: 50%;
}

@media screen and (max-width: 768px) {
  /*=== floor(SP) =================================*/
  #floor_all {
    width: 90%;
  }
  #floor h2.tit span {
    width: 90%;
  }
  #floor h2.tit img {
    width: 70%;
  }
  .floor_area .area_waku {
    padding: 20px 10px 80px;
  }
  /* blockに変更の場合 */
  .floor_area .area_f {
    display: block;
    width: 100%;
    padding: 10px 15px;
    font-size: 1.125rem;
    text-align: left;
  }
  .floor_area .area_waku {
    border-bottom: none;
  }
  .area_waku_right .area_waku_list {
    display: block;
    width: 100%;
    padding: 0 5px;
    margin: 0 0 30px;
  }
  .area_waku_right .area_waku_list .area_tit {
    text-align: left;
  }
  .area_waku_right .area_waku_list ul.area_category {
    padding-left: calc(1em + 5px);
  }
  .floor_area .area_waku ul.area_icon,
  .floor_area .area_waku ul.area_icon li {
    display: none;
  }
  .floor_area .area_bg-sp {
    display: block;
    margin: 40px auto 20px;
    width: 80%;
  }
}
.p-buildingFloorImage {
  margin: 80px auto 0;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-buildingFloorImage {
    width: 90%;
  }
}
.p-buildingFloorImage__heading {
  padding-bottom: 5px;
  border-bottom: 5px solid #8c6f7a;
  text-align: left;
  color: #8c6f7a;
  font-weight: 600;
  font-size: 1.5rem;
}
.p-buildingFloorImage__items {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .p-buildingFloorImage__items {
    gap: 10px;
  }
}
.p-buildingFloorImage__item {
  width: calc((100% - 20px) / 2);
}
.p-buildingFloorImage__item:nth-child(1) {
  width: 100% !important;
}
@media screen and (max-width: 768px) {
  .p-buildingFloorImage__item {
    width: calc((100% - 10px) / 2);
  }
}

div.bg_border {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  padding: 2em 4em;
  width: 80%;
  background: repeating-linear-gradient(90deg, #fff, #fff 20px, #f8f6f4 20px, #f8f6f4 40px);
}

@media screen and (max-width: 768px) {
  div.bg_border {
    margin: 0 auto 50px;
    padding: 2em;
    width: 90%;
  }
}
/* all_txt_area */
.all_area {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  text-align: left;
  margin: 15px 0;
}
.all_area.address {
  position: relative;
  min-height: 100px;
  overflow: visible;
}
.all_area.address::before {
  content: "";
  display: block;
  width: 100px;
  height: 87px;
  background: url("../img/access/otanuki.svg") no-repeat center/contain;
  position: absolute;
  right: 0;
  top: 0;
}
@media screen and (max-width: 768px) {
  .all_area.address::before {
    width: 80px;
    height: 70px;
    top: -30px;
  }
}
.all_area.train {
  margin-top: 80px;
  display: flex;
}
@media screen and (max-width: 768px) {
  .all_area.train {
    flex-direction: column;
  }
}
.all_area.train > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .all_area.train > div {
    width: 100%;
  }
}
.all_area.train > div p {
  line-height: 2;
}
.all_area.scenery {
  margin-top: 80px;
  padding-bottom: 180px;
  position: relative;
}
.all_area.scenery::after {
  content: "";
  display: block;
  width: 178px;
  height: 100px;
  background: url("../img/access/otanuki2.svg") no-repeat center/contain;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%, 0);
}

.all_area .tit_all {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin-bottom: 1.5em;
}

.all_area .tit_all p {
  text-align: left;
  font-weight: 600;
  font-size: 20px;
}

.all_area .tit_all p:before {
  display: inline-block;
  content: "●";
  padding-right: 5px;
  color: #e73828;
}

/*=== access =================================*/
#access {
  padding: 2em 0 3em;
}

#access .access_map {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  height: 0;
}

#access .access_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*=== access（SP） =================================*/
@media screen and (max-width: 768px) {
  #access .access_map {
    position: relative;
    width: 100%;
  }
}
/*=== history =================================*/
#history {
  padding: 2em 0;
  width: 80%;
  margin: 0 auto;
  font-weight: 400;
  line-break: normal;
}

#history p.history_about {
  display: block;
  padding: 0 3em;
  box-sizing: border-box;
  font-weight: 400;
  font-size: 1.2em;
  color: #86272b;
  line-height: 1.7em;
}
@media screen and (max-width: 768px) {
  #history p.history_about {
    font-size: 1em;
  }
}

#history .contents_area {
  margin: 3em auto;
}

#history .bg {
  display: block;
  box-sizing: border-box;
  overflow: hidden;
  margin: 0 auto;
  padding: 2em;
  width: 80%;
}

#history .bg.border {
  background: repeating-linear-gradient(90deg, #fff, #fff 20px, #f8f6f4 20px, #f8f6f4 40px);
}

#history .bg.white {
  background-color: #fff;
}

#history .history_main_tit {
  display: block;
  color: #fff;
  background-color: #6f6aa0;
  text-align: center;
  border-radius: 10px;
  padding: 15px 5px;
}

#history .history_main_tit h2.tit_area {
  font-weight: 500;
}

#history .history_main_tit h2.tit_area::after {
  content: "";
  display: block;
  background-image: url(../img/history/tit_border-brown.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0.5em auto 0;
  width: 70%;
  height: 10px;
}

#history .history_kui-area {
  display: flex;
  justify-content: center;
  margin: 3em 0;
  padding: 0 1em;
}

#history .history_kui-area .kui-txtarea {
  display: block;
  box-sizing: border-box;
  width: 50%;
}

#history .history_kui-area .kui-txtarea p.txt {
  margin: 0 auto 1.5em;
}

#history .history_kui-area .kui-txtarea .txtarea_img {
  display: block;
  width: 70%;
  margin: 0 auto 1.5em;
}

#history .history_kui-area .kui-txtarea .txtarea_img p.short {
  font-size: 10px;
  line-height: 1.8em;
}

#history .history_kui-area .kui-imgarea {
  display: block;
  padding-left: 2em;
}

#history .history_kui-area .kui-imgarea img {
  text-align: center;
}

#history .history_kui-area .kui-imgarea p.short {
  font-size: 10px;
  line-height: 1.8em;
}

/* 太郎・お狸 ----------------------*/
.contents_line {
  display: block;
  width: 80%;
  margin: 0 auto;
}

.contents_line img {
  width: 100%;
}

.contents_line_sub {
  display: block;
  width: 70%;
  margin: 0 auto 3em;
}

.contents_line_sub img {
  width: 100%;
}

/* 太郎 */
.history_main_tit-contents {
  display: block;
  text-align: center;
  border-radius: 10px;
  padding: 5px;
  margin-bottom: 2em;
}

.history_main_tit-contents h2.tit_area_taro {
  font-weight: 500;
}

.history_main_tit-contents h2.tit_area_taro::after {
  content: "";
  display: block;
  background-image: url(../img/history/tit_border-blue.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0.5em auto 0;
  width: 70%;
  height: 10px;
}

/* プロフィール */
.taro_profile {
  display: block;
  position: relative;
  min-height: 150vh;
}

.taro_profile .profile_txt_area {
  display: block;
  width: 50%;
  padding: 0 1em;
  margin-bottom: 2em;
}

.taro_profile .profile_taro_area {
  display: block;
  position: absolute;
  box-sizing: border-box;
  left: 55%;
  top: 0;
}

.profile_list_area {
  display: block;
  background: #f9f6f4;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 3em;
}

.profile_list_area ul.profile_list {
  display: block;
  width: 50%;
  padding: 1.5em;
}

.profile_list_area ul.profile_list li {
  display: flex;
  padding: 0.8em 0.5em;
  border-bottom: 1px solid #000;
}

.profile_list_area ul.profile_list li:last-child {
  border-bottom: none;
}

.profile_list_area ul.profile_list li p.tit {
  padding: 0 1em;
  text-indent: -1em;
  font-weight: 600;
  white-space: nowrap;
}

.profile_list_area ul.profile_list li p.tit:before {
  display: inline-block;
  box-sizing: border-box;
  content: "●";
  padding-right: 5px;
  margin-left: 1em;
  color: #c9636d;
}

.trivia_area {
  display: block;
  position: relative;
  box-sizing: border-box;
  width: 50%;
  color: #fff;
}

.trivia_area .trivia_tit {
  display: block;
  margin-bottom: 1em;
}

.trivia_area .trivia_tit:before {
  content: "";
  display: inline-block;
  background-image: url(../img/history/tit_taro-trivia.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -2%;
  top: -4%;
  width: 50px;
  height: 50px;
}

.trivia_area .trivia_tit p {
  display: block;
  background-color: #6398a7;
  border-radius: 5px;
  padding: 1em 1.5em;
  font-size: 1.2em;
}

.trivia_area .trivia_txt {
  display: block;
  box-sizing: border-box;
  background-color: #6398a7;
  border-radius: 5px;
  padding: 2em 1.5em;
}

/* 年表 */
.history_taro-list {
  display: block;
  margin: 0 auto;
  padding: 0;
  width: 90%;
}

.history_taro-list .list_area {
  display: flex;
  padding: 0 auto 2em;
}

.history_taro-list .list_area .day {
  display: block;
  box-sizing: border-box;
  width: 20%;
  padding-right: 1em;
}

.history_taro-list .list_area .day p {
  padding-left: 1em;
  text-indent: -1em;
}

.history_taro-list .list_area .day p:before {
  display: inline-block;
  box-sizing: border-box;
  content: "●";
  padding-right: 5px;
  margin-left: 1em;
  color: #c9636d;
}

.history_taro-list .list_area .txt {
  display: block;
  width: 80%;
  margin-bottom: 1em;
}

.history_taro-list div.list_img {
  display: block;
  margin: 0 auto 2em;
  width: 40%;
}

/* お狸 */
.history_main_tit-contents h2.tit_area_otanu {
  font-weight: 500;
}

.history_main_tit-contents h2.tit_area_otanu::after {
  content: "";
  display: block;
  background-image: url(../img/history/tit_border-red.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0.5em auto 0;
  width: 70%;
  height: 10px;
}

.history_otanu_area {
  display: block;
  box-sizing: border-box;
  padding: 0 1em;
}

.history_otanu_area p.history_otanu_txt {
  display: block;
  margin-bottom: 2em;
}

.history_otanu_area .history_otanu_img {
  display: block;
  width: 80%;
  margin: 0 auto 2em;
}

.history_otanu_area2 {
  display: flex;
  justify-content: center;
  padding: 0 1em;
  margin: 2em 0;
}

.history_otanu_area2 .otanu_txt_area {
  display: block;
  box-sizing: border-box;
  margin: 0 auto;
  padding-right: 2em;
  width: 60%;
}

.history_otanu_area2 .otanu_txt_area div.img {
  display: block;
  margin: 5em auto;
  width: 30%;
}

.history_otanu_area2 .otanu_img_area {
  width: 40%;
}

.history_otanu_area2 .otanu_img_area p.short {
  padding-top: 0.5em;
  font-size: 0.8em;
  line-height: 1.5em;
}

/* 道頓堀枠 ----------------------*/
.history_kui-area-sub .sub_area {
  display: flex;
  justify-content: center;
  background-color: #e6e1d1;
  padding: 1.8em;
  margin-bottom: 2em;
}

.history_kui-area-sub .sub_area_float {
  background-color: #e6e1d1;
  padding: 1.8em;
  margin-bottom: 2em;
}
.history_kui-area-sub .sub_area_float .sub_img-area {
  float: right;
  margin: 0 0 30px 30px;
}
@media screen and (max-width: 768px) {
  .history_kui-area-sub .sub_area_float .sub_img-area {
    float: none;
    margin: 0 0 30px;
  }
}

.history_kui-area-sub .sub_area .sub_txt-area {
  width: 70%;
}

.history_kui-area-sub .sub_area .sub_txt-area .sub_tit:before,
.history_kui-area-sub .sub_area_float .sub_txt-area .sub_tit:before {
  display: inline-block;
  box-sizing: border-box;
  content: "●";
  padding-right: 5px;
  margin-left: 1em;
  color: #c9636d;
}

.history_kui-area-sub .sub_area .sub_txt-area .sub_tit,
.history_kui-area-sub .sub_area_float .sub_txt-area .sub_tit {
  display: block;
  box-sizing: border-box;
  font-weight: 500;
  font-size: 1.3em;
  padding-left: 1em;
  padding: 0 1em 0.5em 1em;
  text-indent: -1em;
}

.history_kui-area-sub .sub_area .sub_txt-area .sub_txt,
.history_kui-area-sub .sub_area_float .sub_txt-area .sub_txt {
  display: block;
  padding-right: 1.5em;
}

/*=== history(SP) =================================*/
@media screen and (max-width: 768px) {
  #history {
    width: 100%;
  }
  #history .bg {
    padding: 2em 1em;
    width: 90%;
  }
  #history .history_main_tit {
    padding: 15px 5px;
  }
  #history .history_main_tit h2.tit_area::after {
    width: 80%;
  }
  #history .history_kui-area {
    flex-wrap: wrap;
    margin: 1.5em 0;
  }
  #history .history_kui-area .kui-txtarea {
    width: 100%;
  }
  #history .history_kui-area .kui-txtarea .txtarea_img {
    width: 100%;
  }
  #history .history_kui-area .kui-imgarea {
    padding: 0;
    margin: 0 auto;
  }
  /* 太郎・お狸（SP） ----------------------*/
  .contents_line {
    width: 90%;
  }
  .contents_line_sub {
    width: 90%;
  }
  /* 太郎（SP） */
  .history_main_tit-contents {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 2em;
  }
  .history_main_tit-contents h2.tit_area_taro span {
    display: block;
  }
  .history_main_tit-contents h2.tit_area_taro::after {
    width: 80%;
  }
  /* プロフィール（SP） */
  .taro_profile {
    height: auto;
  }
  .taro_profile .profile_txt_area {
    width: 100%;
    margin-bottom: 2em;
  }
  .taro_profile .profile_taro_area {
    display: block;
    position: absolute;
    box-sizing: border-box;
    left: 50%;
    top: 20%;
  }
  .taro_profile .profile_taro_area-sp {
    display: block;
    margin: 0 auto 3em;
    width: 60%;
  }
  .taro_profile .profile_taro_area2 {
    display: block;
    margin: 0 auto 3em;
    width: 60%;
  }
  .profile_list_area ul.profile_list {
    display: block;
    width: 100%;
    padding: 1.5em;
  }
  .profile_list_area ul.profile_list li {
    padding: 0.5em;
  }
  .trivia_area {
    width: 100%;
  }
  /* 年表（SP） */
  .history_taro-list {
    width: 100%;
  }
  .history_taro-list .list_area {
    flex-wrap: wrap;
    padding: 0.5em;
  }
  .history_taro-list .list_area .day {
    width: 100%;
    padding-right: 0;
  }
  .history_taro-list .list_area .txt {
    width: 100%;
  }
  .history_taro-list div.list_img {
    width: 60%;
  }
  /* お狸（SP） */
  .history_main_tit-contents {
    display: block;
    text-align: center;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 2em;
  }
  .history_main_tit-contents h2.tit_area_otanu::after {
    width: 80%;
  }
  .history_otanu_area {
    display: block;
    box-sizing: border-box;
    padding: 0 1em;
  }
  .history_otanu_area p.history_otanu_txt {
    display: block;
    margin-bottom: 2em;
  }
  .history_otanu_area .history_otanu_img {
    width: 100%;
  }
  .history_otanu_area2 {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0 1em;
  }
  .history_otanu_area2 .otanu_txt_area {
    display: block;
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }
  .history_otanu_area2 .otanu_txt_area div.img {
    display: block;
    margin: 2em auto 3em;
    width: 50%;
  }
  .history_otanu_area2 .otanu_img_area {
    width: 100%;
  }
  .history_otanu_area2 .otanu_img_area div.img {
    display: block;
    margin: 0 auto;
    width: 60%;
  }
  .history_otanu_area2 .otanu_img_area p.short {
    padding-top: 1em;
    font-size: 1em;
    line-height: 1.5em;
  }
  /* 道頓堀枠（SP） ----------------------*/
  .history_kui-area-sub .sub_area {
    flex-wrap: wrap;
    padding: 1.8em;
    margin-bottom: 2em;
  }
  .history_kui-area-sub .sub_area .sub_txt-area {
    width: 100%;
  }
  .history_kui-area-sub .sub_area .sub_txt-area .sub_txt {
    padding-right: 0;
    margin-bottom: 1em;
  }
}
.p-profileTaro__building {
  margin: 40px auto 0;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .p-profileTaro__building {
    width: 100%;
  }
}
.p-profileTaro__building img {
  border-radius: 5px;
}/*# sourceMappingURL=style.css.map */