@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  font-size: 10px;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  font-size: 1.5rem;
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1, h2, h3, h4, button, input, label {
  line-height: 1.1;
}

h1, h2, h3, h4 {
  text-wrap: balance;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

/* モバイル向けのスタイル */
:root {
  --main-color: #8B1616;
  --black-color: #1E1E1E;
  --mincho: "游明朝","Yu Mincho",YuMincho,"Hiragino Mincho Pro",serif;
  --enfont: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica Neue,Hiragino Sans,Hiragino Kaku Gothic ProN,Meiryo,sans-serif;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", Meiryo, "メイリオ", "Osaka", "MS PGothic", "ＭＳ Ｐゴシック", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
}

p {
  margin-bottom: 24px;
}

li {
  margin-bottom: 12px;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  margin: 72px 0 96px;
}
@media screen and (max-width: 767px) {
  .section {
    margin: 56px 0 72px;
  }
}

.section__head {
  font-size: 3.2rem;
  text-align: center;
  font-family: var(--mincho);
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .section__head {
    font-size: 2.4rem;
  }
}

.footer {
  background-color: var(--main-color);
  padding: 8px 0 0;
  margin-bottom: 0;
}
.footer .companyDetail {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 0;
  }
}
.footer .btn__link {
  background-color: #fff;
  color: var(--main-color);
}

.footer__nav {
  padding: 12px 0;
}
.footer__nav a {
  color: #fff;
}
.footer__nav a:first-child {
  margin-right: 16px;
}

.footer_flexItem {
  width: 33%;
  margin-bottom: 32px;
}
.footer_flexItem:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .footer_flexItem {
    width: 100%;
  }
}

.copyright {
  background-color: var(--main-color);
  text-align: center;
  padding: 15px;
  color: #fff;
}

.section__head {
  margin-bottom: 40px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 32px;
}

.table {
  border-collapse: collapse;
  border: 1px solid var(--black-color);
  margin-bottom: 24px;
}
.table th {
  border: 1px solid var(--black-color);
  padding: 12px;
  color: #fff;
  background-color: #333333;
}
.table td {
  border: 1px solid var(--black-color);
  padding: 12px;
}

.btn__link {
  display: inline-block;
  min-width: 180px;
  padding: 12px 24px;
  border-radius: 6px;
  text-decoration: none;
  color: #fff;
  background-color: var(--main-color);
  overflow: hidden;
}
.btn__link span {
  display: inline-block;
  transition: transform 0.3s ease; /* スムーズな移動のための設定 */
}
.btn__link:hover span {
  transform: translateX(5px);
}

.header {
  background-color: var(--main-color);
  position: relative;
  color: #fff;
  padding: 24px;
}
.header a {
  color: #fff;
}

.headerLogo {
  font-size: 2rem;
  letter-spacing: 1px;
  font-family: var(--mincho);
}
@media screen and (max-width: 767px) {
  .headerLogo {
    text-align: center;
    margin-bottom: 24px;
  }
}
.headerLogo a {
  text-decoration: none;
}

.header__nav ul {
  margin: 0;
  padding-left: 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .header__nav ul {
    flex-direction: column;
  }
}
.header__nav ul li {
  list-style: none;
}
@media screen and (max-width: 767px) {
  .header__nav ul li {
    margin-bottom: 6px;
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  .header__nav {
    display: none;
  }
}
.header__nav a {
  display: inline-block;
  padding: 0 12px;
  text-decoration: none;
}
.header__nav a:not(:last-child) {
  margin-right: 24px;
}

.sp_nav {
  display: none;
  z-index: 9998;
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(139, 22, 22, 0.95);
  top: 0;
  left: 0;
  text-align: center;
}
.sp_nav ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin-top: 56px;
}
.sp_nav ul li {
  margin-bottom: 24px;
}
.sp_nav ul li a {
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
}
.sp_nav ul li a .en {
  font-family: var(--enfont);
  letter-spacing: 1px;
  font-weight: bold;
  display: block;
  font-size: 2.8rem;
  opacity: 0.8;
}

.sp_nav.is-visible {
  display: block !important; /* 他のCSSルールによる上書きを防ぐ */
}

.bl_headerInner {
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .bl_headerInner {
    flex-direction: column;
    justify-content: center;
  }
}

.menu-toggle {
  display: none;
  background-color: var(--main-color);
  position: fixed;
  z-index: 9999;
  width: 32px;
  height: 32px;
  border: 1px solid #fff;
  right: 4%;
  top: 2%;
}
@media screen and (max-width: 480px) {
  .menu-toggle {
    display: block;
  }
}
.menu-toggle span {
  transition: all 0.4s;
  position: relative;
  top: 20%;
  content: "";
  display: block;
  height: 3px;
  width: 72%;
  margin-left: 14%;
  border-radius: 1px;
  background-color: #fff;
}
.menu-toggle span:nth-of-type(2) {
  top: 32%;
}
.menu-toggle span:nth-of-type(3) {
  top: 50%;
}

.menu-toggle.active span:nth-of-type(1) {
  top: 24%;
  left: 0%;
  transform: translateY(6px) rotate(-45deg);
  width: 72%;
}
.menu-toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-of-type(3) {
  top: 43%;
  left: 0%;
  transform: translateY(-6px) rotate(45deg);
  width: 72%;
}

.footerBefore {
  position: relative;
  padding: 56px 0;
}
.footerBefore .container {
  position: relative;
}

.snsLink {
  padding-left: 0;
}
.snsLink li {
  list-style: none;
  display: inline-block;
}
.snsLink li:not(:last-child) {
  margin-right: 12px;
}

#backToTop {
  position: fixed;
  bottom: 20px; /* 下から20pxの位置 */
  right: 20px; /* 右から20pxの位置 */
  padding: 10px 20px; /* パディング */
  background-color: var(--main-color); /* 背景色 */
  color: white; /* 文字色 */
  border: none; /* 枠線なし */
  border-radius: 5px; /* 角丸 */
  cursor: pointer; /* カーソルを指マークに */
  transition: opacity 0.3s; /* 透明度変化のアニメーション */
}

.text-center {
  text-align: center;
}

.align_center {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.listynone {
  padding-left: 0;
}
.listynone li {
  list-style: none;
}

.btnLink_list {
  display: flex;
  justify-content: center;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .btnLink_list {
    flex-direction: column;
    align-items: center;
  }
}
.btnLink_list li {
  padding-left: 0;
  list-style: none;
  margin-right: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .btnLink_list li {
    margin-right: 0;
    text-align: center;
  }
}
.btnLink_list li:last-child {
  margin-right: 0;
}

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

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

.flex {
  display: flex;
}
@media screen and (max-width: 767px) {
  .flex {
    flex-direction: column;
  }
}
.flex .item_half {
  width: 50%;
  height: auto;
  margin-bottom: 24px;
}
.flex .item_half h3 {
  padding: 12px 0 10px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border-top: 1px solid var(--main-color);
  border-bottom: 1px solid var(--main-color);
}
.flex .item_half:last-child {
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .flex .item_half:last-child {
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .flex .item_half {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .pc_br {
    display: block;
  }
}

/** top page **/
.mainVisual picture {
  display: flex;
  justify-content: center;
}

.bg_whitelay {
  width: 50%;
  padding: 96px 72px 72px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  .bg_whitelay {
    width: 100%;
    padding: 24px;
  }
}
.bg_whitelay p {
  line-height: 2;
}

.topFeature__box {
  padding: 24px;
  display: flex;
  background: url("../images/top/featureBackImg.jpg");
}
.topFeature__box .inner {
  text-align: center;
}

.card__rect {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .card__rect {
    flex-direction: column;
    align-items: center;
  }
}
.card__rect .itemCard {
  width: auto;
  height: auto;
  margin-bottom: 32px;
}
@media screen and (max-width: 767px) {
  .card__rect .itemCard {
    max-width: 100%;
  }
}
.card__rect .itemCard a {
  width: 100%;
  text-decoration: none;
  position: relative;
}

/** subpage_common **/
.pageHeader {
  padding: 80px 0;
  background-color: #C58A8A;
  position: relative;
}
.pageHeader h1 {
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
}

.fontchosei li {
  font-size: 1.8rem;
}

h3.greetHead {
  line-height: 1.8;
}
h3.greetHead .greetName {
  font-weight: 700;
  font-family: var(--mincho);
  font-size: 2rem;
  letter-spacing: 1px;
}

/** services **/
.artistBox {
  margin-bottom: 40px;
  padding: 16px;
  border: 2px solid #feebbe;
  background-color: #fff7e5;
}
.artistBox h3 {
  letter-spacing: 1px;
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.artistBox div.joindate {
  font-size: 2rem;
  margin-bottom: 8px;
}

.dentouColor {
  border-color: #ca9a00;
}

.artistComment {
  border-top: 1px dashed #ccc;
  padding-top: 8px;
  margin-top: 8px;
  font-size: 1.3rem;
  color: #414141;
  line-height: 1.8;
}

.spacialThanks {
  flex-wrap: wrap;
  gap: 2%;
}
.spacialThanks div.flex_thumb_img {
  margin-right: 0;
  width: 32%;
}
@media screen and (max-width: 767px) {
  .spacialThanks div.flex_thumb_img {
    width: 100%;
  }
}
.spacialThanks div.flex_thumb_img h4 {
  margin-top: 8px;
}

.day_stu, .day_sun, .day_s {
  display: inline-block;
  margin-left: 2px;
  font-size: 1.2rem;
  color: #fff;
  padding: 3px 6px;
  border-radius: 50%;
}

.day_stu {
  background-color: #00b9ef;
}

.day_sun {
  background-color: #e85298;
}

.day_s {
  border: 1px solid #e85298;
  background-color: #fff;
  color: #e85298;
}

/** about **/
.schedule {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 40px;
}
.schedule img {
  max-width: 400px;
  height: auto;
}
@media screen and (max-width: 767px) {
  .schedule {
    flex-direction: column;
    align-items: center;
  }
}

/** map **/
.shopWrapper {
  display: flex;
  flex-wrap: wrap;
  max-width: 1110px;
  margin: 0 auto 40px;
  gap: 20px;
}
.shopWrapper .shopCard {
  background-color: #fbe6ee;
  border-top: 4px solid #e84388;
  flex: 0 0 calc(25% - 15px);
  margin-bottom: 20px;
  box-sizing: border-box;
}
.shopWrapper .shopCard span.shopCardNum {
  background-color: #e84388;
  color: #fff;
  display: inline-block;
  border-radius: 50%;
  margin-right: 4px;
  padding: 8px 6px;
}
.shopWrapper .shopCard h4 {
  color: #e84388;
  margin: 16px 0;
  text-align: center;
  font-size: 1.4rem;
}
.shopWrapper .shopCard div.shopData {
  text-align: center;
  margin: 0 8px;
  color: #e84388;
  padding: 4px;
  border-top: 1px solid #e84388;
  border-bottom: 1px solid #e84388;
}
.shopWrapper .shopCard p.comment {
  font-size: 1.3rem;
  padding: 16px 8px 8px;
}
@media (max-width: 1024px) {
  .shopWrapper .shopCard {
    flex: 0 0 calc(33.333% - 13.333px);
  }
}
@media (max-width: 768px) {
  .shopWrapper .shopCard {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 480px) {
  .shopWrapper .shopCard {
    flex: 0 0 100%;
  }
}
.shopWrapper .yellowCard {
  background-color: #fef0d4;
  border-top-color: #f5a200;
}
.shopWrapper .yellowCard span.shopCardNum {
  background-color: #f5a200;
}
.shopWrapper .yellowCard h4 {
  color: #f5a200;
  margin: 16px 0;
  text-align: center;
  font-size: 1.4rem;
}
.shopWrapper .yellowCard div.shopData {
  text-align: center;
  margin: 0 8px;
  color: #f5a200;
  padding: 4px;
  border-top: 1px solid #f5a200;
  border-bottom: 1px solid #f5a200;
}
.shopWrapper .yellowCard p.comment {
  font-size: 1.3rem;
  padding: 16px 8px 8px;
}
.shopWrapper .blueCard {
  background-color: #dff1fa;
  border-top-color: #00a0e2;
}
.shopWrapper .blueCard span.shopCardNum {
  background-color: #00a0e2;
}
.shopWrapper .blueCard h4 {
  color: #00a0e2;
  margin: 16px 0;
  text-align: center;
  font-size: 1.4rem;
}
.shopWrapper .blueCard div.shopData {
  text-align: center;
  margin: 0 8px;
  color: #00a0e2;
  padding: 4px;
  border-top: 1px solid #00a0e2;
  border-bottom: 1px solid #00a0e2;
}
.shopWrapper .blueCard p.comment {
  font-size: 1.3rem;
  padding: 16px 8px 8px;
}
.shopWrapper .greenCard {
  background-color: #e8f2d9;
  border-top-color: #6fba2c;
}
.shopWrapper .greenCard span.shopCardNum {
  background-color: #6fba2c;
}
.shopWrapper .greenCard h4 {
  color: #6fba2c;
  margin: 16px 0;
  text-align: center;
  font-size: 1.4rem;
}
.shopWrapper .greenCard div.shopData {
  text-align: center;
  margin: 0 8px;
  color: #6fba2c;
  padding: 4px;
  border-top: 1px solid #6fba2c;
  border-bottom: 1px solid #6fba2c;
}
.shopWrapper .greenCard p.comment {
  font-size: 1.3rem;
  padding: 16px 8px 8px;
}

/** /shopWrapper **/
.anchor {
  margin: 24px 0;
}

.simpleBanner {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

/** help **/
.flex_thumb_img {
  width: 40%;
  margin-right: 16px;
}
@media screen and (max-width: 767px) {
  .flex_thumb_img {
    width: 100%;
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.flex_thumb_desc {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .flex_thumb_desc {
    width: 100%;
  }
}

/** modi **/
.btn_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 767px) {
  .btn_flex {
    flex-direction: column;
  }
}
