@charset "UTF-8";
/* 変数定義
--------------------------------- */
/* --------------------------------- 共通部分 ここから --------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #573f1f;
  width: 100%;
}

a {
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.wrapper {
  width: 90%;
  margin: 0 auto;
  margin-bottom: 32px;
}

.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  height: 72px;
}
.header .header_inner {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 8px;
  width: 98%;
  height: 100%;
}
.header .header_logo {
  width: 76px;
}
.header .header_back img {
  width: 24px;
  height: 21px;
  object-fit: contain;
  object-position: 0 50%;
}
.header .header_title {
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  text-align: center;
  letter-spacing: 0.03em;
}
.header .header_nav-toggle {
  height: 16px;
}
.header .header_nav-toggle > div {
  position: relative;
  width: 24px;
}
.header .header_nav-toggle span:nth-child(1) {
  top: 0;
}
.header .header_nav-toggle span:nth-child(2) {
  top: 8px;
}
.header .header_nav-toggle span:nth-child(3) {
  top: 16px;
}
.header .header_nav-toggle span {
  width: 100%;
  height: 3px;
  left: 0;
  display: block;
  background-color: #573f1f;
  position: absolute;
}
.header ~ main {
  padding-top: 72px;
}

.main-nav {
  overflow: auto;
  width: 250px;
  height: 100%;
  position: fixed;
  background-color: #f7f3ee;
  top: 0;
  right: 0;
  z-index: 50;
  transform: translate(250px);
  transition: 0.5s;
}
.main-nav ul {
  list-style-type: none;
  margin-bottom: 24px;
}
.main-nav.open {
  transform: translateZ(0);
}
.main-nav_list {
  background: #bd9972;
  color: #fff;
  font-size: 16px;
  padding: 10px 0 10px 16px;
}
.main-nav_item {
  border-bottom: 1px solid #d9d9d9;
}
.main-nav a {
  display: block;
  color: #573f1f;
  background: #fff;
  width: 100%;
  padding: 10px 0 10px 24px;
  font-size: 16px;
}
.main-nav > a {
  border-bottom: 1px solid #d9d9d9;
}
.main-nav > a:nth-of-type(1) {
  border-top: 1px solid #d9d9d9;
}

.status-bar {
  width: 98%;
  margin: 0 auto;
  height: 24px;
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.overlay {
  position: relative;
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s;
}
.overlay.open {
  width: 100%;
  opacity: 0.5;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 15;
}

.btn_large {
  font-weight: 600;
  height: 64px;
  width: 100%;
  font-size: 18px;
  color: #573f1f;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn_small {
  font-weight: 600;
  height: 40px;
  width: 62%;
  font-size: 14px;
  color: #573f1f;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.btn_grid {
  display: grid;
  gap: 25px;
  grid-template-columns: 1fr 1fr;
  margin: 0 auto;
  width: 325px;
}
.btn_grid img {
  width: 150px;
  height: auto;
}

.section_title {
  font-family: "Courgette", cursive;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  margin: 16px auto;
  font-weight: 400;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.section_title::before, .section_title::after {
  content: "";
  display: inline-block;
  background-image: url(../images/title_icon.png);
  background-size: contain;
  width: 18px;
  height: 18px;
}
.section_title::before {
  margin-right: 32px;
}
.section_title::after {
  margin-left: 32px;
}

input {
  padding: 8px;
}

.settlement_title {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  line-height: 22px;
  margin: 16px 0;
}
.settlement_ticket table {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  width: 100vw;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.settlement_ticket table tr {
  height: 40px;
  text-align: center;
}
.settlement_ticket table th {
  font-weight: 500;
  border: 1px solid #b5b5b5;
}
.settlement_ticket table td {
  font-weight: 600;
  border: 1px solid #b5b5b5;
  padding: 8px;
  color: #ea5504;
}
.settlement_ticket table th:first-child,
.settlement_ticket table td:first-child {
  border-left: none;
}
.settlement_ticket table th:last-child,
.settlement_ticket table td:last-child {
  border-right: none;
}
.settlement_alert {
  background-color: #f2e9e4;
  text-align: center;
  margin-bottom: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  position: relative;
}
.settlement_alert::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, calc(-100% + 2px));
  border-right: 1.5em solid transparent;
  border-left: 1.5em solid transparent;
  border-bottom: 1.2em solid #f2e9e4;
}
.settlement_alert_txt {
  padding: 10px 8px;
}
.settlement_alert_txt .emphasis {
  font-size: 15px;
  color: #ea5504;
}
.settlement_alert_txt .nowrap {
  display: inline-block;
}
.settlement_desc {
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.settlement_desc_title {
  line-height: 21px;
}
.settlement_desc p {
  font-size: 12px;
}

.member .settlement_ticket table th {
  background: #dddfee;
}

.applicant .settlement_ticket table th {
  background: #def2d9;
}

.visitor .settlement_ticket table th {
  background: #feddcd;
}

.trial .settlement_ticket table th {
  background: #f2d9ec;
}

.settlement .wrapper:nth-child(1) {
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 8px;
}

.settlement .wrapper:nth-child(2) {
  margin-top: 32px;
}
.settlement .wrapper:nth-child(2) + .btn_small {
  margin-top: 32px;
}

.completed {
  text-align: center;
}
.completed_name {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 8px;
}
.completed_content {
  line-height: 22px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.completed_member_num {
  color: #b5b5b5;
  font-weight: 600;
  margin-bottom: 24px;
}
.completed .btn_small {
  margin-top: 24px;
}

.completed-join .completed_content {
  font-weight: 600;
  margin-top: 0;
}

.completed-ticket .completed_content {
  margin-bottom: 24px;
}

.top-subpage .btn_large {
  margin-bottom: 24px;
  background: #f1e1df;
}
.top-subpage .btn_invert_color {
  background: #fff;
  border: 2px solid #f1e1df;
}
.top-subpage .btn_small {
  margin-top: 24px;
  margin-bottom: 24px;
  background: #f1e1df;
}

.member .btn_large {
  margin-bottom: 24px;
  background: #dddfee;
}
.member .btn_invert_color {
  background: #fff;
  border: 2px solid #dddfee;
}
.member .btn_small {
  margin-top: 24px;
  margin-bottom: 24px;
  background: #dddfee;
}

.applicant .btn_large {
  margin-bottom: 24px;
  background: #def2d9;
}
.applicant .btn_invert_color {
  background: #fff;
  border: 2px solid #def2d9;
}
.applicant .btn_small {
  margin-top: 24px;
  margin-bottom: 24px;
  background: #def2d9;
}

.visitor .btn_large {
  margin-bottom: 24px;
  background: #feddcd;
}
.visitor .btn_invert_color {
  background: #fff;
  border: 2px solid #feddcd;
}
.visitor .btn_small {
  margin-bottom: 24px;
  background: #feddcd;
}

.trial .btn_large {
  margin-bottom: 24px;
  background: #f2d9ec;
}
.trial .btn_invert_color {
  background: #fff;
  border: 2px solid #f2d9ec;
}
.trial .btn_small {
  margin-bottom: 24px;
  background: #f2d9ec;
}

/* 会員情報入力、個人情報変更
--------------------------------- */
.profile form div {
  margin-top: 24px;
  margin-bottom: 24px;
}
.profile .form_title {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  display: flex;
}
.profile .form_title span {
  margin-left: 8px;
  padding: 1px 6px;
  color: #ff0000;
  font-size: 13px;
  line-height: 19px;
  border: 1px solid #ff0000;
}
.profile input[type=text],
.profile input[type=email],
.profile input[type=password],
.profile input[type=tel] {
  width: 100%;
  height: 48px;
  border: 1px solid #b5b5b5;
}
.profile input[type=email]:nth-of-type(2),
.profile input[type=password]:nth-of-type(2) {
  margin-top: 16px;
}
.profile input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  border: 1px solid #b5b5b5;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  padding: 10px;
}
.profile input[type=radio]:checked {
  position: relative;
}
.profile input[type=radio]:checked::before {
  content: "";
  display: block;
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #000;
  left: 5px;
  top: 5px;
}
.profile input[type=radio]:nth-of-type(2) {
  margin-left: 24px;
}
.profile input[type=radio] + label > span {
  margin-left: 8px;
}
.profile input[type=text]#birthday,
.profile input[type=text]#postal-code {
  width: 60%;
  height: 48px;
  border: 1px solid #b5b5b5;
}
.profile button[type=button] {
  display: flex;
  width: 112px;
  height: 48px;
  background: #4e4e4e;
  border-radius: 5px;
  color: #fff;
  font-weight: 600;
  margin-left: 16px;
  justify-content: center;
  align-items: center;
}
.profile input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  position: relative;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  border: 1px solid #b5b5b5;
  display: inline-block;
  width: 24px;
  height: 24px;
}
.profile input[type=checkbox]:checked::before {
  content: "";
  display: block;
  position: absolute;
  left: 2px;
  top: 13px;
  width: 8px;
  height: 2px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  background: #000;
}
.profile input[type=checkbox]:checked::after {
  content: "";
  display: block;
  position: absolute;
  right: 8px;
  bottom: 3px;
  width: 2px;
  height: 14px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  background: #000;
}
.profile input[type=checkbox]:nth-of-type(2) {
  margin-top: 12px;
}
.profile input[type=checkbox] + label {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-left: 8px;
}
.profile input[type=checkbox] + label > a {
  text-decoration: underline;
  color: #573f1f;
}
.profile input[type=submit] {
  margin-top: 32px;
}
.profile input[type=submit] + span {
  display: flex;
  font-size: 12px;
  margin-top: 8px;
  align-items: center;
  justify-content: center;
}
.profile .gender {
  display: flex;
  align-items: center;
  margin: 0;
}
.profile .postal-code,
.profile .agree_terms,
.profile .agree_pay {
  display: flex;
  margin: 0;
}
.profile .agree_terms + span {
  display: block;
  font-size: 12px;
  margin-top: 8px;
  margin-left: 32px;
  margin-bottom: 12px;
}
.profile .postal-code + p {
  color: #ff0000;
}
.profile input[type=email]:disabled,
.profile input[type=password]:disabled {
  background-color: #d9d9d9;
  color: #fff;
}

.member.profile input[type=submit] {
  background: #dddfee;
}

/* datepickerの年プルダウンの変更 */
select.ui-datepicker-year {
  height: 2em !important; /* 高さ調整 */
  margin-right: 5px !important; /* 「年」との余白設定 */
  width: 70px !important; /* 幅調整 */
  /* ress.cssの設定を無効にする */
  -webkit-appearance: auto;
  background-color: #fff;
  border-style: solid;
}

/* datepickerの月プルダウンの変更 */
select.ui-datepicker-month {
  height: 2em !important; /* 高さ調整 */
  margin-left: 5px !important; /* 「年」との余白設定 */
  width: 70px !important; /* 幅調整 */
  /* ress.cssの設定を無効にする */
  -webkit-appearance: auto;
  background-color: #fff;
  border-style: solid;
}

.qrcode {
  text-align: center;
}
.qrcode p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 24px;
}
.qrcode p span {
  font-weight: 600;
}
.qrcode img {
  width: 246px;
  height: auto;
  margin: 0 auto;
}
.qrcode .qrcode_text p {
  margin-top: 0;
  margin-bottom: 32px;
  color: #333;
}

/* 10, 25. チケット購入
--------------------------------- */
.pay-ticket_text {
  margin-top: 16px;
  margin-bottom: 16px;
}
.pay-ticket_text p {
  font-size: 16px;
}
.pay-ticket_desc {
  font-size: 12px;
  line-height: 18px;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 8px;
  color: #b5b5b5;
  font-weight: 600;
}
.pay-ticket .ticket-list {
  margin-bottom: 32px;
}
.pay-ticket .ticket-list ul {
  list-style-type: none;
}
.pay-ticket .ticket-list ul li {
  border: 1px #b5b5b5 solid;
  border-radius: 6px;
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
}
.pay-ticket .ticket-list ul li p {
  display: inline-block;
}
.pay-ticket .ticket-list ul li input[type=radio],
.pay-ticket .ticket-list ul li input[type=checkbox] {
  position: absolute;
  opacity: 0;
}
.pay-ticket .ticket-list ul li label {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-between;
  align-items: center;
}
.pay-ticket .ticket-list ul li .ticket-list_name {
  width: 75%;
  text-align: left;
  padding-left: 16px;
}
.pay-ticket .ticket-list ul li .ticket-list_price {
  width: 25%;
  text-align: right;
  padding-right: 16px;
}
.pay-ticket .ticket-list_text {
  font-size: 12px;
  line-height: 22px;
}
.pay-ticket .ticket-list_text span {
  font-weight: 600;
}

.member.pay-ticket .ticket-list ul li input[type=radio]:checked + label,
.member.pay-ticket .ticket-list ul li input[type=checkbox]:checked + label {
  background-color: #dddfee;
  border-radius: 6px;
}

.visitor.pay-ticket .ticket-list ul li input[type=radio]:checked + label,
.visitor.pay-ticket .ticket-list ul li input[type=checkbox]:checked + label {
  background-color: #feddcd;
  border-radius: 6px;
}

.trial.pay-ticket .ticket-list ul li input[type=radio]:checked + label,
.trial.pay-ticket .ticket-list ul li input[type=checkbox]:checked + label {
  background-color: #f2d9ec;
  border-radius: 6px;
}

/* 05/29. チケット使用（利用履歴）
--------------------------------- */
.use-ticket .btn_two_lines,
.completed-ticket .btn_two_lines {
  margin-bottom: 24px;
  display: table;
  width: 100%;
}
.use-ticket .btn_two_lines .btn_large,
.completed-ticket .btn_two_lines .btn_large {
  display: table-cell;
  vertical-align: middle;
}
.use-ticket .btn_two_lines .btn_large span,
.completed-ticket .btn_two_lines .btn_large span {
  font-size: 16px;
  display: block;
  font-weight: 500;
}

/* 02. 会員ログイン認証
--------------------------------- */
.member.login input[type=submit] {
  background: #dddfee;
}

.visitor.login input[type=submit] {
  background: #feddcd;
}

.login form div {
  margin-top: 24px;
  margin-bottom: 16px;
}
.login label {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 8px;
  display: flex;
}
.login label span {
  margin-left: 8px;
  padding: 1px 6px;
  color: #ff0000;
  font-size: 13px;
  line-height: 19px;
  border: 1px solid #ff0000;
}
.login input[type=email],
.login input[type=password] {
  width: 100%;
  height: 48px;
  border: 1px solid #b5b5b5;
}
.login input[type=submit] {
  margin-top: 24px;
  margin-bottom: 0;
}
.login .pass_forget {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  margin-bottom: 28px;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #b5b5b5;
  text-align: center;
  width: 100%;
}
.login .pass_forget::before {
  position: absolute;
  content: "";
  left: 44px;
  top: 6px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #b5b5b5;
  border-right: 2px solid #b5b5b5;
  transform: rotate(45deg);
}
.login hr {
  width: 100vw;
  height: 1px;
  border: none;
  border-top: 1px solid #b5b5b5;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.login .login_back {
  margin-top: 32px;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #b5b5b5;
  text-align: center;
}
.login .login_back span {
  color: #573f1f;
}
.login .login_back > .btn_large {
  margin-top: 10px;
}

/* 03. 会員ログイン認証失敗
--------------------------------- */
.login-failed_err-msg {
  width: 100%;
  height: 48px;
  margin-top: 16px;
  border: 1px solid #ff0000;
  background: #ffe5e6;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login-failed_err-msg p {
  font-weight: 600;
  color: #ff0000;
  line-height: 21px;
  text-align: center;
  display: flex;
  align-items: center;
}
.login-failed_err-msg p::before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  background-image: url(../images/caution_mark.png);
}
.login-failed_action {
  margin-top: 32px;
  margin-bottom: 48px;
}
.login-failed_action p {
  margin-bottom: 10px;
}

/* プッシュ通知（04. 会員Home、22. ビジターHome）
----------------------------------------------- */
.push_info {
  margin-top: 32px;
}
.push_info_title {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin-bottom: 8px;
}
.push_info_table dt {
  margin-top: 8px;
}
.push_info_table_datetime {
  color: #b5b5b5;
  font-weight: 600;
}
.push_info_table_title {
  font-weight: 600;
  margin-left: 8px;
}
.push_info_table_content {
  border-bottom: 1px solid #b5b5b5;
  padding-bottom: 8px;
  margin-bottom: 8px;
}
.push_info_table_content:last-child {
  border: none;
}

/* お知らせ
--------------------------------- */
.news_date {
  color: #b5b5b5;
}
.news_category {
  color: #fff;
  background-color: #e2beba;
  padding: 4px 8px;
}
.news_title {
  color: #573f1f;
  font-weight: 600;
  margin-bottom: 8px;
}
.news_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d9d9d9;
}
.news_item dl {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column-reverse;
}
.news_item dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.news_item_image {
  width: 32px;
  display: flex;
  justify-content: flex-end;
}
.news_item_image img {
  width: 12px;
  height: 20px;
  object-fit: contain;
}

.news-detail .news_title {
  margin-top: 16px;
  margin-bottom: 8px;
  font-size: 16px;
}
.news-detail .news_info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid #d9d9d9;
}
.news-detail .news_content {
  margin-top: 8px;
  line-height: 22px;
}
.news-detail .news_content p {
  text-align: justify;
}

/* --------------------------------- 共通部分 ここまで --------------------------------- */
/*--------------- TOP ------------------*/
/* HEADER
--------------------------------- */
.top {
  height: 80px;
  background-color: #f1e1df;
}
.top ~ main {
  padding-top: 80px;
}

/* スプラッシュ
--------------------------------- */
#splash {
  position: fixed;
  z-index: 110;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* メインビジュアル
--------------------------------- */
.mv {
  height: 256px;
  margin-bottom: 40px;
}
.mv img {
  height: auto;
  width: 100%;
  object-position: 100% 0;
}
.mv .slick-dots li button:before {
  font-size: 24px !important;
}

/* CONCEPT
--------------------------------- */
.concept .concept_title {
  text-align: center;
  margin-bottom: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.07em;
}
.concept .concept_text {
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
  letter-spacing: 0.07em;
}
.concept .concept_btn {
  display: block;
  margin: 0 auto;
  margin-top: 16px;
  width: 320px;
  height: 56px;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.09em;
  color: #fff;
  background: linear-gradient(90deg, #ffb9b9 0%, #ef8080 100%);
  border-radius: 48px;
  text-align: center;
  line-height: 56px;
}

/* PICK UP
--------------------------------- */
.pickup .pickup_bnr img:nth-child(1) {
  margin-bottom: 24px;
}

/* MENU
--------------------------------- */
.menu .btn_grid {
  margin-bottom: 40px;
}

/* クーロスアプリのご案内
--------------------------------- */
/* HEADER
--------------------------------- */
.top-subpage.header {
  background-color: #f1e1df;
}

.guide {
  line-height: 22px;
}
.guide .guide_desc {
  margin-top: 16px;
  margin-bottom: 24px;
}
.guide .guide_desc p {
  text-align: justify;
}
.guide .guide_content {
  margin-bottom: 32px;
}
.guide .guide_content:last-child {
  margin-bottom: 0;
}
.guide .guide_content .guide_title {
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 10px;
}
.guide .guide_content .guide_title::before {
  content: "";
  display: inline-block;
  background-image: url(../images/title_icon.png);
  background-size: contain;
  width: 18px;
  height: 18px;
  margin-right: 8px;
}
.guide .guide_content .guide_step {
  margin-bottom: 20px;
}
.guide .guide_content .guide_step_title {
  font-weight: 500;
  font-size: 16px;
  display: flex;
  align-items: center;
  white-space: nowrap;
  margin-bottom: 8px;
}
.guide .guide_content .guide_step_title::before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 33px;
  height: 47px;
  margin-right: 8px;
}
.guide .guide_content .guide_step_title_1::before {
  background-image: url(../images/title_step1.png);
}
.guide .guide_content .guide_step_title_2::before {
  background-image: url(../images/title_step2.png);
}
.guide .guide_content .guide_step_title_3::before {
  background-image: url(../images/title_step3.png);
}
.guide .guide_content .guide_step p {
  text-align: justify;
}
.guide .guide_content .guide_step p span {
  color: #ea5504;
}
.guide .guide_content .guide_step ul {
  margin-top: 8px;
  color: #8092ef;
  list-style-position: inside;
  line-height: 26px;
}
.guide .guide_content .guide_step ul li a {
  color: #8092ef;
  font-weight: 600;
  padding-top: 2px;
  padding-bottom: 2px;
}
.guide .guide_content .guide_step_detail {
  margin-top: 10px;
}
.guide .guide_content .guide_step_detail_title {
  font-weight: 500;
  margin-bottom: 2px;
}
.guide .guide_content .guide_step_detail p {
  background: rgba(245, 245, 245, 0.5);
  border-radius: 6px;
  padding: 8px;
  line-height: 24px;
}
.guide .guide_content .guide_campaign {
  margin-bottom: 32px;
}
.guide .guide_content .guide_campaign p {
  text-align: center;
  letter-spacing: 0.03em;
}
.guide .guide_content .guide_campaign p .text_small {
  font-size: 12px;
}
.guide .guide_content .guide_campaign p .text_disabled {
  text-decoration: line-through;
}
.guide .guide_content .guide_campaign p .text_color {
  font-size: 18px;
  font-weight: 600;
  color: #ea5504;
}
.guide .guide_content .comment {
  text-align: center;
  font-size: 16px;
  line-height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.guide .guide_content .comment::before, .guide .guide_content .comment::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-image: url(../images/ribbon.png);
  width: 40px;
  height: 32px;
  margin-right: 8px;
}
.guide .guide_content .comment::before {
  margin-right: 12px;
}
.guide .guide_content .comment::after {
  margin-left: 12px;
}

/*--------------- 会員 ------------------*/
/* HEADER
--------------------------------- */
.member.header {
  background-color: #dddfee;
}

/* 会員ログイン認証
--------------------------------- */
.member.login > .wrapper:nth-child(1),
.visitor.login > .wrapper:nth-child(1),
.trial.login > .wrapper:nth-child(1) {
  border-bottom: 1px solid #b5b5b5;
}

/* 04. 会員Home、05/29. チケット使用（利用履歴）
--------------------------------- */
.member .member_num,
.visitor .member_num {
  padding: 8px 0 10px;
  color: #333;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #b5b5b5;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.1);
}
.member .member_num_inner,
.visitor .member_num_inner {
  margin: 0 auto;
  width: 90%;
}
.member_info_name,
.visitor_info_name {
  margin: 16px 0 20px;
  font-weight: 700;
  font-size: 16px;
  color: #333;
}
.member_info_title,
.visitor_info_title {
  font-size: 16px;
  line-height: 24px;
  color: #573f1f;
  margin-bottom: 8px;
}
.member_info_title2,
.visitor_info_title2 {
  margin-top: 40px;
}
.member_info_ticket table,
.visitor_info_ticket table {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  table-layout: fixed;
  width: 100vw;
  border-collapse: collapse;
  margin-bottom: 24px;
}
.member_info_ticket table tr,
.visitor_info_ticket table tr {
  height: 40px;
  text-align: center;
}
.member_info_ticket table th,
.member_info_ticket table td,
.visitor_info_ticket table th,
.visitor_info_ticket table td {
  font-weight: 500;
  border: 1px solid #b5b5b5;
}
.member_info_ticket table th:first-child,
.member_info_ticket table td:first-child,
.visitor_info_ticket table th:first-child,
.visitor_info_ticket table td:first-child {
  border-left: none;
}
.member_info_ticket table th:last-child,
.member_info_ticket table td:last-child,
.visitor_info_ticket table th:last-child,
.visitor_info_ticket table td:last-child {
  border-right: none;
}
.member_info_use-ticket_history table,
.visitor_info_use-ticket_history table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #b5b5b5;
}
.member_info_use-ticket_history table tr,
.visitor_info_use-ticket_history table tr {
  height: 40px;
  text-align: center;
  font-size: 14px;
}
.member_info_use-ticket_history table th,
.visitor_info_use-ticket_history table th {
  font-weight: 500;
  background: #dddfee;
  border-bottom: 1px solid #b5b5b5;
}
.member_info_use-ticket_history table td,
.visitor_info_use-ticket_history table td {
  border-bottom: 1px solid #d9d9d9;
}
.member_info_use-ticket_history table tr:last-child td,
.visitor_info_use-ticket_history table tr:last-child td {
  border-bottom: none;
}
.member_info_use-ticket_history table th:first-child,
.visitor_info_use-ticket_history table th:first-child {
  width: 20%;
}
.member_info_use-ticket_history table th:last-child,
.member_info_use-ticket_history table td:last-child,
.visitor_info_use-ticket_history table th:last-child,
.visitor_info_use-ticket_history table td:last-child {
  border-left: 1px solid #b5b5b5;
}
.member_info_use-ticket_history table .use-ticket_history_count,
.visitor_info_use-ticket_history table .use-ticket_history_count {
  display: inline-block;
  border-radius: 50%;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}
.member_info_use-ticket_history table .use-ticket_history_count.used,
.visitor_info_use-ticket_history table .use-ticket_history_count.used {
  background-color: #b5b5b5;
  color: #fff;
}
.member_info_use-ticket_history table .use-ticket_history_count.unused,
.visitor_info_use-ticket_history table .use-ticket_history_count.unused {
  border: 1px solid #b5b5b5;
  color: #b5b5b5;
  line-height: 23px;
}
.member_info_ticket_detail,
.visitor_info_ticket_detail {
  background: #f5f5f5;
  border-radius: 6px;
  width: 100%;
  font-size: 14px;
}
.member_info_ticket_detail table,
.visitor_info_ticket_detail table {
  background: #f5f5f5;
  border-radius: 6px;
  line-height: 21px;
  width: 90%;
  margin: 0 auto;
  border-collapse: collapse;
  font-size: 14px;
}
.member_info_ticket_detail table tr,
.visitor_info_ticket_detail table tr {
  height: 48px;
}
.member_info_ticket_detail table th,
.visitor_info_ticket_detail table th {
  color: #4e4e4e;
  text-align: left;
}
.member_info_ticket_detail table td,
.visitor_info_ticket_detail table td {
  text-align: right;
}
.member_info_ticket_detail table th,
.member_info_ticket_detail table td,
.visitor_info_ticket_detail table th,
.visitor_info_ticket_detail table td {
  font-weight: 500;
  border-bottom: 1px solid #b5b5b5;
  padding: 10px 0;
}
.member_info_ticket_detail table tr:last-child th,
.member_info_ticket_detail table tr:last-child td,
.visitor_info_ticket_detail table tr:last-child th,
.visitor_info_ticket_detail table tr:last-child td {
  border-bottom: none;
}
.member_info .ticket_detail_link,
.visitor_info .ticket_detail_link {
  position: relative;
  display: block;
  text-align: right;
  color: #8092ef;
  font-weight: 600;
  line-height: 21px;
  margin-top: 8px;
  padding-right: 16px;
  letter-spacing: 0.05em;
}
.member_info .ticket_detail_link::after,
.visitor_info .ticket_detail_link::after {
  position: absolute;
  content: "";
  top: 7px;
  right: 3px;
  width: 7px;
  height: 7px;
  border-top: 2px solid #8092ef;
  border-right: 2px solid #8092ef;
  transform: rotate(45deg) translateY(-30%);
}
.member .btn_use-ticket_desc,
.visitor .btn_use-ticket_desc {
  color: #b5b5b5;
  font-weight: 600;
  font-size: 14px;
  margin: 24px 0 16px;
}

.member_info_ticket table th {
  background: #dddfee;
}

.visitor_info_ticket table th {
  background: #feddcd;
}

/* 06. チケット利用履歴詳細
--------------------------------- */
.member.use-ticket_history .member_info {
  margin-top: 16px;
}
.member.use-ticket_history .member_info_title:not(:first-child) {
  margin-top: 24px;
}

/* 07-09. 会員受講チケット処理
--------------------------------- */
.member.qrcode .btn_small {
  background: #dddfee;
}

/* 13. チケット購入履歴
--------------------------------- */
.member.pay-ticket_history .member_info_title {
  margin-top: 16px;
}
.member.pay-ticket_history .member_info_ticket_detail + a {
  margin-bottom: 24px;
}

/* ポイントHome
--------------------------------- */
/* HEADER
--------------------------------- */
.point.header {
  background-color: #dae6f1;
}

.point.home p,
.guide_content .guide_point p {
  text-align: center;
  margin-bottom: 5px;
}
.point.home .point_bnr,
.guide_content .guide_point .point_bnr {
  display: flex;
  justify-content: space-between;
}
.point.home .point_bnr img,
.guide_content .guide_point .point_bnr img {
  width: 46%;
}
.point.home .point_save_bnr,
.guide_content .guide_point .point_save_bnr {
  margin-bottom: 24px;
}
.point.home .point_exch_bnr,
.guide_content .guide_point .point_exch_bnr {
  margin-bottom: 32px;
}

/* 14. ポイントHome
--------------------------------- */
.point.home {
  letter-spacing: 0.05em;
  line-height: 22px;
}
.point.home .point_title {
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  margin-top: 16px;
  margin-bottom: 18px;
}
.point.home p {
  text-align: center;
  margin-bottom: 5px;
}
.point.home .point_exp_date {
  margin-bottom: 41px;
}
.point.home .point_exp_date p {
  text-align: left;
}
.point.home .point_exp_date p span {
  font-weight: 600;
}
.point.home .point_btn {
  margin-bottom: 34px;
}
.point.home .point_btn img {
  width: 150px;
  margin: 0 auto;
}
.point.home .btn_small {
  background: #dae6f1;
}

/* 15. ポイント獲得・利用履歴
--------------------------------- */
.point.history .current_point {
  margin-top: 16px;
  border: 2px solid #dae6f1;
  border-radius: 6px;
  line-height: 22px;
  padding: 8px 24px;
  margin-bottom: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.point.history .current_point_title {
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  display: flex;
  align-items: center;
}
.point.history .current_point_title::before {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 28px;
  height: 45px;
  margin-right: 4px;
  background-image: url(../images/title_point_info.png);
}
.point.history .current_point_num {
  padding-top: 6px;
  font-size: 36px;
  font-weight: 600;
  color: #8092ef;
  text-align: right;
  line-height: 36px;
}
.point.history .current_point_num span {
  font-size: 14px;
  line-height: 36px;
  vertical-align: baseline;
  margin-left: 4px;
}
.point.history .point_exch_title {
  font-weight: 600;
  margin-bottom: 8px;
}
.point.history .point_exch_list {
  margin-bottom: 32px;
}
.point.history .point_exch_list ul {
  list-style-type: none;
}
.point.history .point_exch_list ul li {
  width: 100%;
  height: 48px;
  margin-bottom: 8px;
}
.point.history .point_exch_list ul li input[type=radio] {
  position: absolute;
  opacity: 0;
}
.point.history .point_exch_list ul li input[type=radio]:checked + label p {
  background-color: #dae6f1;
}
.point.history .point_exch_list ul li input[type=radio]:disabled + label p {
  background-color: #b5b5b5;
  color: #fff;
}
.point.history .point_exch_list ul li label p {
  border: 1px #b5b5b5 solid;
  border-radius: 6px;
  width: 100%;
  line-height: 48px;
}
.point.history .point_exch_list ul li .point-list_name {
  width: 100%;
  text-align: center;
}
.point.history .point_obtaining_history_title {
  margin-top: 24px;
  margin-bottom: 8px;
}
.point.history .point_obtaining_history table {
  table-layout: fixed;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid #b5b5b5;
}
.point.history .point_obtaining_history table tr {
  height: 40px;
  text-align: center;
  font-size: 14px;
}
.point.history .point_obtaining_history table th {
  font-weight: 500;
  background: #dae6f1;
  border-bottom: 1px solid #b5b5b5;
}
.point.history .point_obtaining_history table td {
  border-bottom: 1px solid #d9d9d9;
}
.point.history .point_obtaining_history table tr:last-child td {
  border-bottom: none;
}
.point.history .point_obtaining_history table th:first-child {
  width: 40%;
}
.point.history .point_obtaining_history table th:last-child,
.point.history .point_obtaining_history table td:last-child {
  border-left: 1px solid #b5b5b5;
}

/* 16. 会員受講ポイント処理
--------------------------------- */
.point.qrcode .btn_small {
  background: #dae6f1;
}

/* 18. 新規会員登録
--------------------------------- */
/* HEADER
--------------------------------- */
.applicant.header {
  background-color: #def2d9;
}

.applicant.home .applicant_home_desc {
  margin-top: 16px;
}
.applicant.home .applicant_home_desc p {
  line-height: 22px;
}
.applicant.home .applicant_home_desc p:nth-child(2) {
  margin-top: 14px;
  margin-bottom: 18px;
}
.applicant.home .applicant_text {
  text-align: center;
}
.applicant.home .applicant_text_main {
  font-size: 16px;
  line-height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
.applicant.home .applicant_text_main::before, .applicant.home .applicant_text_main::after {
  content: "";
  display: inline-block;
  background-size: contain;
  width: 24px;
  height: 24px;
}
.applicant.home .applicant_text_main::before {
  background-image: url(../images/cracker_left.png);
  margin-right: 8px;
}
.applicant.home .applicant_text_main::after {
  background-image: url(../images/cracker_right.png);
  margin-left: 8px;
}
.applicant.home .applicant_text_main span {
  font-weight: 600;
}
.applicant.home .applicant_text_main .text_large {
  font-size: 18px;
}
.applicant.home .applicant_text_sub {
  font-size: 12px;
  line-height: 22px;
  margin-bottom: 20px;
}
.applicant.home .applicant_text_sub .text_disabled {
  text-decoration: line-through;
}
.applicant.home .applicant_text_sub .text_color {
  color: #ff0000;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.applicant.home .applicant_join > p {
  line-height: 22px;
  margin-bottom: 10px;
}
.applicant.home .applicant_join > p.applicant_join_desc {
  color: #b5b5b5;
  font-weight: 600;
  font-size: 12px;
  line-height: 20px;
}
.applicant.home .applicant_join .btn_large {
  background: #def2d9;
}
.applicant.home .applicant_join:nth-of-type(3) {
  margin-bottom: 48px;
}

/* 19. 会員情報入力
--------------------------------- */
.applicant.profile input[type=submit] {
  background: #def2d9;
}

/* 会員規約
--------------------------------- */
/* HEADER
--------------------------------- */
.terms.header {
  background-color: #e5e5e5;
}

.terms.header .header_nav-toggle,
.top-subpage-news.header .header_nav-toggle {
  height: 16px;
  position: relative;
  width: 24px;
}
.terms.header .header_nav-toggle span:nth-child(1),
.top-subpage-news.header .header_nav-toggle span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.terms.header .header_nav-toggle span:nth-child(2),
.top-subpage-news.header .header_nav-toggle span:nth-child(2) {
  width: 0;
}
.terms.header .header_nav-toggle span:nth-child(3),
.top-subpage-news.header .header_nav-toggle span:nth-child(3) {
  top: 6px;
  transform: rotate(-45deg);
}

.terms .terms_content {
  margin-top: 16px;
}
.terms .terms_content:nth-of-type(2n) {
  margin-top: 32px;
}
.terms .terms_title {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #333;
  margin-bottom: 8px;
}
.terms .terms_item,
.terms .terms_content > p {
  font-size: 12px;
  line-height: 18px;
  text-align: justify;
  color: #4e4e4e;
  margin-bottom: 16px;
}
.terms .terms_item h3 {
  line-height: 21px;
  color: #333;
  margin-bottom: 4px;
}

/* 22. ビジターHome
--------------------------------- */
/* HEADER
--------------------------------- */
.visitor.header {
  background-color: #feddcd;
}

.visitor.home {
  letter-spacing: 0.05em;
}
.visitor.home .visitor_home_desc {
  margin-top: 16px;
  margin-bottom: 24px;
}
.visitor.home .visitor_home_desc p {
  line-height: 22px;
  text-align: justify;
}
.visitor.home .visitor_home_desc p span {
  font-weight: 600;
}

/* 24. 新規ビジター登録
--------------------------------- */
.visitor.profile input[type=submit] {
  background: #feddcd;
  margin-bottom: 0;
}

/* 44. 体験レッスンHome
--------------------------------- */
/* HEADER
--------------------------------- */
.trial.header {
  background-color: #f2d9ec;
}

.trial.home {
  letter-spacing: 0.05em;
}
.trial.home .trial_home_desc {
  margin-top: 16px;
  margin-bottom: 24px;
}
.trial.home .trial_home_desc p {
  line-height: 22px;
}
.trial.home .trial_home_desc p span {
  font-weight: 600;
}
.trial.home .trial_back {
  margin-top: 32px;
}
.trial.home .trial_back p {
  text-align: center;
  margin-bottom: 14px;
}
.trial.home a {
  background: #f2d9ec;
}/*# sourceMappingURL=style.css.map */