@charset "UTF-8";
/**
* Foundation
* ========================== */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  border-collapse: collapse;
  border-spacing: 0;
}

select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #ffffff;
}

/*
==============================
変数
==============================
*/
html,
body {
  overflow-x: hidden;
  width: 100%;
  color: #500F15;
  font-size: 16px;
  line-height: 1.6;
  font-family: "Noto Serif JP", "游ゴシック", "游ゴシック Medium", "Yu Gothic Medium", "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  letter-spacing: 0.1em;
  background: -webkit-gradient(linear, left top, right bottom, from(#FFE9D1), color-stop(#FFE9EC), to(#FFCDD4));
  background: linear-gradient(to bottom right, #FFE9D1, #FFE9EC, #FFCDD4);
}
@media screen and (max-width: 500px) {
  html,
  body {
    font-size: 12px;
  }
}

p,
a {
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: none;
  width: 100%;
}

button {
  background: transparent;
}

/**
* Layout
* ========================== */
/** LPコード--------------------------------------------  */
.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 229, 229, 0.4);
  z-index: 9999;
  padding: 0.4% 1%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 0.6% 1%;
  }
}
@media screen and (max-width: 500px) {
  .header {
    padding: 2% 1%;
  }
}
.header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.header__logo img {
  width: 90%;
  max-width: 250px;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 80%;
    max-width: 250px;
  }
}
.header__login-btn {
  margin-left: auto;
  width: 18%;
  max-width: 210px;
}
@media screen and (max-width: 768px) {
  .header__login-btn {
    width: 24%;
    min-width: 100px;
  }
}

/** 以下、下層コード--------------------------------------------  */
.page-header {
  background-color: #fff4f7;
  border-bottom: solid 0.2px #ADADAD;
  padding: 10px 2% 0 2%;
}
@media screen and (max-width: 768px) {
  .page-header {
    padding-inline: 1%;
  }
}
.page-header__inner {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-header__userinfo-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2px;
}
.page-header__userinfo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.4vw;
  font-size: clamp(11px, 2.2vw, 26px);
  color: #B34D62;
  font-weight: bold;
}
.page-header__userinfo-icon {
  width: 4vw;
  max-width: 38px;
  min-width: 17px;
}
.page-header__userinfo-icon svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-header__logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 34%;
  max-width: 280px;
}
.page-header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7vw;
}
@media screen and (max-width: 768px) {
  .page-header__btn {
    gap: 0;
  }
}
.page-header__btn a {
  width: 6vw;
  max-width: 42px;
  min-width: 26px;
}
.page-header__btn svg {
  width: 100%;
  height: auto;
  display: block;
}
.page-header__nav-outer {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.page-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 4px;
}
.page-header__nav-item a {
  font-size: clamp(11px, 2.8vw, 24px);
  color: #500F15;
  font-weight: bold;
}
.page-header__nav-item.is-active a {
  border-bottom: solid 3px #ED9B9D;
}

.footer {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 12px;
  background-color: #E47F7F;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .footer {
    font-size: 10px;
    gap: 8px;
  }
}
.footer__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .footer__menu {
    gap: 4px;
  }
}
.footer__menu li a {
  color: #fafafa;
}
.footer__copylight {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  color: #fafafa;
}
@media screen and (max-width: 768px) {
  .footer__copylight {
    font-size: 8px;
  }
}
.footer__rules {
  color: #fafafa;
}
@media screen and (max-width: 768px) {
  .footer__rules {
    font-size: 8px;
  }
}

.fixed-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFE9EC;
  z-index: 1000;
}
.fixed-footer__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-inline: 3%;
}
.fixed-footer__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #500F15;
  font-size: clamp(14px, 2vw, 26px);
  font-weight: bold;
  padding: 0.5%;
}
.fixed-footer__item i {
  font-size: clamp(20px, 5vw, 32px);
}
.fixed-footer__is-active {
  background-color: #ffffff;
}

/*
Object
* ========================== */
/* Component ------------ */
.main {
  min-height: 54vh;
}

.login-line-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .login-line-btn {
    display: block;
  }
}

.content__wrap {
  position: relative;
  min-height: 80vh;
  background: -webkit-gradient(linear, left top, right bottom, from(#FFE9D1), color-stop(#FFE9EC), to(#FFCDD4));
  background: linear-gradient(to bottom right, #FFE9D1, #FFE9EC, #FFCDD4);
}

.section {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-bottom: 20px;
  }
}

.lp-sec-title {
  font-size: clamp(20px, 4vw, 60px);
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
}

.firstVeiw {
  position: relative;
  background-image: url(../../img/main/fv-bg.png);
  background-position: center;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .firstVeiw {
    padding-bottom: 128px;
  }
}
.firstVeiw__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .firstVeiw__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.firstVeiw__chara {
  width: 38%;
}
@media screen and (max-width: 768px) {
  .firstVeiw__chara {
    position: absolute;
    width: 86%;
    bottom: -1%;
    right: -14%;
  }
}
.firstVeiw__chara img {
  margin-left: -10%;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .firstVeiw__chara img {
    max-width: 670px;
    min-width: 380px;
  }
}
@media (max-width: 640px) {
  .firstVeiw .firstVeiw__chara {
    width: 90%;
  }
}
@media (max-width: 540px) {
  .firstVeiw .firstVeiw__chara {
    width: 93%;
    margin-left: -2%;
  }
}
@media (max-width: 440px) {
  .firstVeiw .firstVeiw__chara {
    width: 97%;
    margin-left: -6%;
  }
}
.firstVeiw__text {
  margin-left: 100px;
  width: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 4%;
}
@media screen and (max-width: 768px) {
  .firstVeiw__text {
    width: 100%;
    margin-left: 0;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    margin-top: 7%;
  }
}
@media screen and (max-width: 500px) {
  .firstVeiw__text {
    margin-top: 8%;
  }
}
@media screen and (max-width: 768px) {
  .firstVeiw__subText-outer {
    width: 40vw;
    margin-right: 58%;
    margin-top: 33%;
    z-index: 100;
  }
}
.firstVeiw__subText {
  width: 73%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .firstVeiw__subText {
    width: 100%;
    margin: 0;
  }
}
.firstVeiw__photodiary {
  position: absolute;
  width: 77%;
  left: 0;
  bottom: -22%;
}
@media screen and (max-width: 768px) {
  .firstVeiw__photodiary {
    width: 100%;
    bottom: -6%;
  }
}
@media screen and (max-width: 500px) {
  .firstVeiw__photodiary {
    bottom: -2%;
  }
}

.lp-record {
  margin-top: 10%;
  margin-bottom: 7vw;
}
@media screen and (max-width: 768px) {
  .lp-record {
    margin-top: 11%;
    margin-bottom: 12vw;
  }
}
@media screen and (max-width: 500px) {
  .lp-record {
    margin-top: 7%;
  }
}
.lp-record__title {
  margin-bottom: 4vw;
}
.lp-record__item {
  opacity: 50%;
  background-color: rgba(248, 183, 181, 0.3019607843);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 8px;
  gap: 2%;
  margin: 0 3vw;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
@media screen and (max-width: 768px) {
  .lp-record__item {
    margin: 0 4vw;
    padding: 7px;
  }
}
@media screen and (max-width: 500px) {
  .lp-record__item {
    margin: 0 4vw;
    padding: 3px;
  }
}
.lp-record__item.slick-center {
  -webkit-transform: scale(1.3) !important;
          transform: scale(1.3) !important;
  z-index: 2;
  opacity: 1;
}
.lp-record__img-outer {
  position: relative;
  display: inline-block;
  width: 60%;
}
.lp-record__ribbon {
  position: absolute;
  width: 40%;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp-record__item-text {
  background-color: #ffffff;
  border-radius: 10px;
  color: #E47F7F;
  text-align: center;
  padding: 2%;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .lp-record__item-text {
    border-radius: 6px;
    gap: 3px;
  }
}
@media screen and (max-width: 500px) {
  .lp-record__item-text {
    border-radius: 4px;
  }
}
.lp-record__plan-name {
  font-size: clamp(6px, 1.3vw, 22px);
  font-weight: 900;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #FFF2D5));
  background: linear-gradient(transparent 60%, #FFF2D5 30%);
  display: inline-block;
}
.lp-record__plan-contents {
  font-size: clamp(5px, 1.6vw, 25px);
  font-weight: 600;
  border: solid 0.5px #ED9B9D;
}
.lp-record__plan-price {
  font-size: clamp(6px, 1.6vw, 32px);
  font-weight: 900;
  background-color: #ED9B9D;
  color: #ffffff;
  padding: 2px;
  display: inline-block;
}

.js-lp-record-slider .slick-slide {
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.js-lp-record-slider .slick-list {
  overflow: visible !important;
  /* はみ出したスライドも表示 */
  margin-left: -110px !important;
  margin-right: -110px !important;
}

.js-lp-record-slider .slick-dots li button:before {
  font-size: clamp(10px, 1.5vw, 20px) !important;
  color: #E47F7F !important;
}

.js-lp-record-slider .slick-dots {
  margin-bottom: -3% !important;
}

.js-lp-record-slider .slick-dots li {
  margin: 0 6px !important;
}
@media screen and (max-width: 768px) {
  .js-lp-record-slider .slick-dots li {
    margin: 0 0.1px !important;
  }
}

.slick-arrow {
  display: block !important;
}

.regist {
  position: relative;
  background: -webkit-gradient(linear, left top, right bottom, from(#D1C6F3), color-stop(#F0EBFF), to(#FAACA8));
  background: linear-gradient(to bottom right, #D1C6F3, #F0EBFF, #FAACA8);
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .regist {
    padding: 10px;
  }
}
.regist__inner {
  border: solid #fff4f7 3px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  padding: 2vw 0;
}
@media screen and (max-width: 768px) {
  .regist__inner {
    border: solid #fff4f7 2px;
  }
}
.regist__chara {
  position: absolute;
  bottom: 0;
  right: 1%;
  width: 26%;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .regist__chara {
    min-width: 110px;
    margin-right: 4px;
  }
}
.regist__content {
  width: 60%;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-left: 10%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .regist__content {
    gap: 5px;
  }
}
.regist__text {
  font-size: clamp(18px, 3.8vw, 86px);
  font-weight: bold;
  font-style: italic;
}
.regist__banner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.regist__banner1 {
  width: 68%;
}
.regist__banner2 {
  width: 28%;
}
.regist__line-btn {
  width: 80%;
}
.regist__mail-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 90%;
}
.regist__mail-form-text {
  font-size: clamp(10px, 2vw, 28px);
  letter-spacing: -1px;
  font-weight: bold;
}
.regist__mail-form-input {
  padding: 1%;
  font-size: clamp(10px, 2vw, 20px);
}
.regist__mail-btn {
  border: 0;
  width: 100%;
  padding: 0;
  margin-top: 2%;
  cursor: pointer;
}

.about {
  text-align: center;
  padding-inline: 2%;
}
.about__title {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .about__title {
    width: 60%;
    min-width: 280px;
  }
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2vw;
}
@media screen and (max-width: 768px) {
  .about__content {
    margin-top: -20px;
  }
}
.about__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 2vw;
  height: 100%;
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  padding: 2vw 0;
}
.about__img1 {
  position: absolute;
  top: -26%;
  right: -4%;
  width: 25%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .about__img1 {
    top: -23%;
  }
}
@media screen and (max-width: 500px) {
  .about__img1 {
    top: -18%;
    right: -6%;
  }
}
.about__img2 {
  position: absolute;
  bottom: 10%;
  left: -6%;
  width: 26%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .about__img2 {
    bottom: 10%;
  }
}
.about__img3 {
  position: absolute;
  top: 2%;
  right: -9%;
  width: 30%;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .about__img3 {
    right: -8%;
  }
}
@media screen and (max-width: 500px) {
  .about__img3 {
    top: 22%;
  }
}
.about__item-triangle1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  /* 任意 */
  aspect-ratio: 1/1;
  /* 正方形にする（レスポンシブ対応） */
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, right top, from(#DD5E89), color-stop(60%, #F7CF97));
  background: linear-gradient(to top right, #DD5E89 0%, #F7CF97 60%);
  border-radius: 2vw 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.about__item-triangle1::before {
  content: "01";
  position: absolute;
  font-size: clamp(14px, 9vw, 90px);
  color: #ffffff;
  left: 9px;
  top: -6%;
  font-family: "Noto Serif Tamil", serif;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(50, 50, 50, 0.4);
}
@media screen and (max-width: 768px) {
  .about__item-triangle1::before {
    left: 6px;
  }
}
@media screen and (max-width: 500px) {
  .about__item-triangle1::before {
    left: 4px;
  }
}
.about__item-triangle2 {
  position: absolute;
  top: 0;
  right: 0;
  width: 20%;
  /* 任意 */
  aspect-ratio: 1/1;
  /* 正方形にする（レスポンシブ対応） */
  display: inline-block;
  background: -webkit-gradient(linear, right bottom, left top, from(#DD5E89), color-stop(60%, #F7CF97));
  background: linear-gradient(to top left, #DD5E89 0%, #F7CF97 60%);
  border-radius: 0px 2vw 0 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.about__item-triangle2::before {
  content: "02";
  position: absolute;
  font-size: clamp(14px, 9vw, 90px);
  color: #ffffff;
  right: 9px;
  top: -6%;
  font-family: "Noto Serif Tamil", serif;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(50, 50, 50, 0.4);
}
@media screen and (max-width: 768px) {
  .about__item-triangle2::before {
    right: 6px;
  }
}
@media screen and (max-width: 500px) {
  .about__item-triangle2::before {
    right: 4px;
  }
}
.about__item-triangle3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 20%;
  /* 任意 */
  aspect-ratio: 1/1;
  /* 正方形にする（レスポンシブ対応） */
  display: inline-block;
  background: -webkit-gradient(linear, left bottom, right top, from(#DD5E89), color-stop(60%, #F7CF97));
  background: linear-gradient(to top right, #DD5E89 0%, #F7CF97 60%);
  border-radius: 2vw 0 0 0;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}
.about__item-triangle3::before {
  content: "03";
  position: absolute;
  font-size: clamp(14px, 9vw, 90px);
  color: #ffffff;
  left: 9px;
  top: -6%;
  font-family: "Noto Serif Tamil", serif;
  font-style: italic;
  font-weight: 700;
  text-shadow: 0px 4px 4px rgba(50, 50, 50, 0.4);
}
@media screen and (max-width: 768px) {
  .about__item-triangle3::before {
    left: 6px;
  }
}
@media screen and (max-width: 500px) {
  .about__item-triangle3::before {
    left: 4px;
  }
}
.about__item-title {
  display: inline-block;
  font-size: clamp(14px, 3.8vw, 40px);
  font-weight: 800;
  font-family: "Shippori Mincho B1", serif;
  color: #E47F7F;
  border-bottom: solid 1.5px #E47F7F;
  margin-bottom: 16px;
}
.about__item-text {
  width: 65%;
  margin: 0 auto;
  font-size: clamp(9px, 2.2vw, 24px);
  font-weight: bold;
  text-align: left;
}
.about__item-text span {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(30%, #FFF2D5));
  background: linear-gradient(transparent 60%, #FFF2D5 30%);
  display: inline-block;
}

.appeal {
  background: -webkit-gradient(linear, left top, right bottom, from(#FFCF91), to(#FFCDD8));
  background: linear-gradient(to bottom right, #FFCF91, #FFCDD8);
  padding: 70px 2%;
}
@media screen and (max-width: 768px) {
  .appeal {
    padding: 2%;
  }
}
.appeal__content {
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 10px 5% 10px;
}
.appeal__content-logo {
  width: 30%;
  display: inline-block;
}
.appeal__content-title {
  font-size: clamp(16px, 3.6vw, 40px);
  color: #E47F7F;
  font-family: "Kiwi Maru", serif;
  margin-bottom: 1vw;
}
.appeal__content-text {
  font-size: clamp(10px, 2.6vw, 24px);
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  font-weight: bold;
  line-height: 180%;
  text-decoration-line: underline;
  text-decoration-style: dashed;
  text-decoration-color: rgba(80, 15, 21, 0.302);
  text-underline-offset: 7px;
  text-decoration-thickness: 0.5px;
}
@media screen and (max-width: 768px) {
  .appeal__content-text {
    text-underline-offset: 3px;
  }
}

.guarantee {
  padding-inline: 2%;
  text-align: center;
}
.guarantee__img {
  display: inline-block;
}

.introduction {
  max-width: 1000px;
  margin-inline: auto;
  padding-inline: 2%;
}
.introduction__title {
  text-align: center;
  width: 70%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .introduction__title {
    width: 60%;
  }
}
.introduction__title img {
  display: inline-block;
}
.introduction__content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 3vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .introduction__chara {
    width: 40%;
  }
}
.introduction__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
}
.introduction__profile-name {
  font-size: clamp(20px, 3.8vw, 50px);
  font-weight: bold;
}
.introduction__profile-text {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 30px;
  font-size: clamp(10px, 3.4vw, 30px);
  font-weight: bold;
  max-width: 500px;
}
@media screen and (max-width: 768px) {
  .introduction__profile-text {
    gap: 4px 14px;
  }
}
.introduction__contentBottom-text {
  background-color: rgba(255, 255, 255, 0.5019607843);
  padding: 1vw;
  font-size: clamp(8px, 2.6vw, 24px);
  font-weight: bold;
  line-height: 190%;
}
@media screen and (max-width: 768px) {
  .introduction__contentBottom-text {
    line-height: 170%;
  }
}

.reviews {
  position: relative;
  background: -webkit-gradient(linear, left top, right bottom, from(#FFE9D1), color-stop(#FFE9EC), to(#FFCDD4));
  background: linear-gradient(to bottom right, #FFE9D1, #FFE9EC, #FFCDD4);
  -webkit-box-shadow: 4px 4px 10px rgba(147, 61, 61, 0.4);
          box-shadow: 4px 4px 10px rgba(147, 61, 61, 0.4);
  padding: 10px 2% 3% 2%;
}
@media screen and (max-width: 768px) {
  .reviews__title {
    margin-bottom: 10px;
  }
}
.reviews__item-outer {
  max-width: 1000px;
  margin: 0 auto;
}
.reviews__item-usericon {
  width: 16%;
}
.reviews__item {
  background-color: #ffffff;
  width: 290px;
  border: solid 2px #500F15;
  border-radius: 20px;
  padding: 10px;
  margin-right: 20px;
  height: 300px;
}
@media screen and (max-width: 768px) {
  .reviews__item {
    border-radius: 10px;
    padding: 4px;
    border: solid 1px #500F15;
    width: 250px;
    margin-right: 8px;
    height: 360px;
  }
}
@media screen and (max-width: 500px) {
  .reviews__item {
    width: 164px;
    height: 250px;
  }
}
.reviews__item-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.reviews__item-username {
  font-size: clamp(16px, 3vw, 26px);
  font-weight: bold;
}
.reviews__item-text {
  font-size: clamp(11px, 2.6vw, 18px);
  font-weight: 600;
  letter-spacing: -1px;
}

.js-reviews-slider .slick-list {
  margin: 0 !important;
  padding: 0 !important;
}

.js-reviews-slider .slick-slide {
  height: auto !important;
}

.js-reviews-slider .slick-list {
  margin: 0 -10px;
}

.js-reviews-slider .slick-track {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

/** 以下、下層コード--------------------------------------------  */
.sec-title {
  text-align: center;
  font-size: clamp(22px, 3.8vw, 40px);
  color: #B34D62;
  font-weight: bold;
  margin: 3% 0;
  padding: 0.6% 0;
  background: -webkit-gradient(linear, right top, left top, from(rgba(255, 244, 247, 0.1019607843)), color-stop(rgba(255, 244, 247, 0.5019607843)), to(rgba(255, 244, 247, 0.1019607843)));
  background: linear-gradient(to left, rgba(255, 244, 247, 0.1019607843), rgba(255, 244, 247, 0.5019607843), rgba(255, 244, 247, 0.1019607843));
}
@media screen and (max-width: 768px) {
  .sec-title {
    margin: 5% 0;
  }
}

.osutop-banner {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: 3%;
  padding-inline: 2%;
}

.tekityuu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(248, 183, 181, 0.7019607843);
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
  gap: 10px;
  padding: 2%;
  margin-bottom: 30px;
}
.tekityuu__img-outer {
  position: relative;
  width: 60%;
}
.tekityuu__img {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: auto;
  line-height: 0;
}
.tekityuu__img img {
  height: 100%;
  width: auto;
  max-height: 432px;
}
.tekityuu__ribbon {
  position: absolute;
  width: 40%;
  top: -15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.tekityuu__item-text {
  background-color: #ffffff;
  border-radius: 10px;
  color: #E47F7F;
  text-align: center;
  padding: 2%;
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 6px;
}
@media screen and (max-width: 768px) {
  .tekityuu__item-text {
    border-radius: 6px;
  }
}
@media screen and (max-width: 500px) {
  .tekityuu__item-text {
    border-radius: 4px;
  }
}
.tekityuu__plan-contents {
  font-size: clamp(5px, 2.6vw, 25px);
  font-weight: 600;
  border: solid 0.5px #ED9B9D;
}
.tekityuu__plan-price {
  font-size: clamp(6px, 2.8vw, 32px);
  font-weight: 900;
  background-color: #ED9B9D;
  color: #ffffff;
  padding: 2px;
  display: inline-block;
}

/* パネル切り替えのアニメーション */
@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.login {
  font-weight: bold;
  min-height: 50vh;
  margin: 6% 0;
  font-family: noto sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .login {
    min-height: 76vh;
    margin: 0;
    margin-top: 10%;
  }
}
.login__title {
  font-size: clamp(32px, 7vw, 46px);
  color: #E47F7F;
  text-align: center;
}
.login__btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.login__btn {
  width: 335px;
  border: none;
  background: #E47F7F;
  color: #fafafa;
  margin: 0 auto;
  padding: 8px;
  font-size: clamp(20px, 6vw, 24px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.login__btn:hover {
  opacity: 0.5;
}
.login__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  margin-top: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .login__form {
    gap: 8px;
    width: 350px;
  }
}
.login__text-help {
  color: #E47F7F;
  border-bottom: 1px solid #E47F7F;
  font-size: 14px;
}
.login__form-label {
  text-align: center;
  width: 100%;
  font-size: clamp(16px, 6vw, 20px);
}
.login__form-input {
  padding: 8px;
  font-size: 26px;
  background: none;
  border: solid 1px #500F15;
}
.login__form-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.login__form-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.menu {
  /* ヘッド上側 */
  /* コンテンツ下側 */
  /* プランカード*/
}
.menu__tab {
  max-width: 1000px;
  padding-inline: 2%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #500F15;
  font-weight: bold;
}
.menu__tab-item {
  background-color: #ffffff;
  width: 24.5%;
  border-radius: 14px 14px 0 0;
  font-size: clamp(16px, 3vw, 28px);
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .menu__tab-item {
    border-radius: 6px 6px 0 0;
  }
}
.menu__tab-item.is-active {
  background-color: #FBCFCB;
}
.menu__panel-list {
  background-color: #FBCFCB;
  padding: 70px 2% 30px 2%;
}
@media screen and (max-width: 500px) {
  .menu__panel-list {
    padding: 60px 2% 30px 2%;
  }
}
.menu__panel-item {
  display: none;
}
.menu__panel-item.is-active {
  width: 100%;
  -webkit-animation: panel-show 0.5s ease-in-out forwards;
          animation: panel-show 0.5s ease-in-out forwards;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 50px 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #500F15;
  font-weight: bold;
}
.menu__item {
  position: relative;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px 2%;
  max-width: 400px;
  margin: 0 auto;
}
.menu__item-img {
  width: 38%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1000px;
  margin: 0 auto;
  margin-top: -60px;
  border: 6px solid #ffffff;
}
.menu__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menu__item-plan-name {
  text-align: center;
  margin-bottom: 10px;
}
.menu__item-plan-name-jp {
  font-size: clamp(20px, 3vw, 26px);
}
.menu__item-plan-name-en {
  font-size: clamp(20px, 5vw, 20px);
  margin-top: -12px;
}
.menu__item-mail-btn {
  display: block;
  background-color: #FFEBCB;
  margin: 0 auto;
  width: 90%;
  text-align: center;
  color: #500F15;
  -webkit-box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
  font-size: clamp(13px, 5vw, 20px);
  border-radius: 4px;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .menu__item-mail-btn {
    width: 90%;
    max-width: 300px;
  }
}
.menu__item-mail-btn:hover {
  opacity: 0.7;
}
.menu__item-mail-btn::after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-left: 2px;
  color: #500F15;
  font-size: clamp(13px, 5vw, 20px);
}
.menu__item-comment {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.4;
  margin-bottom: 10px;
}
.menu__item-plan-details {
  display: grid;
  grid-template-columns: 160px 1fr;
  font-size: clamp(10px, 8vw, 16px);
  margin-bottom: 10px;
}
.menu__item-plan-details dt::before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 2px;
  color: #FBCFCB;
  font-size: clamp(10px, 5vw, 15px);
}
.menu__item-detail-btn {
  position: relative;
  display: block;
  background-color: #fff4f7;
  border: 1px solid #500F15;
  color: #500F15;
  text-align: center;
  padding: 2px 0;
  font-size: clamp(10px, 5vw, 20px);
  border-radius: 4px;
  margin: 3% 0;
  -webkit-box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.2);
}
.menu__item-buy-btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 10px;
  font-size: 16px;
}
.menu__item-pop {
  position: absolute;
  top: -24px;
  right: 2%;
  color: #ffffff;
  padding: 0 4%;
  background: #500F15;
  font-size: 14px;
  -webkit-animation: movepop 1.5s infinite linear;
          animation: movepop 1.5s infinite linear;
}
.menu__item-pop::after {
  content: "";
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -7px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #500F15;
  pointer-events: none;
}
@-webkit-keyframes movepop {
  0% {
    top: -24px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    top: -32px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    top: -24px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes movepop {
  0% {
    top: -24px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    top: -32px;
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  100% {
    top: -24px;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.menu__item-buy-btn-outer-single {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.menu__item-buy-btn {
  color: #ffffff;
  text-align: center;
  display: block;
  background-color: #ED9B9D;
  border: 1px solid #ffffff;
  border-radius: 6px;
  -webkit-box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
  padding: 4px;
}
.menu__item-buy-btn-chip {
  margin-top: 30px;
  position: relative;
}
.menu__item-buy-btn-sat {
  color: #2157CC;
  font-size: 14px;
}
.menu__item-buy-btn-sun {
  color: #F00016;
  font-size: 14px;
}

.plan-view {
  font-weight: bold;
  padding-inline: 2%;
}
.plan-view__title {
  position: relative;
}
.plan-view__back-btn {
  position: absolute;
  left: 18%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
.plan-view__back-btn::before {
  content: "\f060";
  font-family: "Font Awesome 5 Free";
  font-weight: 600;
  font-size: clamp(30px, 3vw, 40px);
  color: #B34D62;
}
.plan-view__item {
  background-color: #ffffff;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 30px;
  text-align: center;
  padding-bottom: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .plan-view__item {
    margin-top: 45px;
  }
}
.plan-view__item-img {
  border-radius: 1000px;
  border: 6px solid #ffffff;
  width: 25%;
  min-width: 130px;
  margin-top: -50px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .plan-view__item-img {
    margin-top: -30px;
  }
}
.plan-view__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan-view__item-plan-name-jp {
  font-size: clamp(22px, 8vw, 58px);
}
.plan-view__item-plan-name-en {
  font-size: clamp(14px, 4vw, 28px);
  margin-top: -7%;
}
.plan-view__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
  padding-inline: 2%;
}
.plan-view__item-mail-btn {
  display: block;
  background-color: #FFEBCB;
  margin: 0 auto;
  padding: 1% 10px;
  text-align: center;
  color: #500F15;
  -webkit-box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
  font-size: clamp(13px, 3vw, 26px);
  border-radius: 4px;
  letter-spacing: -0.5px;
}
.plan-view__item-mail-btn::after {
  content: "\f0e0";
  font-family: "Font Awesome 5 Free";
  font-weight: 400;
  margin-left: 2px;
  color: #500F15;
  font-size: clamp(13px, 3vw, 26px);
}
.plan-view__item-guarantee-text {
  width: 70%;
  margin: 0 auto;
  margin-bottom: 3%;
  margin-top: 1%;
  min-width: 280px;
}
.plan-view__item-profile {
  text-align: left;
  padding-inline: 2%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 4%;
}
.plan-view__item-profile-list-outer {
  border-left: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-right: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-bottom: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-bottom: solid 3px rgba(248, 183, 181, 0.5019607843);
}
.plan-view__item-profile-title {
  font-size: clamp(12px, 4vw, 28px);
  font-weight: 900;
  text-align: center;
  background-color: rgba(248, 183, 181, 0.5019607843);
}
.plan-view__item-profile-list {
  font-size: clamp(12px, 4vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1% 2%;
  margin-top: 1%;
  padding-inline: 1%;
}
@media screen and (max-width: 500px) {
  .plan-view__item-profile-list {
    gap: 1% 0;
  }
}
.plan-view__item-profile-list-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  text-align: left;
  min-width: 180px;
}
.plan-view__item-profile-list-label::before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 2px;
  color: #FBCFCB;
  font-size: clamp(12px, 4vw, 22px);
}
.plan-view__item-profile-list-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  text-align: left;
  min-width: 150px;
}
.plan-view__item-profile-comment {
  font-size: clamp(12px, 3vw, 22px);
  padding-inline: 1%;
  margin-bottom: 1%;
}
.plan-view__item-photo-blog {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff4f7;
  margin-bottom: 4%;
  padding: 2% 1%;
  border-radius: 20px;
}
.plan-view__item-photo-blog-title {
  font-size: clamp(12px, 4vw, 28px);
  font-weight: 900;
  text-align: center;
}
.plan-view__item-photo-blog-slider {
  height: 100%;
}
.plan-view__item-photo-blog-slider-item {
  display: block;
  background: linear-gradient(135deg, #FBDC98 0%, #FFF9F2 100%);
  margin-inline: 10px;
  height: auto;
  text-align: left;
  color: #500F15;
  padding: 10px;
  border-radius: 0 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}
.plan-view__item-photo-blog-slider-item:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.plan-view__item-photo-blog-slider .slick-list {
  padding: 2% 0;
}
.plan-view__item-photo-blog-slider-img {
  width: 100%;
  aspect-ratio: 13/9;
  overflow: hidden;
  border-radius: 0 40px 0 0;
}
.plan-view__item-photo-blog-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.plan-view__item-photo-blog-slider-text {
  letter-spacing: 1.4px;
}
.plan-view__item-photo-blog .slick-next:before {
  display: none;
}
.plan-view__item-photo-blog .slick-prev:before {
  display: none;
}
.plan-view__item-tekityuu {
  position: relative;
}
.plan-view__item-tekityuu-title {
  font-size: clamp(12px, 4vw, 28px);
  font-weight: 900;
  text-align: center;
  margin-bottom: 2%;
}
.plan-view__item-tekityuu .slick-next:before {
  display: none;
}
.plan-view__item-tekityuu .slick-prev:before {
  display: none;
}
.plan-view__item-details {
  text-align: left;
  padding-inline: 2%;
  max-width: 900px;
  margin: 0 auto;
  margin-bottom: 4%;
}
.plan-view__item-details-outer {
  border-left: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-right: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-bottom: solid 3px rgba(248, 183, 181, 0.5019607843);
  border-bottom: solid 3px rgba(248, 183, 181, 0.5019607843);
}
.plan-view__item-details-title {
  font-size: clamp(12px, 4vw, 28px);
  font-weight: 900;
  text-align: center;
  background-color: rgba(248, 183, 181, 0.5019607843);
}
.plan-view__item-details-list {
  font-size: clamp(12px, 4vw, 24px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 1% 0px;
  padding: 1%;
}
.plan-view__item-details-list-label {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 120px;
          flex: 0 0 120px;
  text-align: left;
  min-width: 180px;
}
@media screen and (max-width: 768px) {
  .plan-view__item-details-list-label {
    min-width: 200px;
  }
}
@media screen and (max-width: 500px) {
  .plan-view__item-details-list-label {
    min-width: 180px;
  }
}
.plan-view__item-details-list-label::before {
  content: "\f0c8";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 2px;
  color: #FBCFCB;
  font-size: clamp(12px, 4vw, 22px);
}
.plan-view__item-details-list-value {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 60px;
          flex: 0 0 60px;
  text-align: left;
  min-width: 220px;
}
@media screen and (max-width: 768px) {
  .plan-view__item-details-list-value {
    min-width: 210px;
  }
}
@media screen and (max-width: 500px) {
  .plan-view__item-details-list-value {
    min-width: 170px;
  }
}
.plan-view__item-point {
  background: linear-gradient(135deg, #FFCF91 0%, #FFCDD8 100%);
  padding: 1% 0;
  font-weight: bold;
  margin-bottom: 4%;
}
.plan-view__item-point-text {
  font-size: clamp(16px, 4vw, 40px);
}
.plan-view__item-point-text span {
  font-size: clamp(24px, 5vw, 60px);
}
.plan-view__item-buy-btn {
  max-width: 600px;
  padding-inline: 2%;
  margin: 0 auto;
  font-size: clamp(16px, 4vw, 28px);
  margin-bottom: 4%;
}
.plan-view__item-buy-btn .menu__item-buy-btn-sun {
  font-size: clamp(16px, 4vw, 28px);
}
.plan-view__item-buy-btn .menu__item-buy-btn-sat {
  font-size: clamp(16px, 4vw, 28px);
}
.plan-view__item-deposit {
  max-width: 600px;
  margin: 0 auto;
  padding-inline: 2%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.plan-view__item-deposit a {
  font-family: noto sans;
  background-color: #500F15;
  color: #ffffff;
  padding: 1% 0;
  -webkit-box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 4px 3px rgba(0, 0, 0, 0.3);
}

.photo-blog__content {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2%;
}
.photo-blog__item {
  background-color: #fff4f7;
  border-radius: 20px;
}
.photo-blog__item-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.photo-blog__item-img {
  width: 16%;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1000px;
  border: 4px solid #ffffff;
}
.photo-blog__item-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.photo-blog__item-name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
}
.photo-blog__item-name-jp {
  font-size: clamp(22px, 5vw, 40px);
}
.photo-blog__item-name-en {
  font-size: clamp(14px, 2vw, 20px);
  margin-top: -6%;
}

.record__item-container {
  max-width: 1000px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-inline: 2%;
}
.record__item {
  background-color: rgba(255, 244, 247, 0.5019607843);
  padding: 2% 4% 0 4%;
  text-align: center;
  opacity: 1;
  max-width: 1000px;
}
.record__plan-name {
  color: #B34D62;
  font-weight: bold;
  margin-bottom: 10px;
}
.record__plan-name-jp {
  font-size: clamp(20px, 5vw, 40px);
}
.record__plan-name-en {
  font-size: clamp(14px, 2vw, 20px);
  margin-top: -1%;
}
.record__content {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
}
.record__content-chara {
  width: 30%;
  aspect-ratio: 1/1.3;
  overflow: hidden;
}
.record__content-chara img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.ranking {
  padding-inline: 2%;
  font-weight: bold;
}
.ranking__content-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
}
.ranking__content {
  background-color: rgba(255, 244, 247, 0.5019607843);
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  width: 90%;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .ranking__content {
    padding: 14px;
  }
}
.ranking__content-title {
  font-size: clamp(20px, 5vw, 40px);
  margin-bottom: 1%;
}
.ranking__card-outer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.ranking__medal {
  width: 30%;
  margin: 0 auto;
}
.ranking__card {
  background-color: #FFEBCB;
  text-align: center;
  padding: 3%;
}
.ranking__card-plan-name {
  font-size: clamp(22px, 6vw, 22px);
}
.ranking__card-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3%;
  margin: 4% 0;
}
.ranking__card-content-img {
  width: 60%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.ranking__card-content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.ranking__card-content-num {
  position: relative;
  z-index: 1;
  font-size: clamp(60px, 10vw, 80px);
}
@media screen and (max-width: 768px) {
  .ranking__card-content-num {
    font-size: clamp(80px, 18vw, 100px);
  }
}
.ranking__card-content-num::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 90%;
  background: #ffffff;
  border-radius: 50%;
  -webkit-filter: blur(20px);
          filter: blur(20px);
  z-index: -1;
}
.ranking__card-content-num span {
  font-size: clamp(20px, 4vw, 40px);
}
@media screen and (max-width: 768px) {
  .ranking__card-content-num span {
    font-size: clamp(20px, 12vw, 60px);
  }
}
.ranking__card-btn {
  display: block;
  background-color: #fff4f7;
  border-radius: 100px;
  color: #500F15;
  padding: 1% 0;
  font-size: clamp(14px, 5vw, 20px);
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  font-weight: 900;
  width: 80%;
  margin: 0 auto;
}
.ranking__card-btn:hover {
  opacity: 0.7;
}
.ranking__card-btn::after {
  content: ">";
  margin-left: 6px;
  font-weight: 900;
}

.free-plan {
  font-weight: bold;
  padding-inline: 2%;
}
.free-plan-text {
  text-align: center;
  font-size: clamp(12px, 2vw, 28px);
  line-height: 120%;
  margin-bottom: 3%;
}
.free-plan-content-outer {
  background-color: #FFDEDB;
  max-width: 1000px;
  margin: 0 auto;
  color: #500F15;
  padding: 10px 0;
}
.free-plan-content {
  padding: 2.5% 0;
  border-top: solid 2px #ffffff;
  border-bottom: solid 2px #ffffff;
}
.free-plan-title {
  position: relative;
  background-color: rgba(255, 244, 247, 0.5019607843);
  text-align: center;
  padding: 10px 0;
  margin-bottom: 10px;
}
.free-plan-chara-icon {
  position: absolute;
  top: 50%;
  left: 8%;
  -webkit-transform: translateY(-50%) rotate(-4deg);
          transform: translateY(-50%) rotate(-4deg);
  border-radius: 1000px;
  border: 3px solid #ffffff;
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 17%;
  min-width: 40px;
}
.free-plan-chara-icon img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.free-plan-name {
  font-size: clamp(14px, 6vw, 40px);
  color: #B34D62;
}
.free-plan-date {
  font-size: clamp(14px, 4vw, 42px);
  margin-top: -10px;
}
.free-plan-race-outer {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 1%;
}
.free-plan-race-item-title {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
.free-plan-race-item-title img {
  width: 40px;
  height: auto;
}
.free-plan-race-item-title img:last-child {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
.free-plan-race-item-name {
  position: relative;
  font-size: clamp(14px, 3vw, 28px);
  padding: 0 10%;
}
.free-plan-race-item-name::before, .free-plan-race-item-name::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 110%;
  height: 2px;
  background-color: #ffffff;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.free-plan-race-item-name::before {
  left: -85%;
}
.free-plan-race-item-name::after {
  right: -85%;
}
.free-plan-details {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  /* dt:ラベル列, dd:値列 */
  row-gap: 8px;
  -webkit-column-gap: 16px;
     -moz-column-gap: 16px;
          column-gap: 16px;
  font-size: clamp(10px, 8vw, 26px);
}
.free-plan-details dt, .free-plan-details dd {
  border-bottom: 2px dotted #ffffff;
  /* 点線の下線 */
  padding-bottom: 4px;
  /* 下線とテキストの間隔 */
}

.mailbox {
  padding-inline: 2%;
}
.mailbox__content {
  max-width: 1000px;
  margin: 0 auto;
}
.mailbox__card {
  background-color: rgba(255, 255, 255, 0.5019607843);
  border: solid 1px #500F15;
  border-radius: 10px;
  margin-bottom: 20px;
  padding: 1%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .mailbox__card {
    width: auto;
    margin-bottom: 8px;
  }
}
.mailbox__card:hover {
  opacity: 0.5;
}
.mailbox__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.mailbox__item-text {
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .mailbox__item-text {
    font-size: 3.7vw;
  }
}
.mailbox__title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mailbox__title {
    font-size: 6.4vw;
  }
}
.mailbox__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1%;
  color: #500F15;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 100%;
}
.mailbox__pin-img {
  width: 6vw;
  max-width: 40px;
}
.mailbox__text-area {
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.mailbox__text-area-name {
  font-weight: bold;
  font-size: clamp(16px, 2.4vw, 24px);
}
.mailbox__text-area-time {
  font-weight: bold;
  font-size: clamp(12px, 2vw, 16px);
}
.mailbox__text-area-text {
  font-size: clamp(14px, 2vw, 18px);
  letter-spacing: -1px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 最大2行表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  /* 行の高さ */
  min-height: 3em;
}
.mailbox__chara-img {
  width: 12%;
  min-width: 80px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1000px;
  margin: 0 auto;
  border: 3px solid #ffffff;
}
.mailbox__chara-img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mailbox__new-icon {
  padding: 4px 12px;
  background: #B34D62;
  color: #fafafa;
}

.talk_message_wrap {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .talk_message_wrap {
    width: 100%;
    gap: 8px;
  }
}

.balloon_l {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2%;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
.balloon_l .faceicon_wrap {
  width: 12%;
  min-width: 80px;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 1000px;
}
@media screen and (max-width: 768px) {
  .balloon_l .faceicon_wrap {
    display: none;
  }
}
.balloon_l .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 9;
      -ms-flex: 9;
          flex: 9;
}
.balloon_l .says {
  background-color: #ffffff;
  max-width: 600px;
  padding: 4px;
  border-radius: 8px 8px 8px 0;
  border: 1px solid #500F15;
  position: relative;
  font-size: clamp(12px, 2vw, 18px);
}
.balloon_l .says > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.balloon_r {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.balloon_r .faceicon_wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: none;
}
.balloon_r .body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 9;
      -ms-flex: 9;
          flex: 9;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.balloon_r .says {
  max-width: 600px;
  background-color: rgb(255, 241, 240);
  border: 1px solid #500F15;
  padding: 4px;
  color: #500F15;
  border-radius: 8px 8px 0 8px;
  font-size: clamp(12px, 2vw, 18px);
}
.balloon_r .subject_js {
  font-weight: bold;
}
.balloon_r .says > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.faceicon_wrap > img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.talk_timestamp {
  font-size: clamp(12px, 2vw, 18px);
  -ms-flex-item-align: end;
      align-self: flex-end;
  padding: 0 4px;
  font-weight: bold;
}

.mail-detail {
  padding-inline: 2%;
}
.mail-detail__content {
  max-width: 1000px;
  margin: 0 auto;
}
.mail-detail__talk {
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 20px 20px 0 0;
  padding: 2%;
  min-height: 60vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.mail-detail__supporter-name {
  margin-bottom: 16px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .mail-detail__supporter-name {
    margin-bottom: 6px;
  }
}
.mail-detail__supporter-link {
  font-size: clamp(12px, 3vw, 24px);
  font-weight: bold;
  color: #500F15;
}
.mail-detail__supporter-link:hover {
  opacity: 0.5;
}
.mail-detail-talk__more-load-btn {
  display: inline-block;
  background-color: #E47F7F;
  border-radius: 4px;
  padding: 8px 24px;
  color: #fafafa;
  font-weight: bold;
  text-align: center;
  -webkit-transition: background 0.3s 0s ease-out;
  transition: background 0.3s 0s ease-out;
  cursor: pointer;
}
.mail-detail-talk__more-load-btn:hover {
  color: #E47F7F;
  background-color: #ffffff;
}
.mail-detail-talk__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px;
}
.mail-detail__text {
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mail-detail__text {
    font-size: 3.7vw;
  }
}
.mail-detail__form {
  background-color: #500F15;
  padding: 8px;
  border-radius: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1%;
}
@media screen and (max-width: 768px) {
  .mail-detail__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 6px;
    padding: 4px;
    border-radius: 8px;
  }
}
.mail-detail__btn-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .mail-detail__btn-outer {
    gap: 4px;
  }
}
.mail-detail__btn {
  width: 100%;
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 2px 8px;
  font-weight: bold;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #500F15;
  font-size: clamp(12px, 2vw, 24px);
  font-family: noto serif jp;
  line-height: 1.2;
}
.mail-detail__btn:disabled {
  background-color: #999;
  color: linen;
}
@media screen and (max-width: 768px) {
  .mail-detail__btn {
    border-radius: 5px;
  }
}
.mail-detail__btn:hover {
  opacity: 0.5;
}
.mail-detail__textarea {
  -webkit-box-flex: 7;
      -ms-flex: 7;
          flex: 7;
  width: 100%;
  border-radius: 10px;
  padding: 8px;
  font-size: clamp(12px, 2vw, 16px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .mail-detail__textarea {
    height: 80px;
    padding: 4px;
    border-radius: 5px;
  }
}

.lobby__form {
  padding-inline: 2%;
  font-family: noto sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 20px;
}
.lobby__rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.lobby__textarea {
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  padding: 8px;
  font-size: clamp(14px, 5vw, 20px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #500F15;
  background-color: rgba(255, 255, 255, 0.5019607843);
}
@media screen and (max-width: 768px) {
  .lobby__textarea {
    min-height: 80px;
  }
}
.lobby__btn {
  background: #E47F7F;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: clamp(14px, 5vw, 24px);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 40%;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-width: 200px;
}
.lobby__content-outer {
  padding-inline: 2%;
  font-family: noto sans-serif;
  max-width: 1000px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto;
}
.lobby__content {
  width: 48%;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #500F15;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.5019607843);
  padding: 1%;
  margin-bottom: 2%;
  min-height: 230px;
  max-height: 300px;
}
@media screen and (max-width: 768px) {
  .lobby__content {
    width: 100%;
    padding: 1.5%;
    min-height: 180px;
  }
}
.lobby__userData-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.lobby__userData-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.lobby__comment {
  padding-bottom: 8px;
  font-size: clamp(10px, 4vw, 20px);
  line-height: 1.2;
}
.lobby__radio-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: -2%;
}
@media screen and (max-width: 768px) {
  .lobby__radio-wrap {
    margin-bottom: -20px;
  }
}
.lobby__rating-text {
  font-size: clamp(12px, 5vw, 20px);
}
.lobby__btn:hover {
  opacity: 0.5;
}
.lobby__pagenation {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .lobby__pagenation {
    gap: 4px;
  }
}
.lobby__pagenation-prev {
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #500F15;
  color: #500F15;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lobby__pagenation-prev:hover {
  opacity: 0.5;
}
.lobby__pagenation-next {
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #500F15;
  color: #500F15;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lobby__pagenation-next:hover {
  opacity: 0.5;
}
.lobby__pagenation-num {
  padding: 4px 8px;
  border-radius: 6px;
  color: #500F15;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.lobby__pagenation-num:hover {
  opacity: 0.5;
  color: #fafafa;
  background-color: #ffffff;
}
.lobby__star-list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.lobby__star-item {
  width: clamp(28px, 6vw, 32px);
}
.lobby__star-list1 .lobby__star-item:nth-child(1) {
  content: url("/files/img/main/lobby-icon-outline.svg");
}
.lobby__star-list2 .lobby__star-item:nth-child(-n+2) {
  content: url("/files/img/main/lobby-icon-outline.svg");
}
.lobby__star-list3 .lobby__star-item:nth-child(-n+3) {
  content: url("/files/img/main/lobby-icon-outline.svg");
}
.lobby__star-list4 .lobby__star-item:nth-child(-n+4) {
  content: url("/files/img/main/lobby-icon-outline.svg");
}
.lobby__star-list5 .lobby__star-item:nth-child(-n+5) {
  content: url("/files/img/main/lobby-icon-outline.svg");
}
.lobby__star-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.lobby__star-label img {
  display: block;
  content: url("/files/img/main/lobby-icon-outline.svg");
  width: clamp(28px, 6vw, 40px);
  height: auto;
  cursor: pointer;
}
.lobby__star-radio:checked ~ .lobby__star-label img {
  content: url("/files/img/main/lobby-icon.svg");
}
.lobby__star-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.lobby__userData-img {
  width: 68px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .lobby__userData-img {
    width: 46px;
  }
}
.lobby__userData-head {
  padding-left: 8px;
}
.lobby__userData-text {
  font-weight: bold;
  margin-bottom: -2px;
  font-size: clamp(10px, 4vw, 20px);
}
.lobby__userData-star {
  font-weight: bold;
  font-size: clamp(10px, 5vw, 24px);
}
.lobby__content-result {
  padding: 20px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(10px, 5vw, 30px);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .lobby__content-result {
    padding: 32px 4px;
    gap: 8px;
  }
}
.lobby__link-text:hover {
  opacity: 0.5;
}

.payment {
  padding-inline: 2%;
  font-weight: bold;
}
.payment__content {
  max-width: 1000px;
  margin: 0 auto;
}
.payment__content-tab {
  font-size: clamp(22px, 4vw, 30px);
  background-color: #FFCBCB;
  border-radius: 16px 16px 0 0;
  text-align: center;
  padding: 0.6% 0;
}
.payment__content-inner {
  background-color: rgba(255, 255, 255, 0.5019607843);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: start;
  gap: 2%;
  padding: 2%;
}
@media screen and (max-width: 768px) {
  .payment__content-inner {
    gap: 2%;
  }
}
@media screen and (max-width: 500px) {
  .payment__content-inner {
    padding: 6%;
  }
}
.payment__item {
  width: 32%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .payment__item {
    width: 49%;
  }
}
@media screen and (max-width: 500px) {
  .payment__item {
    width: 100%;
  }
}
.payment__item-num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #E47F7F;
  font-family: "Oooh Baby", cursive;
  font-size: clamp(20px, 8vw, 36px);
  gap: 10px;
}
.payment__item-num::after {
  content: "";
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  height: 1.6px;
  background-color: #E47F7F;
}
.payment__item-name {
  color: #E47F7F;
  font-size: clamp(14px, 8vw, 26px);
  text-align: center;
  margin-top: -20px;
  line-height: 1;
  height: 60px;
}
.payment__item-name span {
  font-size: clamp(12px, 6vw, 20px);
}
.payment__item-img {
  width: auto;
  height: 100px;
  margin: 0 auto;
}
.payment__item-text {
  color: #500F15;
  font-size: clamp(10px, 4vw, 16px);
}
.payment__item:hover, .payment__item:active {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.payment-method__content {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2%;
}
@media screen and (max-width: 768px) {
  .payment-method__content {
    margin-bottom: 16px;
  }
}
.payment-method__notice-text {
  margin-bottom: 40px;
  font-size: 32px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .payment-method__notice-text {
    font-size: 4.2vw;
    margin-bottom: 24px;
  }
}
.payment-method-advert {
  width: 80%;
  margin: 0 auto;
  padding: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .payment-method-advert {
    width: 100%;
    padding: 20px;
  }
}
.payment-method__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
}
@media screen and (max-width: 768px) {
  .payment-method__list {
    gap: 24px;
  }
}
.payment-method__btn:hover {
  opacity: 0.5;
}
.payment-method-plan__btn-link {
  width: 100%;
}
.payment-method-plan__img {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .payment-method-plan__img {
    width: 100%;
    margin-bottom: 8px;
  }
}
.payment-method-plan__btn {
  background: #E47F7F;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: clamp(14px, 5vw, 24px);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-width: 200px;
}
.payment-method-plan__btn:hover {
  opacity: 0.5;
}
.payment-method__form-input {
  width: 50%;
  padding: 8px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .payment-method__form-input {
    width: 100%;
  }
}
.payment-method__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  margin-top: 12px;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .payment-method__form {
    gap: 20px;
  }
}

.payment-bank {
  padding: 16px;
}
@media screen and (max-width: 768px) {
  .payment-bank {
    padding: 8px;
  }
}
.payment-bank__content {
  max-width: 1000px;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .payment-bank__content {
    width: auto;
    margin: 0 4px;
    margin-bottom: 16px;
  }
}
.payment-bank__card {
  max-width: 1000px;
  margin: 0 auto;
  border: 4px solid #500F15;
  border-radius: 8px;
  padding: 4%;
}
.payment-bank__list {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .payment-bank__list {
    margin-bottom: 16px;
  }
}
.payment-bank__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.payment-bank__item-title {
  font-size: clamp(22px, 5vw, 32px);
  font-weight: bold;
  text-align: center;
  width: 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .payment-bank__item-title {
    margin-bottom: 16px;
  }
}
.payment-bank__item-text {
  font-size: 24px;
  font-weight: bold;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .payment-bank__item-text {
    width: 100%;
    font-size: 3.7vw;
  }
}
.payment-bank__title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .payment-bank__title {
    font-size: 6.4vw;
    margin-bottom: 4px;
  }
}
.payment-bank__text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .payment-bank__text {
    font-size: 3.2vw;
    margin-bottom: 4px;
  }
}
.payment-bank__price-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .payment-bank__price-box {
    gap: 4px;
    margin-bottom: 8px;
  }
}
.payment-bank__price {
  width: calc((100% - 8px) / 2);
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .payment-bank__price {
    width: calc((100% - 4px) / 2);
  }
}
.payment-bank__btn-wrap {
  text-align: center;
  margin-bottom: 24px;
}
.payment-bank__btn {
  background: #E47F7F;
  color: #ffffff;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: clamp(14px, 5vw, 24px);
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-width: 200px;
}
.payment-bank__btn:hover {
  opacity: 0.5;
}

.procedure-detail__content {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2%;
}
.procedure-detail__text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .procedure-detail__text {
    gap: 4px;
  }
}
.procedure-list__title {
  font-weight: bold;
  font-size: clamp(12px, 5vw, 20px);
}
.procedure-list__item {
  font-size: clamp(10px, 4vw, 18px);
}

.news__container {
  padding-inline: 2%;
  max-width: 1000px;
  min-height: 60vh;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.news__box {
  color: #500F15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 4px 0;
}
@media screen and (max-width: 768px) {
  .news__box {
    gap: 16px;
  }
}
.news__box:hover {
  background-color: rgba(255, 223, 223, 0.6);
}
.news__box-inner {
  width: 80%;
  margin: 0 auto;
}
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .news__list {
    gap: 8px;
  }
}
.news__list-time-box {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: start;
}
.news__list-time {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  font-size: clamp(14px, 4vw, 18px);
}
.news__list-text-box {
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.news__list-text {
  font-size: clamp(14px, 4vw, 20px);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 最大2行表示 */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.5;
  /* 行の高さ */
  min-height: 3em;
}
.news__title {
  text-align: center;
  font-size: clamp(22px, 4vw, 30px);
  font-weight: bold;
}

.news-view__container {
  padding-inline: 2%;
  max-width: 1000px;
  min-height: 60vh;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.news-view__sub-title {
  font-size: clamp(14px, 4vw, 26px);
  font-weight: bold;
}
.news-view__time {
  font-size: clamp(14px, 4vw, 20px);
}
.news-view__text {
  font-size: clamp(14px, 4vw, 18px);
  line-height: 1.5;
}

.ask__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding-inline: 2%;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ask-form__label {
  width: 100%;
  font-weight: bold;
}
.ask__textarea {
  background-color: rgba(255, 255, 255, 0.5019607843);
  width: 100%;
  min-height: 300px;
  border-radius: 10px;
  padding: 8px;
  resize: vertical;
  font-size: clamp(12px, 3vw, 18px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #600E19;
}
@media screen and (max-width: 768px) {
  .ask__textarea {
    min-height: 180px;
  }
}
.ask__textarea:focus {
  outline: 1px solid #600E19;
}
.ask-form__input {
  padding: 8px;
  font-size: 20px;
  border: none;
  padding: 6px;
  border-radius: 4px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #600E19;
}
.ask-form__input:focus {
  outline: 2px solid #600E19;
}
.ask__btn {
  background: #E47F7F;
  color: #fafafa;
  border: none;
  font-weight: bold;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: clamp(14px, 5vw, 24px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  width: 30%;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  min-width: 200px;
}
.ask__btn:hover {
  opacity: 0.5;
}
.ask__pagenation {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 768px) {
  .ask__pagenation {
    gap: 4px;
  }
}
.ask__pagenation-prev {
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #500F15;
  color: #500F15;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ask__pagenation-prev:hover {
  opacity: 0.5;
}
.ask__pagenation-next {
  padding: 4px 8px;
  border-radius: 6px;
  border: 2px solid #500F15;
  color: #500F15;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.ask__pagenation-next:hover {
  opacity: 0.5;
}
.ask__pagenation-num {
  padding: 4px 8px;
  border-radius: 6px;
  color: #500F15;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ask__pagenation-num:hover {
  opacity: 0.5;
  color: #fafafa;
  background-color: #ffffff;
}
.ask__star-list {
  font-size: 24px;
}
.ask__userData-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.ask__userData-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.ask__content-outer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding-inline: 2%;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .ask__content-outer {
    gap: 8px;
  }
}
.ask__content {
  background-color: rgba(255, 255, 255, 0.5019607843);
  border-radius: 10px;
  border: 1px solid #600E19;
  padding: 1%;
}
.ask__userData-img {
  width: 68px;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .ask__userData-img {
    width: 46px;
  }
}
.ask__userData-head {
  padding-left: 8px;
}
.ask__userData-name {
  font-size: clamp(14px, 5vw, 24px);
  font-weight: bold;
}
.ask__userData-star {
  font-weight: bold;
  font-size: 24px;
}
.ask__comment {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .ask__comment {
    font-size: 3.2vw;
  }
}
.ask__content-result {
  padding: 20px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-size: clamp(10px, 5vw, 30px);
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .ask__content-result {
    padding: 32px 4px;
    gap: 8px;
  }
}
.ask__form-btn {
  color: #ffffff;
  background-color: #E47F7F;
  border-radius: 4px;
  padding: 4px 16px;
  font-size: clamp(14px, 5vw, 24px);
  cursor: pointer;
  -webkit-box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.ask__form-btn:hover {
  opacity: 0.5;
}
.ask__link-text:hover {
  opacity: 0.5;
}
.ask__title {
  text-align: center;
  font-size: clamp(14px, 6vw, 30px);
  font-weight: bold;
  color: #B34D62;
  margin: 2% 0;
}

.highlight {
  padding: 4px 8px;
  border-radius: 6px;
  color: #fafafa;
  background-color: #FFCBCB;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.highlight:hover {
  opacity: 0.5;
}

.profile__content {
  max-width: 1000px;
  margin: 0 auto;
  padding-inline: 2%;
}
.profile-img {
  margin: 0 auto;
}
.profile-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media screen and (max-width: 768px) {
  .profile-form {
    gap: 8px;
  }
}
.profile-form__label {
  text-align: start;
  width: 100%;
}
.profile-form__label-text {
  font-weight: bold;
  font-size: clamp(12px, 3vw, 24px);
}
.profile-form__input {
  padding: 8px;
}
.profile-form__birth-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile-form__input-md {
  width: 40%;
  padding: 8px;
  font-size: 20px;
}
.profile-form__input-sm {
  width: 20%;
  padding: 8px;
  font-size: 20px;
}
.profile-form__btn {
  width: 100%;
  border: none;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  margin: 0 auto;
  padding: 8px;
  font-size: clamp(12px, 3vw, 24px);
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.profile-form__btn:hover {
  opacity: 0.5;
}
.profile-form__line-btn {
  width: 100%;
  border: none;
  background: #06C755;
  color: #fafafa;
  font-weight: bold;
  margin: 0 auto;
  padding: 8px;
  font-size: 16px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.profile-form__line-btn-complete {
  border: none;
  font-weight: bold;
  color: #06C755;
  margin: 0 auto;
  padding: 8px;
  font-size: 16px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .profile-form__line-btn-complete {
    padding: 4px;
    font-size: 12px;
  }
}
.profile-form__line-btn:hover {
  opacity: 0.5;
}
.profile__img-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .profile__img-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.profile__img-card {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .profile__img-card {
    width: 80%;
    max-width: 400px;
  }
}
.profile__img {
  width: 100%;
}
.profile__img-btn-wrap {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile__imgChenge-btn {
  border: none;
  background: #E47F7F;
  color: #fafafa;
  font-weight: bold;
  margin: 0 auto;
  padding: 2% 30px;
  font-size: clamp(16px, 3vw, 24px);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.profile__imgRemove-btn {
  border: none;
  background: #500F15;
  color: #fafafa;
  font-weight: bold;
  margin: 0 auto;
  padding: 2% 30px;
  font-size: clamp(16px, 3vw, 24px);
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.profile__line-wrap {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.profile__line-text {
  text-align: start;
  font-weight: bold;
  font-size: clamp(12px, 3vw, 24px);
}

.photo-blog__dontent {
  padding-inline: 2%;
}
.photo-blog__item {
  max-width: 850px;
  margin: 0 auto;
  padding-inline: 2%;
  margin-bottom: 4%;
  display: block;
  background: linear-gradient(135deg, #FBDC98 0%, #FFF9F2 100%);
  height: auto;
  text-align: left;
  color: #500F15;
  padding: 2%;
  border-radius: 0 40px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: bold;
}
.photo-blog__item-img {
  width: 60%;
  border-radius: 0;
  aspect-ratio: 5/4;
  border: none;
}
.photo-blog__item-time {
  font-size: clamp(12px, 2vw, 20px);
}
.photo-blog__item-title {
  font-size: clamp(14px, 2vw, 28px);
  line-height: 1.2;
}
.photo-blog__item-text {
  font-size: clamp(10px, 2vw, 20px);
}

.photo-blog-list__item-img {
  width: 18%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.photo-blog-list__item-img img {
  height: 100%;
  border-radius: 1000px;
  border: 6px solid #ffffff;
  -o-object-fit: cover;
     object-fit: cover;
}

.info__content {
  min-height: 60vh;
  padding: 56px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .info__content {
    padding: 32px 4px;
    gap: 8px;
  }
}
.info__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .info__title {
    font-size: 6.4vw;
  }
}
.info-detail__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .info-detail__title {
    font-size: 4.2vw;
  }
}
.info__text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .info__text {
    font-size: 3.7vw;
  }
}
.info__text-link {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #ff6767;
  border-bottom: 2px solid #ff6767;
}
@media screen and (max-width: 768px) {
  .info__text-link {
    padding: 8px;
    font-size: 3.7vw;
  }
}
.info__text-link:hover {
  border-bottom: 2px solid #fafafa;
}
.info-list__title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .info-list__title {
    font-size: 16px;
  }
}
.info__btn {
  width: 100%;
  border: none;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  box-sizing: border-box;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.info__btn:hover {
  opacity: 0.5;
}

.pastPerformance__section {
  padding: 40px;
}
.pastPerformance__content {
  padding: 20px 0;
}
.pastPerformance__title {
  font-size: 40px;
  font-weight: bold;
  padding: 8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .pastPerformance__title {
    font-size: 6.4vw;
  }
}
.pastPerformance__img-list {
  margin: 8px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .pastPerformance__img-list {
    padding: 8px;
    font-size: 2.5vw;
  }
}
.pastPerformance-list__title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pastPerformance-list__title {
    font-size: 16px;
  }
}
.pastPerformance-plan__btn {
  width: 50%;
  border: none;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .pastPerformance-plan__btn {
    width: 100%;
    font-size: 4vw;
  }
}
.pastPerformance-plan__btn:hover {
  opacity: 0.5;
}
.pastPerformance-plan__btn-box {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .pastPerformance-plan__btn-box {
    padding: 8px;
  }
}
.pastPerformance-advert {
  margin: 40px;
}
@media screen and (max-width: 768px) {
  .pastPerformance-advert {
    margin: 20px;
  }
}
.pastPerformance__img {
  border-radius: 15px;
}
.plan {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .plan {
    padding: 20px;
  }
}
.plan__content {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .plan__content {
    width: auto;
    margin: 0 4px;
    margin-bottom: 16px;
  }
}
.plan__card {
  border: 4px solid #500F15;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 8px;
}
@media screen and (max-width: 768px) {
  .plan__card {
    width: auto;
    margin-bottom: 16px;
  }
}
.plan__detail-box {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .plan__detail-box {
    width: auto;
    margin: 8px;
  }
}
.plan__entry {
  width: 100%;
  margin-top: 20px;
}
.plan__entry-text {
  background: #600E19;
  padding: 8px;
  border-radius: 8px;
  color: white;
  font-weight: bold;
  font-size: 20px;
}
.plan__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.plan__item-text {
  font-size: 24px;
  font-weight: bold;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .plan__item-text {
    font-size: 3.7vw;
  }
}
.plan__title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__title {
    font-size: 6.4vw;
  }
}
.plan__img {
  max-width: 10%;
}
.plan__name {
  font-weight: bold;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .plan__name {
    font-size: 24px;
  }
}
.plan__text-box {
  margin-top: 8px;
  border-top: 1px solid #500F15;
}
.plan-btn-link {
  width: 100%;
  border: none;
}
.plan-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .plan-btn {
    padding: 4px;
    font-size: 3.2vw;
  }
}
.plan-btn:hover {
  opacity: 0.5;
}
.plan-btn-detail {
  width: 100%;
  border: none;
  cursor: pointer;
  background: #8d8d8d;
  color: #fafafa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .plan-btn-detail {
    padding: 4px;
    font-size: 3.2vw;
  }
}
.plan-btn-detail:hover {
  opacity: 0.5;
}
.plan-btn-assortment {
  border: 2px solid #600E19;
  border-radius: 8px;
  padding: 2px 8px;
  color: #500F15;
  background: #fafafa;
}
.plan-btn-assortment-sun {
  color: #8d8d8d;
}
.plan-btn-assortment-sat {
  color: #ffffff;
}
.plan-mail__btn-wrap {
  text-align: center;
}
.plan-mail__btn {
  width: 80%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .plan-mail__btn {
    width: 100%;
  }
}
.plan-mail__btn:hover {
  opacity: 0.5;
}

.forecast {
  padding: 40px;
}
@media screen and (max-width: 768px) {
  .forecast {
    padding: 20px;
  }
}
.forecast__content {
  width: 80%;
  margin: 0 auto;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .forecast__content {
    width: auto;
    margin: 0 4px;
    margin-bottom: 16px;
  }
}
.forecast__card {
  border: 4px solid #600E19;
  border-radius: 8px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .forecast__card {
    width: auto;
    margin-bottom: 16px;
  }
}
.forecast__card-head {
  background: #ffffff;
  text-align: center;
  padding: 4px;
}
.forecast__card-body {
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .forecast__card-body {
    padding: 12px;
  }
}
.forecast__card-title {
  font-size: 24px;
  font-weight: bold;
  color: #fafafa;
}
@media screen and (max-width: 768px) {
  .forecast__card-title {
    font-size: 3.7vw;
  }
}
.forecast__detail-box {
  width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .forecast__detail-box {
    width: auto;
    margin: 8px;
  }
}
.forecast__entry {
  width: 100%;
  margin-top: 20px;
}
.forecast__entry-text {
  background: #FFF2D5;
  padding: 8px;
  border-radius: 8px;
  color: #fafafa;
  font-weight: bold;
  font-size: 20px;
}
.forecast__item-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
}
.forecast__item-title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .forecast__item-title {
    font-size: 3.7vw;
  }
}
.forecast__item-text {
  font-size: 24px;
  font-weight: bold;
  width: 50%;
}
@media screen and (max-width: 768px) {
  .forecast__item-text {
    width: 100%;
    font-size: 3.7vw;
  }
}
.forecast__title {
  margin-bottom: 20px;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .forecast__title {
    font-size: 6.4vw;
  }
}
.forecast__text {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .forecast__text {
    font-size: 5.3vw;
  }
}
.forecast__text-box {
  margin-top: 8px;
  border-top: 1px solid #500F15;
}
.forecast__img {
  max-width: 10%;
}
.forecast__name {
  font-weight: bold;
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .forecast__name {
    font-size: 24px;
  }
}
.forecast-btn-link {
  width: 100%;
  border: none;
}
.forecast-btn {
  width: 100%;
  border: none;
  cursor: pointer;
  background: #8d8d8d;
  color: #500F15;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border: 4px solid #500F15;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media screen and (max-width: 768px) {
  .forecast-btn {
    padding: 4px;
    font-size: 3.2vw;
  }
}
.forecast-btn:hover {
  opacity: 0.5;
}
.forecast-btn-assortment {
  border: 2px solid #600E19;
  border-radius: 8px;
  padding: 2px 8px;
  color: #ffffff;
  background: #fafafa;
}
.forecast-plan__btn-wrap {
  text-align: center;
}
.forecast-plan__btn {
  width: 80%;
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .forecast-plan__btn {
    width: 100%;
  }
}
.forecast-plan__btn:hover {
  opacity: 0.5;
}
.forecast__info-wrap {
  background: #ffffff;
  margin-bottom: 20px;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .forecast__info-wrap {
    margin-bottom: 16px;
    padding: 8px;
  }
}
.forecast__info-text {
  color: #fafafa;
  font-size: 20px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .forecast__info-text {
    font-size: 3.7vw;
  }
}

.favorite_targets_wrap .not_favorite_mark_js {
  display: none;
}

.other_targets_wrap .favorite_mark_js {
  display: none;
}

.withdrawn__content {
  min-height: 60vh;
  padding: 56px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .withdrawn__content {
    padding: 32px 4px;
    gap: 8px;
  }
}
.withdrawn__title {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .withdrawn__title {
    font-size: 6.4vw;
  }
}
.withdrawn-detail__title {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .withdrawn-detail__title {
    font-size: 4.2vw;
  }
}
.withdrawn__text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .withdrawn__text {
    font-size: 3.7vw;
  }
}
.withdrawn__text-link {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #ff6767;
  border-bottom: 2px solid #ff6767;
}
@media screen and (max-width: 768px) {
  .withdrawn__text-link {
    padding: 8px;
    font-size: 3.7vw;
  }
}
.withdrawn__text-link:hover {
  border-bottom: 2px solid #fafafa;
}
.withdrawn-list__title {
  font-weight: bold;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .withdrawn-list__title {
    font-size: 16px;
  }
}
.withdrawn__form {
  padding: 16px;
  margin-bottom: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .withdrawn__form {
    padding: 4px;
    margin-bottom: 4px;
  }
}
.withdrawn-form__btn {
  width: 200px;
  border: none;
  background: #ffffff;
  color: #fafafa;
  font-weight: bold;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 8px;
  font-size: 20px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  gap: 8%;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
.withdrawn-form__btn:hover {
  opacity: 0.5;
}

.test02 {
  color: red;
}

.regist__comp {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px;
}
.regist__comp-title {
  width: 80%;
  margin: 0 auto;
}
.regist__comp-hitTicket {
  width: 90%;
  margin: 0 auto;
}
.regist__comp-hitDetail {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  text-align: center;
}
.regist__comp-hitDetail__img {
  margin: -40px 0px;
}
.regist__comp-hitDetail__logo {
  max-width: clamp(100px, 10vw, 150px);
}
.regist__comp-hitDetail__text {
  font-size: clamp(16px, 2vw, 24px);
}
.regist__comp-hitDetail__text-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  min-height: clamp(50px, 2vw, 300px);
}
.regist__comp-chara__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.regist__comp-btn {
  position: relative;
  -webkit-animation: poyoyon3 2.5s infinite;
          animation: poyoyon3 2.5s infinite;
}
.regist__comp-btn__bach {
  position: absolute;
  width: 30%;
  bottom: 0px;
  right: 0px;
}
.regist__comp-card {
  padding: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: 24px;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right bottom, from(#FFCF91), to(#FFCDD8));
  background: linear-gradient(to bottom right, #FFCF91, #FFCDD8);
}
.regist__comp-head {
  font-size: clamp(18px, 3.8vw, 86px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  color: #D06262;
}
.regist__comp-body {
  width: 100%;
  background-color: white;
  font-size: clamp(14px, 4vw, 40px);
  padding: 0px 32px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 8px;
}

.mail__send {
  max-width: 1000px;
  margin: 0 auto;
  padding: 8px;
}
.mail__send-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.mail__send-logo {
  width: 15%;
  margin: 0 auto;
}
.mail__send-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}

.free__warranty {
  max-width: 1000px;
  margin: 20px auto;
  padding: 56px;
  background-image: url(../../img/main/free-warranty-bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  border: solid 3px #FFBA1A;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .free__warranty {
    gap: 8px;
    padding: 24px;
  }
}
.free__warranty-btn__box {
  background-color: white;
  border-radius: 8px 8px 0 0;
}
.free__warranty-btn__text {
  background-color: #FFF2D5;
  border-radius: 8px 8px 0 0;
  text-align: center;
  color: #500F15;
  font-size: clamp(8px, 2vw, 24px);
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
.free__warranty-btn__box {
  background-color: white;
  border-radius: 8px 8px 0 0;
}
.free__warranty-btn__img {
  width: 80%;
  margin: 2% auto;
}

.guarantee__page {
  max-width: 1000px;
  margin: 20px auto;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .guarantee__page {
    gap: 8px;
    padding: 24px;
  }
}
.guarantee__page-banner {
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #500F15;
  font-weight: bold;
  background: linear-gradient(279deg, #FC874F -45.14%, #F9E1E6 62.81%, #EE97A8 180.12%);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}
@media screen and (max-width: 768px) {
  .guarantee__page-banner {
    padding: 8px;
  }
}
.guarantee__page-banner__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 17px;
  -webkit-box-flex: 3;
      -ms-flex: 3;
          flex: 3;
}
.guarantee__page-banner__bach {
  position: absolute;
  top: 0;
  left: 20px;
  color: #B95B5B;
  background-color: white;
  border-radius: 0 0 8px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 12px;
}
@media screen and (max-width: 768px) {
  .guarantee__page-banner__bach {
    left: 8px;
    padding: 2px 6px;
  }
}
.guarantee__page-banner__name {
  color: #B95B5B;
  font-size: clamp(18px, 5vw, 64px);
  text-align: end;
  line-height: 80%;
  padding-right: 20px;
}
@media screen and (max-width: 768px) {
  .guarantee__page-banner__name {
    padding-right: 8px;
  }
}
.guarantee__page-banner__plan {
  font-size: clamp(4px, 2vw, 28px);
}
.guarantee__page-banner__text01 {
  font-size: clamp(16px, 2vw, 24px);
  line-height: 120%;
}
.guarantee__page-banner__text02 {
  font-size: clamp(12px, 2vw, 24px);
  line-height: 120%;
}
.guarantee__page-banner__img-box {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.guarantee__page-banner__link {
  position: absolute;
  bottom: 0;
}
.guarantee__page-banner__text-box {
  padding: 10px;
  background-color: rgba(255, 255, 255, 0.19);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: clamp(50px, 16vw, 156px);
}
@media screen and (max-width: 768px) {
  .guarantee__page-banner__text-box {
    padding: 4px;
  }
}
.guarantee__page-banner__text-price {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.guarantee__page-banner__text-price-text {
  font-size: clamp(4px, 1.5vw, 14px);
  -webkit-box-flex: 5;
      -ms-flex: 5;
          flex: 5;
}
.guarantee__page-banner__text-price-Unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.guarantee__page-banner__text-price-com {
  font-size: clamp(1px, 1vw, 6px);
}
.guarantee__page-banner__text-price-num {
  font-size: clamp(6px, 4vw, 54px);
  color: #FF7C7C;
  line-height: 100%;
  text-shadow: 0px 0px 25px rgb(255, 255, 255);
}
.guarantee__page-banner__text-price-type {
  font-size: clamp(4px, 1.5vw, 14px);
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
.guarantee__page-banner__link {
  right: 0;
  left: 0;
  bottom: 4px;
  margin: 0 auto;
  background: #FFF2D5;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1px 10px;
  font-size: clamp(4px, 1.5vw, 14px);
}
.free__gift {
  max-width: 1000px;
  margin: 20px auto;
  padding: 56px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .free__gift {
    gap: 8px;
    padding: 24px;
  }
}
.free__gift-para {
  font-weight: bold;
}

.plan-page {
  max-width: 1000px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding-bottom: 24px;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .plan-page {
    gap: 8px;
    padding: 24px;
  }
}
.plan-page__para {
  font-weight: bold;
  text-align: center;
  font-size: clamp(16px, 3vw, 32px);
}
.plan-page__textbox {
  font-weight: bold;
  text-align: center;
  font-size: clamp(16px, 3vw, 32px);
  background: #FFDEDB;
  position: relative;
  padding: 1rem;
  border: 2px solid #ffffff;
  -webkit-box-shadow: 0 0 0px 10px #FFDEDB;
          box-shadow: 0 0 0px 10px #FFDEDB;
}
.plan-page__chara-text {
  font-weight: bold;
  text-align: center;
  font-size: clamp(16px, 3vw, 32px);
  color: #B34D62;
  background: rgba(255, 244, 247, 0.6784313725);
}
.plan-page__forecast-wrap {
  width: 100%;
  background: linear-gradient(106deg, #FFCF91 -18.43%, #FFCDD8 98.88%);
  padding: 20px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 768px) {
  .plan-page__forecast-wrap {
    padding: 8px 0;
  }
}
.plan-page__forecast-wrap::before {
  content: "";
  position: absolute;
  top: 8px;
  width: 100%;
  border-top: 3px solid #ffffff;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .plan-page__forecast-wrap::before {
    top: 4px;
    padding: 4px 0;
    border-top: 1.5px solid #ffffff;
  }
}
.plan-page__forecast-wrap::after {
  content: "";
  position: absolute;
  bottom: 8px;
  width: 100%;
  border-bottom: 3px solid #ffffff;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  .plan-page__forecast-wrap::after {
    bottom: 4px;
    padding: 4px 0;
    border-bottom: 1.5px solid #ffffff;
  }
}
.plan-page__forecast-title {
  font-weight: bold;
  text-align: center;
  font-size: clamp(16px, 3vw, 32px);
  padding: 16px 0;
  background-color: rgba(255, 244, 247, 0.4666666667);
}
.plan-page__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  gap: 8px;
  padding: 12px;
}
@media screen and (max-width: 768px) {
  .plan-page__box {
    padding: 4px;
  }
}
.plan-page__race-wrap {
  -webkit-box-flex: 1.5;
      -ms-flex: 1.5;
          flex: 1.5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  background-color: rgba(255, 244, 247, 0.4666666667);
}
.plan-page__race-text {
  font-size: clamp(10px, 2vw, 24px);
}
.plan-page__hit-wrap {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
}
.plan-page__hit-box {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 244, 247, 0.4666666667);
  padding: 0 8px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .plan-page__hit-box {
    padding: 0 4px;
  }
}
.plan-page__unit {
  width: 50%;
}
.plan-page__num {
  width: 50%;
}

.record__content-chara {
  float: left;
  padding-right: 24px;
}

.record .slick-next {
  right: -1%;
}
@media screen and (max-width: 768px) {
  .record .slick-next {
    right: -4%;
  }
}

.record .slick-prev {
  left: 30%;
}
@media screen and (max-width: 768px) {
  .record .slick-prev {
    left: 33%;
  }
}

.record .slick-next:before,
.record .slick-prev:before {
  color: #ff6767;
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .record .slick-next:before,
  .record .slick-prev:before {
    font-size: 10px;
  }
}

/* Project ------------ */
/* Utility ------------ *//*# sourceMappingURL=style.css.map */