@charset "UTF-8";
/*---------------------------------------
全体
---------------------------------------*/
body {
  margin: 0;
  padding: 0;
  font-family: YakuHanJP, 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  position: relative;
  background: linear-gradient(90deg, rgba(58, 5, 11, 1) 0%, rgba(0, 0, 0, 0) 50%, rgba(58, 5, 11, 1) 100%), url(../img/pat_rectangle_01.png) repeat center / 60px, #691e26;
}
.wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: url(../img/pat_wave_02.png) repeat center / 40px, #ffffff;
}
/*---------------------------------------
font定義
---------------------------------------*/ :root {
  --zen-font-family: "Zen Old Mincho", serif;
  --zen-font-style: normal;
}
.zen_old_mincho {
  font-family: var(--zen-font-family);
  font-style: var(--zen-font-style);
}
.zen_old_mincho_400 {
  font-weight: 400;
}
.zen_old_mincho_500 {
  font-weight: 500;
}
.zen_old_mincho_600 {
  font-weight: 600;
}
.zen_old_mincho_700 {
  font-weight: 700;
}
.zen_old_mincho_900 {
  font-weight: 900;
}
/*---------------------------------------
ボタン類
---------------------------------------*/
.btn {
  text-align: center;
  margin: 3em auto;
}
.btn a {
  border-radius: 30px;
  padding: 1.25em 2.5em;
  background: #691e26;
  color: #ffffff;
}
/*---------------------------------------
キービジュアル
---------------------------------------*/
.kv {
  width: 100%;
  height: 0;
  /* (画像の高さ / 画像の横幅) × 100 */
  padding-top: 51.020408163265306%;
  background: url(../img/kv_bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
.kv_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 98%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.kv_content h2 {
  width: 10%;
}
.kv_content h2 img {
  width: 100%;
  opacity: 0;
  height: auto;
  animation: top_anime 2s ease-in-out forwards;
}
.kv_content h1 {
  width: 45%;
}
.kv_content h1 img {
  width: 100%;
  opacity: 0;
  height: auto;
  animation: top_anime 1s ease-in-out forwards;
}
.kv_content h3 {
  width: 45%;
}
.kv_content h3 img {
  width: 100%;
  margin: 0 auto;
  opacity: 0;
  height: auto;
  animation: top_anime 1.3s ease-in-out forwards;
}
/*---------------------------------------
登録エリア
---------------------------------------*/
.store_link {
  text-align: center;
  padding: 3em 0;
}
.store_link p {
  position: relative;
  width: 65%;
  margin: 0 auto 1.5em auto;
  animation: store_anime 1.5s ease-in-out infinite;
}
.store_link p img {
  width: 100%;
}
.store_link a img {
  display: inline;
  width: 70%;
}
@media (max-width: 699px) {
  .store_link {
    padding: 2em 0;
  }
}
/*---------------------------------------
区切り線
---------------------------------------*/
.decoration_line img {
  width: 90%;
  margin: auto;
}
/*---------------------------------------
文字の装飾
---------------------------------------*/
span.text_underline_yellow {
  font-weight: bold;
  background: linear-gradient(transparent 50%, #fff71a 50%);
}
/*---------------------------------------
アプリについて
---------------------------------------*/
.about h4 img {
  width: 90%;
  margin: 1em auto;
}
.about h6 {
  margin: 0;
}
.about h6 img {
  width: 100%;
  margin: 0 auto;
}
.about_content {
  background: url(../img/gold_line.png) no-repeat bottom right / 70%;
  padding-bottom: 2em;
}
.about_content h5 img {
  width: 100%;
  margin: 0 auto 2.5em auto;
}
.about_text {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  width: 80%;
  margin: 0 auto;
}
.about_text p {
  width: 70%;
  color: #691e26;
  font-size: 1.3em;
  line-height: 2em;
  background: url(../img/logo_op.png) no-repeat center;
  background-size: contain;
  padding: 0.5em;
}
.about_text img {
  width: 30%;
}
@media (max-width: 699px) {
  .about_text {
    gap: 10px;
    width: 95%;
  }
  .about_text p {
    font-size: 1em;
    line-height: 1.7em;
  }
}
/*---------------------------------------
アプリの特徴の詳細説明
---------------------------------------*/
.details {
  margin: 3em auto 0 auto;
}
.details_wrapper {
  width: 75%;
  margin: 2em auto;
  position: relative;
  padding-top: 7%;
}
.details_wrapper img.details_title_decoration {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 20%;
}
.details_inner {
  background: url(../img/wave.png) no-repeat top 5% right / 50%, url(../img/wave.png) no-repeat center left / 45%, url(../img/pat_paper_01.jpg) repeat center / 200px;
  border-radius: 12px;
  border-top: 20px solid #691e26;
  border-right: 3px solid #691e26;
  border-bottom: 3px solid #691e26;
  border-left: 3px solid #691e26;
  padding-top: 10%;
	padding-bottom: 5%;
}
.details_inner img {
  width: 100%;
  margin: 0 auto;
}
.details_inner .decoration_line img {
  width: 90%;
}
.details_inner p {
  width: 80%;
  margin: 1.5em auto;
  color: #691e26;
  font-size: 1.2em;
  line-height: 2em;
}
@media (max-width: 699px) {
  .details {
    margin: 2em auto 0 auto;
  }
  .details_wrapper {
    width: 90%;
    margin: 2em auto 0 auto;
    position: relative;
    padding-top: 7%;
  }
  .details_inner p {
    width: 90%;
    margin: 1em auto;
    font-size: 1em;
    line-height: 1.7em;
  }
}
/*---------------------------------------
その他ページ
---------------------------------------*/
.other_page {
  padding: 3em 2.1em;
}
.other_page h2 {
  font-family: var(--zen-font-family);
  font-weight: 900;
  text-align: center;
  font-size: 2em;
  color: #691e26;
}
.other_page p {
  color: #691e26;
  line-height: 1.7em;
  width: 85%;
  margin: 0.5em auto 2em auto;
}
.contact_caption p {
  color: #969696;
  font-size: 0.8em;
  margin-top: 3em;
}
@media (max-width: 699px) {
  .other_page {
    padding: 3em 1.3em;
  }
  .other_page h2 {
    font-size: 1.5em;
  }
  .other_page p {
    width: 95%;
    margin: 0.5em auto 1.5em auto;
  }
}
/*---------------------------------------
退会手続き
---------------------------------------*/
.leave_caution {
  width: 80%;
  margin: 0 auto;
  border-radius: 6px;
  border: 1px solid #000000;
  background: #ececec;
  overflow: hidden;
}
.leave_caution dl dt {
  background: #000000;
  padding: 0.6em;
  text-align: center;
  color: #fefefe;
}
.leave_caution dl dd {
  margin: 0;
}
.leave_caution_inner {
  padding: 2em 2em 1em;
  line-height: 1.7em;
  font-size: 0.9em;
}
.leave_caution_inner dd{
  padding-bottom: 1.5em;
}
.leave_caution_inner dd p{
  color: #db1010;
  font-weight:bold;
  font-size: 1.2em;
  padding:0 0 0.5em;
  width: 100%;
  border-bottom: 1px solid #3b3b3b41;
  margin: 0.5em auto 0.5em auto;
}
.leave_success {
  text-align: center;
  margin: 3em auto;
}
.leave_success p {
  background: red;
  padding: 0.5em 2em;
  color: #ffffff;
  font-size: 1.5em;
  display: inline;
  border-radius: 6px;
}
.leave_form {
  width: 80%;
  margin: 0 auto;
  border-radius: 6px;
  background: #ececec;
  padding: 1.5em 1em;
  text-align: center;
  color: #000000;
}
.leave_form p {
  color: #000000;
  margin: 0;
  display: inline;
  font-size: 1.3em;
}
.leave_form p.leave_form_title{
  display: block;
  width: 100%;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
}
.leave_bt {
  text-align: center;
  margin: 3em auto 2em;
}
.leave_bt p {
  background: red;
  padding: 1em 2em;
  color: #ffffff;
  font-size: 1em;
  display: inline;
  border-radius: 30px;
}
.leave_form p.error {
  color: red;
  font-size: 0.9em;
}

p.menu_title {
  font-size: 1em;
  text-align: left;
  padding:0 10%;
  display: block;
  color: #858585;
}
p.menu_title span{
  padding-left: 0.5em;
  color: rgb(206, 18, 18);
  font-size: 0.8em;
}
p.menu_title span.normal{
  color: rgb(77, 77, 77);
  font-size: 0.8em;
}
.leave_form input[type="text"] {
  display: block;
  width: 80%;
  height: auto;
  border-radius: 8px;
  border: none;
  font-size: 1em;
  text-align: left;
  padding: 1em;
  margin: 0 auto 1.5em;
  position: relative;
}
.leave_form textarea {
  position: relative;
  display: block;
  width: 80%;
  height: 10em;
  border-radius: 8px;
  border: none;
  resize: none;
  font-size: 1em;
  text-align: left;
  padding: 1em;
  margin:0 auto 1.5em;
}
@media (max-width: 699px) {
  .leave_caution {
    width: 95%;
  }
  .leave_form {
    width: 95%;
    padding: 1.5em 0.5em;
  }
  .leave_form input[type="text"] {
    width: 95%;
  }
  .leave_form textarea {
    width: 95%;
  }
  p.menu_title {
    padding:0 1em;
  }
}
/*---------------------------------------
footer
---------------------------------------*/
footer {
  text-align: center;
  background: url(../img/pat_wave_01.png) repeat center / 60px, #e94709;
  padding: 3em 3em 1.5em 3em;
}
footer .menu {
  font-size: 1em;
  color: #ffd7c8;
  float: left;
  width: 45%;
}
footer .menu span {
  color: #c8c8c8;
  font-size: 0.7em;
}
footer .menu a p {
  border-bottom: 1px solid #f8b399;
  margin-bottom: 2em;
  text-align: left;
  padding-bottom: 0.7em;
}
footer .menu a p::before {
  content: "▶";
  font-size: 0.4em;
  position: relative;
  top: -0.3em;
  padding-right: 0.3em;
}
footer ul {
  text-align: left;
  color: #ffd7c8;
  font-size: 0.8em;
  line-height: 2em;
  width: 45%;
  margin:0 auto 3.5em;
  float: right;
}
footer ul li{
  padding-bottom: 1em;
}
footer ul li a{
  text-decoration: underline;
  font-weight: bold;
  padding: 0 0.5em;
}
footer p.copyright {
  color: #ffd7c8;
  font-size: 0.8em;
  margin-top: 2.5em;
  clear: both;
}
@media (max-width: 699px) {
  footer {
    padding: 2em 1em 1.5em 1em;
  }
  footer .menu {
    font-size: 0.8em;
    width: 52%;
  }
  footer .menu a p {
    padding-bottom: 0.7em;
    margin-bottom: 2.5em;
  }
  footer ul {
    font-size: 0.7em;
    line-height: 1.7em;
    width: 43%;
  }
  footer ul li:nth-child(1){
    display: none;
  }
  footer p.copyright {
    font-size: 0.7em;
    margin-top: 2.5em;
  }
}