@charset "utf-8";

/*-------------------
root
-------------------*/
*,
::before,
::after {
  --clamp-root-font-size: 16;
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );

  font-size: var(--clamp);
}

:root {
  --color-white: #FFFFFF;
  --color-paperwhite: #FBFEFF;
  --color-black: #2c2c2c;
  
  --color-darkblue: #1E5985;
  --color-lightblue: #8DCADA;
  --color-bgblue: #B8E1EC;
  --color-yellow: #FFC84A;
  --color-lightyellow: #FFE88C;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 999px;
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --font-weight-heavy: 900;
  
  --contents-gap-sm: 8px;
  --contents-gap-md: 16px;
  --contents-gap-lg: 24px;
}

@media screen and (min-width: 769px) {
  :root {
    --contents-gap-sm: 16px;
    --contents-gap-md: 24px;
    --contents-gap-lg: 40px;
  }
}

/*-------------------
base
-------------------*/
body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
  letter-spacing: 0.02em;
  display: grid;
  grid-template-areas:
    "contents"
    "footer";
  grid-template-rows: 1fr auto;
  grid-template-columns: 1fr;
  height: 100svh;
}

img {
  max-width: 100%;
  line-height: 0;
}

.img_p {
  position: relative;  
  display: inline-block;
}

.img_p img {
  display: block;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.img_p::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background: transparent;
  pointer-events: all;
}

.img_pic::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/transparent.png");
  background-size: cover;
  background-repeat: repeat;
  background-position: left top;
  pointer-events: all;
}

h1 {
  margin-block-start: 0;
  margin-block-end: 0;
}

.sp_view {
  display: block;
}

.pc_view {
  display: none;
}

@media screen and (min-width: 769px) {
  .sp_view {
    display: none;
  }
  .pc_view {
    display: block;
  }
}


/*-------------------
contents
-------------------*/
main, footer {
  font-family: "ryo-gothic-plusn", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.bg_wrap {
  display: block;
  width: 100vw;
  height: 100vh;
  position: fixed;
  inset: 0;
  z-index: -10;
}

.bg_wrap > img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.text_lead {
  --clamp-min: 20;
  --clamp-max: 25;
  text-align: center;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-heavy);
}

.text_lead--md {
  margin-block-end: 16px;
} 

.text_lead--md .strong  {
  --clamp-min: 24;
  --clamp-max: 28;
}

.text_lead--md .down  {
  --clamp-min: 14;
  --clamp-max: 16;
}

.slash {
  margin: 0 0.25em;
}

.area {
  width: 100%;
  margin-block-end: 64px;
  margin-inline: auto;
}

.area_box {
  width: calc(100% - var(--contents-gap-lg));
  max-width: 1100px;
  margin: 0 auto;
  padding-block: 28px;
  padding-inline: 12px;
  background-color: var(--color-white);
  border-radius: var(--radius-md);
}

.area_box--yellow {
  border: solid 4px var(--color-lightyellow);
  box-sizing: border-box;
}

.area_box--blue {
  border: solid 4px var(--color-lightblue);
  box-sizing: border-box;
}

.area_box .image {
  max-width: 800px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  border: solid 1px var(--color-yellow);
  overflow: hidden;
}

.notice_box_wrap {
  width: calc(100% - var(--contents-gap-lg));
  max-width: 1052px;
  margin-inline: auto;
  display: block;
  position: relative;
  filter: drop-shadow(4px 4px 0px rgba(141, 202, 218, 1));
  transform: translateZ(0);
}  

.notice_box_wrap::before, .notice_box_wrap::after {
  content: "";
  width: 20px;
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  top: -10px;
}

.notice_box_wrap::before {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/pin_left.png");
  left: 8px;
  z-index: 1;
}

.notice_box_wrap::after {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/pin_right.png");
  right: 8px;
  z-index: 1;
}

.notice_box {
  width: 100%;
  padding: 28px;
  position: relative;
  background: var(--color-paperwhite);
  clip-path: polygon(
    0 0,
    100% 0,
    100% calc(100% - 30px),
    calc(100% - 30px) 100%,
    0 100%
  );
}

.notice_box::after {
  content: '';
  position: absolute;
  width: 30px;
  height: 30px;
  bottom: 0;
  right: 0;
  background-color: #E1F0F1;
}

.list_notice {
  margin-inline: auto;
  padding-left: 1.2em;
  --clamp-min: 14;
  --clamp-max: 16;
}

.list_notice li::before {
  content: "※";
  position: absolute;
  margin-left: -1.2em;
  color: inherit;
}

.list_notice li {
  position: relative;
  margin-bottom: 0.2em;
  line-height: 1.5;
  color: var(--color-black);
}

.btn_wrap {
  max-width: 228px;
  inline-size: fit-content;
  display: flex;
  padding: 8px 16px 8px 20px;
  margin-inline: auto;
  border-radius: var(--radius-full);
  justify-content: space-around;
  align-items: center;
  background-color: var(--color-darkblue);
}

.btn {
  --clamp-min: 18;
  --clamp-max: 20;
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
  padding-inline-end: 24px;
}

.btn_arrow {
  width: 32px;
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

.line_dot {
  height: 2px;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  background-repeat: repeat-x;
  background-size: 8px 2px;
  background-position: center;
}

.line_dot--blue {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/line_blue.png");
  background-size: 8px 2px;
}

.line_dot--yellow {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/line_yellow.png");
}

.line_dot--yellow {
  background-image: repeating-linear-gradient(
    to right,
    #FFC84A 0,
    #FFC84A 4px,
    transparent 2px,
    transparent 8px
  );
}

@media screen and (min-width: 769px) {
  .text_lead--md {
    margin-block-end: 28px;
  }
  
  .area {
    width: calc(100% - var(--contents-gap-lg));
    margin-block-end: 100px;
    max-width: 1280px;
  }
  
  .area_box {
    padding-inline: 48px;
    padding-block-start: 56px;
    padding-block: 72px;
  }
  
  .btn_wrap {
    max-width: 246px;
  }
  
  .notice_box_wrap::before, .notice_box_wrap::after {
    width: 26px;
  }
}

/*dome*/
.contents_dome {
  width: 100%;
  height: auto;
  padding-block-start: 48px;
  position: relative;
  z-index: 0;
}

.contents_dome::before {
  content: "";
  width: 16px;
  aspect-ratio: 1 / 1;
  display: block;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/title_star.png");
  position: absolute;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  top: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.contents_dome::after {
  content: "";
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  aspect-ratio: 1 / 1;
  pointer-events: none;
}

#bonus .contents_dome::after {
  width: 116px;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/title_bonus_en.png");
}

#goods .contents_dome::after {
  width: 60px;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/title_lineup_en.png");
}

#shop .contents_dome::after {
  width: 74px;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/title_shop_en.png");
}

.contents_dome--bg {
  width: 100%;
  height: auto;
  padding-block-start: 32px;
  padding-bottom: 40px;
  position: relative;
  background-color: var(--color-bgblue);
  background-repeat: repeat;
  z-index: -2;
  overflow: hidden;
}

.contents_dome--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/bg_noise.png");
  background-repeat: repeat;
  background-size: 100px;
  mix-blend-mode: overlay;
  z-index: -1;
  opacity: 0.4;
}

.contents_head {
  content: "";
  width: 174px;
  aspect-ratio: 37 / 14;
  display: block;
  position: absolute;
  background-color: var(--color-bgblue);
  clip-path: ellipse(50% 100% at 50% 100%);
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -5;
  overflow: hidden;
}

.contents_head::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/bg_noise.png");
  background-repeat: repeat;
  background-size: 100px;
  mix-blend-mode: overlay;
  z-index: -1;
  opacity: 0.4;
}

.heading_dome {
  height: 28px;
  display: block;
  width: fit-content; 
  position: relative;
  margin-inline: auto;
  margin-block-end: 20px;
  text-align: center;
  z-index: 1;
}

.heading_dome img {
  width: auto;
  height: 100%;
}

.heading_dome::before {
  content: "";
  width: 69px;
  aspect-ratio: 1.68 / 1;
  display: block;
  position: absolute;
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  transform: rotate(-8deg);
  top: -16px;
  left: -52px;
  z-index: -1;
}

#bonus .heading_dome::before {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/stamp01.png");
}

#goods .heading_dome::before {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/stamp02.png");
}

#shop .heading_dome::before {
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/stamp03.png");
}

.contents_inner {
  display: grid;
  grid-row-gap: 40px;
}

@media screen and (min-width: 769px) {
  .contents_dome {
    padding-block-start: 92px;
  }
  
  .contents_dome::before {
    width: 24px;
    top: 88px;
  }
  
  .contents_dome--bg {
    padding-block-start: 52px;
    padding-bottom: 64px;
    border-radius: var(--radius-lg);
  }
  
  .contents_head {
    width: 346px;
  }
  
  .heading_dome {
    height: 52px;
    margin-block-end: 28px;
  }
  
  .heading_dome::before {
    width: 108px;
    top: -24px;
    left: -72px;
  }
  
  .contents_inner {
    grid-row-gap: 80px;
  }
  
  .contents_dome::after {
    top: 36px;
  }
  
  #bonus .contents_dome::after {
    width: 237px;
  }

  #goods .contents_dome::after {
    width: 128px;
  }

  #shop .contents_dome::after {
    width: 158px;
  }
}

/*heroview*/

.heroview_wrap {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.heroview_sp {
  width: 100%;
  height: auto;
}

.heroview_pc,
.heroview_sp img,
.heroview_sp picture {
  opacity: 0;
  transform: scale(0.95);
  will-change: opacity, transform;
  animation: fadeScaleIn 1.2s ease-out forwards;
}

@keyframes fadeScaleIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media screen and (min-width: 769px) {
  .heroview_wrap {
    height: 100svh;
    overflow: hidden;
    box-sizing: border-box;
  }
  
  .heroview_pc {
    width: 100%;
    height: 100%;
    background-image: url(https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/keyvisual_pc.jpg);
    background-repeat: no-repeat;
    background-size: auto 100%;
    background-position: top center;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-drag: none;
    pointer-events: none;
  }
}

/*intro*/

.wrap_introduction {
  width: 100%;
  height: auto;
  margin-block-end: 64px;
  position: relative;
  background-color: var(--color-bgblue);
}

.wrap_introduction::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/bg_noise.png");
  background-repeat: repeat;
  mix-blend-mode: overlay;
  opacity: 0.4;
}

.wrap_introduction .area {
  margin-block-end: 0;
}

.wrap_introduction--bg {
  width: 100%;
  height: 100%;
  padding-block-start: 64px;
  padding-block-end: 64px;
  position: relative;
  z-index: 0;
}

.wrap_introduction--bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  inset: 0;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/bg_dot.png");
  background-repeat: repeat;
  z-index: -1;
  opacity: 0.1;
}

.heading_intro {
  margin-block-end: 16px;
  --clamp-min: 24;
  --clamp-max: 39;
  text-align: center;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-heavy);
}

.list_info {
  width: fit-content;
  margin: auto;
  display: grid;
  align-items: center;
  justify-content: center;
  grid-template-columns: auto;
}

.list_info_heading {
  inline-size: fit-content;
  margin-inline: auto;
  margin-block-end: 8px;
  text-align: center;
}

.list_info_heading span {
  width: 5.5em; 
  display: inline-block;
  padding: 4px 16px;
  text-align: center;
  box-sizing: content-box;
  border-radius: var(--radius-full);
  background-color: var(--color-darkblue);
  --clamp-min: 16;
  --clamp-max: 18;
  font-weight: var(--font-weight-normal);
  color: var(--color-white);
}

.list_info_body {
  --clamp-min: 20;
  --clamp-max: 24;
  margin-block-end: 16px;
  text-align: center;
  font-weight: var(--font-weight-heavy);
  color: var(--color-darkblue);
}

.list_info_body--url {
  margin-inline: auto;
  font-weight: var(--font-weight-normal);
}

.list_info_full {
  grid-column: 1 / -1;
  color: var(--color-darkblue);
  margin-block-end: 16px;
}

.list_info--inlist {
  inline-size: fit-content;
}

.list_info--inlist li {
  color: var(--color-darkblue);
}

.info_flex a {
  display: block;
  margin-inline: auto;
}

.list_info_body a, .info_flex a {
  --clamp-min: 16;
  --clamp-max: 18;
}

.list_shoplogo {
  width: 120px;
  margin-block-end: 8px;
}

.label＿circle {
  margin-inline: 0.2em;
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: solid 1px var(--color-darkblue);
  --clamp-min: 15;
  --clamp-max: 16;
  text-align: center;
  transform: translateY(-0.12em);
}

@media screen and (min-width: 769px) {
  .wrap_introduction{
    margin-block-end: 100px;
  }
  
  .wrap_introduction--bg {
    padding-block-start: 80px;
    padding-block-end: 100px;
  }
  
  .heading_intro {
    margin-block-end: 24px;
  }
  
  .list_info {
    grid-template-columns: auto minmax(0, 1fr);
    justify-content: flex-start;
    column-gap: 40px;
    row-gap: 12px; 
  }
  
  .list_info_heading {
    text-align: left;
    inline-size: fit-content;
    margin-block: 0;    
  }
  
  .list_info_heading span {
    padding: 8px 16px;
  }
  
  .list_info_body {
    text-align: left;
    inline-size: fit-content;
    margin-block: 0;
  }
  
  .list_info_body--url {
    margin-block: 0;
    margin-inline: 0;
  }
  
  .info_flex {
    display: flex;
    align-items: center;
    column-gap: 16px;
    margin-inline: 0;
  }
  
  .info_flex a {
    display: inline-block;
  }
  
  .list_shoplogo {
    width: 150px;
    display: inline-block;
    margin-block: 0;
  }
}

@media screen and (min-width: 1280px) {
  .label＿circle {
    width: 26px;
    height: 26px;
  }
}

/*illust*/

.illust_wrap {
  width: 100%;
  height: 100%;
  position: relative;
  padding-block-start: 24px;
  padding-block-end: 12px;
}

.illust_box--sp {
  width: calc(100% + 40px);
  display: flex;
  justify-content: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.illust_box--sp .illust_item {
  width: calc(100% / 6);
  max-width: 72px;
}

.illust_box--sp01 {
  top: -64px;
}

.illust_box--sp02 {
  bottom: -64px;
}

.illust_box--sp .illust_item:nth-child(odd) {
  transform: translateY(-8px);
}

@media screen and (min-width: 769px) {
  .illust_wrap {
    padding-block-start: 0;
    padding-block-end: 36px;
  }
  
  .illust_box {
    width: calc(100% + 80px);
    display: flex;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -86px;
  }

  .illust_item {
    width: calc(100% / 11);
    margin-left: -6px;
  }

  .illust_item:first-child {
    margin-left: 0;
  }

  .illust_item:nth-child(odd) {
    transform: translateY(16px);
  }
}

@media screen and (min-width: 1280px) {
  .illust_wrap {
    padding-block-end: 64px;
  }
  
  .illust_box {
    width: calc(100% + 140px);
  }
}

/*goods*/

.heading_item {
  width: fit-content;
  display: block;
  margin-inline: auto;
  margin-block-end: 20px;
  padding: 8px 20px;
  position: relative;
  text-align: center;
  --clamp-min: 20;
  --clamp-max: 32;
  color: var(--color-white);
  font-weight: var(--font-weight-bold: 700);
  background-color: #4499AE;
  z-index: 1;
}

.heading_item::before,
.heading_item::after {
  content: "";
  width: 32px;
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  background-color: #4499AE;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  z-index: -1;
}

.heading_item::before {
  left: -8px;
}

.heading_item::after {
  right: -8px;
}

.heading_item span {
  display: inline-block;
  margin-inline: auto;
  position: relative;
}

.heading_item span::before,
.heading_item span::after {
  content: "";
  width: 8px;
  aspect-ratio: 1 / 1;
  display: block;
  position: absolute;
  background-color: #C1E5EE;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
}

.heading_item span::before {
  left: -16px;
}

.heading_item span::after {
  right: -16px;
}

.list_item_wrap {
  width: calc(100% - var(--contents-gap-lg));
  max-width: 1100px;
  margin: 0 auto;
}

.item_flex {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 8px;
  grid-row-gap: 24px;
}

.card_wrap {
  filter: drop-shadow(4px 4px 0px rgba(141, 202, 218, 1));
  transform: translateZ(0);
  will-change: transform;  
}

.item_card {
  height: 100%;
  display: grid;
  position: relative;
  grid-row: span 5;
  grid-row-gap: var(--radius-md);
  justify-content: center;
  position: relative;
  padding-block-start: 40px;
  padding-block-end: 30px;
  padding-inline: 20px;
  background-color: var(--color-lightyellow);
  border: solid 6px var(--color-yellow);
  border-radius: var(--radius-lg);
  box-sizing: border-box;
}

.item_card::after {
  content: "";
  width: 16px;
  aspect-ratio: 1 / 1.7917;
  position: absolute;
  background-image: url("https://cf.creativeplus.co.jp/hetaliaws-round1-cp.jp/img_x2tsdmbh_01/item_goods_accsesary.png");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: contain;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
}

.item_thum_wrap .line_dot {
  margin-block-start: 12px;
  margin-block-end: 8px;
}

.item_thum {
  margin-block-end: var(--radius-lg);
  border: solid 1px var(--color-yellow);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.item_label {
  inline-size: fit-content;
  display: inline-block;
  margin-inline: auto;
  padding: 4px 16px 3px 16px;
  border-radius: var(--radius-full);
  border: solid 1px var(--color-darkblue);
  --clamp-min: 14;
  --clamp-max: 16;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-medium);
  background-color: var(--color-white);
}

.item_name {
  display: grid;
  align-items: center;
  justify-content: center;
  --clamp-min: 24;
  --clamp-max: 28;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-heavy);
  text-align: center;
}

.item_price {
  --clamp-min: 20;
  --clamp-max: 24;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-medium);
  text-align: center;
}

.item_tax {
  --clamp-min: 14;
  --clamp-max: 16;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 480px) {
  .item_flex {
    grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  }
}

@media screen and (min-width: 769px) {
  .heading_item {
    margin-block-end: 40px;
  }
  
  .heading_item::before, .heading_item::after {
    width: 40px;
  }
  
  .item_flex {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 48px;
    grid-row-gap: 40px;
  }
  
  .card_wrap 
    filter: drop-shadow(6px 6px 0px rgba(141, 202, 218, 1));
  }
  
  .item_card {
    padding-block-start: 46px;
    border: solid 8px var(--color-yellow);
  }
  
  .item_card::after {
    width: 20px;
  }
}

@media screen and (min-width: 1280px) {
  
  .item_card {
    padding-block-start: 50px;
  }
  
  .item_card::after {
    width: 24px;
    top: -6px;
  }
}

/*shop*/
.contents_inner-gap40 {
  grid-row-gap: 40px;
}

.list_shop {
  color: var(--color-black);
}

.shop_item {
  display: block;
  padding-block: 16px;
  grid-template-columns: 230px 1fr;
  border-bottom: solid 1px var(--color-lightblue);
}

.shop_item dt {
  padding-block-end: 8px;
  position: relative;
  --clamp-min: 18;
  --clamp-max: 24;
  text-align: center;
  font-weight: var(--font-weight-medium);
}

.shop_item dd {
  text-align: center;
  --clamp-min: 20;
  --clamp-max: 24;
  font-weight: var(--font-weight-medium);
}

.shop_item--title {
  display: none;
}

.shop_item--sptitle {
  border-top: solid 1px var(--color-lightblue);
}

.shop_item--title dd {
  padding-inline: 0;
}

.shop_item--title img {
  height: 40px;
}

.list_notice--shop {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .shop_item {
    display: grid;
    padding-block: 8px;
    grid-template-columns: 230px 1fr;
    border-bottom: solid 2px var(--color-lightblue);
  }

  .shop_item dt {
    padding-block: 12px;
    position: relative;
  }

  .shop_item dt::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 100%;
    background-image: linear-gradient(
      #8DCADA 4px,
      transparent 4px
    );
    background-size: 1px 8px;
    background-repeat: repeat-y;
  }

  .shop_item dd {
    padding-inline-start: 1em;
    padding-block: 12px;
    text-align: left;
  }

  .shop_item--title {
    justify-content: center;
    text-align: center;
    border-top: 0;
  }

  .shop_item--title dd {
    padding-inline: 0;
  }
  
  .shop_item--sptitle {
    border-top: 0px;
  }
}
  
  /*footer*/
.footer {
  display: grid;
  padding-block-end: 80px; 
  justify-content: center;
  grid-row-gap: 64px;
}

.footer_info {
  display: grid;
  justify-content: center;
  justify-items: center;
  grid-row-gap: 24px;
}

.footer_fukidashi {
  width: 160px;
}

.footer_snsheading {
  width: 260px;
}

.footer_infotext {
  --clamp-min: 16;
  --clamp-max: 18;
  text-align: center;
  color: var(--color-darkblue);
  font-weight: var(--font-weight-bold);
}

.footer_snslink a {
  width: 260px;
  display: block;
}

.footer_snslink a:first-child {
  margin-block-end: 24px;
}

.footer small {
  --clamp-min: 14;
  --clamp-max: 16;
  text-align: center;
  color: var(--color-black);
  font-weight: var(--font-weight-medium);
}

@media screen and (min-width: 769px) {
  .footer_fukidashi {
    width: 220px;
  }
  
  .footer_snsheading {
    width: 320px;
  }
  
  .footer_snslink {
    display: flex;
  }
  
  .footer_snslink a:first-child {
    margin-inline-end: 40px;
    margin-block-end: 0px;
  }
}