﻿@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;700&display=swap");

/* ///////////////////////////// */
/* スムーススクロール */
html {
  scroll-behavior: smooth;
}

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

/* ///// variable ///////////////////////////////// */
:root {
  --color-base: #251713;
  --color-white: #ffffff;
  --color-blue: #403f82;
  --color-brown: #251713;
  --color-gray: #eaebeb;
  --color-bg: #ffffff;
}

/* ///// founfation /////////////////////////////////  */
.f_default {
  position: relative;
  /* border-bottom: 3px solid #fff; */
}

.f_default img:not(:where(.l_cart img)) {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* PC画面の幅が769px以上の場合のみ適用するメディアクエリ */
@media (min-width: 769px) {
  .f_default img:not(:where(.l_cart img)) {
    max-width: 450px; /* 画像の最大幅を450pxに制限 */
    /* 最大幅を超えないように自動調整 */
    width: auto;
    width: 100%;
  }
}

.f_default a:not(:where(.l_cart a), .c_btn, .p_fotter_menu a) {
  text-decoration: none;
}

.f_default a:not(:where(.l_cart a)):hover {
  opacity: 0.5;
  transform: translate(1px, 1px);
}

.f_default a[href^=""]:not(:where(.l_cart a)) {
  pointer-events: none;
}

/* .f_default *:not(:where(.l_cart *)) {
  box-sizing: border-box;
  color: var(--color-base);
  letter-spacing: 0.03vw;
  font-weight: 500;
  font-size: min(1.5vw, 16px);
  font-family: inherit;
  line-height: 1.5;
} */

.mada {
  display: none !important;
}

/* ///// layout /////////////////////////////////  */
.l_body {
  margin: 0 auto;
  width: 100%;
  background-color: var(--color-bg);
  font-family: "M PLUS Rounded 1c", sans-serif;
}

.l_main {
  position: relative;
  margin: 0 auto;
  width: min(100%, 1300px);
  background-color: var(--color-white);
}

@media (max-width: 769px) {
  .l_main {
    max-width: 900px;
  }
}

@media (min-width: 1500px) {
  .l_main {
    width: 70%;
  }
}

/* section */
.l_sectioninner {
  position: relative;
  padding: 1% 3.5% 3.5%;
  border: 1.2vw solid #e7364a;
}

/* footer */
.l_footer {
  padding: 4% 0;
  background-color: #251713;
}

/* ///// component ///////////////////////////////// */
/* ttl */
h2.c_ttl {
  background: #231815;
  line-height: 1.2;
  color: #fff;
  padding: 0.6em 1.5em;
  width: fit-content;
  min-width: 50%;
  margin-bottom: 1em;
  margin-left: calc(-3.7% - 1.2vw - 3px);
  font-size: max(2.1vw, 18px);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

h2.c_ttl::before {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: url(../images/ttl_point.png) no-repeat;
  background-size: 100%;
  margin-right: 0.2em;
}

h2.c_ttl .c_ttl_sub {
  font-size: 0.5em;
  padding-left: 1em;
}

h3.c_ttl {
  background: #ed7d92;
  color: #fff;
  line-height: 1.2;
  font-size: max(1.7vw, 16px);
  font-weight: normal;
  padding: 0.5em 3em 0.5em 0.5em;
  border-radius: 0 9999px 9999px 0;
  width: fit-content;
  margin-bottom: 0.5em;
  transform: rotate(0.03deg);
}

.c_text {
  line-height: 1.8;
  transform: rotate(0.03deg);
  letter-spacing: 0.05em;
  font-size: max(1.4vw, 14px);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.c_text_emphasis {
  /* color: #8710a8; */
  color: #21ad37;
}

.c_text_large {
  font-size: 1.2em;
}

.c_text_small {
  font-size: 0.5em;
  vertical-align: bottom;
}

/* ///// project ///////////////////////////////// */
/* top */
.p_topimg img {
  width: 100%;
}

/* what */
.p_what_test {
  font-weight: bold;
  text-align: center;
}

/* info */
.p_info_grid {
  display: grid;
  grid: auto / 2fr 1fr;
  gap: 1rem;
  align-items: end;
}

.p_info_detail {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.5;
  transform: rotate(0.03deg);
  letter-spacing: 0.08em;
  font-size: max(1.1vw, 14px);
}

.p_info_detail dt,
.p_info_detail dd {
  padding: 1.3em 0.5em;
}

.p_info_detail dt:not(:last-of-type),
.p_info_detail dd:not(:last-of-type) {
  border-bottom: 1px solid #acabaa;
}

.p_info_detail dt {
  width: 8em;
}

.p_info_detail dt::before {
  content: "■";
}

.p_info_detail dd {
  width: calc(100% - 10em);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p_info_detail .c_text_emphasis {
  color: #fb0000;
}

.p_btn_map {
  grid-row: 1/3;
  grid-column: 2/3;
}

.p_btn_24h {
  background: #ed7d92;
  color: #fff;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(0.03deg);
  text-align: center;
  font-size: max(2.3vw, 16px);
  letter-spacing: 0.05em;
  position: relative;
  padding: max(3%, 15px);
}

.p_btn_24h::before {
  content: "";
  height: calc(100% - 10px);
  width: calc(100% - 10px);
  display: block;
  border: 1px solid #fbc600;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-sizing: border-box;
}

.p_btn_24h span {
  vertical-align: bottom;
}

.p_info_detail a {
  color: #251713;
}

@media (max-width: 768px) {
  .p_info_grid {
    grid: auto / 1fr;
  }

  .p_btn_map {
    grid-row: auto;
    grid-column: auto;
  }

  .p_info_detail dt {
    width: 100%;
    padding: 1.3em 0.5em 0.5em;
  }

  .p_info_detail dt:not(:last-of-type) {
    border-bottom: 0px;
  }

  .p_info_detail dd {
    width: 100%;
    padding: 0 0.5em 1.3em;
  }
}

/* fair */
h4.p_fair_ttl {
  line-height: 1.2;
  font-weight: bold;
  color: #8710a8;
  text-align: center;
  font-size: max(1.8vw, 16px);
  padding-bottom: 0.6em;
  transform: rotate(0.03deg);
}

h3.p_fair_ttl {
  text-align: center;
  line-height: 1.2;
  color: #006b2d;
  border-bottom: 2px solid #006b2d;
  padding: 0.2em 0.5em;
  font-size: max(3.5vw, 18px);
}

h2.p_fair_ttl {
  line-height: 1.2;
  font-weight: bold;
  color: #21ad37;
  text-align: center;
  font-size: max(1.8vw, 16px);
  padding-bottom: 0.6em;
  transform: rotate(0.03deg);
}

.p_fair_01_list {
  display: grid;
  grid: auto / 1fr 1fr 1fr;
  grid-gap: min(1.2vw, 1em);
  position: relative;
}

.p_fair_01_note {
  font-weight: bold;
  transform: rotate(0.03deg);
  line-height: 1.2;
  color: red;
  font-size: max(1.1vw, 0.5em);
  grid-column: 1/4;
  margin-left: auto;
  width: fit-content;
}

.p_fair_01_04 {
  grid-column: 1/4;
}

.p_fair {
  text-align: center;
  font-size: max(1.6vw, 14px);
  font-weight: bold;
}

.p_fair_note {
  text-align: center;
  line-height: 1.5;
  padding: 1em;
  color: #727171;
  font-size: max(1.2vw, 0.8rem);
  transform: rotate(0.03deg);
  word-break: break-all;
  overflow-wrap: break-word;
}

.p_fair_followrepost {
  position: relative;
}

.p_fair_x_yubarishoten {
  position: absolute;
  top: 67%;
  right: 5.4%;
  width: 9%;
}

.p_fair_section {
  padding: 3% 0 1.5%;
}
/*
.p_fair_section:not(:last-of-type) {
  border-bottom: 1px solid #8b8988;
}
*/

h6.p_fair_03_ttl {
  background: #3f3a39;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  padding: 0.5em 1em;
  margin: 0.5em auto;
  width: fit-content;
  min-width: 50%;
  border-radius: 0.6em;
  transform: rotate(0.03deg);
  font-size: max(2vw, 16px);
  letter-spacing: 0.05em;
}

.p_fair_02_list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  justify-items: center;
  gap: 1rem;
}

.p_fair_03_header {
  position: relative;
  display: grid;
  grid: auto / 10vw 1fr;
  width: fit-content;
  margin: auto;
}

.p_fair_new {
  background: #fcf57f;
  text-align: center;
  line-height: 1.2;
  font-weight: bold;
  color: #d45b8b;
  width: 8.9vw;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 999px;
  transform: rotate(-9deg);
  font-size: 1.2vw;
  grid-row: 1/3;
}

.p_fair_new_inner {
  vertical-align: bottom;
}

h5.p_fair_03_ttl_main {
  background: #ed7d92;
  line-height: 1.2;
  text-align: center;
  padding: 0.5em 1em;
  color: #fff;
  font-size: max(2vw, 16px);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
  margin: 2% auto;
}

.p_fair_03_profile_wrap {
  border: 1px solid #c1c0bf;
  padding: 0 2% 2%;
  margin-bottom: 4%;
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 1rem 2rem;
}

.p_fair_03_profile_wrap h6.p_fair_03_ttl {
  min-width: auto;
  border-radius: 9999px;
  padding: 0.5em 2.5em;
  grid-column: 1/3;
}

.p_fair_03_profile {
  line-height: 1.5;
  display: grid;
  grid: auto / 1fr 1fr;
  gap: 1rem;
}

.p_fair_03_profile_img {
  grid-column: 2/3;
  grid-row: 1/4;
}

.p_fair_03_name {
  font-weight: bold;
  display: flex;
  flex-direction: column;
  transform: rotate(0.05deg);
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p_fair_03_name_mein {
  font-size: max(3.2vw, 16px);
  line-height: 1;
}

.p_fair_03_name_mein::after {
  content: "さん";
  font-size: 0.5em;
}

.p_fair_03_agency {
  font-size: max(1.3vw, 11px);
}

.p_fair_03_profile_text {
  font-size: max(1.6vw, 11px);
  transform: rotate(0.03deg);
  padding: 0.5em 0;
}

.p_fair_03_sns {
  display: flex;
  flex-wrap: wrap;
}

.p_fair_03_sns_btn {
  padding: 3%;
  width: 50%;
  box-sizing: border-box;
}

.p_fair_03_schedule_wrap {
  display: flex;
  margin: 2% auto 5%;
}

.p_fair_03_schedule {
  width: 50%;
  padding: 0 3%;
  line-height: 1.5;
  box-sizing: border-box;
}

.p_fair_03_schedule:first-of-type {
  border-right: 4px dotted #959191;
}

.p_fair_03_schedule_ttl {
  background: #006b2d;
  text-align: center;
  color: #fff;
  font-weight: bold;
  width: 30%;
  aspect-ratio: 1/1;
  margin: 0.5em auto;
  border-radius: 9999px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2.2vw;
  letter-spacing: 0.15em;
  transform: rotate(0.03deg);
}

.p_fair_03_schedule_small {
  font-size: 0.65em;
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
}

.p_fair_03_costume {
  text-align: center;
  font-weight: bold;
  color: #ed7d92;
  transform: rotate(0.03deg);
  padding: 0.5em 0;
  font-size: max(1.6vw, 14px);
}

.p_fair_03_schedule_text {
  padding: 1rem 0;
  transform: rotate(0.03deg);
  line-height: 1.5;
  font-size: max(1.6vw, 14px);
}

.p_fair_03_time {
  font-size: 1.8em;
}

.p_fair_03_schedule_text .c_text_large {
  font-weight: bold;
  letter-spacing: 0.05em;
  font-size: 1.5em;
}

.p_fair_03_ticket_detail {
  background: #a98a75;
  line-height: 1.5;
  padding: 3% 5%;
  text-align: center;
  width: fit-content;
  margin: auto;
  border-radius: 6vw;
  color: #fff200;
  font-weight: bold;
  transform: rotate(0.03deg);
  font-size: max(1.6vw, 14px);
  margin: 5% auto;
}

.p_fair_03_ticket_detail p {
  padding: 0.5em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.fair_04_flex {
  display: flex;
}

.fair_04_flex img {
  margin: auto 1% auto 0%;
  width: 25%;
}

.p_fair_04 {
  width: 75%;
  text-align: center;
}

h5.p_fair_04_ttl_main {
  background: #ed7d92;
  line-height: 1.2;
  text-align: center;
  padding: 0.5em 1em;
  color: #fff;
  font-size: max(2vw, 16px);
  letter-spacing: 0.05em;
  transform: rotate(0.03deg);
  margin: 2% auto;
}

/* step */

.p_step_list {
  display: grid;
  grid: 1fr/1fr 1fr 1fr;
  gap: 1rem;
}

.p_step_item {
  padding: 5% 0;
  line-height: 1.5;
  border: 1px solid #dedddd;
  text-align: center;
  transform: rotate(0.03deg);
  display: flex;
  flex-direction: column;
}

.p_step_ttl {
  background: #ed7d92;
  color: #fff;
  font-size: max(1.9vw, 16px);
  padding: 0.3em;
}

.p_step_text {
  padding: 0.5em 0.5em 0;
  font-size: max(1.4vw, 14px);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  flex-direction: column;
}

.p_s_dlbtn2 {
  margin: 2% 0% 0% 5%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.p_s_dlbtn2 a {
  margin: 0% 2%;
}

@media (max-width: 600px) {
  .p_fair_02_list {
    grid: auto / 1fr;
  }

  .p_fair_03_profile_wrap {
    grid: auto / 1fr;
    margin-bottom: 8%;
  }

  .p_fair_03_profile_wrap h6.p_fair_03_ttl {
    grid-column: auto;
  }

  .p_fair_03_schedule_wrap {
    flex-direction: column;
  }

  .p_fair_03_schedule {
    width: 100%;
    padding: 4% 3%;
  }

  .p_fair_03_schedule:first-of-type {
    border-right: none;
    border-bottom: 4px dotted #959191;
  }
}

/* point */

.p_point_list {
  display: grid;
  grid: 1fr/1fr 1fr 1fr;
  gap: 1rem;
}

.p_point_item {
  padding: 5% 0;
  line-height: 1.5;
  border: 1px solid #dedddd;
  text-align: center;
  transform: rotate(0.03deg);
  display: flex;
  flex-direction: column;
}

.p_point_ttl {
  background: #ed7d92;
  color: #fff;
  font-size: max(1.9vw, 16px);
  padding: 0.3em;
}

.p_point_text {
  padding: 0.5em 0.5em 0;
  font-size: max(1.4vw, 14px);
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 600px) {
  .fair_04_flex {
    display: flex;
    flex-direction: column;
  }

  .fair_04_flex img {
    margin: auto;
    width: 50%;
  }

  .p_fair_04 {
    width: 100%;
  }

  .p_point_list {
    grid: auto / 1fr;
  }

  .p_step_list {
    grid: auto / 1fr;
  }

  .p_fair_03_name_mein {
    font-size: max(6.4vw, 16px);
  }

  .p_fair_03_profile_text {
    font-size: max(2.9vw, 11px);
  }

  .p_fair_03_schedule_ttl {
    font-size: 4.5vw;
  }

  .p_fair_03_header {
    grid: auto / 1fr;
  }

  .p_fair_new {
    grid-row: 1/2;
    width: 30%;
    margin: 0 auto 3%;
    font-size: 3.8vw;
  }
}

/* access */
#n_access {
  position: relative;
}

#n_access::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  aspect-ratio: 24/13;
  background: url(../images/access/bg_access.png) no-repeat;
  background-size: 137%;
  background-position: 0 55%;
}

/* footer */
.p_fotter_menu {
  display: flex;
  padding: 6% 5%;
  background-color: var(--color-brown);
  padding: 5% 3% min(4%, 2rem);
  justify-content: center;
}

.p_fotter_menu > div {
  display: flex;
  flex-direction: column;
}

.p_fotter_menu > div:not(:first-child) {
  margin-left: 8%;
}

.p_fotter_menu > div p:not(:first-child) {
  margin-top: 5%;
}

.p_fotter_menu > div p a {
  height: 2vh;
}

@media (max-width: 769px) {
  .p_fotter_menu > div p a {
    height: 1.2vh;
  }
}

.p_footer_foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 3% 5%;
  background-color: var(--color-white);
}

.p_foot_logo {
  width: 20%;
}

.p_foot_xandtopbtn {
  display: flex;
  align-items: center;
}

.p_foot_xandtopbtn p {
  display: flex;
  align-items: center;
  font-size: clamp(10px, 1.9vw, 20px);
}

.p_foot_xandtopbtn p:not(:first-child) {
  margin-left: 2vw;
}

.p_foot_xandtopbtn p:not(:first-child)::before {
  position: relative;
  left: -1vw;
  color: var(--color-brown);
  content: "|";
  font-size: inherit;
  font-family: inherit;
}

.p_foot_xandtopbtn a {
  height: 2vh;
}

.p_fotter_menu a {
  margin-bottom: 0.8em;
  display: flex;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transform: rotate(0.03deg);
  font-size: max(1.6vw, 16px);
  align-items: baseline;
  justify-content: center;
  line-height: 1;
}

.p_fotter_menu a span {
  font-size: 0.5em;
  color: #fff;
  padding-left: 0.8em;
}

.p_footer_log {
  max-width: 300px;
  width: 50%;
  margin: auto;
  padding: 0% 3% 0 !important;
  display: block;
}

.p_footer_log img {
  max-width: 100%;
  width: auto;
}

.p_copyright {
  color: #fff;
  font-size: 10px;
  text-align: center;
  padding: 3% 3% 3%;
  letter-spacing: 0.08rem;
  line-height: 20px;
}

@media (max-width: 769px) {
  .p_foot_xandtopbtn a {
    height: 1.2vh;
  }
}

/* margin-top */
.u_mt5 {
  margin-top: 5%;
}

.u_mt10 {
  margin-top: 10%;
}

/* margin-bottom */
.u_mb5 {
  margin-bottom: 5%;
}

/* ///// animation ///////////////////////////////// */

a.kira_01,
a.kira_02 {
  position: relative;
  display: inline-block;
  overflow: hidden;
}

.kira_01::before,
.kira_02::before {
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  content: "";
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

/* .kira_01 {
  width: 50%;
}

.kira_02 {
  width: 25%;
} */

@keyframes shine {
  100% {
    left: 125%;
  }
}

/* ///// responsive ///////////////////////////////// */
.sp {
  display: none;
}

.pc {
  display: block;
}

@media (max-width: 900px) {
  .sp {
    display: block;
  }

  .pc {
    display: none;
  }

  .br {
    display: block;
  }
}

/* -------------------------------------------
 shop-info
------------------------------------------- */
.shop-info {
  display: grid;
}

.shop-info__detail-item {
  display: flex;
  font-size: clamp(14px, calc(14px + (20 - 14) * (100vw - 375px) / (1300 - 375)), 20px);
  gap: 1.5em;
  align-items: flex-start;
}

.shop-info__detail-item:not(:last-child) {
  border-bottom: 1px solid #000;
  padding-bottom: 0.8em;
  margin-bottom: 0.8em;
}

.shop-info__detail-ttl {
  font-weight: bold;
  width: 7em;
  line-height: 1.2;
  padding: 0.5em 0.5em 0.3em;
  background: #e6e7e7;
  text-align: center;
  flex: 0 0 auto;
}

.shop-info__detail-text {
  line-height: 1.5;
}

.shop-info__map {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-info__map-ttl {
  text-align: center;
  font-size: clamp(14px, calc(14px + (16 - 14) * (100vw - 375px) / (1300 - 375)), 16px);
  line-height: 1;
  padding: 0.5em;
  border: 1px solid #000;
}

.shop-info__link-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.shop-info__link {
  font-size: clamp(11px, calc(11px + (14 - 11) * (100vw - 375px) / (1300 - 375)), 14px);
  border: 1px solid #000;
  padding: 1.2em 0.5em;
  text-align: center;
  border-radius: 1em;
  box-shadow: 0px 4px 4px 0px #00000040;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: 2 span;
  gap: 1em;
  align-items: center;
}

.shop-info__link--disabled {
  pointer-events: none;
  position: relative;
  overflow: hidden;
  &::after {
    content: "準備中";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #00000096;
    color: #fff;
    display: flex;
    font-size: 1.2em;
    justify-content: center;
    align-items: center;
    font-weight: bold;
  }
}

.shop-info__link-icon {
  width: 80%;
  margin-inline: auto;
  aspect-ratio: 3/2;
}

.shop-info__link-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.shop-info__link-detail {
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3em;

  &::after {
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    /* background: no-repeat center center/contain url(../images/icon-circle-arrow-right.svg); */
  }
}

@media (min-width: 769px) {
  .shop-info {
    grid-template-columns: 60% auto;
    column-gap: 78px;
    row-gap: 32px;
  }

  .shop-info__detail-text {
    padding-top: 0.3em;
  }

  .shop-info__map {
    grid-row: 1/3;
  }

  .shop-info__map-iframe {
    width: 100%;
    height: 100%;
    aspect-ratio: 360 / 614;
  }

  .shop-info__link-list {
    grid-column: 1/2;
    grid-row: 2/3;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .shop-info {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .shop-info__map-iframe {
    width: 100%;
    height: 30vh;
  }

  .shop-info__link-list {
    gap: 14px;
  }

  .shop-info__link-detail {
    gap: 0.2em;
  }
}

.p_info_btn {
  display: flex;
  /* width: fit-content; */
  /* margin: 5% auto 0; */
  justify-content: center;
  align-items: end;
  width: 100%;
  bottom: 10%;
  /* position: absolute; */
}

.p_info_btn a {
  /* width: calc(calc(100% - calc(4% * 3)) /4); */
}

.p_info_btn img {
  width: clamp(100%, 2vw, 80%);
}

.p_info_btn a:not(:first-child) {
  margin-left: 4%;
}

.article {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
