@charset "UTF-8";
:root {
  --wh: #ffffff;
  --bk: #000000;
}

:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
  --sree: "Sree Krushnadevaraya", serif;
  --zenantique: "Zen Antique", serif;
  --montserrat: "Montserrat", serif;
}

html,
body {
  font-family: var(--notosans);
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  line-height: 1.5;
  font-style: normal;
  letter-spacing: 0.1em;
  overflow-x: clip;
  background-color: #fff2d4;
  color: #552d11;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  html,
  body {
    line-height: 2;
  }
}
@media (min-width: 576px) {
  html,
  body {
    font-size: 1rem;
  }
}

body {
  word-break: auto-phrase;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: bold;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

a {
  color: #552d11;
  transition: all 0.3s;
}

a:hover {
  color: #f67749;
  text-decoration: none;
  cursor: pointer;
}

/* フォント */
.sans {
  font-family: "Noto Sans JP", serif;
}

.serif {
  font-family: "Shippori Mincho", serif;
}

.shuei {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
}

.zen {
  font-family: "zen-maru-gothic", sans-serif;
}

.fc-orange {
  color: #f67749 !important;
}

.fc-white {
  color: #fff !important;
}

.fc-brown {
  color: #552d11 !important;
}

.fc-brown2 {
  color: #877356 !important;
}

.v-text {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
}

.text-shadow {
  text-shadow: 2px 2px 5px black;
}

.text-shadow-white {
  text-shadow: 2px 2px 5px white;
}

.has-shadow {
  box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.15);
}

/* 背景 */
.bg-white {
  background-color: #fff;
}

.bg-offwhite {
  background-color: #fff7e5;
}

.bg-beige {
  background-color: #fff8ec;
}

.bg-yellow {
  background-color: #e3b017;
}

/*罫線*/
.bl-gold-5 {
  border-left: 5px solid #e1c477;
}

.br-gold {
  border-right: 2px solid #e1c477;
}

.bb-gold {
  border-bottom: 2px solid #e1c477;
}

.bb-y {
  border-bottom: 1px solid #ebd07f;
}

/* ボタン */
.button {
  display: inline-flex !important;
  position: relative;
  align-items: center;
  gap: 20px;
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-size: 16px;
  height: 64px;
  font-weight: bold;
}

.button::after {
  content: "";
  display: block;
  width: 120px;
  height: 64px;
  background-image: url("../images/arrow-btn.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  transform-origin: left;
  transition: all 0.3s;
}
@media (min-width: 992px) {
  .button::after {
    width: 140px;
  }
}

.button:hover::after {
  transform: translateX(4px);
  /* 軽く浮かせる */
  transform: scale(1.03);
}

.button p {
  margin: 0 !important;
  padding: 0 !important;
}

/* 角丸 */
.r-10 {
  border-radius: 10px;
}

.r-30 {
  border-radius: 30px;
}

/* ナビ */
.a-nav {
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 900;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0);
}

.a-nav.has-bg {
  background-color: rgba(255, 255, 255, 0.5);
}

.menu-icon {
  width: 30px;
}

.reserve-button {
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 100px;
  transition: all 0.3s;
  transform-origin: center;
  z-index: 500;
}

.reserve-button:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .reserve-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 120px;
  }
}
.button-up {
  position: fixed;
  bottom: 125px;
  right: 15px;
  width: 15px;
  transition: all 0.3s;
  transform-origin: center;
  z-index: 500;
}

.button-up:hover {
  transform: translateY(-5px);
}

@media (min-width: 992px) {
  .button-up {
    bottom: 145px;
    right: 25px;
  }
}
.a-burger {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 59px;
  height: 57px;
  background-image: url(../images/burger-bg.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  transform-origin: center;
  transition: all 0.3s;
}

.a-burger:hover {
  cursor: pointer;
  transform: scale(1.05);
}

.a-burger::after {
  content: "menu";
  display: block;
  color: #fff;
  font-size: 10px;
  line-height: normal;
  transition: all 0.3s;
}

.a-burger.is-active::after {
  content: "close";
}

.a-burger-main {
  position: relative;
  width: 24px;
  height: 13px;
}

.a-burger-main > div {
  background-color: #fff;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 4px;
  position: absolute;
  left: 2px;
  transform-origin: center;
  transition-duration: 0.3s;
  transition-property: background-color, color, opacity, transform;
  padding: 0;
  margin: 0;
  min-height: 2px !important;
}

.a-burger-main > div:nth-child(1) {
  top: 0;
}

.a-burger-main > div:nth-child(2),
.a-burger-main > div:nth-child(3) {
  top: 6px;
}

.a-burger-main > div:nth-child(4) {
  bottom: 0;
}

.a-burger.is-active .a-burger-main > div:nth-child(2) {
  transform: rotate(-25deg);
}

.a-burger.is-active .a-burger-main > div:nth-child(3) {
  transform: rotate(25deg);
}

.a-burger.is-active .a-burger-main > div:nth-child(1),
.a-burger.is-active .a-burger-main > div:nth-child(4) {
  opacity: 0;
}

.pc-menu {
  gap: 15px;
}

.right-menu {
  gap: 5px;
}

.nav-tel-link {
  max-width: 150px;
  transition: all 0.3s;
  transform-origin: center;
}

.nav-tel-link:hover {
  transform: scale(1.02);
}

.sns-icon {
  width: 30px;
  min-width: 30px;
  transition: all 0.3s;
  transform-origin: center;
}

.sns-icon:hover {
  transform: scale(1.05);
}

@media (min-width: 992px) {
  .nav-tel-link {
    max-width: 200px;
  }
  .sns-icon {
    width: 47px;
    min-width: 47px;
  }
}
.a-nav-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  background-color: #fff8ec;
  width: 100%;
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
  opacity: 0;
}

.a-nav-menu.edit {
  display: flex;
  opacity: 1;
}

/* フッター */
.menu-links {
  border-top: 1px solid #616161;
}

.menu-links a {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 10px;
  width: 100%;
  font-size: 14px;
  border-bottom: 1px solid #616161;
  font-weight: bold;
}

.menu-links a::after {
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/foot-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}

.menu-links a:hover::after {
  transform: translateX(3px);
}

.menu-links a p::before {
  content: "●";
  color: #ffd395;
  font-size: 12px;
  padding-right: 15px;
}

.menu-links a.bb-none {
  border-bottom: none;
}

@media (min-width: 768px) {
  .menu-links a.bb-md-b {
    border-bottom: 1px solid #616161;
  }
}
.footer {
  background-color: #fff8ec;
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  z-index: 10;
  position: relative;
}

/* News表示 */
.index-news .webgene-blog,
.news-page .webgene-blog {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.index-news .webgene-item,
.news-page .webgene-item {
  width: 100%;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .index-news .webgene-item,
  .news-page .webgene-item {
    width: 48%;
  }
}
@media (min-width: 992px) {
  .index-news .webgene-item {
    width: 24%;
  }
}
.webgene-pagination {
  width: 100%;
}

.webgene-pagination ul,
.pagelink {
  display: flex;
  justify-content: center;
  margin-top: 5rem;
}

.webgene-pagination ul li,
.pagelink p {
  padding: 0 1rem;
}

.webgene-pagination ul li a,
.pagelink p a {
  padding: 0.5rem 2rem !important;
  min-height: 0 !important;
  line-height: 1 !important;
  font-size: 1rem;
  background-color: #cbc3b0;
  color: #655324;
}

.webgene-pagination ul li a:hover,
.pagelink p a:hover {
  cursor: pointer;
  transform-origin: center;
  transition-duration: 0.3s;
  transition-property: background-color, color, opacity, transform;
  background-color: #fff;
}

.webgene-pagination ul li,
.pagelink p {
  margin: 0;
  position: relative;
  display: inline-block;
}

.webgene-item-prevPageLink {
  margin-left: 1rem;
}

.news-list .webgene-blog {
  display: flex;
  flex-wrap: wrap;
}

.news-list .webgene-blog .webgene-item {
  width: 45%;
  margin: 2rem 2.5%;
}

/* フォーム */
.formInput,
.formTextArea {
  width: 100%;
  padding: 0.5rem;
  border: none;
  border-radius: 0;
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
  margin-bottom: 2rem;
}

.formTextArea {
  height: 8rem;
}

.formInput:focus,
.formInput:focus-visible,
.formTextArea:focus,
.formTextArea:focus-visible,
.form-button:focus,
.form-button:focus-visible {
  border: 1px solid #cbc3b0;
  background-color: #fffcf5;
}

.formBtn {
  border: 2px solid #522a14;
  background-color: #fff;
  color: #522a14;
  font-size: 1rem;
  padding: 1rem 3rem !important;
}

.requiredText {
  background-color: #a3987c;
  color: #fff;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 1rem;
}

.js__upSider > li {
  transform: translateY(100%);
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  transition: all 0.1s ease-in-out !important;
}
@-webkit-keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeUpAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/*ページ共有*/
.inner-container {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .inner-container {
    min-width: 725px;
    max-width: 56vw;
  }
}

.fv {
  margin-top: 87px;
  height: 75vh;
  position: relative;
  margin-bottom: 200px;
}
@media (min-width: 768px) {
  .fv {
    margin-bottom: 0;
  }
}
@media (min-width: 1200px) {
  .fv {
    height: 95vh;
  }
}

.top-logo {
  width: 80px;
}

@media (min-width: 576px) {
  .top-logo {
    width: 120px;
  }
}

.fv-img-box {
  width: 100%;
  height: 70%;
  margin: auto;
  padding: 0 15px;
}

@media (min-width: 576px) {
  .fv-img-box {
    max-height: 100%;
    padding: 0 20px;
    margin-bottom: 5vh;
  }
}

@media (min-width: 768px) {
  .fv-img-box {
    height: 85dvh;
    padding: 20px 20px;
    margin-bottom: 0;
  }
  .top-logo {
    width: 192px;
  }
}
@media (min-width: 992px) {
  .fv-img-box {
    padding: 20px 50px;
  }
}
.top-title-box {
  position: absolute;
  bottom: -15vh;
  left: -10px;
  width: 23.125rem;
  height: 18.75rem;
  background-image: url(../images/top-title-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
}

@media (min-width: 768px) {
  .top-title-box {
    bottom: 0;
    left: 25px;
    width: 28.625rem;
    height: 23.125rem;
  }
}

@media (min-width: 1200px) {
  .top-title-box {
    width: 35.625rem;
    height: 28.125rem;
  }
}

.top-title-box h1 {
  max-width: 80%;
}

.subpage-title-box {
  position: absolute;
  bottom: -22vw;
  left: -16px;
  width: 50vw;
  height: 50.1286764706vw;
  min-width: 250px;
  min-height: 250px !important;
  background-image: url(../images/suppage-title-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 100;
  text-align: center;
  color: #f67749;
  font-weight: bold;
}

@media (min-width: 768px) {
  .subpage-title-box {
    left: 2vw;
    bottom: 6vh;
    width: 23.125rem;
    height: 23rem;
  }
}
@media (min-width: 1200px) {
  .subpage-title-box {
    bottom: 6vh;
    left: 2vw;
    width: 25.3125rem;
    height: 26.125rem;
  }
}
.scroll {
  position: absolute;
  bottom: -230px;
  left: auto;
  right: 2%;
  width: 75px;
  z-index: 110;
  animation: fluffy 3s infinite;
}

@keyframes fluffy {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@media (min-width: 568px) {
  .scroll {
    bottom: -65px;
    left: auto;
    right: 5%;
  }
}

@media (min-width: 1200px) {
  .scroll {
    left: 50%;
    bottom: 30px;
    width: 111px;
  }
}
.title-box-en {
  position: relative;
  z-index: 1;
  padding: 50px 0 20px;
}

.title-box-en::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  z-index: -1;
  display: block;
  background: url(../images/title-bg.png) center/contain no-repeat;
  width: 140px;
  height: 130px;
}

@media (min-width: 768px) {
  .title-box-en::after {
    position: absolute;
    top: 50%;
    left: -128px;
    z-index: -1;
    display: block;
    background: url(../images/title-bg.png) center/contain no-repeat;
    width: 199px;
    height: 190px;
  }
}
.point-info {
  padding: 30px 20px;
  max-width: 100%;
  min-width: auto;
  margin: 0 auto 80px;
  background-color: #fff8ec;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .point-info {
    padding: 40px;
  }
}
@media (min-width: 992px) {
  .point-info {
    padding: 50px 4vw;
  }
}
.point-info h3 {
  font-family: var(--zenmaru);
  font-size: 1.25rem;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .point-info h3 {
    font-size: 1.5rem;
    margin-bottom: 40px;
  }
}
.point-info p {
  font-size: 0.875rem;
  line-height: 1.8;
}
@media (max-width: 700px) {
  .point-info p {
    text-align: left !important;
  }
}
@media (min-width: 768px) {
  .point-info p {
    font-size: 1rem;
    line-height: 2.5;
  }
}
.point-info__listbox {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.point-info__listbox .point-list h4 {
  font-family: var(--zenmaru);
  font-size: 1rem;
  margin-bottom: 6px;
}
.point-info__listbox .point-list p {
  font-family: var(--notosans);
  font-size: 0.875rem;
}

.servise-link p {
  margin-left: 0.4rem;
}

.servise-link img {
  transform-origin: center;
  transition: all 0.3s;
}

.servise-link:hover img {
  transform: scale(1.03);
}

.recruit-button {
  position: absolute;
  bottom: 0;
  right: 0;
  border-top-left-radius: 30px;
  border-bottom-right-radius: 30px;
  background-color: #fff2d4;
}

.recruit-button .button {
  gap: 20px;
  font-size: 12px;
  height: 45px;
}

.recruit-button .button::after {
  width: 100px;
  height: 45px;
}

.concept-num {
  position: absolute;
  top: 0;
  left: 20px;
  transform: translateY(-50%);
}

.flow-left-column {
  height: 20cqb;
}

.flow-right-column {
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .flow-left-column {
    height: 250px;
  }
  .flow-right-column {
    border-bottom-left-radius: 0;
    border-top-right-radius: 30px;
  }
}
.flow-arrow {
  width: 43px;
}

.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #eddeda;
}

.loader img {
  width: 150px;
  opacity: 0;
  transition: opacity 0.5s;
}

@media (min-width: 992px) {
  .loader img {
    width: 250px;
  }
}

.button2 {
  display: inline-block;
  position: relative;
  z-index: 0;
  padding: 14px;
  background-color: #ffc191;
  text-align: center;
  border-radius: 50px;
}

.button2::after {
  position: absolute;
  top: 50%;
  right: 5px;
  transform: translate(-50%, -50%);
  content: "";
  width: 14px;
  height: 14px;
  background-image: url(../images/foot-arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
  display: block;
}

.button2:hover::after {
  right: 2px;
}

.fx-ttl-txt {
  max-width: 100%;
}

.fx-ttl-txt .fx-ttl {
  width: fit-content;
}

.fx-ttl-txt .fx-txt {
  flex: 1;
}

.fx-ttl-txt .fx-txt p {
  letter-spacing: 0.1em;
  height: 100%;
}

@media (min-width: 992px) {
  .fx-ttl-txt {
    max-width: 80%;
  }
  .fx-ttl-txt .fx-ttl {
    padding-right: 50px;
  }

  .fx-ttl-txt .fx-txt p {
    letter-spacing: 0.4em;
  }
}
.sec-bg-deco01,
.sec-bg-deco02,
.sec-bg-deco03,
.sec-bg-deco04 {
  position: relative;
  z-index: 1;
}
.sec-bg-deco01::before,
.sec-bg-deco01::after,
.sec-bg-deco02::before,
.sec-bg-deco02::after,
.sec-bg-deco03::before,
.sec-bg-deco03::after,
.sec-bg-deco04::before,
.sec-bg-deco04::after {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .sec-bg-deco01::before,
  .sec-bg-deco01::after,
  .sec-bg-deco02::before,
  .sec-bg-deco02::after,
  .sec-bg-deco03::before,
  .sec-bg-deco03::after,
  .sec-bg-deco04::before,
  .sec-bg-deco04::after {
    opacity: 1;
  }
}

.sec-bg-deco01::after {
  top: 50px;
  right: 0;
  background: url(../images/20250610162756770040.png) center/contain no-repeat;
  width: 110px;
  height: 338px;
}
@media (min-width: 768px) {
  .sec-bg-deco01::after {
    width: 165px;
  }
}

.sec-bg-deco02::before {
  bottom: 160px;
  left: 0;
  background: url(../images/20250610162756823780.png) center/contain no-repeat;
  width: 115px;
  height: 310px;
}
@media (min-width: 768px) {
  .sec-bg-deco02::before {
    width: 165px;
  }
}

.sec-bg-deco03::before {
  top: 45px;
  right: 0;
  background: url(../images/20250610162756726749.png) center/contain no-repeat;
  width: 107px;
  height: 333px;
}
@media (min-width: 768px) {
  .sec-bg-deco03::before {
    width: 177px;
    height: 553px;
  }
}

.sec-bg-deco04::after {
  bottom: 50px;
  left: 0;
  background: url(../images/20250610162756180384.png) center/contain no-repeat;
  width: 108px;
  height: 339px;
}
@media (min-width: 768px) {
  .sec-bg-deco04::after {
    width: 178px;
  }
}

/* trimming */
.anchor-link-box {
  max-width: 546px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 15px;
  column-gap: 15px;
  row-gap: 20px;
}

.anchor-link-box .button2 {
  width: calc(50% - 8px);
}

.anchor-link-box .button2 p {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 0.8rem;
}

@media (min-width: 576px) {
  .anchor-link-box {
    -moz-column-gap: 40px;
    column-gap: 40px;
    row-gap: 32px;
  }
  .anchor-link-box .button2 {
    width: calc(50% - 20px);
  }
  .anchor-link-box .button2::after {
    right: 23px;
  }
  .anchor-link-box .button2:hover::after {
    right: 20px;
  }
  .anchor-link-box .button2 p {
    font-size: 1rem;
  }
}
.feature-box-wrap {
  gap: 70px;
}

.feature-box {
  width: 100%;
}

.feature-image {
  width: 70%;
  max-width: 327px;
  margin: 0 auto;
  display: block;
}

.feature-ttl {
  line-height: 1.2;
  margin: 15px 0 !important;
}

.feature-text {
  letter-spacing: 0.085em;
  line-height: 1.5;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .feature-box-wrap {
    gap: 6.75vw;
  }
  .feature-box {
    width: calc(50% - 3.45vw);
  }
  .feature-image {
    width: 100%;
    max-width: 80%;
  }
  .feature-ttl {
    line-height: 1.5;
  }
  .feature-text {
    line-height: 2;
    font-size: 1rem;
  }
}
@media (min-width: 992px) {
  .feature-ttl {
    margin: 37px 0 !important;
  }
}
.photo-service-info {
  max-width: 100%;
  gap: 46px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .photo-service-info {
    flex-direction: row;
  }
}

.photo-service-info__image {
  width: 100%;
  max-width: 152px;
  margin: 0 auto;
}

.contents-text {
  max-width: 100%;
}
@media (min-width: 768px) {
  .contents-text {
    flex: 1;
  }
}
.contents-text h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .contents-text h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 992px) {
  .photo-service-info {
    padding: 54px 50px;
  }
}
@media (min-width: 992px) {
  .photo-service-info {
    gap: 46px;
    padding: 54px 64px;
  }
}
.menu-plan {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto 50px;
  gap: 30px;
}
@media (min-width: 992px) {
  .menu-plan {
    min-width: 725px;
    max-width: 65%;
    gap: 37px;
    margin: 0 auto 80px;
  }
}
.menu-plan__list {
  position: relative;
  z-index: 1;
}

.menu-plan__list .bg-deco {
  position: absolute;
  z-index: -1;
}

.menu-plan__list:nth-child(1) .bg-deco {
  max-width: 120px;
  width: 52%;
  min-width: 80px;
  top: 30%;
  right: 10%;
  transform: rotate(-20deg);
  opacity: 0.3;
}
.menu-plan__list:nth-child(2) .bg-deco {
  max-width: 140px;
  min-width: 100px;
  width: 59%;
  transform: rotate(-85deg);
  top: 25%;
  right: 7%;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .menu-plan__list:nth-child(1) .bg-deco {
    max-width: 160px;
  }
  .menu-plan__list:nth-child(2) .bg-deco {
    max-width: 200px;
  }
}

.menu-plan__list__wrap {
  width: 100%;
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .menu-plan__list__wrap {
    margin-bottom: 80px;
  }
}
.menu-plan__list__wrap:last-child {
  margin-bottom: 0;
}
.menu-plan__list {
  width: 100%;
  padding: 30px 40px;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .menu-plan__list {
    width: calc(50% - 17.5px);
    padding: 4rem 2rem;
  }
}

.breed-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 20px;
  padding: 4px 38px;
}

.course-menu {
  max-width: 100%;
  min-width: auto;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .course-menu {
    min-width: 725px;
    max-width: 56vw;
  }
}
.course-menu p {
  font-family: var(--notosans);
  line-height: 1.5;
  padding: 5px 0;
}
.course-menu__list {
  display: flex;
  justify-content: space-between;
  border-bottom: solid 0.5px #552d11;
  padding: 10px 0;
}
@media (min-width: 992px) {
  .course-menu__list {
    padding: 0;
  }
}
.course-menu__list > div {
  padding: 5px;
}
@media (min-width: 992px) {
  .course-menu__list > div {
    padding: 20px 10px;
  }
}
.course-menu__list > div p {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  height: 100%;
  text-align: center;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .course-menu__list > div p {
    justify-content: center;
    align-items: center;
    font-size: 0.9375rem;
  }
}
.course-menu__title {
  border-bottom: solid 1.5px #552d11;
}
.course-menu__title .course-menu__list__inner p {
  color: #f67749;
  text-align: right;
}
@media (min-width: 992px) {
  .course-menu__title .course-menu__list__inner p {
    color: #552d11;
    text-align: center;
  }
}
@media (min-width: 992px) {
  .course-menu__list__breed {
    width: 50%;
  }
}
.course-menu__list__breed p {
  text-align: left !important;
}
@media (min-width: 992px) {
  .course-menu__list__breed p {
    text-align: center;
  }
}
.course-menu__list__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex: 1;
}
@media (min-width: 992px) {
  .course-menu__list__inner {
    flex-wrap: nowrap;
  }
}
.course-menu__list__inner > div {
  width: 100%;
}
@media (min-width: 992px) {
  .course-menu__list__inner > div {
    width: 50%;
  }
}
.course-menu__list__inner > div p {
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .course-menu__list__inner > div p {
    justify-content: center;
  }
}

.single-menu__price {
  width: 100%;
}

.good-deal-content {
  margin: 0 auto;
  max-width: 750px;
}
.good-deal-content .point-info {
  position: relative;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .good-deal-content .point-info {
    margin: 0 auto 54px;
  }
}
.good-deal-content .point-info:nth-child(1)::after,
.good-deal-content .point-info:nth-child(3)::after {
  top: -23px;
  left: -25px;
}
@media (min-width: 768px) {
  .good-deal-content .point-info:nth-child(1)::after,
  .good-deal-content .point-info:nth-child(3)::after {
    bottom: -23px;
    right: -48px;
  }
}
.good-deal-content .point-info:nth-child(2)::after,
.good-deal-content .point-info:nth-child(4)::after {
  bottom: -40px;
  right: -35px;
  transform: scale(-1, 1);
}
@media (min-width: 768px) {
  .good-deal-content .point-info:nth-child(2)::after,
  .good-deal-content .point-info:nth-child(4)::after {
    bottom: 0;
    right: -55px;
  }
}
.good-deal-content .point-info:last-child {
  margin-bottom: 0;
}
.good-deal-content .point-info::after {
  position: absolute;
  content: "";
  display: block;
  width: 90px;
  height: 66px;
  background: url(../images/20250516140208996135.png) center/contain no-repeat;
}
@media (min-width: 768px) {
  .good-deal-content .point-info::after {
    width: 140px;
    height: 102px;
  }
}

.fx-img-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin: 0 auto 40px;
  min-width: auto;
  max-width: 100%;
}
@media (min-width: 768px) {
  .fx-img-text {
    gap: 40px;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .fx-img-text {
    gap: 66px;
  }
}
.fx-img-text__img {
  width: 275px;
}
.fx-img-text__textbox__title {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .fx-img-text__textbox__title {
    margin-bottom: 30px;
  }
}
.fx-img-text__textbox h3 {
  font-size: 1.125rem;
}
@media (min-width: 576px) {
  .fx-img-text__textbox h3 {
    font-size: 1.25rem;
  }
}
.fx-img-text__textbox__title p {
  font-size: 0.8125rem;
}
.fx-img-text .course-menu {
  min-width: auto;
  max-width: none;
}

.flow-box {
  overflow: hidden;
}

.dentifrice-box {
  display: flex;
  flex-direction: column;
}
.dentifrice-box > p {
  order: 5;
}
.dentifrice-box .fx-img-text__textbox {
  order: 1;
}
.dentifrice-box .fx-img-text {
  order: 2;
  display: contents;
}
@media (min-width: 768px) {
  .dentifrice-box .fx-img-text {
    display: flex;
    flex-direction: row;
  }
}
.dentifrice-box .fx-img-text > img {
  display: block;
  margin: 0 auto 40px;
  order: 3;
}
@media (min-width: 768px) {
  .dentifrice-box .fx-img-text > img {
    margin: 0 auto;
  }
}
.dentifrice-box .menu-plan__list__wrap {
  display: contents;
}
@media (min-width: 768px) {
  .dentifrice-box .menu-plan__list__wrap {
    display: block;
  }
}
.dentifrice-box .fx-img-text__textbox__text {
  order: 2;
  margin-bottom: 40px;
}
.dentifrice-box .course-menu {
  order: 4;
  width: 100%;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .dentifrice-box .course-menu {
    margin-bottom: 0;
  }
}

.spa-menu__wrap > div {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .spa-menu__wrap > div {
    margin-bottom: 100px;
  }
}

.precautions-area .point-info {
  margin: 0 auto 40px;
}

.list-left-wrap,
.list-right-wrap {
  display: flex;
  width: 50%;
}

.list-left-wrap {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
}
@media (min-width: 992px) {
  .list-left-wrap {
    flex-direction: row;
  }
}

.list-right-wrap {
  padding: 0 !important;
}
.list-right-wrap .course-menu__list__inner {
  width: 100%;
  padding: 20px 0;
  border-bottom: solid 0.5px #552d11;
}
.list-right-wrap .course-menu__list__inner:last-child {
  border-bottom: none;
}
.list-right-wrap .list-inner-wrap {
  padding: 0;
}

@media (min-width: 992px) {
  .fore-plan-contents .course-menu__list__breed {
    width: 30%;
  }
}

.privilege-contents {
  position: relative;
  z-index: 1;
  padding: 30px 70px;
}
@media (min-width: 576px) {
  .privilege-contents {
    padding: 40px 110px;
  }
}
@media (min-width: 768px) {
  .privilege-contents {
    padding: 50px 11vw;
  }
}
.privilege-contents::before,
.privilege-contents::after {
  position: absolute;
  content: "";
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
}
@media (min-width: 576px) {
  .privilege-contents::before,
  .privilege-contents::after {
    width: 80px;
    height: 80px;
  }
}
@media (min-width: 768px) {
  .privilege-contents::before,
  .privilege-contents::after {
    width: 120px;
    height: 120px;
  }
}
.privilege-contents::before {
  left: 0;
  background: url(../images/20250609111318489545.png) center/contain no-repeat;
}
@media (min-width: 576px) {
  .privilege-contents::before {
    left: 10px;
  }
}
@media (min-width: 768px) {
  .privilege-contents::before {
    left: 40px;
  }
}
.privilege-contents::after {
  background: url(../images/20250609111318176471.png) center/contain no-repeat;
  right: 0;
}
@media (min-width: 576px) {
  .privilege-contents::after {
    right: 10px;
  }
}
@media (min-width: 768px) {
  .privilege-contents::after {
    right: 40px;
  }
}
.privilege-contents h3 {
  margin-bottom: 15px;
}
.privilege-contents p {
  text-align: center !important;
}

.features-box .fx-img-text__img {
  overflow: hidden;
  border-radius: 50%;
}
.features-box .fx-img-text__img img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 1;
}

.cafe-menu-lineup {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 40px;
}
@media (min-width: 768px) {
  .cafe-menu-lineup {
    flex-direction: row;
    gap: 50px;
  }
}
.cafe-menu-lineup .box {
  width: 100%;
}
@media (min-width: 768px) {
  .cafe-menu-lineup .box {
    width: calc(50% - 25px);
  }
}
.cafe-menu-lineup .box-title {
  font-size: 1.125rem;
  margin-bottom: 15px;
  border-bottom: solid 1px #552d11;
}
@media (min-width: 576px) {
  .cafe-menu-lineup .box-title {
    margin-bottom: 20px;
    font-size: 1.3125rem;
    line-height: 2;
  }
}
.cafe-menu-lineup .box-text {
  font-size: 0.875rem;
}

.cafe-menu__lists {
  display: flex;
  flex-direction: column;
}
.cafe-menu__list {
  border-bottom: solid 0.5px #552d11;
  padding: 15px 0;
}
@media (min-width: 768px) {
  .cafe-menu__list {
    padding: 25px 0;
  }
}
.cafe-menu__list:first-child {
  padding-top: 0;
}

.self-title__wrap {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .self-title__wrap {
    gap: 50px;
    flex-direction: row;
  }
}
.self-title__wrap .fx-ttl-txt {
  margin: 0;
  min-width: auto;
}
@media (min-width: 992px) {
  .self-title__wrap .fx-ttl-txt {
    min-width: 475px;
  }
}
.self-title__wrap .fx-ttl-txt .fx-ttl {
  width: auto;
  padding-right: 0;
}
.self-title__wrap .fx-ttl-txt .fx-txt {
  width: auto;
}
.self-title__wrap img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 80%;
  display: block;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 992px) {
  .self-title__wrap img {
    width: 380px;
  }
}
@media (min-width: 1200px) {
  .self-title__wrap img {
    width: 460px;
  }
}

.self-wash__info {
  position: relative;
  padding-left: 30px;
}
@media (min-width: 576px) {
  .self-wash__info {
    padding-left: 40px;
  }
}
.self-wash__info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 27px;
  height: 27px;
  background-color: #fee19e;
  border-radius: 25px;
  margin: 8px 0;
  width: 20px;
  height: 20px;
  margin: 5px 0;
}
@media (min-width: 576px) {
  .self-wash__info::before {
    width: 23px;
    height: 23px;
    margin: 7px 0;
  }
}
@media (min-width: 768px) {
  .self-wash__info::before {
    width: 27px;
    height: 27px;
    margin: 8px 0;
  }
}

.self-wash__thought {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
@media (min-width: 768px) {
  .self-wash__thought {
    flex-direction: row;
  }
}
.self-wash__thought > img {
  max-width: 147px;
}
.self-wash__thought > h3 {
  margin-bottom: 0;
  letter-spacing: 3px;
  font-size: 1.25rem;
}
@media (min-width: 576px) {
  .self-wash__thought > h3 {
    font-size: 1.625rem;
  }
}
@media (min-width: 768px) {
  .self-wash__thought > h3 {
    font-size: 1.625rem;
  }
}
@media (min-width: 992px) {
  .self-wash__thought > h3 {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .self-wash__thought > h3 {
    font-size: 2.25rem;
  }
}

.others-price__lists > .course-menu__list:first-child {
  border-top: solid 0.5px #522a14;
}

.others-sec2-title {
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}
.others-sec2-title::after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  top: -5px;
  right: -80px;
  width: 200px;
  height: 130px;
  background: url(../images/20250609144159841268.png) center/contain no-repeat;
}
@media (min-width: 576px) {
  .others-sec2-title::after {
    top: -25px;
    width: 250px;
    height: 160px;
  }
}
@media (min-width: 992px) {
  .others-sec2-title::after {
    top: -63px;
    right: -82px;
    width: 386px;
    height: 246px;
  }
}

.recommendation-box {
  padding-top: 50px;
}
@media (min-width: 576px) {
  .recommendation-box {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .recommendation-box {
    padding-top: 0;
  }
}
.recommendation-box__first,
.recommendation-box__second {
  position: relative;
  z-index: 1;
}
.recommendation-box__first {
  max-width: 605px;
  padding: 140px 40px;
  margin-left: auto;
}
@media (min-width: 576px) {
  .recommendation-box__first {
    margin-bottom: 85px;
    padding: 140px 0px;
  }
}
@media (min-width: 768px) {
  .recommendation-box__first {
    padding: 112px 123px;
  }
}
@media (min-width: 992px) {
  .recommendation-box__first {
    margin-bottom: 135px;
  }
}
.recommendation-box__first > img {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: none;
  width: 120%;
}
@media (min-width: 576px) {
  .recommendation-box__first > img {
    width: 130%;
  }
}
@media (min-width: 768px) {
  .recommendation-box__first > img {
    width: 100%;
  }
}
.recommendation-box__first::before,
.recommendation-box__first::after {
  position: absolute;
  content: "";
  display: block;
  z-index: 0;
}
.recommendation-box__first::before {
  background: url(../images/20250609175127266028.png) center/contain no-repeat;
  width: 160px;
  height: 200px;
  top: -60px;
  right: -30px;
}
@media (min-width: 576px) {
  .recommendation-box__first::before {
    width: 200px;
    height: 226px;
    top: -100px;
    bottom: auto;
    left: auto;
  }
}
@media (min-width: 768px) {
  .recommendation-box__first::before {
    width: 260px;
    height: 296px;
    top: -69px;
    bottom: auto;
    left: -166px;
  }
}
@media (min-width: 992px) {
  .recommendation-box__first::before {
    width: 383px;
    height: 432px;
    top: auto;
    bottom: -54px;
    left: -306px;
  }
}
.recommendation-box__first::after {
  background: url(../images/20250609175127348963.png) center/contain no-repeat;
  width: 135px;
  height: 94px;
  left: 0;
  right: auto;
  bottom: 20px;
}
@media (min-width: 576px) {
  .recommendation-box__first::after {
    width: 185px;
    height: 125px;
    left: 0;
    right: auto;
    bottom: -50px;
  }
}
@media (min-width: 768px) {
  .recommendation-box__first::after {
    width: 185px;
    height: 125px;
    left: auto;
    right: 0;
    bottom: -50px;
  }
}
@media (min-width: 992px) {
  .recommendation-box__first::after {
    width: 284px;
    height: 184px;
    right: -10px;
    bottom: -120px;
  }
}

.self-check > .container {
  border-bottom: dotted 1px #552d11;
}

.transfer-box {
  position: relative;
  z-index: 1;
  align-items: center;
}
@media (min-width: 768px) {
  .transfer-box {
    gap: 0;
  }
}
@media (min-width: 992px) {
  .transfer-box {
    gap: 100px;
  }
}
.transfer-box__image {
  position: absolute;
  z-index: -1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  bottom: -100px;
  left: -80px;
  opacity: 0.4;
}
@media (min-width: 768px) {
  .transfer-box__image {
    position: static;
    width: 25%;
    opacity: 1;
  }
}
.transfer-box__image img {
  max-width: none;
  -o-object-fit: cover;
  object-fit: cover;
  transform: none;
  width: 215px;
}
@media (min-width: 768px) {
  .transfer-box__image img {
    width: 336px;
    transform: translateX(-40%);
  }
}
.transfer-box__inner {
  flex: 1;
  gap: 15px;
}
.transfer-box__inner .menu-plan__list {
  width: 100%;
}

.staff-pr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
}
@media (min-width: 768px) {
  .staff-pr-box {
    gap: 3.5vw;
    flex-direction: row;
  }
}
.staff-pr-box__image {
  width: 80%;
  border-radius: 20px;
  overflow: hidden;
}
@media (min-width: 768px) {
  .staff-pr-box__image {
    width: 35%;
  }
}
.staff-pr-box__image img {
  -o-object-fit: cover;
  object-fit: cover;
}
.staff-pr-box__text {
  width: 100%;
}
@media (min-width: 768px) {
  .staff-pr-box__text {
    width: 60%;
  }
}
.staff-pr-box__name {
  border-bottom: solid 1px #522a14;
  text-align: center;
}
@media (min-width: 768px) {
  .staff-pr-box__name {
    text-align: left;
  }
}

.recruit-link__wrap {
  gap: 10px;
}
@media (min-width: 992px) {
  .recruit-link__wrap {
    gap: 3.5vw;
  }
}
.recruit-link__side__image {
  width: 14%;
  -o-object-fit: contain;
  object-fit: contain;
  display: none;
}
@media (min-width: 768px) {
  .recruit-link__side__image {
    display: block;
  }
}
.recruit-link__center__box {
  position: relative;
  z-index: 1;
  flex: 1;
  justify-content: space-between;
  background: url(../images//20250610134529541885.jpg) center/cover no-repeat;
  border-radius: 20px;
  gap: 15px;
}
@media (min-width: 768px) {
  .recruit-link__center__box {
    flex-direction: row;
    gap: 30px;
  }
}
.recruit-link__center__box .fx-ttl-txt {
  min-width: auto;
  padding-top: 20px;
}
@media (min-width: 768px) {
  .recruit-link__center__box .fx-ttl-txt {
    padding-top: 0;
    padding-left: 40px;
  }
}
.recruit-link__link__btn {
  margin-top: auto;
  margin-left: auto;
}
.recruit-link__link__btn .button {
  height: auto;
  gap: 10px;
  padding: 5px 10px;
  background-color: #fff2d4;
  border-radius: 20px 0 0 0;
}
@media (min-width: 992px) {
  .recruit-link__link__btn .button {
    padding: 8px 20px;
  }
}
.recruit-link__link__btn .button > p {
  font-size: 0.875rem;
}
@media (min-width: 1200px) {
  .recruit-link__link__btn .button > p {
    font-size: 1rem;
  }
}
.recruit-link__link__btn .button::after {
  width: 40px;
  height: 21px;
}
@media (min-width: 992px) {
  .recruit-link__link__btn .button::after {
    width: 60px;
    height: 28px;
  }
}
@media (min-width: 1200px) {
  .recruit-link__link__btn .button::after {
    width: 80px;
    height: 38px;
  }
}

.list-wrap .dl-list {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .list-wrap .dl-list {
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
.list-wrap .dt-list {
  width: 120px;
  padding: 10px 0 0;
}
.list-wrap .dt-list > p {
  font-weight: bold;
}
@media (min-width: 768px) {
  .list-wrap .dt-list > p {
    font-weight: normal;
  }
}
.list-wrap .dd-list {
  flex: 1;
  padding: 5px 0 10px;
}
.list-wrap .dd-list > p {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .list-wrap .dd-list > p {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .list-wrap .dt-list,
  .list-wrap .dd-list {
    padding: 15px 0;
  }
}

.address-list {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 992px) {
  .address-list {
    gap: 50px;
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .address-list .list-wrap {
    min-width: 600px;
  }
}
.address-list .address-list-deco {
  max-width: 305px;
  display: none;
}
@media (min-width: 992px) {
  .address-list .address-list-deco {
    transform: translateX(6vw);
    display: block;
  }
}
.address-list .list-sns-links {
  display: flex;
  gap: 15px;
}
.address-list .list-sns-links > a {
  display: inline-block;
  padding: 0;
}
.address-list .list-sns-links > a > img {
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 32px;
}

.access-map > iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 700/420;
  border-width: 0;
}

.recruit-wrap {
  position: relative;
  z-index: 1;
}

.recruit-contents {
  width: 100%;
}
@media (min-width: 768px) {
  .recruit-contents {
    width: 63%;
  }
}
.recruit-contents .title-box-en::after {
  top: 30%;
  left: -50px;
}
@media (min-width: 768px) {
  .recruit-contents .title-box-en::after {
    top: 35%;
  }
}

.recruit-bg-imgs {
  z-index: -1;
  position: absolute;
  right: 0px;
  top: 50%;
  transform: translateY(-66%);
  width: 50%;
  opacity: 0.3;
}
@media (min-width: 576px) {
  .recruit-bg-imgs {
    right: -130px;
    transform: translateY(-50%);
  }
}
@media (min-width: 992px) {
  .recruit-bg-imgs {
    right: -80px;
    top: 0;
    transform: none;
    width: 35%;
    opacity: 1;
  }
}
.recruit-bg-imgs__top {
  max-width: 318px;
}
.recruit-bg-imgs__center {
  max-width: 443px;
}
.recruit-bg-imgs__bottom {
  max-width: 303px;
}

.concept-bg {
  background-position-x: 35% !important;
}
.trimming-bg {
  background-position-x: 30% !important;
}

/* popUp */
/* ポップアップ全体の背景 */
.attention-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: all 0.5s ease;
  display: flex;
  justify-content: center;
  align-items: center;
}

.attention-popup.attention-open {
  opacity: 1;
  visibility: visible;
  transition: all 0.5s ease;
}
.attention-popup.attention-close {
  opacity: 0;
  transition: all 0.5s ease;
}

.attention-popup p,
.attention-popup a {
  font-family: "dnp-shuei-mgothic-std", sans-serif;
  font-weight: bold;
  line-height: 1.5;
}

.popup-inner {
  background: #fff;
  padding: 2em;
  width: 90%;
  max-width: 1000px;
  text-align: center;
  border-radius: 10px;
  padding: 40px 20px;
}
@media (min-width: 576px) {
  .popup-inner {
    padding: 40px;
  }
}

.popup-inner__img {
  max-width: 228px;
  margin: 0 auto 25px;
}
@media (min-width: 576px) {
  .popup-inner__img {
    max-width: 450px;
  }
}
@media (min-width: 768px) {
  .popup-inner__img {
    max-width: 600px;
  }
}

.popup-inner__time__info {
  border: solid 1px #552d11;
  margin-bottom: 25px;
}

.popup-inner__time__info .top-text {
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #552d11;
  font-size: 24px;
  font-weight: bold;
  padding: 25px 35px;
}
@media (min-width: 576px) {
  .popup-inner__time__info .top-text {
    font-size: 28px;
  }
}
@media (min-width: 768px) {
  .popup-inner__time__info .top-text {
    font-size: 36px;
  }
}

.popup-inner__time__info .bottom-text {
  font-size: 16px;
  font-weight: bold;
  padding: 10px;
}
@media (min-width: 576px) {
  .popup-inner__time__info .bottom-text {
    font-size: 18.4px;
  }
}

.attention__line {
  color: #f67749;
  font-size: 24px;
  margin-bottom: 30px;
}
@media (min-width: 576px) {
  .attention__line {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .attention__line {
    font-size: 36px;
  }
}
.popup-inner__btn__wrap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.popup-inner__btn__wrap .outgoing,
.popup-inner__btn__wrap .cancel {
  display: block;
  font-size: 20px;
  width: fit-content;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .popup-inner__btn__wrap .outgoing,
  .popup-inner__btn__wrap .cancel {
    font-size: 26px;
  }
}
@media (min-width: 768px) {
  .popup-inner__btn__wrap .outgoing,
  .popup-inner__btn__wrap .cancel {
    font-size: 32px;
  }
}

.popup-inner__btn__wrap .outgoing {
  background-color: #f67749;
  border-radius: 10px;
  color: white;
  width: 100%;
  padding: 18px 25px;
}
@media (min-width: 576px) {
  .popup-inner__btn__wrap .outgoing {
    width: fit-content;
  }
}
.popup-inner__btn__wrap .cancel {
  color: #552d11;
}
