@charset "UTF-8";
/**
 * Project Name    : MISAWAホーム スタンプラリーシステム

 * File Name       : style.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _variables.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
/*==========================================================================
  Break point
============================================================================*/
/*==========================================================================
  Font
============================================================================*/
@font-face {
  font-family: "din";
  src: url("../font/DINEngschriftStd.woff2") format("woff2"), url("../font/DINEngschriftStd.woff") format("woff");
}
/*Solid/900*/
/*Brand/400*/
/*==========================================================================
  color
============================================================================*/
/*==========================================================================
  mixin
============================================================================*/
/*==========================================================================
  gradient
============================================================================*/
/*==========================================================================
  trianle
============================================================================*/
/*==========================================================================
Easing
Easingの動きが一覧でわかるチートシート https://easings.net/ja
Easingジェネレーター https://easings.co/
==========================================================================*/
/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _common.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
/*==========================================================================
 reset
============================================================================*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
}

body {
  line-height: 1;
  transition: all 1s;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  line-height: 1.8461538462;
  letter-spacing: 0.05em;
  font-weight: 400;
  color: #4c4948;
}
@media screen and (min-width: 960px) {
  body {
    font-size: 14px;
    line-height: 1.8571428571;
    letter-spacing: 0.08em;
    font-weight: 400;
  }
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

nav ul, ul, ul li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  transition: all 0.3s ease-out;
  color: #348ac2;
  text-decoration-line: underline;
}
a:hover {
  color: #eb6b85;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

p {
  margin: 0;
}

section {
  margin-top: 60px;
}

input[type=text],
input[type=password],
input[type=email] {
  height: 40px;
  width: 100%;
  padding: 10px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 500;
}

input[type=checkbox] {
  width: 20px;
  height: 20px;
  accent-color: #eb6b85;
}

.spNone {
  display: none;
}
@media screen and (min-width: 960px) {
  .spNone {
    display: block;
  }
}

@media screen and (min-width: 960px) {
  .pcNone {
    display: none;
  }
}

/*==========================================================================
 電話番号の非リンク
============================================================================*/
@media screen and (min-width: 960px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/*==========================================================================
 bodyの左端にロゴ表示
============================================================================*/
body {
  position: relative;
}
body.nav-open {
  overflow: hidden; /* モーダルが開かれた場合にのみ動的に設定する必要有り */
}

/*==========================================================================
 HEADER
============================================================================*/
header {
  height: 80px;
}
header .site-logo {
  width: 100%;
  height: 100%;
}
header .site-logo img {
  height: 6vw;
  max-height: 30px;
}

#top .site-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  #top .site-logo {
    justify-content: flex-start;
    margin-left: 10px;
  }
}

#gallery header {
  display: flex;
  justify-content: space-between;
}
#gallery header .site-logo {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-left: 10px;
}
#gallery header .gnav {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 100%;
}
#gallery header .gnav > div:nth-child(1) {
  border-left: 1px solid #4c4948;
  padding: 0 5px;
}
#gallery header .gnav > div:nth-child(2) {
  padding: 0 10px 0 0;
}
#gallery header .gnav a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 55px;
  text-decoration: none;
  color: #4c4948;
}
#gallery header .gnav a img {
  height: 25px;
  object-fit: contain;
}
#gallery header .gnav a span {
  font-size: 9px;
}

/*==========================================================================
 FOOTER
============================================================================*/
footer {
  background: #fcfaf2;
}
footer .f-navi {
  border-top: 1px solid #4c4948;
  border-bottom: 1px solid #4c4948;
  display: flex;
  flex-direction: row;
}
footer .f-navi > div {
  width: 50%;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .f-navi > div:nth-child(1) {
  border-right: 1px solid #4c4948;
}
footer .f-navi > div a {
  color: #000;
  text-decoration: none;
}
footer .f-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
}
footer .f-logo img {
  height: 6vw;
  max-height: 40px;
}
footer .copy-raght {
  text-align: center;
  padding: 0 0 20px 0;
}

/*==========================================================================
  共通
============================================================================*/
.key-visual .key-visual-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
}
.key-visual .key-visual-wrap img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .key-visual .key-visual-wrap img {
    width: 80%;
  }
}
.key-visual .key-visual-wrap img:nth-child(1) {
  position: relative;
  left: 3vw;
}

/*
 * エラー部
 */
.error-message {
  color: #ff0000;
  text-align: left;
}

.message.error {
  width: 100%;
  color: #ff0000;
  border: 1px solid #ff0000;
  padding: 10px;
  margin: 10px 0;
}

/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _navigation.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
/*==========================================================================
 navigation
============================================================================*/
/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _top.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
@media screen and (min-width: 768px) {
  #top .account > div {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
  }
}
#top .account-wrap {
  background: #c8e4e9;
  padding: 30px 20px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  #top .account-wrap {
    width: 49%;
    margin-bottom: 0px;
  }
}
#top .account-wrap:last-child {
  margin-bottom: 0px;
}
#top .account-wrap .ttl {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  border-bottom: 4px solid #4c4948;
  position: relative;
  padding: 4px 0;
}
#top .account-wrap .ttl::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  background: #eb6b85;
  width: 100px;
  height: 4px;
}
#top .account-wrap .discription {
  margin-top: 10px;
}
#top .account-wrap .body .item {
  margin: 14px 0 0 0;
}
#top .account-wrap .body .item .item-name {
  font-weight: 600;
}
#top .account-wrap .body .accept-check {
  text-align: center;
}
#top .account-wrap .body .accept-check .item-name {
  display: flex;
  justify-content: center;
  align-items: center;
}
#top .account-wrap .body .accept-check .item-name input {
  margin-right: 10px;
}
#top .account .account-has-account {
  position: relative;
}
#top .account .account-has-account .reset-pwd {
  text-align: center;
}
#top .account .account-has-account::before {
  position: absolute;
  content: "";
  background-image: url("../img/accessory01.png");
  background-repeat: no-repeat;
  background-size: 22px 50px;
  right: 5px;
  top: -40px;
  width: 43px;
  height: 100px;
}
#top .account .account-none-account .full-name {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#top .account .account-none-account .full-name > div {
  width: 49%;
}

.next-point-right .present-yellow .body > div {
  padding: 2vw;
  margin: 2vw;
  background: #fdd23e;
}
@media screen and (min-width: 960px) {
  .next-point-right .present-yellow .body > div {
    padding: 10px;
    margin: 10px;
  }
}
.next-point-right img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _layout.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
/*==========================================================================
 各種inner設定
============================================================================*/
.inner {
  width: 100%;
  max-width: 960px;
  height: 100%;
  margin: 0 auto;
  padding-right: 4vw;
  padding-left: 4vw;
  position: relative;
}
@media screen and (min-width: 960px) {
  .inner {
    padding-right: 0;
    padding-left: 0;
  }
}

.border-backgraoud {
  height: 100%;
  width: 100%;
  background-size: auto auto;
  background-color: rgb(211, 241, 246);
  background-image: repeating-linear-gradient(90deg, transparent, transparent 14px, rgb(203, 232, 237) 14px, rgb(203, 232, 237) 28px);
}

.wave-top {
  position: relative;
}
.wave-top::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  background-image: url("../img/wave.svg");
  background-repeat: repeat-x;
  background-size: 74px 20px;
  width: 100%;
  height: 100%;
  background-position: bottom;
  transform: rotate(180deg);
}

.wave-bottom {
  position: relative;
}
.wave-bottom::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  background-image: url("../img/wave.svg");
  background-repeat: repeat-x;
  background-size: 74px 20px;
  width: 100%;
  height: 100%;
  background-position: bottom;
}

.btn {
  width: 100%;
}
.btn a {
  width: 100%;
  background: #eb6b85;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: 40px;
  border-radius: 5px;
  font-weight: 600;
}

.circle {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.circle-white {
  background: #fff;
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #4c4948;
}
.circle-white span {
  font-size: 9px;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  top: -10px;
}
.circle-white > div {
  position: relative;
  top: 4px;
}

.circle-pink {
  background: #eb6b85;
  width: 64px;
  height: 64px;
  font-size: 26px;
  line-height: 0.9230769231;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
}
.circle-pink span {
  font-size: 11px;
  line-height: 2.1818181818;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  top: -10px;
}
.circle-pink > div {
  position: relative;
  top: 4px;
}

.circle-sky {
  background: #348ac2;
  width: 48px;
  height: 48px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: #fff;
}
.circle-sky span {
  font-size: 9px;
  line-height: 2.6666666667;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  top: -10px;
}
.circle-sky > div {
  position: relative;
  top: 4px;
}

.lets-start {
  padding: 60px 0;
  display: flex;
  justify-content: center;
  width: 100%;
}
.lets-start img {
  width: 100%;
  max-width: 400px;
}

.stamps {
  padding-bottom: 60px;
}
.stamps .stamp-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stamps .other {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}
.stamps .other > div {
  background: #fff;
  text-align: center;
  padding: 10px;
  width: 100%;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
}
@media screen and (min-width: 960px) {
  .stamps .other > div {
    font-size: 12px;
    width: 350px;
  }
}

.stamp01 {
  width: 100%;
  position: relative;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 35px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 768px) {
  .stamp01 {
    width: 49%;
  }
}
.stamp01 .circle {
  position: absolute;
  top: -20px;
  left: 0px;
  z-index: 1;
}
.stamp01 .decoration {
  position: absolute;
  left: 50%;
  top: -4vw;
  transform: translateY(0%) translateX(-50%);
  -webkit-transform: translateY(0%) translateX(-50%);
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .stamp01 .decoration {
    top: -2vw;
  }
}
@media screen and (min-width: 960px) {
  .stamp01 .decoration {
    top: -18px;
  }
}
.stamp01 .decoration img {
  width: 57vw;
}
@media screen and (min-width: 768px) {
  .stamp01 .decoration img {
    width: 30vw;
  }
}
@media screen and (min-width: 960px) {
  .stamp01 .decoration img {
    width: 290px;
  }
}
.stamp01 .body {
  aspect-ratio: 1.55;
}

.exhibition .body {
  display: grid;
  grid-template-columns: 25% 15% 60%;
  grid-template-rows: 50% 15% 30% 5%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 50px 0 0 10px;
}
.exhibition .body .stamp-name {
  grid-area: 1/1/3/3;
  font-size: 7vw;
  line-height: 1.4;
  letter-spacing: 0.2em;
  font-weight: 900;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .exhibition .body .stamp-name {
    font-size: 3vw;
  }
}
@media screen and (min-width: 960px) {
  .exhibition .body .stamp-name {
    font-size: 37px;
  }
}
.exhibition .body .memo {
  grid-area: 3/1/4/3;
  font-size: 2vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .exhibition .body .memo {
    font-size: 1.4vw;
  }
}
@media screen and (min-width: 960px) {
  .exhibition .body .memo {
    font-size: 11px;
  }
}
.exhibition .body .visual {
  grid-area: 1/2/5/4;
  display: flex;
  align-items: flex-end;
  z-index: 0;
}
.exhibition .body .visual img {
  width: 100%;
  object-fit: contain;
}

.sns-follow .body {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 30% 40% 30%;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  padding: 50px 10px 10px 10px;
}
.sns-follow .body .stamp-name {
  grid-area: 1/1/2/2;
  font-size: 7vw;
  line-height: 1.4;
  letter-spacing: -0.1em;
  font-weight: 900;
  z-index: 1;
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .stamp-name {
    font-size: 3vw;
  }
}
@media screen and (min-width: 960px) {
  .sns-follow .body .stamp-name {
    font-size: 34px;
  }
}
@media screen and (min-width: 960px) {
  .sns-follow .body .stamp-name {
    align-items: center;
  }
}
.sns-follow .body .stamp-name .balloon {
  position: absolute;
  right: -20px;
  top: -10px;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .stamp-name .balloon {
    top: -10px;
  }
}
.sns-follow .body .stamp-name .balloon img {
  width: 25vw;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .stamp-name .balloon img {
    width: 16vw;
  }
}
@media screen and (min-width: 960px) {
  .sns-follow .body .stamp-name .balloon img {
    width: 154px;
  }
}
.sns-follow .body .sns {
  grid-area: 2/1/3/2;
  display: flex;
  flex-direction: row;
  z-index: 2;
}
.sns-follow .body .sns > div {
  width: 49.5%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}
.sns-follow .body .sns > div > div {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 50%;
  justify-content: center;
  text-align: center;
}
.sns-follow .body .sns > div > div:nth-child(2) {
  flex-direction: column;
}
.sns-follow .body .sns > div > div a {
  font-size: 3vw;
  font-feature-settings: "palt";
  font-weight: 600;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .sns > div > div a {
    font-size: 1.7vw;
  }
}
@media screen and (min-width: 960px) {
  .sns-follow .body .sns > div > div a {
    font-size: 16px;
  }
}
.sns-follow .body .sns > div img {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .sns > div img {
    width: 70%;
  }
}
.sns-follow .body .sns .insta {
  border-right: 1px solid #4c4948;
}
.sns-follow .body .memo {
  grid-area: 3/1/4/2;
  text-align: center;
  font-size: 2.5vw;
}
@media screen and (min-width: 768px) {
  .sns-follow .body .memo {
    font-size: 1.3vw;
  }
}
@media screen and (min-width: 960px) {
  .sns-follow .body .memo {
    font-size: 11px;
  }
}

.stamp02 {
  width: 48.5%;
  position: relative;
  border: 1px solid #fff;
  border-radius: 10px;
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin-bottom: 35px;
  box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
}
@media screen and (min-width: 960px) {
  .stamp02 {
    width: 23.5%;
    box-shadow: 2px 2px 5px 2px rgba(0, 0, 0, 0.2);
    min-height: 114px;
  }
}
.stamp02 .circle {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.stamp02 .body {
  aspect-ratio: 1.8;
  padding: 10px 2px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (min-width: 960px) {
  .stamp02 .body {
    padding: 20px 10px;
  }
}
.stamp02 .body .stamp-name {
  text-align: center;
  font-size: 3vw;
  font-weight: 600;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 960px) {
  .stamp02 .body .stamp-name {
    font-size: 15px;
  }
}
.stamp02 .body .memo {
  text-align: center;
  font-size: 2.2vw;
}
@media screen and (min-width: 960px) {
  .stamp02 .body .memo {
    font-size: 13px;
  }
}

.m-lounge .stamp-name {
  position: relative;
}
.m-lounge .stamp-name img {
  position: absolute;
  right: -40px;
  top: -10px;
  width: 50px;
}

.present01 {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (min-width: 960px) {
  .present01 {
    margin-bottom: 10px;
  }
}
.present01 .circle {
  position: absolute;
  top: -20px;
  left: -10px;
  z-index: 1;
}
.present01 .body {
  aspect-ratio: 1.28;
}
@media screen and (min-width: 960px) {
  .present01 .body {
    position: relative;
    display: inline-block;
    width: 100%;
    min-width: 120px;
    max-width: 100%;
  }
  .present01 .body::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -8px;
    border: 10px solid transparent;
    border-left: 8px solid #cbe8ed;
  }
}
.present01 .body > div {
  background: #cbe8ed;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.present01 .body img {
  height: 90%;
  object-fit: cover;
  width: 90%;
}
.present01 .present-name {
  width: 100%;
  line-height: 1.5em;
  font-weight: 500;
}
.present01 .present-name span {
  font-size: 10px;
  font-weight: 400;
}

.present02 {
  margin-top: 40px;
  position: relative;
  padding-left: 20px;
}
@media screen and (min-width: 960px) {
  .present02 {
    margin-top: 0;
    padding-left: 0;
  }
}
.present02 .circle {
  position: absolute;
  top: -70px;
  left: -10px;
  z-index: 1;
  width: 136px;
  height: 136px;
  font-size: 50px;
  line-height: 0.48;
  letter-spacing: 0.05em;
  font-weight: 600;
}
.present02 .circle span {
  font-size: 26px;
  line-height: 0.9230769231;
  letter-spacing: 0.05em;
  font-weight: 600;
  position: relative;
  top: 5px;
}
.present02 .circle > div {
  position: relative;
  top: 4px;
}
@media screen and (min-width: 960px) {
  .present02 .circle {
    width: 48px;
    height: 48px;
    top: -20px;
    left: -10px;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    font-weight: 600;
    color: #4c4948;
  }
  .present02 .circle span {
    font-size: 9px;
    line-height: 2.6666666667;
    letter-spacing: 0.05em;
    font-weight: 600;
    position: relative;
    top: -10px;
  }
  .present02 .circle > div {
    position: relative;
    top: 4px;
  }
}
.present02 .body {
  aspect-ratio: 1.28;
}
.present02 .body > div {
  padding: 40px;
  height: 100%;
  background: #fdd23e;
}
@media screen and (min-width: 960px) {
  .present02 .body > div {
    padding: 10px;
  }
}
.present02 .body > div img {
  height: 100%;
}

.point-list-wrap {
  margin: 0 10px 10px 10px;
  border-top: 1px solid #4c4948;
}
.point-list-wrap ul {
  padding: 10px 0 0;
}
.point-list-wrap ul li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 40px;
}
.point-list-wrap .stamp-img {
  width: 34px;
  height: 34px;
  min-width: 34px;
  min-height: 34px;
  border: 1px solid #e5e5e5;
  padding: 0px;
  margin-right: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.point-list-wrap .stamp-img img {
  object-fit: contain;
  height: 105%;
  width: 105%;
}
.point-list-wrap .stamp-info {
  line-height: 1.3em;
  letter-spacing: 0em;
  font-size: 11px;
}
@media screen and (min-width: 520px) {
  .point-list-wrap .stamp-info br {
    display: inline-block;
  }
}

/**
 * Project Name    : MISAWAホーム スタンプラリーシステム
 * File Name       : _page.scss
 * Encoding        : UTF-8
 * Creation Date   : 2023/10/04
 *
 * Copyright © 2023 dola INC.
 *
 * This source code or any portion thereof must not be
 * reproduced or used in any manner whatsoever.
 */
.presents {
  margin-bottom: 60px;
  position: relative;
}
.presents .catch-cp {
  color: #eb6b85;
  font-size: 38px;
  line-height: 1.5789473684;
  letter-spacing: 0.05em;
  font-weight: 900;
  text-decoration: underline;
  position: relative;
}
@media screen and (min-width: 768px) {
  .presents .catch-cp {
    font-size: 34px;
    line-height: 1.7647058824;
    letter-spacing: 0.05em;
    font-weight: 900;
  }
}
@media screen and (min-width: 768px) {
  .presents .catch-cp .pcNone {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .presents .catch-cp {
    text-align: center;
  }
}
.presents .catch-cp::after {
  position: absolute;
  content: "";
  background-image: url("../img/accessory02.png");
  background-repeat: no-repeat;
  background-size: 22px 50px;
  left: 10px;
  top: -100px;
  width: 43px;
  height: 100px;
}
.presents .catch-cp::before {
  position: absolute;
  content: "";
  background-image: url("../img/accessory03.png");
  background-repeat: no-repeat;
  background-size: 42px 50px;
  right: 50px;
  bottom: -50px;
  width: 43px;
  height: 100px;
}
@media screen and (min-width: 768px) {
  .presents .catch-cp::before {
    bottom: 0px;
    right: 0px;
  }
}
.presents .presents-note {
  font-size: 12px;
  display: flex;
}
@media screen and (min-width: 768px) {
  .presents .presents-note {
    justify-content: center;
  }
}
.presents .present-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 60px;
}
.presents .present-list .present01 {
  width: 48.5%;
  /*
  &:nth-child(2){
  	.present-name{
  		span{
  			position: absolute;
  			right: 0;
  		}
  	}
  }
  */
}
@media screen and (min-width: 960px) {
  .presents .present-list .present01 {
    width: 19%;
  }
}
.presents .present-list .present01 .present-name {
  font-size: 12px;
  font-weight: 600;
  text-align: left;
}
.presents .present-list .present02 {
  width: 100%;
}
@media screen and (min-width: 960px) {
  .presents .present-list .present02 {
    width: 19%;
  }
}
.presents .present-list .present02 .memo {
  margin: 10px 0 20px;
}
@media screen and (min-width: 960px) {
  .presents .present-list .present02 .memo {
    font-size: 11px;
    margin: 0px;
  }
}
.presents .miffy-copyright {
  margin-bottom: 5px;
  font-size: 10px;
  font-weight: 600;
  text-align: right;
}
.presents .discription {
  margin-top: 5px;
  font-size: 8.8px;
}

.points {
  margin: 0;
}
.points > div {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .points > div {
    flex-direction: row;
    justify-content: space-between;
  }
}
.points .points-held {
  background: #eb6b85;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .points .points-held {
    width: 49%;
    margin-bottom: 0px;
  }
}
.points .points-held .item-name {
  font-size: 5vw;
}
@media screen and (min-width: 768px) {
  .points .points-held .item-name {
    font-size: 16px;
  }
}
.points .points-held .stamp-num {
  font-size: 10vw;
  font-weight: 900;
  position: relative;
  top: -10px;
  margin: 0 10px;
}
@media screen and (min-width: 768px) {
  .points .points-held .stamp-num {
    font-size: 30px;
  }
}
.points .points-held .expiration-date {
  margin: 0 2vw;
  border: 1px solid #fff;
  border-radius: 10px;
  padding: 10px;
  margin: 0 10px;
  width: 270px;
  max-width: 300px;
  text-align: center;
}
.points .next-point {
  display: flex;
  flex-direction: row;
  border: 1px solid #eb6b85;
  border-radius: 10px;
  background: #fff;
  padding: 30px 5px 10px 5px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .points .next-point {
    width: 49%;
  }
}
.points .next-point .completed-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 5;
  border-radius: 10px;
  border: 1px solid #eb6b85;
  display: flex;
  flex-direction: column;
}
.points .next-point .completed-wrap img {
  object-fit: contain;
  height: 50%;
  width: 50%;
  position: relative;
  z-index: 5;
}
.points .next-point .completed-wrap > span {
  position: absolute;
  top: 33%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  font-size: 30px;
  font-weight: 900;
  z-index: 7;
  color: #D8B400;
  text-shadow: 0px 2px 2px rgba(0, 0, 0, 0.5);
}
.points .next-point .completed-wrap div {
  position: relative;
  text-align: center;
  z-index: 5;
  opacity: 1;
  color: #000;
  top: -15px;
  font-weight: 600;
  font-feature-settings: "palt";
}
.points .next-point .completed-wrap div span {
  font-size: 30px;
  color: #eb6b85;
  font-weight: 900;
}
.points .next-point > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 49.5%;
}
.points .next-point .next-point-left {
  display: flex;
  flex-direction: column;
  text-align: center;
  position: relative;
  top: -20px;
}
.points .next-point .next-point-left .next-point-number {
  line-height: 2em;
  font-weight: 600;
}
.points .next-point .next-point-left .next-point-note {
  font-size: 12px;
  margin-top: 10px;
}
.points .next-point .next-point-left span {
  font-size: 10vw;
  font-weight: 900;
  position: relative;
  top: 10px;
  color: #eb6b85;
}
@media screen and (min-width: 768px) {
  .points .next-point .next-point-left span {
    top: 5px;
    font-size: 30px;
  }
}
.points .next-point .next-point-right {
  padding-left: 5px;
}
.points .next-point .next-point-right > div {
  margin-bottom: 0;
  width: 100%;
}
.points .next-point .next-point-right > div .body::before {
  display: none;
}

#gallery .stamps {
  margin: 0;
}
#gallery .stamps .stamp-list {
  /*
  overflow: scroll;
  height: 400px;
  padding: 20px 10px;
  @include mq(lg){
  	overflow: inherit;
  	height: inherit;
  	padding: inherit;
  }
  */
}
#gallery .stamp02 {
  width: 100%;
}
@media screen and (min-width: 520px) {
  #gallery .stamp02 {
    width: 48.5%;
  }
}
@media screen and (min-width: 960px) {
  #gallery .stamp02 {
    width: 23.5%;
  }
}
#gallery .stamp02 .body {
  aspect-ratio: inherit;
}
@media screen and (min-width: 520px) {
  #gallery .stamp02 .body {
    aspect-ratio: 2.5;
  }
}
@media screen and (min-width: 960px) {
  #gallery .stamp02 .body {
    aspect-ratio: 1.8;
  }
}
#gallery .stamp02 .body .stamp-name {
  font-size: 3.5vw;
}
@media screen and (min-width: 520px) {
  #gallery .stamp02 .body .stamp-name {
    font-size: 2.5vw;
  }
}
@media screen and (min-width: 960px) {
  #gallery .stamp02 .body .stamp-name {
    font-size: 15px;
  }
}
#gallery .stamp02 .body .stamp-name br {
  display: none;
}
@media screen and (min-width: 520px) {
  #gallery .stamp02 .body .stamp-name br {
    display: inherit;
  }
}
#gallery .stamp02 .body .memo {
  font-size: 3.2vw;
}
@media screen and (min-width: 520px) {
  #gallery .stamp02 .body .memo {
    font-size: 2.2vw;
  }
}
@media screen and (min-width: 960px) {
  #gallery .stamp02 .body .memo {
    font-size: 13px;
  }
}
#gallery .stamp-ex01 .point-list-wrap {
  position: relative;
}
#gallery .stamp-ex01 .point-list-wrap::after {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  background-image: url("../img/accessory03.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  opacity: 0.2;
}
@media screen and (min-width: 960px) {
  #gallery .stamp-ex01 .point-list-wrap::after {
    display: none;
  }
}
#gallery .stamp-ex02 .point-list-wrap {
  position: relative;
}
#gallery .stamp-ex02 .point-list-wrap::after {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  background-image: url("../img/person02.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  opacity: 0.2;
}
@media screen and (min-width: 960px) {
  #gallery .stamp-ex02 .point-list-wrap::after {
    display: none;
  }
}
#gallery .stamp-ex03 .point-list-wrap {
  position: relative;
}
#gallery .stamp-ex03 .point-list-wrap::after {
  position: absolute;
  content: "";
  bottom: 5px;
  right: 5px;
  background-image: url("../img/person01.png");
  background-repeat: no-repeat;
  background-size: contain;
  width: 100px;
  height: 100px;
  opacity: 0.2;
}
@media screen and (min-width: 520px) {
  #gallery .stamp-ex03 .point-list-wrap::after {
    display: none;
  }
}
@media screen and (min-width: 520px) {
  #gallery .exhibition .point-list-wrap ul {
    display: flex;
    flex-wrap: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 520px) {
  #gallery .exhibition .point-list-wrap ul li {
    width: 48.5%;
  }
}
@media screen and (min-width: 960px) {
  #gallery .exhibition .point-list-wrap ul li {
    width: 32.5%;
  }
}
@media screen and (min-width: 520px) {
  #gallery .sns-follow .point-list-wrap ul {
    display: flex;
    flex-wrap: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media screen and (min-width: 520px) {
  #gallery .sns-follow .point-list-wrap ul li {
    width: 48.5%;
  }
}

#main-page {
  min-height: calc(100vh - 256px - 80px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0px 0 60px 0;
}
#main-page h2 {
  text-align: center;
  font-size: 16px;
}

.kv-split-line {
  height: 2px;
  width: 100%;
  background-color: #c8e4e9;
}

.terms-page {
  padding-bottom: 60px;
}

.result-description {
  margin: 40px 0 40px;
  padding: 30px;
  border: 1px solid #4c4948;
  border-radius: 5px;
  text-align: center;
}

.data-send-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}
.data-send-wrap .input-wrap {
  margin-top: 30px;
  margin-bottom: 30px;
}
.data-send-wrap .password {
  margin-bottom: 20px;
}

/*# sourceMappingURL=style.css.map */
