@charset "utf-8";

/*======================================================
	Original style
======================================================== */

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  color: #5a3319;
  font-size: clamp(1.6rem,4vw,2rem);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Hiragino Sans", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.7;
  word-wrap: break-word;
  transition: 0.3s;
}

img {
  width: 100%;
  vertical-align: bottom;
}

li {
  list-style-type: none;
}

hr {
  display: none;
}

section button {
  margin: 0 auto;
}

a:hover {
  opacity: 0.6;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}

.nowrap {
  white-space: nowrap;
}

/*======================================================
	main
======================================================== */

.wrapper {
  padding: 15px 0;
  background: #fff9dd;
}

.inner {
  margin: auto;
  width: 92%;
  max-width: 550px;
}

/*WEB応募はこちらボタン*/
.app-page-btn {
  display: block;
  position: relative;
  margin: 1.5em auto;
  width: 100%;
  max-width: 700px;
  padding: .8em 1.5em .8em .8em;
  color: #fff;
  text-align: center;
  font-size: clamp(3rem,5.55vw,4.6rem);
  font-weight: 900;
  letter-spacing: .1rem;
  line-height: 1.3;
  background: #D62716;
  border-radius: 20px;
}

.app-page-btn::before {
  content: "〉";
  position: absolute;
  top: 50%;
  right: 1%;
  transform: translateY(-50%);
}

/*
section
----------------------------------*/

section.item {
  margin: 40px auto;
}

h2 {
  margin-bottom: 1.5em;
  padding: 0 0 0 1.2em;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.1rem;
  background: #5a3319;
}

section.item > p,
ul li {
  font-weight: 700;
}

/*対象店舗*/

#item01 ul li {
  width: 49%;
  font-size: clamp(1.4rem,2vw,2rem);
}

#item01 ul {
  margin: 2em 0 0;
}

#item01 ul li::before {
  content: "■";
}

#item01 ul.note li {
  width: 100%;
}

/*応募締め切り・応募方法*/

#item04 ul li::before,
#item06 ul li::before {
  content: "●";
}

#item04 ul li:last-child,
#item06 ul li:last-child {
  margin-top: .5em;
}

#item06 ul {
  margin: 2em 0;
}

/*
注意事項
------------------------------*/

#note {
  padding: 30px 0 35px;
  background: #fff;
  border-radius: 20px;
}

#note h2 {
  margin-bottom: 1em;
  padding: 0;
  color: #5a3319;
  background: none;
}

#note h2::before {
  content: "【";
}
#note h2::after {
  content: "】";
}

#note ul li {
  font-size: clamp(1.6rem,2vw,1.8rem);
  font-weight: 500;
}

#item01 ul.note li:not(:last-child),
#note ul li:not(:last-child) {
  margin-bottom: .7em;
}

#item01 ul.note li::before,
#note ul li::before {
  content: "※";
  padding-right: 2px;
}


/*
footer
--------------------------------*/

footer {
  margin-top: 4em;
}

footer p {
  text-align: center;
  font-weight: 700;
}

footer .address {
  display: flex;
  align-items: center;
  margin-bottom: 1em;
  font-size: clamp(1.4rem,2.88vw,2rem);
}

footer .address::before,
footer .address::after {
  content: "";
  height: 1px;
  flex-grow: 1;
  background-color: #5a3319;
}

footer .address::before {
  margin-right: 1rem;
}

footer .address::after {
  margin-left: 1rem;
}

footer .secretariat {
  font-size: clamp(2rem,4.44vw,3.6rem);
}

footer .phone-num {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.4rem,4.88vw,4rem);
  letter-spacing: .1rem;
}

footer .phone-num span {
  margin-right: .5em;
  padding: 0 .2em;
  font-size: clamp(1.4rem,3vw,2rem);
  border: solid 2px #5a3319;
  line-height: 1.4;
  letter-spacing: 0;
}

.pagetop {
  display: block;
  margin-top: 1.5em;
  padding: .3em;
  background: #5a3319;
  text-align: center;
  color: #fff;
  font-size: clamp(3rem,5.55vw,5rem);
  font-weight: 700;
}

.arrow {
  position: relative;
  display: inline-block;
  width: 2px;
  height: 25px;
  margin: 0 9.2px;
  border-radius: 9999px;
  background-color: #fff;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(50% - 1px);
  width: 2px;
  height: 15px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: 50% 1px;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}




@media screen and (min-width: 768px) {

  .inner {
    width: 90%;
    max-width: 780px;
  }

  /*
  section
  ------------------------------*/

  section.item {
    margin: 60px 0;
  }

  section.item > p,
  ul li {
    font-size: 1.8rem;
  }

  /*対象店舗*/
  #item01 ul li {
    font-size: 1.8rem;
  }

  /*注意事項*/
  #note {
    padding: 40px 0 50px;
  }

  /*footer
  ---------------------------------*/

  .arrow {
    width: 4px;
    height: 35px;
  }

  .arrow::before,
  .arrow::after {
    left: calc(50% - 2px);
    width: 4px;
    height: 20px;
  }
}
