@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;500;600;700&display=swap");
body {
  font-family: "Noto Sans JP", sans-serif;
}
body .serif {
  font-family: "Noto Serif JP", serif;
}

/* Platelet */
/* Barlow */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  color: #333;
}

*:focus {
  outline: none;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  font-size: 10px;
  width: 100%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
  min-width: 375px;
  min-height: 100vh;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

p {
  font-size: 1.4rem;
  line-height: 2rem;
}

a {
  display: block;
  transition: 0.5s;
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style: none;
  list-style-type: none;
}

table {
  border-spacing: 0;
}
table tr th {
  font-size: 1.6rem;
  line-height: 2rem;
  font-weight: bold;
}
table tr td {
  font-size: 1.6rem;
  line-height: 2rem;
}

input[type=submit] {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.ta_wrap {
  position: relative;
  max-width: 1025px;
  margin: 0 auto;
}

.mt-5 {
  margin-top: 15px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-width: 375px;
  padding: 0 50px;
  background: url(../images/common/header_bg.png);
  z-index: 98;
  box-shadow: 0 0 5px #000;
}
@media screen and (max-width: 1024px) {
  header {
    padding: 0 15px;
  }
}
header::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6666666667) 5px, transparent 100%);
  z-index: 2;
}
header .side-bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 20vw;
  max-width: 300px;
  height: auto;
  z-index: 0;
  pointer-events: none;
}
header .side-bg.reverse {
  left: unset;
  right: 0;
  transform: scale(-1, 1);
}
@media screen and (max-width: 1024px) {
  header .side-bg {
    display: none;
  }
}
header .header-logo {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 200px;
  height: auto;
  margin: auto;
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  header .header-logo {
    left: 15px;
    width: auto;
    height: 35px;
    margin: auto 0;
  }
}
@media screen and (max-width: 599px) {
  header .header-logo {
    height: 25px;
    margin: 0;
    top: 12.5px;
    left: 15px;
  }
}
header .header-right {
  position: relative;
  text-align: right;
  padding-top: 5px;
  z-index: 5;
}
header .header-right .login-btn {
  display: inline-block;
  padding: 0 20px;
  border: 2px solid #fff;
  font-size: 1.6rem;
  line-height: 3rem;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 1.5rem;
  background-color: rgba(0, 0, 0, 0.2);
}
header .header-right .login-btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
header .header-right .login-btn .pc_display {
  font-size: 1.6rem;
  line-height: 3rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .header-right .login-btn {
    font-size: 1.4rem;
  }
  header .header-right .login-btn .pc_display {
    display: none;
  }
}
header .header-right .header-link {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
header .header-right .header-link .header-link-btn {
  display: inline-block;
  height: 50px;
  font-size: 0;
  padding: 15px 30px;
  background-color: rgba(0, 0, 0, 0.2);
}
header .header-right .header-link .header-link-btn:hover {
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 1;
}
header .header-right .header-link .header-link-btn.active {
  background-color: #000;
}
header .header-right .header-link .header-link-btn.active:hover {
  background-color: #000;
  opacity: 1;
}
@media screen and (max-width: 1024px) {
  header .header-right .header-link .header-link-btn {
    font-size: 1.4rem;
    padding: 15px 0;
    width: 100%;
    max-width: 140px;
    text-align: center;
  }
}
header .header-right .header-link .header-link-btn .icon {
  display: inline-block;
  margin-right: 10px;
  vertical-align: top;
  height: 20px;
  width: auto;
}
header .header-right .header-link .header-link-btn .text {
  display: inline-block;
  vertical-align: top;
  font-size: 1.6rem;
  color: #fff;
  line-height: 2rem;
}
header .header-right .header-link nav.header-menu {
  position: relative;
}
header .header-right .header-link nav.header-menu .menu-btn {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  height: 50px;
  background-color: black;
  cursor: pointer;
  padding: 0 15px;
}
header .header-right .header-link nav.header-menu .menu-btn .menu-btn-icon {
  position: relative;
  display: flex;
  width: 20px;
  height: 15px;
  flex-flow: column;
  justify-content: space-between;
}
header .header-right .header-link nav.header-menu .menu-btn .menu-btn-icon .line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
}
header .header-right .header-link nav.header-menu .menu-btn .menu-btn-icon::before {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
header .header-right .header-link nav.header-menu .menu-btn .menu-btn-icon::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: 0.5s;
}
header .header-right .header-link nav.header-menu .menu-btn .menu-label {
  font-size: 1.2rem;
  line-height: 1.5rem;
  text-align: center;
  color: #fff;
}
header .header-right .header-link nav.header-menu #openCheck {
  display: none;
}
header .header-right .header-link nav.header-menu #openCheck:checked ~ .menu-btn .menu-btn-icon .line {
  display: none;
}
header .header-right .header-link nav.header-menu #openCheck:checked ~ .menu-btn .menu-btn-icon::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  transition: 0.5s;
}
header .header-right .header-link nav.header-menu #openCheck:checked ~ .menu-btn .menu-btn-icon::after {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  transition: 0.5s;
  transform: rotate(135deg);
}
header .header-right .header-link nav.header-menu .menu-list-wrap {
  position: absolute;
  top: 50px;
  right: -50px;
  height: 0;
  width: 0;
  max-width: 375px;
  min-width: 375px;
  transition: 0.5s;
  overflow: hidden;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  header .header-right .header-link nav.header-menu .menu-list-wrap {
    right: -15px;
    max-width: 100vw;
  }
}
header .header-right .header-link nav.header-menu .menu-list-wrap .menu-list li a {
  display: block;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid #555;
  padding: 20px 30px;
  font-size: 1.6rem;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  header .header-right .header-link nav.header-menu .menu-list-wrap .menu-list {
    padding: 0 10px;
  }
}
header .header-right .header-link nav.header-menu .menu-list-wrap .search-form {
  display: flex;
  width: calc(100% - 20px);
  height: 50px;
  margin: 20px auto 0;
  background-color: #ccc;
  border-radius: 5px;
  overflow: hidden;
}
header .header-right .header-link nav.header-menu .menu-list-wrap .search-form #searchText {
  display: block;
  width: 100%;
  font-size: 1.4rem;
  line-height: 5rem;
  padding: 0 20px;
}
header .header-right .header-link nav.header-menu .menu-list-wrap .search-form button[type=submit] {
  display: block;
  background: url(../images/common/search_icon.png) center no-repeat;
  background-size: 20px;
  width: 50px;
}
header .header-right .header-link nav.header-menu #openCheck:checked ~ .menu-list-wrap {
  height: calc(100vh - 94px);
  width: 100vw;
}
@media screen and (max-width: 1024px) {
  header .header-right .header-link nav.header-menu #openCheck:checked ~ .menu-list-wrap {
    height: calc(100vh - 104px);
  }
}

main {
  position: relative;
  padding-top: 99px;
  /* text */
  /* form */
  /* btn */
  /* pagination */
}
@media screen and (min-width: 1025px) {
  main .ta_display {
    display: none;
  }
}
@media screen and (min-width: 600px) {
  main .sp_display {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  main .pc_display {
    display: none;
  }
}
main .display-flex {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  main .display-flex.sp-flex-column {
    flex-flow: column;
  }
}
main.height-max {
  min-height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
}
main a.bg-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: 2;
}
main .img-wrapper_4_3 {
  position: relative;
  width: 100%;
  overflow: hidden;
}
main .img-wrapper_4_3::before {
  content: "";
  display: block;
  padding-top: 75%;
}
main .img-wrapper_4_3 img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: 0.5s;
}
main h2.section-title {
  position: relative;
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  color: black;
  margin-bottom: 80px;
  text-align: center;
}
main h3.section-subtitle {
  position: relative;
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  color: black;
  margin-bottom: 60px;
  text-align: center;
}
main .text-link {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  font-size: 1.4rem;
  line-height: 2rem;
  height: 2rem;
  box-sizing: content-box;
}
main .text-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto 0;
  transform: rotate(45deg);
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #333;
}
main section.text-content-wrap {
  padding: 0px 50px 100px;
  width: 100%;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main section.text-content-wrap {
    padding: 15px 15px 40px;
  }
}
main section.text-content-wrap .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main section.text-content-wrap .section-title {
    margin-bottom: 20px;
  }
}
main section.text-content-wrap .text-content h3.section-subtitle {
  margin-bottom: 5px;
  text-align: left;
}
main section.text-content-wrap .text-content .common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main section.text-content-wrap .text-content .common-text a {
  display: inline;
  color: #cc117d;
}
main section.text-content-wrap .text-content ul li {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main section.text-content-wrap .text-content:not(:last-child) {
  margin-bottom: 50px;
}
main .gray-link {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  padding: 0 10px;
  border: 2px solid #ccc;
  border-radius: 1.2rem;
  margin: 15px auto 0;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  main .gray-link:hover {
    transition: 0.5s;
    background-color: #ccc;
    color: #ffffff;
  }
}
main .text-pink {
  color: #cc117d !important;
}
main .text-yellow {
  color: #d1b209 !important;
}
main section.form form {
  display: block;
  max-width: 840px;
  margin: 0 auto;
  box-shadow: 0 0 10px #ccc;
  background-color: #fff;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  main section.form form {
    padding: 30px 15px;
  }
}
main section.form form .form-content {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 0 70px;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content {
    flex-flow: column;
    padding: 0;
  }
  main section.form form .form-content.ta-flex {
    flex-flow: row;
    align-items: flex-start;
  }
}
main section.form form .form-content.no-flex {
  display: block;
  justify-content: flex-start;
}
main section.form form .form-content.form-btn {
  margin-top: 40px;
  flex-flow: column;
}
main section.form form .form-content:not(:last-child) {
  margin-bottom: 20px;
}
main section.form form .form-content.form-invalid {
  margin-bottom: calc(2.2rem + 20px);
}
main section.form form .form-content.form-invalid .text-style {
  border-color: #cc117d;
}
main section.form form .form-content.form-invalid .textarea-style {
  border-color: #cc117d;
}
main section.form form .form-content .error-text {
  display: none;
}
main section.form form .form-content .error-text.active {
  position: absolute;
  right: 70px;
  bottom: -2.2rem;
  width: calc(70% - 98px);
  font-size: 1.4rem;
  line-height: 2.2rem;
  color: #cc117d;
  display: block;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .error-text.active {
    right: 0;
    width: 100%;
  }
}
main section.form form .form-content .label-style {
  position: relative;
  display: block;
  width: 30%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 11px 0;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .label-style {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content.ta-flex .label-style {
    width: 30%;
  }
}
main section.form form .form-content .text-style {
  position: relative;
  display: block;
  width: 70%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 10px 15px;
  background-color: #fff;
  border: 1px solid #d1b209;
  z-index: 0;
  border-radius: 0;
}
main section.form form .form-content .text-style:focus {
  box-shadow: 0 0 5px #ccc;
}
main section.form form .form-content .text-style.pass {
  padding: 10px 35px 10px 15px;
}
main section.form form .form-content .text-style:read-only {
  border-color: #555;
}
main section.form form .form-content .text-style:read-only:focus {
  box-shadow: 0;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .text-style {
    width: 100%;
  }
}
main section.form form .form-content .textarea-style {
  font-size: 1.6rem;
  line-height: 2.5rem;
  border: 1px solid #d1b209;
  padding: 10px 15px;
  width: 70%;
  height: 12rem;
  border-radius: 0;
}
main section.form form .form-content .textarea-style:read-only {
  border-color: #555;
}
main section.form form .form-content .textarea-style:focus {
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .textarea-style {
    width: 100%;
  }
}
main section.form form .form-content input[type=password]::-ms-reveal {
  visibility: hidden;
}
main section.form form .form-content .pass-btn {
  position: absolute;
  top: 1px;
  right: 85px;
  width: 20px;
  height: 4.5rem;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .pass-btn {
    top: 2.6rem;
    bottom: 0;
    margin: auto 0;
    right: 15px;
  }
}
main section.form form .form-content .pass-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main section.form form .form-content .radio-content {
  margin: 1px 0;
  width: 70%;
  display: flex;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .radio-content {
    flex-flow: column;
  }
}
main section.form form .form-content .radio-content .radio-wrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
main section.form form .form-content .radio-content .radio-wrap input[type=radio] {
  display: none;
}
main section.form form .form-content .radio-content .radio-wrap input[type=radio]:checked + .radio-label .radio-circle::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1b209;
}
main section.form form .form-content .radio-content .radio-wrap .radio-label {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding-left: 3rem;
  cursor: pointer;
}
main section.form form .form-content .radio-content .radio-wrap .radio-label .radio-circle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  margin: auto 0;
  border-radius: 50%;
  border: 1px solid #d1b209;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  main section.form form .form-content .radio-content .radio-wrap .radio-label:hover .radio-circle {
    box-shadow: 0 0 5px #ccc;
  }
}
main section.form form .form-content .checkbox-content {
  margin: 1px 0;
  width: 70%;
}
main section.form form .form-content .checkbox-content .checkbox-wrap {
  position: relative;
  width: 100%;
  padding: 10px 0;
}
main section.form form .form-content .checkbox-content .checkbox-wrap input[type=checkbox] {
  display: none;
}
main section.form form .form-content .checkbox-content .checkbox-wrap input[type=checkbox]:checked + .checkbox-label .checkbox-item::after {
  position: absolute;
  top: -3px;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  margin: auto;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #d1b209;
  transform: rotate(45deg);
}
main section.form form .form-content .checkbox-content .checkbox-wrap .checkbox-label {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding-left: 3rem;
  cursor: pointer;
}
main section.form form .form-content .checkbox-content .checkbox-wrap .checkbox-label .checkbox-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin: auto 0;
  border: 1px solid #d1b209;
}
@media screen and (min-width: 1025px) {
  main section.form form .form-content .checkbox-content .checkbox-wrap .checkbox-label:hover .checkbox-item {
    box-shadow: 0 0 5px #ccc;
  }
}
main section.form form .form-content .file-content {
  font-size: 0;
  width: 70%;
  text-align: left;
  padding: 11px 0;
}
main section.form form .form-content .file-content input[type=file] {
  display: none;
}
main section.form form .form-content .file-content .attachment-label {
  display: inline-block;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 2.5rem;
  height: 2.5rem;
  text-align: center;
  padding: 0 15px;
  border: 1px solid #d1b209;
  background-color: #ffffff;
  border-radius: 10px;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  main section.form form .form-content .file-content .attachment-label:hover {
    background-color: #d1b209;
    color: #ffffff;
    transition: 0.5s;
  }
}
main section.form form .form-content .file-content .file-name {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.5rem;
  padding-left: 10px;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .file-content .file-name {
    width: 100%;
    padding-left: 0;
  }
}
main section.form form .form-content.agreement-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
main section.form form .form-content.agreement-content input[type=checkbox] {
  display: none;
}
main section.form form .form-content.agreement-content .agreement-label {
  position: relative;
  padding-left: 3rem;
  font-size: 1.4rem;
  line-height: 2.2rem;
  cursor: pointer;
}
main section.form form .form-content.agreement-content .agreement-label .checkbox-item {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 20px;
  height: 20px;
  background-color: #fff;
  margin: auto 0;
  border: 1px solid #d1b209;
}
@media screen and (min-width: 1025px) {
  main section.form form .form-content.agreement-content .agreement-label:hover .checkbox-item {
    box-shadow: 0 0 5px #ccc;
  }
}
main section.form form .form-content.agreement-content input[type=checkbox]:checked + .agreement-label .checkbox-item::after {
  position: absolute;
  top: -3px;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 5px;
  height: 10px;
  margin: auto;
  border-style: solid;
  border-width: 0 1px 1px 0;
  border-color: #d1b209;
  transform: rotate(45deg);
}
main section.form form .form-content .select-content {
  position: relative;
  min-width: 70%;
}
main section.form form .form-content .select-content select {
  display: block;
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 10px 30px 10px 15px;
  background-color: #fff;
  border: 1px solid #d1b209;
}
main section.form form .form-content .select-content select::-ms-expand {
  display: none;
}
main section.form form .form-content .select-content select:focus {
  box-shadow: 0 0 5px #ccc;
}
main section.form form .form-content .select-content::after {
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: auto 0;
  background-image: url(../images/common/arrow_yellow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
main section.form form .form-content .submit-btn {
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  background-color: #fff;
  border: 1px solid #555;
  font-size: 1.6rem;
  line-height: 5rem;
  height: 5rem;
}
main section.form form .form-content .submit-btn::after {
  border-color: #555;
}
main section.form form .form-content .confirm-text {
  width: 70%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 11px 0;
}
@media screen and (max-width: 1024px) {
  main section.form form .form-content .confirm-text {
    width: 100%;
    padding: 0;
  }
}
main section.form form .form-content.btn-flex {
  display: flex;
  justify-content: center;
}
main section.form form .form-content.btn-flex .submit-btn {
  width: calc(50% - 5px);
  max-width: 100%;
}
main section.form form .form-content .form-text p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
main section.form form .form-content .form-text p.red {
  color: red;
}
main .btn {
  font-size: 1.6rem;
  line-height: 5rem;
  font-weight: bold;
  height: 5rem;
  position: relative;
  display: block;
  cursor: pointer;
  text-align: center;
  border-radius: 10px;
}
main .btn::after {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto 0;
  transition: 0.5s;
  transform: rotate(45deg);
  border-style: solid;
  border-width: 2px 2px 0 0;
}
@media screen and (min-width: 1025px) {
  main .btn:hover {
    opacity: 1;
    transition: 0.5s;
  }
  main .btn:hover::after {
    transition: 0.5s;
    transform: translateX(10px) rotate(45deg);
  }
}
main .back-btn {
  position: relative;
  display: inline-block;
  margin: 50px auto 0 100px;
  background-color: transparent;
  border: 1px solid #555;
  font-size: 1.4rem;
  line-height: 3.3rem;
  height: 3.5rem;
  padding: 0 1.5rem 0 2.7rem;
  border-radius: 12px;
}
main .back-btn::after {
  right: unset;
  left: 1.5rem;
  transform: rotate(-135deg);
  width: 8px;
  height: 8px;
  border-width: 1px 1px 0 0;
}
@media screen and (min-width: 1025px) {
  main .back-btn:hover {
    opacity: 1;
    transition: 0.5s;
  }
  main .back-btn:hover::after {
    transition: 0.5s;
    transform: translateX(-5px) rotate(-135deg);
  }
}
@media screen and (max-width: 1024px) {
  main .back-btn {
    margin: 15px 0 0 15px;
  }
}
main .link-btn {
  width: 100%;
  max-width: 320px;
  background-color: #fff;
  border: 2px solid #555;
  font-size: 1.6rem;
  line-height: 4.6rem;
  font-weight: bold;
  height: 5rem;
}
main .link-btn::after {
  border-color: #555;
}
main .link-btn.black {
  color: #ffffff;
  background-color: #000;
}
main .link-btn.black::after {
  border-color: #ffffff;
}
main .link-btn.arrow-reverse::after {
  right: unset;
  left: 30px;
  transform: rotate(-135deg);
}
@media screen and (min-width: 1025px) {
  main .link-btn:hover.arrow-reverse::after {
    transform: translateX(-10px) rotate(-135deg);
  }
  main .link-btn:hover.black {
    color: inherit;
    background-color: #ffffff;
  }
  main .link-btn:hover.black::after {
    border-color: #555;
  }
}
main .color-btn {
  color: #fff;
  width: 100%;
  line-height: 4.6rem;
  background: linear-gradient(to right, #cc117d, #d1b209);
  border: 2px solid #fff;
}
main .color-btn::after {
  border-color: #fff;
}
@media screen and (min-width: 1025px) {
  main .color-btn:hover {
    background: #fff;
    border: 2px solid #cc117d;
    color: #cc117d;
  }
  main .color-btn:hover::after {
    border-color: #cc117d;
  }
}
main .pagination {
  justify-content: center;
  align-items: center;
}
main .pagination .pagination-btn {
  cursor: pointer;
  width: 50px;
  height: 50px;
  margin: 0 0 0 20px;
  padding: 15px;
  border-radius: 10px;
  background-color: #ffffff;
  box-shadow: 0 0 5px #ccc;
}
main .pagination .pagination-btn.inactive {
  background-color: #efefef;
  box-shadow: none;
  pointer-events: none;
  cursor: default;
}
main .pagination .pagination-btn.reverse {
  margin: 0 20px 0 0;
}
main .pagination .pagination-btn.reverse img {
  transform: scale(-1, -1);
}
main .pagination .pagination-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main .pagination .pagination-number {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  line-height: 6rem;
  width: 40px;
  height: 60px;
}
main .pagination .pagination-number.active {
  color: #cc117d;
}
main section.complete {
  display: flex;
  height: 100%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
main section.complete .finish-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin-bottom: 60px;
}
main section.complete .link-btn:hover {
  color: #cc117d;
  border-color: #cc117d;
}
main section.complete .link-btn:hover::after {
  border-color: #cc117d;
}
main .common-table {
  width: 100%;
}
main .common-table tr {
  text-align: left;
}
main .common-table tr th {
  vertical-align: top;
  width: 50%;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5rem;
  padding: 10px 0;
  border-bottom: 1px solid #d1b209;
}
main .common-table tr td {
  vertical-align: top;
  width: 50%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 10px 0;
  border-bottom: 1px solid #d1b209;
}
@media screen and (max-width: 1024px) {
  main .common-table {
    display: block;
  }
  main .common-table tbody {
    display: block;
  }
  main .common-table tbody tr {
    display: block;
    border-bottom: 1px solid #d1b209;
  }
  main .common-table tbody tr th {
    display: block;
    width: 100%;
    font-size: 1.4rem;
    padding: 5px 0;
    line-height: 2.2rem;
    border-bottom: 0;
  }
  main .common-table tbody tr td {
    display: block;
    width: 100%;
    border-bottom: 0;
    padding: 5px 0;
  }
}

main.top section.theater .theater-content {
  background-color: #fff;
  text-align: center;
}
main.top section.theater .theater-content .title {
  display: block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
}
main.top section.theater .theater-content .title-img {
  display: inline-block;
  width: 85%;
  max-width: 450px;
  height: auto;
}
main.top section.theater .theater-content .catch-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
  margin: 10px 0;
}
main.top section.theater .theater-content .label {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: bold;
  padding: 0 2rem;
  border-radius: 1.5rem;
  color: #fff;
}
main.top section.theater .theater-content .label.screen_schedule {
  background-color: #d1b209;
}
main.top section.theater .theater-content .label.ticket_sell {
  background-color: #cc117d;
}
main.top section.theater .theater-content .label.screening {
  background-color: black;
}
main.top section.theater .theater-content .label.finish {
  background-color: #ccc;
}
main.top section.theater .theater-content .info-table {
  text-align: left;
  margin: 10px 0 0;
}
main.top section.theater .theater-content .info-table tbody tr th {
  font-size: 1.4rem;
  font-weight: normal;
  width: 57px;
  vertical-align: top;
}
main.top section.theater .theater-content .info-table tbody tr th::after {
  content: "：";
}
main.top section.theater .theater-content .info-table tbody tr td {
  font-size: 1.4rem;
  font-weight: normal;
  vertical-align: top;
}
main.top section.theater .theater-content .color-btn {
  margin: 10px 0 0;
}
main.top section.theater .display-flex {
  position: relative;
  background: linear-gradient(to right, black, #cc117d, black);
  border-bottom: 10px solid #fff;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex {
    background: linear-gradient(to bottom, black, #cc117d, black);
    border-bottom: 5px solid #fff;
  }
}
main.top section.theater .display-flex.reverse {
  flex-flow: row-reverse;
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex.reverse {
    flex-flow: column;
  }
}
main.top section.theater .display-flex .theater-img {
  position: relative;
  width: 70%;
  height: auto;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex .theater-img {
    width: 100%;
  }
}
main.top section.theater .display-flex .theater-img img {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (min-width: 1025px) {
  main.top section.theater .display-flex .theater-img img:hover {
    transform: translateY(-50%) scale(1.2, 1.2);
  }
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex .theater-img img {
    position: relative;
    top: unset;
    transform: none;
  }
}
main.top section.theater .display-flex .theater-content {
  position: relative;
  right: 50px;
  width: 30%;
  padding: 30px;
  z-index: 1;
  margin: 50px 0;
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex .theater-content {
    width: calc(100% - 30px);
    top: -20px;
    right: unset;
    margin: 0 auto;
    padding: 20px;
  }
}
main.top section.theater .display-flex.reverse .theater-content {
  right: unset;
  left: 50px;
}
@media screen and (max-width: 1024px) {
  main.top section.theater .display-flex.reverse .theater-content {
    left: unset;
  }
}
main.top section.theater.grid {
  position: relative;
  background-color: black;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.top section.theater.grid {
    background-color: white;
  }
}
main.top section.theater.grid .bg-text {
  position: absolute;
  bottom: 0;
  left: -20px;
  font-size: 10rem;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main.top section.theater.grid .bg-text {
    display: none;
  }
}
main.top section.theater.grid .display-grid {
  position: relative;
  display: flex;
  padding: 50px;
  justify-content: space-between;
  align-items: flex-start;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main.top section.theater.grid .display-grid {
    display: block;
    padding: 0;
  }
}
main.top section.theater.grid .display-grid .grid-content {
  position: relative;
  width: calc(33.3333333333% - 40px);
  background: linear-gradient(to bottom, #cc117d, transparent);
}
@media screen and (max-width: 1024px) {
  main.top section.theater.grid .display-grid .grid-content {
    width: 100%;
    background: linear-gradient(to bottom, black, #cc117d, black);
    border-bottom: 5px solid #fff;
  }
}
main.top section.theater.grid .display-grid .grid-content .theater-img {
  position: relative;
  z-index: 0;
}
main.top section.theater.grid .display-grid .grid-content .theater-content {
  position: relative;
  padding: 20px;
  width: calc(100% - 20px);
  margin: -60px auto 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main.top section.theater.grid .display-grid .grid-content .theater-content {
    top: -20px;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}
main.top section.hotnews {
  background-color: #fff;
  padding: 100px 50px;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews {
    padding: 40px 30px;
  }
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .section-title {
    margin-bottom: 20px;
  }
}
main.top section.hotnews .hotnews-content-wrap {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .hotnews-content-wrap {
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 40px;
  }
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content {
  position: relative;
  font-size: 0;
  text-align: left;
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content:not(:last-child) {
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1025px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .bg-link:hover ~ .img-wrapper_4_3 img {
    transition: 0.5s;
    transform: scale(1.2);
  }
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .label {
  display: inline-block;
  width: 100px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  height: 2.2rem;
  border: 1px solid #555;
  border-radius: 1.3rem;
  margin-bottom: 10px;
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .label.info {
  border-color: #cc117d;
  color: #cc117d;
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .label.media {
  border-color: #7ECC12;
  color: #7ECC12;
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .date {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-left: 20px;
  margin-bottom: 10px;
  height: 2.2rem;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .date {
    width: calc(100% - 100px);
    margin-left: 0;
    padding-left: 20px;
  }
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .img-wrapper_4_3 {
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .img-wrapper_4_3 {
    display: inline-block;
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .img-wrapper_4_3 {
    width: 100px;
  }
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .img-wrapper_4_3::before {
    padding-top: 84px;
  }
}
main.top section.hotnews .hotnews-content-wrap .hotnews-content .hotnews-text {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  height: 120px;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .hotnews-text {
    display: inline-block;
    vertical-align: top;
    width: 70%;
    height: 12.5rem;
    margin-top: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  main.top section.hotnews .hotnews-content-wrap .hotnews-content .hotnews-text {
    width: calc(100% - 100px);
    height: 8.4rem;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}
main.top section.hotnews .link-btn {
  margin: 0 auto;
  border-color: #777;
  transition: 0.5s;
}
main.top section.hotnews .link-btn::after {
  border-color: #777;
  transition: 0.5s;
}
main.top section.hotnews .link-btn:hover {
  opacity: 1;
  border-color: #cc117d;
  color: #cc117d;
  transition: 0.5s;
}
main.top section.hotnews .link-btn:hover::after {
  transition: 0.5s;
  border-color: #cc117d;
  transform: translateX(10px) rotate(45deg);
}
@media screen and (max-width: 1024px) {
  main.top section.hotnews .link-btn {
    max-width: 100%;
  }
}
main.top section.external-link {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 50px;
  background: linear-gradient(to bottom, black, #cc117d);
}
@media screen and (max-width: 1024px) {
  main.top section.external-link {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 40px 15px;
  }
}
main.top section.external-link .link-content {
  position: relative;
  border: 5px solid #d1b209;
  background-color: #fff;
  padding: 10px 0 5px;
  text-align: center;
  transition: 0.5s;
  font-size: 0;
}
main.top section.external-link .link-content .link-img {
  display: inline-block;
  height: 50px;
  width: auto;
  margin-bottom: 10px;
}
main.top section.external-link .link-content .link-title {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 1024px) {
  main.top section.external-link .link-content .link-title {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}
@media screen and (min-width: 1025px) {
  main.top section.external-link .link-content:hover {
    opacity: 0.8;
    transition: 0.5s;
  }
}

section.works {
  padding: 0 50px;
}
@media screen and (max-width: 1024px) {
  section.works {
    padding: 0;
  }
}
section.works .works-link {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: calc(100vw - 100px);
  height: calc((100vw - 100px) / 3.302);
  /* 青銅比 */
  background: url(../images/top/sakuhin_back.jpg) center no-repeat;
  background-size: cover;
  text-align: center;
  cursor: pointer;
}
section.works .works-link .link-title {
  position: relative;
  width: 250px;
  height: auto;
  display: block;
  margin: 0 auto 10px;
  z-index: 2;
}
section.works .works-link .text-link {
  position: relative;
  width: 80px;
  font-size: 1.6rem;
  color: #fff;
  transition: 0.3s;
  z-index: 2;
}
section.works .works-link .text-link::after {
  width: 10px;
  height: 10px;
  border-color: #fff;
}
@media screen and (max-width: 1024px) {
  section.works .works-link {
    width: 100vw;
    height: 56.25vw;
  }
  section.works .works-link::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/top/kirakira_back.jpeg) center no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0.3;
    filter: brightness(2);
  }
}
@media screen and (min-width: 1025px) {
  section.works .works-link:hover .text-link {
    padding-right: 60px;
  }
  section.works .works-link:hover::after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/top/kirakira_back.jpeg) center no-repeat;
    background-size: cover;
    z-index: 1;
    opacity: 0.3;
    filter: brightness(2);
  }
}

section.caution {
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  section.caution {
    padding: 60px 0 50px;
  }
}
section.caution .section-title {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  section.caution .section-title {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 1024px) {
  section.caution .display-flex {
    padding: 0 30px;
    align-items: center;
    justify-content: center;
  }
}
section.caution .display-flex .caution-content {
  position: relative;
  width: 320px;
  padding: 25px;
  border: 2px solid #cc117d;
  border-radius: 5px;
  text-align: center;
  transition: 0.5s;
}
section.caution .display-flex .caution-content .title {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: 0.5s;
}
section.caution .display-flex .caution-content .icon {
  width: 40%;
  height: auto;
  margin: 0 auto;
}
section.caution .display-flex .caution-content .icon path {
  transition: 0.5s;
}
section.caution .display-flex .caution-content::after {
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: auto 0;
  transform: rotate(45deg);
  border-style: solid;
  border-width: 2px 2px 0 0;
  border-color: #cc117d;
  transition: 0.5s;
}
section.caution .display-flex .caution-content:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  section.caution .display-flex .caution-content:not(:last-child) {
    margin: 0 0 30px 0;
  }
}
@media screen and (min-width: 1025px) {
  section.caution .display-flex .caution-content:hover {
    transition: 0.5s;
    border: 2px solid #fff;
    background: linear-gradient(to right, #cc117d, #d1b209);
  }
  section.caution .display-flex .caution-content:hover::after {
    transition: 0.5s;
    border-color: #fff;
    transform: translateX(10px) rotate(45deg);
  }
  section.caution .display-flex .caution-content:hover .title {
    transition: 0.5s;
    color: #fff;
  }
  section.caution .display-flex .caution-content:hover .icon path {
    transition: 0.5s;
    fill: #fff !important;
  }
}

main.works section.theater {
  position: relative;
  padding: 50px 50px 80px;
  background-color: black;
}
@media screen and (max-width: 1024px) {
  main.works section.theater {
    padding: 0;
  }
}
main.works section.theater .bg-text {
  position: absolute;
  bottom: 300px;
  left: -20px;
  font-size: 10rem;
  line-height: 1;
  font-family: "Times New Roman", Times, serif;
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main.works section.theater .bg-text {
    display: none;
  }
}
main.works section.theater .display-grid {
  position: relative;
  display: grid;
  gap: 50px;
  max-width: 1024px;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  main.works section.theater .display-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
main.works section.theater .display-grid .grid-content {
  position: relative;
}
main.works section.theater .display-grid .grid-content .theater-content {
  position: relative;
  padding: 30px 15px;
  background-color: #fff;
  text-align: center;
  border: 10px solid transparent;
  border-image: linear-gradient(to bottom, #cc117d, black) 1;
}
@media screen and (max-width: 1024px) {
  main.works section.theater .display-grid .grid-content .theater-content {
    border-width: 20px 15px;
    max-width: 600px;
    margin: 0 auto;
  }
}
main.works section.theater .display-grid .grid-content .theater-content .title {
  display: block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
}
main.works section.theater .display-grid .grid-content .theater-content .title-img {
  display: inline-block;
  width: 85%;
  max-width: 450px;
  height: auto;
}
main.works section.theater .display-grid .grid-content .theater-content .catch-text {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
}
main.works section.theater .display-grid .grid-content .theater-content .label {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  font-weight: bold;
  padding: 0 2rem;
  border-radius: 1.5rem;
  color: #fff;
}
main.works section.theater .display-grid .grid-content .theater-content .label.screen_schedule {
  background-color: #d1b209;
}
main.works section.theater .display-grid .grid-content .theater-content .label.ticket_sell {
  background-color: #cc117d;
}
main.works section.theater .display-grid .grid-content .theater-content .label.screening {
  background-color: black;
}
main.works section.theater .display-grid .grid-content .theater-content .label.finish {
  background-color: #ccc;
}
main.works section.theater .display-grid .grid-content .theater-content .info-table {
  text-align: left;
  margin: 10px 0 0;
}
main.works section.theater .display-grid .grid-content .theater-content .info-table tbody tr th {
  font-size: 1.4rem;
  font-weight: normal;
  width: 57px;
  vertical-align: top;
}
main.works section.theater .display-grid .grid-content .theater-content .info-table tbody tr th::after {
  content: "：";
}
main.works section.theater .display-grid .grid-content .theater-content .info-table tbody tr td {
  font-size: 1.4rem;
  font-weight: normal;
  vertical-align: top;
}
main.works section.theater .display-grid .grid-content .theater-content .color-btn {
  margin: 10px 0 0;
}
main.works section.theater .more-btn {
  display: block;
  width: 100px;
  margin: 80px auto 0;
  text-align: center;
  cursor: pointer;
}
main.works section.theater .more-btn .text {
  display: block;
  font-size: 2rem;
  color: #ffffff;
  font-weight: bold;
}
main.works section.theater .more-btn .arrow {
  display: block;
  transition: 0.5s;
  margin-top: 10px;
}
main.works section.theater .more-btn .arrow img {
  display: block;
  height: 2.5rem;
  width: auto;
  transform: rotate(90deg);
  margin: auto;
}
main.works section.theater .more-btn:hover .arrow {
  transition: 0.5s;
  transform: translateY(10px);
}
main.works_detail {
  background-image: url(../images/works/parallax-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 1024px) {
  main.works_detail {
    background-image: url(../images/works/parallax-left.png);
    background-size: contain;
    background-position: left;
  }
}
main.works_detail section {
  text-align: center;
}
main.works_detail section .ruby {
  font-size: 1.2rem;
  line-height: 1.5rem;
}
main.works_detail section .section-title {
  margin-bottom: 60px;
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  main.works_detail section .section-title {
    margin-bottom: 40px;
  }
}
main.works_detail section .catch-text {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  text-align: left;
}
main.works_detail section .common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: left;
}
main.works_detail section .display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
main.works_detail section.theater {
  padding: 10px 50px 0;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater {
    padding: 10px 15px 0;
  }
}
main.works_detail section.theater .theater-img-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 70px;
  max-width: 840px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .theater-img-wrap {
    justify-content: center;
    margin: 0 auto 50px;
    max-width: 600px;
  }
}
main.works_detail section.theater .theater-img-wrap .jump-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  border-radius: 50%;
  border: 1px solid #d1b209;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .theater-img-wrap .jump-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    height: 40px;
    padding: 10px;
    margin: auto 0;
    z-index: 1;
  }
  main.works_detail section.theater .theater-img-wrap .jump-btn:first-child {
    right: unset;
    left: 0;
  }
}
main.works_detail section.theater .theater-img-wrap .jump-btn svg {
  display: block;
}
main.works_detail section.theater .theater-img-wrap .jump-btn svg.prev {
  transform: scale(-1, 1);
}
main.works_detail section.theater .theater-img-wrap .jump-btn svg path {
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  main.works_detail section.theater .theater-img-wrap .jump-btn:hover {
    transition: 0.5s;
    background-color: #d1b209;
  }
  main.works_detail section.theater .theater-img-wrap .jump-btn:hover svg path {
    transition: 0.5s;
    stroke: #ffffff;
  }
}
main.works_detail section.theater .theater-img-wrap .theater-img {
  position: relative;
  display: block;
  width: calc(100% - 220px);
  height: auto;
  box-shadow: 0 0 10px #ccc;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .theater-img-wrap .theater-img {
    width: calc(100% - 30px);
  }
}
main.works_detail section.theater .introduction {
  padding: 60px;
  max-width: 840px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  margin: 0 auto;
  margin-bottom: 60px;
  box-shadow: 0 0 10px #ccc;
}
main.works_detail section.theater .introduction .catch-text {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .introduction {
    padding: 30px 15px;
    max-width: 600px;
  }
  main.works_detail section.theater .introduction .catch-text {
    margin-bottom: 20px;
  }
}
main.works_detail section.theater .story {
  padding: 60px;
  max-width: 840px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  margin: 0 auto;
  margin-bottom: 60px;
  box-shadow: 0 0 10px #ccc;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .story {
    padding: 30px 15px;
    max-width: 600px;
  }
}
main.works_detail section.theater .video {
  max-width: 840px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  margin: 0 auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.theater .video {
    padding: 30px 15px;
    max-width: 600px;
  }
}
main.works_detail section.character {
  background-color: rgba(209, 178, 9, 0.6666666667);
  padding: 70px 50px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.character {
    padding: 40px 30px;
  }
}
main.works_detail section.character .display-grid {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  grid-template-columns: 250px 250px 250px;
  justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.character .display-grid {
    max-width: 600px;
    grid-template-columns: 1fr 1fr;
    justify-content: center;
    gap: 30px 20px;
  }
}
main.works_detail section.character .display-grid .ring {
  position: relative;
  border-radius: 50%;
  width: 100%;
  padding: 0 0 100% 0;
  background-size: cover;
  cursor: pointer;
}
main.works_detail section.character .display-grid .ring::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
main.works_detail section.character .display-grid .ring.light::before {
  background-image: url(../images/works/frame_light.png);
}
main.works_detail section.character .display-grid .ring.dark::before {
  background-image: url(../images/works/frame_dark.png);
}
main.works_detail section.character .display-grid .ring .img-wrap {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  margin: auto;
  border-radius: 50%;
  z-index: 0;
  overflow: hidden;
}
main.works_detail section.character .display-grid .ring .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
}
@media screen and (min-width: 1025px) {
  main.works_detail section.character .display-grid .ring:hover .img-wrap img {
    transform: scale(1.2);
    transition: 0.5s;
  }
}
main.works_detail section.character .display-grid .popup-img {
  position: absolute;
  display: none;
  width: 100%;
  max-width: 320px;
  border: 5px solid rgba(255, 255, 255, 0.6666666667);
  transform: translateX(-50%);
  z-index: 5;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.character .display-grid .popup-img {
    transform: translateX(0);
    left: 0 !important;
    right: 0;
    margin: 0 auto;
  }
}
main.works_detail section.character .display-grid .popup-img.active {
  display: block;
}
main.works_detail section.character .display-grid .popup-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3333333333), transparent, rgba(0, 0, 0, 0.3333333333));
  z-index: 1;
}
main.works_detail section.character .display-grid .popup-img img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}
main.works_detail section.character .display-grid .popup-img .del-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  cursor: pointer;
  z-index: 2;
}
main.works_detail section.character .display-grid .popup-img .name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5rem;
  line-height: 5rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  z-index: 2;
}
main.works_detail section.schedule {
  padding: 100px 50px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.schedule {
    padding: 40px 15px;
  }
}
main.works_detail section.schedule .schedule-content {
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  box-shadow: 0 0 10px #ccc;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.schedule .schedule-content {
    padding: 40px 15px;
  }
}
main.works_detail section.schedule .schedule-content .catch-text {
  text-align: center;
}
main.works_detail section.schedule .schedule-content ul.info-list {
  display: inline-block;
  margin: 30px 0;
}
main.works_detail section.schedule .schedule-content ul.info-list li {
  display: block;
  line-height: 3.5rem;
}
main.works_detail section.schedule .schedule-content ul.info-list li .color-btn.map {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 2.7rem;
  width: auto;
  height: 3.1rem;
  padding: 0 15px;
  border-radius: 0;
  display: inline-block;
  margin-left: 10px;
}
main.works_detail section.schedule .schedule-content ul.info-list li .color-btn.map::after {
  display: none;
}
main.works_detail section.schedule .schedule-content ul.info-list + .color-btn {
  max-width: 320px;
  margin: 0 auto;
}
main.works_detail section.gallery {
  border-width: 20px 0;
  border-color: #000;
  border-style: solid;
  padding: 100px 50px;
  background: linear-gradient(to right bottom, #cc117d, #d1b209);
}
@media screen and (max-width: 1024px) {
  main.works_detail section.gallery {
    padding: 40px 30px;
  }
}
main.works_detail section.gallery .section-title {
  color: #fff;
}
main.works_detail section.gallery .display-grid {
  max-width: 1024px;
  gap: 3px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.gallery .display-grid {
    max-width: 600px;
    grid-template-columns: 1fr;
  }
}
main.works_detail section.gallery .display-grid .img-wrap {
  position: relative;
  height: 0;
  padding-bottom: 100%;
}
main.works_detail section.gallery .display-grid .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
main.works_detail section.gallery .link-btn {
  margin: 0 auto;
  border-color: #fff;
  color: #fff;
  background-color: transparent;
}
main.works_detail section.gallery .link-btn::after {
  border-color: #fff;
}
@media screen and (min-width: 1025px) {
  main.works_detail section.gallery .link-btn:hover {
    border-color: #cc117d;
    color: #cc117d;
  }
  main.works_detail section.gallery .link-btn:hover::after {
    border-color: #cc117d;
  }
}
main.works_detail section.staff {
  padding: 0 50px 100px;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.staff {
    padding: 0 15px 40px;
  }
}
main.works_detail section.staff .staff-content {
  padding: 60px;
  background-color: rgba(255, 255, 255, 0.6666666667);
  box-shadow: 0 0 10px #ccc;
  max-width: 840px;
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.works_detail section.staff .staff-content {
    padding: 40px 15px;
    max-width: 600px;
  }
}
main.works_detail section.staff .staff-content .common-table {
  margin: 50px 0 0;
}
main.works_detail section.staff .staff-content ul.caution-list {
  text-align: left;
  margin-top: 10px;
}
main.works_detail section.staff .staff-content ul.caution-list li {
  display: block;
  font-size: 1.4rem;
  line-height: 2rem;
}
main.works_detail section.staff .staff-content ul.caution-list li::before {
  content: "※";
}
@media screen and (max-width: 1024px) {
  main.works_detail section.staff .staff-content ul.caution-list li {
    font-size: 1.2rem;
  }
}
main.works_gallery section {
  text-align: center;
}
main.works_gallery section .section-title {
  margin-bottom: 60px;
  font-size: 2.8rem;
}
@media screen and (max-width: 1024px) {
  main.works_gallery section .section-title {
    margin-bottom: 30px;
  }
}
main.works_gallery section .catch-text {
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
main.works_gallery section .common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: left;
  color: #fff;
}
main.works_gallery section .display-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
main.works_gallery section.gallery {
  padding: 60px 50px;
  background: linear-gradient(to right bottom, #cc117d, #d1b209);
}
@media screen and (max-width: 1024px) {
  main.works_gallery section.gallery {
    padding: 40px 30px;
  }
}
main.works_gallery section.gallery .section-title {
  color: #fff;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  main.works_gallery section.gallery .section-title {
    margin-top: 40px;
  }
}
main.works_gallery section.gallery .display-grid {
  max-width: 1024px;
  gap: 3px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1024px) {
  main.works_gallery section.gallery .display-grid {
    max-width: 600px;
    grid-template-columns: 1fr;
  }
}
main.works_gallery section.gallery .display-grid .img-wrap {
  position: relative;
  height: 0;
  padding-bottom: 100%;
  overflow: hidden;
}
main.works_gallery section.gallery .display-grid .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: 0.5s;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  main.works_gallery section.gallery .display-grid .img-wrap img:hover {
    transform: scale(1.2);
    transition: 0.5s;
  }
}
main.works_gallery section.gallery .display-grid .popup-img {
  position: absolute;
  right: 0;
  left: 0;
  display: none;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  z-index: 10;
  border: 5px solid rgba(255, 255, 255, 0.6666666667);
}
main.works_gallery section.gallery .display-grid .popup-img.active {
  display: block;
}
main.works_gallery section.gallery .display-grid .popup-img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: transparent;
  z-index: 1;
}
main.works_gallery section.gallery .display-grid .popup-img img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  z-index: 0;
}
main.works_gallery section.gallery .display-grid .popup-img .del-btn {
  position: absolute;
  top: 5px;
  right: 5px;
  display: block;
  width: 20px;
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 2rem;
  text-align: center;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #ffffff;
  cursor: pointer;
  z-index: 2;
}

main.login .color-btn {
  margin: 0 auto;
  max-width: 320px;
}
main.login section.form {
  padding: 0 50px 50px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.login section.form {
    padding: 15px 15px 30px;
  }
}
main.login section.form .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.login section.form .section-title {
    margin-bottom: 20px;
  }
}
main.login section.form form {
  text-align: left;
}
main.login section.registration {
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  main.login section.registration {
    padding: 30px 15px;
  }
}
main.login section.registration .section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.login section.registration .section-title {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  main.login section.registration {
    padding: 40px 15px 60px;
  }
}
@media screen and (max-width: 1024px) {
  main.login section.logout {
    padding: 0 15px;
  }
}
main.login section.logout .section-title {
  margin-bottom: 200px;
}
main.login section.logout .btn-wrap {
  width: 100%;
  align-items: center;
}
main.login section.logout .btn-wrap .link-btn:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  main.login section.logout .btn-wrap .link-btn:not(:last-child) {
    margin: 0 0 10px;
  }
}

main.news section.news-wrap {
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap {
    padding: 15px 15px 40px;
  }
}
main.news section.news-wrap .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .section-title {
    margin-bottom: 20px;
  }
}
main.news section.news-wrap .news-content-wrap {
  width: 100%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 40px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .news-content-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 600px;
  }
}
main.news section.news-wrap .news-content-wrap .news-content {
  position: relative;
  font-size: 0;
}
main.news section.news-wrap .news-content-wrap .news-content .label {
  display: inline-block;
  width: 85px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  height: 2.2rem;
  border: 1px solid #555;
  border-radius: 1.3rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .news-content-wrap .news-content .label {
    width: 100px;
  }
}
main.news section.news-wrap .news-content-wrap .news-content .label.info {
  border-color: #cc117d;
  color: #cc117d;
}
main.news section.news-wrap .news-content-wrap .news-content .label.media {
  border-color: #7ECC12;
  color: #7ECC12;
}
main.news section.news-wrap .news-content-wrap .news-content .date {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  width: calc(100% - 85px);
  text-align: right;
  margin-bottom: 10px;
  height: 2.2rem;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .news-content-wrap .news-content .date {
    width: calc(100% - 100px);
    padding-left: 10px;
    text-align: left;
  }
}
@media screen and (max-width: 599px) {
  main.news section.news-wrap .news-content-wrap .news-content .date {
    padding-left: 20px;
  }
}
main.news section.news-wrap .news-content-wrap .news-content .img-wrapper_4_3 {
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .news-content-wrap .news-content .img-wrapper_4_3 {
    display: inline-block;
    width: 30%;
  }
}
@media screen and (max-width: 599px) {
  main.news section.news-wrap .news-content-wrap .news-content .img-wrapper_4_3 {
    width: 100px;
  }
  main.news section.news-wrap .news-content-wrap .news-content .img-wrapper_4_3::before {
    padding-top: 84px;
  }
}
main.news section.news-wrap .news-content-wrap .news-content .news-text {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  height: 120px;
  margin-top: 10px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.news section.news-wrap .news-content-wrap .news-content .news-text {
    display: inline-block;
    vertical-align: top;
    width: 70%;
    height: 12.5rem;
    margin-top: 0;
    padding-left: 20px;
  }
}
@media screen and (max-width: 599px) {
  main.news section.news-wrap .news-content-wrap .news-content .news-text {
    width: calc(100% - 100px);
    height: 8.4rem;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}
main.news section.news-detail {
  padding: 0 0 120px;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail {
    padding: 15px 15px 40px;
  }
}
main.news section.news-detail .news-content {
  font-size: 0;
  margin: 0 0 50px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content {
    margin-bottom: 30px;
  }
}
main.news section.news-detail .news-content .label {
  display: inline-block;
  width: 100px;
  text-align: center;
  font-size: 1.4rem;
  line-height: 2.2rem;
  height: 2.2rem;
  border: 1px solid #555;
  border-radius: 1.3rem;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content .label {
    margin-bottom: 10px;
  }
}
main.news section.news-detail .news-content .label.info {
  border-color: #cc117d;
  color: #cc117d;
}
main.news section.news-detail .news-content .label.media {
  border-color: #7ECC12;
  color: #7ECC12;
}
main.news section.news-detail .news-content .date {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  width: calc(100% - 100px);
  padding-left: 10px;
  text-align: left;
  margin-bottom: 30px;
  height: 2.2rem;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content .date {
    margin-bottom: 10px;
  }
}
main.news section.news-detail .news-content .news-img {
  width: 100%;
  height: auto;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content .news-img {
    margin-bottom: 20px;
  }
}
main.news section.news-detail .news-content h3 {
  margin-bottom: 20px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content h3 {
    margin-bottom: 10px;
  }
}
main.news section.news-detail .news-content .news-text {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin: 0 0 50px;
}
@media screen and (max-width: 1024px) {
  main.news section.news-detail .news-content .news-text {
    margin-bottom: 20px;
  }
}
main.news section.news-detail .news-content .link-btn {
  margin: 0 auto;
  max-width: 320px;
}
main.news section.news-detail .pagination .label {
  font-size: 1.2rem;
  padding: 0 5px;
}
main.news section.news-detail .pagination .pagination_btn:last-child {
  margin-left: 0;
}

main.contact {
  background-color: #efefef;
}
main.contact .common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.contact .common-list li {
  position: relative;
  padding-left: 1em;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.contact .common-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.contact .common-list li a {
  display: inline;
}
main.contact section.form {
  padding: 0 50px 120px;
}
@media screen and (max-width: 1024px) {
  main.contact section.form {
    padding: 15px 15px 40px;
  }
}
main.contact section.form .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.contact section.form .section-title {
    margin-bottom: 20px;
  }
}
main.contact section.form form .form-content.caution {
  flex-flow: column;
}
main.contact section.form form .form-content.caution .section-subtitle {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
main.contact section.form form .form-content.caution .form-caution {
  margin-top: 5px;
  font-size: 1.2rem;
  line-height: 1.8rem;
}
main.contact section.form form .form-content .label-style {
  padding: 11px 1em;
}
@media screen and (max-width: 1024px) {
  main.contact section.form form .form-content .label-style {
    padding: 0;
  }
  main.contact section.form form .form-content .label-style br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  main.contact section.form form .form-content .label-style.required {
    padding: 0 1em;
  }
}
main.contact section.form form .form-content .label-style.required::before {
  position: absolute;
  top: 11px;
  left: 0;
  content: "※";
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #cc117d;
}
@media screen and (max-width: 1024px) {
  main.contact section.form form .form-content .label-style.required::before {
    top: 0;
  }
}
main.contact section.form form .form-content.agreement-content {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  main.contact section.form form .form-content.agreement-content {
    margin-top: 40px;
  }
}
main.contact section.form form .form-content #contactSubmit {
  max-width: 320px;
  margin: 0 auto;
}
main.contact section.form form .form-content #contactSubmit.disabled {
  background: gray;
  pointer-events: none;
}
main.contact section.form form .form-content.form-invalid .label-style {
  color: red;
}
main.contact section.form form .form-content.form-invalid .text-style {
  border-color: red;
}
main.contact section.form form .form-content.form-invalid .textarea-style {
  border-color: red;
}
main.contact section.form form .form-content.form-invalid .error-text {
  color: red;
}
main.contact section.form .contact-catch {
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin-bottom: 60px;
}
main.contact section.form .contact-caution {
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: red;
  margin-bottom: 60px;
}
main.contact section.form .finish-text {
  text-align: center;
  margin: 80px 0;
}
main.contact section.form .link-btn {
  margin: 0 auto;
}

main.registration section.form {
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  main.registration section.form {
    padding: 40px 15px 60px;
  }
}
main.registration section.form .color-btn {
  margin: 0 auto;
  max-width: 320px;
}
main.registration section.form form .cost-label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2.2rem;
  padding-left: 35px;
}
main.registration section.form form .form-content .label-style .rule {
  position: absolute;
  top: 2.8rem;
  left: 0;
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  main.registration section.form form .form-content .label-style .rule {
    position: relative;
    top: 0;
    margin-left: 10px;
  }
}
main.registration section.form form .form-content .radio-wrap {
  padding: 0;
}
main.registration section.form form .form-content .radio-wrap .radio-label {
  line-height: 2.2rem;
}
main.registration section.form form .form-content .gray-link {
  margin: 0 auto 15px;
}
@media screen and (min-width: 1025px) {
  main.registration section.form form .form-content .half-size {
    width: 34%;
  }
}
@media screen and (min-width: 1025px) {
  main.registration section.form form .name-form-area input:nth-child(2n) {
    margin-right: 12px;
  }
}
main.registration section.form form .agreement-content {
  flex-wrap: wrap;
}
main.registration section.form form .finish-text {
  text-align: center;
  margin: 80px 0;
}
main.registration.confirm {
  position: relative;
}
main.registration.confirm::before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 99;
}
main.registration.confirm section.form {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1024px;
  padding: 50px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.form {
    max-width: 670px;
    padding: 40px 15px;
    margin-top: -50px;
  }
}
main.registration.confirm section.form form {
  box-shadow: none;
  padding: 0;
}
main.registration.confirm section.form form .form-content.confirm-item {
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
main.registration.confirm section.form form .form-content.confirm-item .pass-wrap {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
main.registration.confirm section.form form .form-content.confirm-item .pass-wrap input.pass {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 0;
  border: 0;
  z-index: 0;
}
main.registration.confirm section.form form .form-content.confirm-item .pass-wrap input.pass::-ms-reveal {
  visibility: hidden;
}
main.registration.confirm section.form form .form-content.confirm-item .pass-wrap .pass-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 2.5rem;
  margin: auto 0;
  z-index: 1;
  cursor: pointer;
}
main.registration.confirm section.form form .form-content.confirm-item .pass-wrap .pass-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main.registration.confirm section.form form .form-content p.caution {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.form form .form-content p.caution {
    text-align: left;
    font-size: 1.8rem;
  }
}
main.registration.confirm section.form form .form-content ul.caution-list {
  width: 100%;
  text-align: left;
}
main.registration.confirm section.form form .form-content ul.caution-list li {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding-left: 1.1em;
}
main.registration.confirm section.form form .form-content ul.caution-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
  font-size: 1.4rem;
  line-height: 2.2rem;
}
main.registration.confirm section.form form .form-content.form-btn {
  flex-flow: row;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.form form .form-content.form-btn {
    flex-flow: column;
  }
}
main.registration.confirm section.form form .form-content.form-btn .btn {
  max-width: 320px;
  margin: 0;
}
main.registration.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
main.registration.confirm section.complete {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1024px;
  padding: 50px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.complete {
    max-width: 670px;
    padding: 40px 15px;
  }
}
main.registration.confirm section.complete .section-title {
  color: #cc117d;
  margin-bottom: 40px;
}
main.registration.confirm section.complete .finish-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.registration.confirm section.complete .finish-text {
    text-align: left;
  }
}
main.registration section.premium {
  background-image: url(../images/common/premium_back.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 100px 50px 80px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.registration section.premium {
    padding: 30px 15px;
  }
}
main.registration section.premium .premium-img {
  display: block;
  width: 100%;
  max-width: 350px;
  margin: 0 auto 10px;
}
main.registration section.premium .section-title {
  color: #ffffff;
  margin-bottom: 20px;
}
main.registration section.premium .text-wrap {
  max-width: 540px;
  margin: 0 auto;
  text-align: left;
}
main.registration section.premium .text-wrap p {
  font-size: 1.6rem;
  line-height: 2.5rem;
  color: #ffffff;
}
@media screen and (max-width: 1024px) {
  main.registration section.premium .text-wrap p {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.registration section.premium .text-wrap ul {
  display: inline-block;
  text-align: left;
}
main.registration section.premium .text-wrap ul li {
  font-size: 1.7rem;
  line-height: 2.6rem;
  font-weight: bold;
  color: #d1b209;
}
@media screen and (max-width: 1024px) {
  main.registration section.premium .text-wrap ul li {
    font-size: 1.6rem;
    line-height: 2.5rem;
  }
}
main.registration section.premium .link-btn {
  border-color: #d1b209;
  color: #d1b209;
  background-color: transparent;
  margin: 40px auto 0;
  max-width: 320px;
}
main.registration section.premium .link-btn::after {
  border-color: #d1b209;
}

main.ticket section.theater {
  position: relative;
  padding: 0 50px 120px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  main.ticket section.theater {
    padding: 15px 0 40px;
  }
}
main.ticket section.theater .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.theater .section-title {
    margin-bottom: 20px;
  }
}
main.ticket section.theater .caution-text {
  text-align: center;
}
main.ticket section.theater .display-grid {
  position: relative;
  display: grid;
  margin: 60px auto 50px;
  max-width: 1024px;
  gap: 50px;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1024px) {
  main.ticket section.theater .display-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
main.ticket section.theater .display-grid .grid-content {
  position: relative;
}
main.ticket section.theater .display-grid .grid-content.inactive::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4666666667);
  z-index: 0;
}
main.ticket section.theater .display-grid .grid-content .theater-content {
  position: relative;
  padding: 30px 15px;
  background-color: #fff;
  text-align: center;
  border: 10px solid transparent;
  border-image: linear-gradient(to bottom, #cc117d, black) 1;
}
@media screen and (max-width: 1024px) {
  main.ticket section.theater .display-grid .grid-content .theater-content {
    border-width: 20px 15px;
    max-width: 600px;
    margin: 0 auto;
  }
}
main.ticket section.theater .display-grid .grid-content .theater-content .title {
  position: relative;
  display: block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
  z-index: 0;
}
main.ticket section.theater .display-grid .grid-content .theater-content .title-img {
  position: relative;
  display: inline-block;
  width: 85%;
  max-width: 450px;
  height: auto;
  z-index: 0;
}
main.ticket section.theater .display-grid .grid-content .theater-content .catch-text {
  position: relative;
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: bold;
  margin: 10px 0;
  z-index: 0;
}
main.ticket section.theater .display-grid .grid-content .theater-content .label {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  padding: 0 2rem;
  border-radius: 1.5rem;
  color: #fff;
  z-index: 1;
}
main.ticket section.theater .display-grid .grid-content .theater-content .label.screen_schedule {
  background-color: #d1b209;
}
main.ticket section.theater .display-grid .grid-content .theater-content .label.ticket_sell {
  background-color: #cc117d;
}
main.ticket section.theater .display-grid .grid-content .theater-content .label.screening {
  background-color: black;
}
main.ticket section.theater .display-grid .grid-content .theater-content .label.finish {
  background-color: #ccc;
}
main.ticket section.theater .display-grid .grid-content .theater-content .info-list {
  position: relative;
  text-align: left;
  margin: 10px 0 0;
  z-index: 0;
}
main.ticket section.theater .display-grid .grid-content .theater-content .info-list li {
  font-size: 1.4rem;
  line-height: 2.5rem;
}
main.ticket section.theater .display-grid .grid-content .theater-content .premium-sale {
  text-align: center;
  color: #cc117d;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: bold;
  margin-top: 10px;
}
main.ticket section.theater .display-grid .grid-content .theater-content .ordinary-sale {
  text-align: center;
  color: #278332;
  font-size: 1.4rem;
  line-height: 2.5rem;
  font-weight: bold;
  margin-top: 10px;
}
main.ticket section.theater .display-grid .grid-content .theater-content .color-btn {
  position: relative;
  margin: 10px 0 0;
  z-index: 1;
}
main.ticket section.transfer {
  padding: 15px 0 80px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer {
    padding: 15px 15px 40px;
  }
}
main.ticket section.transfer .section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .section-title {
    margin-bottom: 20px;
  }
}
main.ticket section.transfer .transfer-catch {
  font-size: 1.6rem;
  line-height: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  main.ticket section.transfer .transfer-catch {
    text-align: left;
  }
}
main.ticket section.transfer .transfer-content {
  max-width: 840px;
  padding: 50px;
  box-shadow: 0 0 5px #ccc;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .transfer-content {
    padding: 40px 15px;
  }
}
main.ticket section.transfer .ticket-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .ticket-table {
    display: block;
    border-collapse: collapse;
    border-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .ticket-table tbody {
    display: block;
  }
}
main.ticket section.transfer .ticket-table tbody tr {
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .ticket-table tbody tr {
    display: block;
  }
  main.ticket section.transfer .ticket-table tbody tr:not(:last-child) {
    margin-bottom: 10px;
  }
}
main.ticket section.transfer .ticket-table tbody tr th {
  width: 150px;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .ticket-table tbody tr th {
    display: block;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.ticket section.transfer .ticket-table tbody tr td {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .ticket-table tbody tr td {
    display: block;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.ticket section.transfer .ticket-table tbody tr td.place {
  color: #cc117d;
}
main.ticket section.transfer .ticket-table tbody tr td.place .color-btn.map {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3rem;
  width: auto;
  height: 3rem;
  padding: 0 15px;
  border-radius: 0;
  display: inline-block;
  margin-left: 10px;
}
main.ticket section.transfer .ticket-table tbody tr td.place .color-btn.map::after {
  display: none;
}
main.ticket section.transfer .caution-text {
  font-size: 1.6rem;
  font-weight: bold;
  color: red;
  margin: 20px 0;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer .caution-text {
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-top: 20px;
  }
}
main.ticket section.transfer form {
  padding: 0 30px;
  box-shadow: none;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer form {
    padding: 0;
  }
}
main.ticket section.transfer form .form-content {
  padding: 0;
}
main.ticket section.transfer form .form-content .label-style.row-2 {
  padding: 0;
  line-height: 2.35rem;
}
main.ticket section.transfer form .form-content.agreement-content {
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer form .form-content.agreement-content {
    margin-top: 40px;
  }
}
main.ticket section.transfer form .form-content.form-btn {
  align-items: center;
  justify-content: center;
  flex-flow: row;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer form .form-content.form-btn {
    flex-flow: column;
  }
}
main.ticket section.transfer form .form-content.form-btn .btn:not(:last-child) {
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.transfer form .form-content.form-btn .btn:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
main.ticket section.transfer form .form-content.form-btn .btn.black {
  background-color: black;
  border: 2px solid black;
  color: #fff;
}
main.ticket section.transfer form .form-content.form-btn .btn.black::after {
  border-color: #fff;
}
main.ticket section.transfer .link-btn-wrap .link-btn {
  margin: 0 auto;
}
main.ticket section.transfer .link-btn-wrap .link-btn:first-child {
  margin-bottom: 20px;
}
main.ticket section.transfer .link-btn-wrap .link-btn::after {
  display: none;
}
main.ticket section.transfer_thanks .finish-text {
  text-align: center;
  margin: 80px 0;
}
main.ticket section.transfer_thanks .link-btn {
  margin: 0 auto;
}
main.ticket section.sale {
  max-width: 840px;
  margin: 15px auto 120px;
  padding: 60px 15px 40px;
  background-color: #fff;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale {
    width: calc(100% - 30px);
    margin: 15px auto 50px;
    padding: 40px 0;
  }
}
main.ticket section.sale.form form {
  display: block;
  max-width: 100%;
  margin: 0;
  box-shadow: none;
  background-color: #fff;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale.form form {
    padding: 0;
  }
}
main.ticket section.sale.form form .common-table {
  table-layout: fixed;
}
main.ticket section.sale.form form #seatTable tr th {
  padding: 5px;
  text-align: center;
}
main.ticket section.sale.form form #seatTable tr td {
  padding: 5px;
}
main.ticket section.sale.form form #seatTable tr td.flex-column {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}
main.ticket section.sale.form form #seatTable tr td input[type=text] {
  display: block;
  padding: 5px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 2.5rem;
  border: 1px solid #ccc;
}
main.ticket section.sale.form form #seatTable tr td textarea {
  width: 100%;
  padding: 5px;
  font-size: 1.4rem;
  line-height: 2.5rem;
  height: 7.5rem;
  border: 1px solid #ccc;
}
main.ticket section.sale.form form #seatTable tr td select {
  font-size: 1.4rem;
  line-height: 2.5rem;
  background-color: #fff;
  border: 1px solid #ccc;
}
main.ticket section.sale.form form #seatTable tr td button {
  display: block;
  font-size: 1.4rem;
  line-height: 2.2rem;
  padding: 0 5px;
  border-radius: 1.1rem;
  border: 1px solid #ccc;
  background-color: #f2f2f2;
}
main.ticket section.sale .common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.ticket section.sale h2.section-title {
  font-size: 3rem;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale h2.section-title {
    margin-bottom: 40px;
  }
}
main.ticket section.sale h3.section-subtitle {
  width: 100%;
  font-size: 2rem;
  line-height: 3.5rem;
  text-align: left;
  border-bottom: 1px solid #555;
  margin-bottom: 20px;
  padding-left: 15px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale h3.section-subtitle {
    padding: 0;
  }
}
main.ticket section.sale form[name=sale_form] {
  display: block;
}
main.ticket section.sale form[name=sale_form] .theater-info {
  text-align: left;
  padding: 0 35px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info {
    padding: 0 15px;
  }
}
main.ticket section.sale form[name=sale_form] .theater-info .theater-title {
  font-size: 2.2rem;
  line-height: 3rem;
  font-weight: bold;
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .theater-title {
    font-size: 1.8rem;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .place {
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.ticket section.sale form[name=sale_form] .theater-info .info-table {
  margin: 20px auto 60px;
  max-width: 600px;
  border-collapse: separate;
  border-spacing: 20px;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .info-table {
    border-collapse: collapse;
    max-width: 100%;
    border-spacing: 0px;
    display: block;
    margin: 20px 0 0;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody {
    display: block;
    text-align: center;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr {
    position: relative;
    display: inline-block;
    text-align: left;
    margin-bottom: 20px;
    font-size: 0;
    padding-right: 62px;
  }
}
main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td .ticket-num {
  display: inline-block;
  margin-right: 5px;
  -moz-appearance: textfield;
  font-size: 2rem;
  line-height: 3rem;
  color: #777;
  width: 40px;
  height: 30px;
  text-align: center;
  border: 1px solid #d1b209;
}
main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td .ticket-num::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td .ticket-num::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  appearance: none !important;
  margin: 0 !important;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2.2rem;
    padding-right: 10px;
  }
  main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td.date {
    display: block;
  }
  main.ticket section.sale form[name=sale_form] .theater-info .info-table tbody tr td.number {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 30px;
    padding-right: 0;
  }
}
main.ticket section.sale form[name=sale_form] #selectBtn {
  position: relative;
  display: block;
  width: calc(100% - 70px);
  height: auto;
  margin: 0 auto 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  padding: 10px 0;
  z-index: 1;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] #selectBtn {
    width: calc(100% - 30px);
  }
}
main.ticket section.sale form[name=sale_form] #selectBtn .text {
  position: relative;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: 400;
  color: #fff;
  z-index: 0;
}
main.ticket section.sale form[name=sale_form] #selectBtn .arrow {
  position: relative;
  display: block;
  width: 2rem;
  height: 2rem;
  background-image: url(../images/common/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
  z-index: 0;
}
main.ticket section.sale form[name=sale_form] #selectBtn::after {
  display: none;
}
main.ticket section.sale form[name=sale_form] #selectBtn.active .arrow {
  transform: rotate(-90deg);
}
@media screen and (min-width: 1025px) {
  main.ticket section.sale form[name=sale_form] #selectBtn:hover .text {
    color: #cc117d;
  }
  main.ticket section.sale form[name=sale_form] #selectBtn:hover .arrow {
    background-image: url(../images/common/arrow_pink.svg);
  }
}
main.ticket section.sale form[name=sale_form] .seat-select {
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
main.ticket section.sale form[name=sale_form] .seat-select-option {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content:not(:last-child) {
  margin-right: 60px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .seat-select-option .option-content:not(:last-child) {
    margin-right: 30px;
  }
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content .seat-block {
  width: 30px;
  height: 40px;
  margin-right: 10px;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content .seat-block.vacant {
  border: 2px solid #d1b209;
  background-color: #fff;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content .seat-block.noselect {
  background-color: #ccc;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content .seat-block.selected {
  background-color: #cc117d;
}
main.ticket section.sale form[name=sale_form] .seat-select-option .option-content .seat-label {
  font-size: 1.4rem;
  line-height: 2rem;
}
main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist th {
  background: #fea58b;
  border: solid 1px #ccc;
  color: #fff;
  padding: 10px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist td {
  border: solid 1px #ccc;
  padding: 10px;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
@media screen and (max-width: 640px) {
  main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist td:last-child {
    border-bottom: solid 1px #ccc;
    width: 100%;
  }
  main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist th,
  main.ticket section.sale form[name=sale_form] .seat-select .seat-pricelist td {
    border-bottom: none;
    display: block;
    width: 100%;
  }
}
main.ticket section.sale form[name=sale_form] .seat-selector {
  width: 100%;
  height: 0;
  overflow: hidden;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .seat-selector {
    width: calc(100% - 30px);
  }
}
main.ticket section.sale form[name=sale_form] .seat-selector .leaflet-interactive.disbled {
  cursor: grab;
}
main.ticket section.sale form[name=sale_form] #selectBtn.active ~ .seat-select {
  height: auto;
  transition: 0.5s;
}
main.ticket section.sale form[name=sale_form] #selectBtn.active ~ .seat-selector {
  height: 600px;
  border: 1px solid #555;
  background-color: #fff;
  margin-bottom: 40px;
  transition: 0.5s;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] #selectBtn.active ~ .seat-selector {
    margin: 0 auto 30px;
  }
}
main.ticket section.sale form[name=sale_form] .seatRSS {
  border: 1px solid red;
}
main.ticket section.sale form[name=sale_form] .seatRS {
  border: 1px solid gold;
}
main.ticket section.sale form[name=sale_form] .seatRA {
  border: 1px solid blue;
}
main.ticket section.sale form[name=sale_form] .payment-method {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method {
    padding: 0 15px;
  }
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list {
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list {
    padding: 0;
  }
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li:not(:last-child) {
  margin-bottom: 10px;
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li h4 {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
  text-align: left;
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex {
    display: block;
    text-align: center;
  }
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex h4 {
  width: 130px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex h4 {
    width: 100%;
    text-align: left;
  }
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .common-text {
  font-size: 1.4rem;
  width: calc(100% - 130px);
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .common-text {
    width: 100%;
    text-align: left;
  }
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .common-text .caution {
  font-size: 1.6rem;
  font-weight: bold;
  color: red;
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .bank-info {
  display: inline-block;
  margin-top: 10px;
  margin-left: 130px;
  padding: 20px;
  border: 1px solid #555;
  text-align: left;
}
main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .bank-info .common-text {
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .bank-info .common-text {
    white-space: normal;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .payment-method .method-list li.flex .bank-info {
    margin: 10px 0 0;
  }
}
main.ticket section.sale form[name=sale_form] .ticket-accept {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .ticket-accept {
    padding: 0 15px;
  }
}
main.ticket section.sale form[name=sale_form] .ticket-accept .common-text {
  padding: 0 15px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .ticket-accept .common-text {
    padding: 0;
  }
}
main.ticket section.sale form[name=sale_form] .support-cast {
  display: flex;
  padding: 0 15px;
  align-items: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .support-cast {
    flex-flow: column;
    margin-bottom: 30px;
  }
}
main.ticket section.sale form[name=sale_form] .support-cast label {
  font-size: 2rem;
  font-weight: bold;
  margin-right: 10px;
}
main.ticket section.sale form[name=sale_form] .support-cast .select-content {
  position: relative;
  display: inline-block;
  font-size: 0;
  min-width: 320px;
  border: 1px solid #d1b209;
  background-color: #fff;
}
main.ticket section.sale form[name=sale_form] .support-cast .select-content select {
  width: 100%;
  cursor: pointer;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  line-height: 4rem;
  padding: 0 25px 0 10px;
}
main.ticket section.sale form[name=sale_form] .support-cast .select-content select::-ms-expand {
  display: none;
}
main.ticket section.sale form[name=sale_form] .support-cast .select-content::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  margin: auto 0;
  background-image: url(../images/common/arrow_yellow.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transform: rotate(90deg);
}
main.ticket section.sale form[name=sale_form] .support-cast .input-content {
  position: relative;
  display: inline-block;
  font-size: 0;
  min-width: 120px;
  border: 1px solid #d1b209;
  background-color: #fff;
}
main.ticket section.sale form[name=sale_form] .support-cast .input-content input {
  height: 30px;
  padding: 2px 10px;
}
main.ticket section.sale form[name=sale_form] .form-button {
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .form-button {
    flex-flow: column;
  }
}
main.ticket section.sale form[name=sale_form] .form-button .btn {
  max-width: 320px;
}
main.ticket section.sale form[name=sale_form] .form-button .btn:not(:last-child) {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.sale form[name=sale_form] .form-button .btn:not(:last-child) {
    margin-right: 0px;
    margin-bottom: 20px;
  }
}
main.ticket section.history {
  max-width: 840px;
  margin: 15px auto 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history {
    max-width: 600px;
    margin: 0 auto;
    padding: 15px 15px 50px;
  }
}
main.ticket section.history .section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .section-title {
    margin-bottom: 20px;
  }
}
main.ticket section.history .member-info {
  max-width: 450px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .member-info {
    max-width: 320px;
  }
}
main.ticket section.history .member-info .info-text {
  display: flex;
  align-items: center;
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.ticket section.history .member-info .info-text .label {
  display: inline-block;
  width: 150px;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .member-info .info-text .label {
    width: 80px;
  }
}
main.ticket section.history .member-info .info-text:not(:last-child) {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .member-info .info-text:not(:last-child) {
    margin-bottom: 5px;
  }
}
main.ticket section.history .ticket-content {
  position: relative;
  padding: 30px;
  box-shadow: 0 0 5px #ccc;
  background-color: #fff;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content {
    padding: 50px 15px 30px;
    margin-bottom: 10px;
  }
}
main.ticket section.history .ticket-content .gray-link.receipt {
  position: absolute;
  top: 15px;
  right: 15px;
  margin: 0;
}
main.ticket section.history .ticket-content .title-img {
  display: block;
  width: 220px;
  height: auto;
  margin: 0 auto 10px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .title-img {
    margin: 0 auto 20px;
  }
}
main.ticket section.history .ticket-content .ticket-table {
  border-collapse: separate;
  border-spacing: 0 10px;
  text-align: left;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table {
    display: block;
    border-collapse: collapse;
    border-spacing: 0;
  }
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table tbody {
    display: block;
  }
}
main.ticket section.history .ticket-content .ticket-table tbody tr {
  vertical-align: baseline;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table tbody tr {
    display: block;
  }
  main.ticket section.history .ticket-content .ticket-table tbody tr:not(:last-child) {
    margin-bottom: 10px;
  }
}
main.ticket section.history .ticket-content .ticket-table tbody tr th {
  width: 150px;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table tbody tr th {
    display: block;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.ticket section.history .ticket-content .ticket-table tbody tr td {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table tbody tr td {
    display: block;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }
}
main.ticket section.history .ticket-content .ticket-table tbody tr td.place {
  color: #cc117d;
}
main.ticket section.history .ticket-content .ticket-table tbody tr td.place .color-btn.map {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 3rem;
  width: auto;
  height: 3rem;
  padding: 0 15px;
  border-radius: 0;
  display: inline-block;
  margin-left: 10px;
}
main.ticket section.history .ticket-content .ticket-table tbody tr td.place .color-btn.map::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-table tbody tr td.bank {
    text-align: center;
  }
  main.ticket section.history .ticket-content .ticket-table tbody tr td.bank .text {
    display: block;
    text-align: left;
  }
}
main.ticket section.history .ticket-content .ticket-table tbody tr td .bank-info {
  margin-top: 10px;
  display: inline-block;
  padding: 20px;
  font-size: 1.4rem;
  line-height: 2.5rem;
  white-space: nowrap;
  border: 1px solid #555;
}
main.ticket section.history .ticket-content .ticket-transfer {
  font-size: 1.2rem;
  line-height: 3rem;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-transfer {
    flex-flow: column;
    justify-content: center;
    margin-top: 20px;
  }
}
main.ticket section.history .ticket-content .ticket-transfer .gray-link {
  margin: 0 0 0 10px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .ticket-transfer .gray-link {
    margin: 0;
  }
}
main.ticket section.history .ticket-content .caution-text {
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}
main.ticket section.history .ticket-content .alert-text {
  font-size: 2rem;
  font-weight: bold;
  color: red;
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.history .ticket-content .alert-text {
    font-size: 1.6rem;
    line-height: 2.5rem;
    margin-top: 20px;
  }
}
main.ticket section.history .ticket-content .color-btn {
  max-width: 320px;
  margin: 0 auto;
}
main.ticket section.caution.op-hist {
  padding: 0 0 80px;
}
@media screen and (max-width: 1024px) {
  main.ticket section.caution.op-hist {
    padding: 0 0 60px;
  }
}
@media screen and (min-width: 1025px) {
  main.ticket section.caution.op-hist .caution-content:hover {
    border-color: #f8f8f4;
  }
}
main.ticket.confirm {
  position: relative;
}
main.ticket.confirm section.form {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1024px;
  padding: 50px;
  background-color: #ffffff;
  margin: 50px auto 120px;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 1024px) {
  main.ticket.confirm section.form {
    max-width: 670px;
    padding: 40px 15px;
    margin-top: -50px;
  }
}
main.ticket.confirm section.form form {
  box-shadow: none;
  padding: 0;
}
main.ticket.confirm section.form form .form-content.confirm-item {
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
main.ticket.confirm section.form form .form-content p.caution {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 100%;
}
main.ticket.confirm section.form form .form-content.form-btn {
  flex-flow: row;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  main.ticket.confirm section.form form .form-content.form-btn {
    flex-flow: column;
    align-items: center;
  }
}
main.ticket.confirm section.form form .form-content.form-btn .btn {
  max-width: 320px;
  margin: 0;
}
main.ticket.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  main.ticket.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
main.ticket.confirm section.complete {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1024px;
  padding: 50px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.ticket.confirm section.complete {
    max-width: 670px;
    padding: 40px 15px;
  }
}
main.ticket.confirm section.complete .section-title {
  color: #cc117d;
  margin-bottom: 40px;
}
main.ticket.confirm section.complete .finish-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.ticket.confirm section.complete .finish-text {
    text-align: left;
  }
}
main.ticket.confirm section.complete .color-btn {
  max-width: 320px;
  margin-top: 20px;
}
main.ticket_display {
  background-color: #e0dada;
}
main.ticket_display .back-btn {
  background-color: #fff;
}
main.ticket_display section.display {
  padding: 0 0 200px;
  text-align: center;
}
main.ticket_display section.display .section-title {
  font-size: 2.5rem;
  margin-bottom: 40px;
}
main.ticket_display section.display .catch-text {
  padding: 10px 20px;
  background-color: black;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  display: inline-block;
}
main.ticket_display section.display .caution-text {
  max-width: 540px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin: 20px auto 40px;
  text-align: left;
}
main.ticket_display section.display .caution-text .red {
  color: red;
  font-weight: bold;
}
main.ticket_display section.display .display-ticket {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}
main.ticket_display section.display .display-ticket .display-theater {
  display: flex;
  justify-content: center;
  align-items: center;
}
main.ticket_display section.display .display-ticket .display-theater .theater-img {
  display: block;
  width: 220px;
  padding-right: 10px;
  height: auto;
}
main.ticket_display section.display .display-ticket .display-theater .ticket-num {
  display: inline-block;
  padding-left: 10px;
  font-size: 2.5rem;
  font-weight: bold;
}
main.ticket_display section.display .display-ticket .display-theater .ticket-num .text-pink {
  font-size: 4rem;
}
main.ticket_display section.display .display-ticket .ticket-content {
  margin-top: 20px;
  background-color: #fff;
  padding: 30px;
  box-shadow: 0 0 5px #ccc;
}
main.ticket_display section.display .display-ticket .ticket-content.inacitive {
  background-color: rgba(255, 255, 255, 0.4666666667);
}
main.ticket_display section.display .display-ticket .ticket-content .ticket-info {
  width: 100%;
  margin-bottom: 20px;
}
main.ticket_display section.display .display-ticket .ticket-content .ticket-info li {
  position: relative;
  padding-left: 80px;
}
main.ticket_display section.display .display-ticket .ticket-content .ticket-info li .list-label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 600;
  height: 3rem;
}
main.ticket_display section.display .display-ticket .ticket-content .ticket-info li .list-content {
  font-size: 1.6rem;
  line-height: 3rem;
  text-align: left;
}
main.ticket_display section.display .display-ticket .slide-btn {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 320px;
  height: 50px;
  margin: 0 auto;
  border-radius: 5px;
  outline: 2px solid #555;
  outline-offset: -2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .slide-btn .slide-text {
  font-size: 1.6rem;
  line-height: 50px;
  text-align: center;
  display: block;
  width: 100%;
  height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .slide-btn .slider {
  transition: width 0.3s, border-radius 0.3s, height 0.3s;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  background-color: #278332;
  width: 50px;
  height: 50px;
  box-shadow: -50vw 0 0 50vw #278332;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .slide-btn .slider .material-icons {
  display: block;
  width: 50px;
  height: 30px;
  background-image: url(../images/common/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  object-position: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  cursor: pointer;
}
main.ticket_display section.display .display-ticket .slide-btn .slider .comp-label {
  width: 0;
  overflow: hidden;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  transition: 0.5s;
  opacity: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .slide-btn .slider.unlocked {
  transition: all 0.3s;
  width: inherit;
  left: 0 !important;
  height: inherit;
  justify-content: flex-start;
}
main.ticket_display section.display .display-ticket .slide-btn .slider.unlocked .material-icons {
  background-image: url(../images/common/check.svg);
}
main.ticket_display section.display .display-ticket .slide-btn .slider.unlocked .comp-label {
  width: calc(100% - 50px);
  transition: 0.5s;
  opacity: 1;
}
main.ticket_display section.display .display-ticket .checked-btn {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 50px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .checked-btn .slider {
  position: absolute;
  left: 0;
  background-color: #278332;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
main.ticket_display section.display .display-ticket .checked-btn .slider .material-icons {
  display: block;
  width: 50px;
  height: 30px;
  background-image: url(../images/common/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  object-position: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .checked-btn .slider .comp-label {
  width: calc(100% - 50px);
  overflow: hidden;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn {
  position: relative;
  background-color: white;
  width: 100%;
  max-width: 320px;
  height: 50px;
  margin: 0 auto;
  border-radius: 5px;
  outline: 2px solid #555;
  outline-offset: -2px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slide-text {
  font-size: 1.6rem;
  line-height: 50px;
  text-align: center;
  display: block;
  width: 100%;
  height: 50px;
  font-weight: bold;
  text-transform: uppercase;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider {
  transition: width 0.3s, border-radius 0.3s, height 0.3s;
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  background-color: #278332;
  width: 50px;
  height: 50px;
  box-shadow: -50vw 0 0 50vw #278332;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider .material-icons {
  display: block;
  width: 50px;
  height: 30px;
  background-image: url(../images/common/arrow_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  object-position: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
  cursor: pointer;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider .comp-label {
  width: 0;
  overflow: hidden;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  transition: 0.5s;
  opacity: 0;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider.unlocked {
  transition: all 0.3s;
  width: inherit;
  left: 0 !important;
  height: inherit;
  justify-content: flex-start;
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider.unlocked .material-icons {
  background-image: url(../images/common/check.svg);
}
main.ticket_display section.display .display-ticket .checked-btn .slide-btn .slider.unlocked .comp-label {
  width: calc(100% - 50px);
  transition: 0.5s;
  opacity: 1;
}
main.ticket_display section.display .display-ticket .checked-btn .checked-btn {
  position: relative;
  width: 100%;
  max-width: 320px;
  height: 50px;
  margin: 0 auto;
  border-radius: 5px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
main.ticket_display section.display .display-ticket .checked-btn .checked-btn .slider {
  position: absolute;
  left: 0;
  background-color: #278332;
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
}
main.ticket_display section.display .display-ticket .checked-btn .checked-btn .slider .material-icons {
  display: block;
  width: 50px;
  height: 30px;
  background-image: url(../images/common/check.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  object-fit: contain;
  object-position: center;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket_display section.display .display-ticket .checked-btn .checked-btn .slider .comp-label {
  width: calc(100% - 50px);
  overflow: hidden;
  height: 50px;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  line-height: 50px;
  font-weight: bold;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default;
}
main.ticket.convert {
  position: relative;
  overflow: hidden;
}
main.ticket.convert::before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 99;
}
main.ticket.convert #convertPDF {
  position: relative;
  width: 780px;
  overflow-y: hidden;
  overflow-x: scroll;
}
main.ticket.convert #convertPDF::before {
  content: "";
  display: block;
  padding-top: 70.7113562438%;
}
main.ticket.convert #convertPDF .ticket-content {
  position: absolute;
  top: 0;
  width: 100%;
  padding: 50px 0 30px;
  background: linear-gradient(to left bottom, #cc117d, #d1b209);
  border: 1px solid #ccc;
}
main.ticket.convert #convertPDF .ticket-content .icon {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  width: 60px;
  height: 60px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  border: 5px solid #fff;
}
main.ticket.convert #convertPDF .ticket-content .ticket-info {
  padding: 40px 10px 20px;
  background-color: #fff;
  width: 100%;
}
main.ticket.convert #convertPDF .ticket-content .ticket-info li {
  position: relative;
  padding-left: 80px;
}
main.ticket.convert #convertPDF .ticket-content .ticket-info li .list-label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  font-size: 1.6rem;
  line-height: 3rem;
  font-weight: 600;
  height: 3rem;
}
main.ticket.convert #convertPDF .ticket-content .ticket-info li .list-content {
  font-size: 1.6rem;
  line-height: 3rem;
  text-align: left;
}
main.ticket.convert #convertPDF .ticket-content #ticketQR {
  position: absolute;
  top: 50px;
  right: 10px;
  bottom: 30px;
  width: 100px;
  height: 100px;
  margin: auto 0;
}
main.ticket.convert #convertPDF .ticket-caution {
  position: absolute;
  top: 50%;
  left: 0;
}
main.ticket.convert #convertPDF .ticket-caution ul.caution-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.4rem;
  line-height: 2.5rem;
}
main.ticket.convert #convertPDF .ticket-caution ul.caution-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1.4rem;
  line-height: 2.5rem;
  content: "※";
}
main.ticket.convert section.create-pdf {
  position: relative;
  width: calc(100% - 30px);
  max-width: 840px;
  padding: 30px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.ticket.convert section.create-pdf {
    max-width: 670px;
    padding: 40px 15px;
    margin-top: -50px;
  }
}
main.ticket.convert section.create-pdf .convert-btn {
  font-size: 0;
  text-align: right;
  margin-bottom: 40px;
}
main.ticket.convert section.create-pdf .convert-btn .gray-link {
  position: relative;
  display: inline-block;
  font-size: 0;
  margin: 0;
  padding-left: 40px;
}
main.ticket.convert section.create-pdf .convert-btn .gray-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  main.ticket.convert section.create-pdf .convert-btn .gray-link:hover .text {
    color: #fff;
  }
  main.ticket.convert section.create-pdf .convert-btn .gray-link:hover .icon path {
    fill: #fff;
    transition: 0.5s;
  }
  main.ticket.convert section.create-pdf .convert-btn .gray-link:hover .icon rect {
    fill: #fff;
    transition: 0.5s;
  }
}
main.ticket.convert section.create-pdf .convert-btn .gray-link .icon {
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
  width: 25px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main.ticket.convert section.create-pdf .convert-btn .gray-link .icon path {
  transition: 0.5s;
}
main.ticket.convert section.create-pdf .convert-btn .gray-link .icon rect {
  transition: 0.5s;
}
main.ticket.convert section.create-pdf .convert-btn .gray-link .text {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  transition: 0.5s;
}
main.ticket.convert section.create-pdf #displayPDF {
  position: relative;
  margin-bottom: 30px;
}
main.ticket.convert section.create-pdf #displayPDF::before {
  content: "";
  display: block;
  padding-top: 70.7113562438%;
}
main.ticket.convert section.create-pdf #displayPDF canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 780px;
  max-height: 551.5485787017px;
}
main.ticket.convert section.create-pdf > .link-btn {
  margin: 0 auto;
}

main.receipt section.receipt-form {
  min-height: 100vh;
  padding: 50px;
}
@media screen and (max-width: 1024px) {
  main.receipt section.receipt-form {
    padding: 40px 15px 60px;
  }
}
main.receipt section.receipt-form .section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.receipt section.receipt-form .section-title {
    margin-bottom: 20px;
  }
}
main.receipt section.receipt-form .color-btn {
  margin: 0 auto;
  max-width: 320px;
}
main.receipt section.receipt-form form .form-content {
  flex-flow: column;
  align-items: center;
  justify-content: center;
}
main.receipt section.receipt-form form .form-content .label-style {
  width: 100%;
  max-width: 450px;
  text-align: center;
}
main.receipt section.receipt-form form .form-content .text-style {
  width: 100%;
  max-width: 450px;
}
main.receipt.confirm {
  position: relative;
}
main.receipt.confirm::before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 99;
}
main.receipt.confirm section.form {
  position: relative;
  width: calc(100% - 30px);
  max-width: 840px;
  padding: 50px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.form {
    max-width: 670px;
    padding: 40px 15px;
    margin-top: -50px;
  }
}
main.receipt.confirm section.form .section-title {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.form .section-title {
    margin-bottom: 20px;
  }
}
main.receipt.confirm section.form form {
  box-shadow: none;
  padding: 0;
}
main.receipt.confirm section.form form .form-content.confirm-item {
  width: 100%;
  max-width: 640px;
  margin-right: auto;
  margin-left: auto;
}
main.receipt.confirm section.form form .form-content.form-btn {
  flex-flow: row;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.form form .form-content.form-btn {
    flex-flow: column;
  }
}
main.receipt.confirm section.form form .form-content.form-btn .btn {
  max-width: 320px;
  margin: 0;
}
main.receipt.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
  margin: 0 20px 0 0;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.form form .form-content.form-btn .btn:not(:last-child) {
    margin: 0 0 20px 0;
  }
}
main.receipt.confirm section.complete {
  position: relative;
  width: calc(100% - 30px);
  max-width: 1024px;
  padding: 50px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.complete {
    max-width: 670px;
    padding: 40px 15px;
  }
}
main.receipt.confirm section.complete .section-title {
  color: #cc117d;
  margin-bottom: 40px;
}
main.receipt.confirm section.complete .finish-text {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.receipt.confirm section.complete .finish-text {
    text-align: left;
  }
}
main.receipt.convert {
  position: relative;
  overflow: hidden;
}
main.receipt.convert::before {
  position: fixed;
  content: "";
  display: block;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 99;
}
main.receipt.convert .convert-pdf {
  position: relative;
  width: 780px;
  overflow-y: hidden;
  overflow-x: scroll;
}
main.receipt.convert .convert-pdf::before {
  content: "";
  display: block;
  padding-top: 70.7113562438%;
}
main.receipt.convert .convert-pdf .pdf-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #555;
  padding: 10px;
  display: grid;
  align-items: flex-end;
  grid-template-rows: 10% 20% 40% 30%;
  grid-template-columns: 1fr 1fr;
}
main.receipt.convert .convert-pdf .pdf-content p {
  position: relative;
  font-size: 1.6rem;
  padding: 4px 0;
}
@media screen and (max-width: 1024px) {
  main.receipt.convert .convert-pdf .pdf-content p {
    font-size: 1.4rem;
    padding: 3px 0;
  }
}
main.receipt.convert .convert-pdf .pdf-content p.line {
  border-bottom: 1px solid #555;
}
main.receipt.convert .convert-pdf .pdf-content p.text-right {
  text-align: right;
}
main.receipt.convert .convert-pdf .pdf-content p span.label {
  position: absolute;
  top: 4px;
  left: 0px;
  font-size: 1.6rem;
  font-weight: 400;
  display: inline-block;
}
main.receipt.convert .convert-pdf .pdf-content p span.end-label {
  position: absolute;
  top: 4px;
  right: 0px;
  display: inline-block;
}
main.receipt.convert .convert-pdf .pdf-content .grid-column-span {
  grid-column: 1/3;
}
main.receipt.convert .convert-pdf .pdf-content .reissue {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 14px;
  padding: 5px;
  border: 1px solid #555;
}
main.receipt.convert .convert-pdf .pdf-content h2 {
  width: 100%;
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
  grid-row: 1/2;
}
@media screen and (max-width: 1024px) {
  main.receipt.convert .convert-pdf .pdf-content h2 {
    font-size: 2.2rem;
  }
}
main.receipt.convert .convert-pdf .pdf-content .name {
  width: 85%;
  font-size: 2rem;
}
main.receipt.convert .convert-pdf .pdf-content .sub-info {
  width: 85%;
  margin-left: auto;
}
main.receipt.convert .convert-pdf .pdf-content .sub-info p:not(:first-child) {
  margin-top: 5px;
}
main.receipt.convert .convert-pdf .pdf-content .price-info {
  width: 45%;
  margin: 0 auto;
}
main.receipt.convert .convert-pdf .pdf-content .price-info .price {
  position: relative;
  font-weight: 500;
  font-size: 2.6rem;
}
@media screen and (max-width: 1024px) {
  main.receipt.convert .convert-pdf .pdf-content .price-info .price {
    font-size: 2.4rem;
  }
}
main.receipt.convert .convert-pdf .pdf-content .price-tax {
  width: 200px;
}
main.receipt.convert .convert-pdf .pdf-content .publisher {
  position: relative;
  text-align: right;
}
main.receipt.convert .convert-pdf .pdf-content .publisher .stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 80px;
  height: auto;
  z-index: 1;
}
main.receipt.convert .convert-pdf .pdf-content .publisher p {
  position: relative;
  text-align: left;
  padding-left: 3.5em;
  display: inline-block;
  z-index: 0;
}
main.receipt.convert section.create-pdf {
  position: relative;
  width: calc(100% - 30px);
  max-width: 840px;
  padding: 30px;
  background-color: #ffffff;
  margin: 0 auto;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  main.receipt.convert section.create-pdf {
    max-width: 670px;
    padding: 40px 15px;
    margin-top: -50px;
  }
}
main.receipt.convert section.create-pdf .convert-btn {
  font-size: 0;
  text-align: right;
  margin-bottom: 40px;
}
main.receipt.convert section.create-pdf .convert-btn .gray-link {
  position: relative;
  display: inline-block;
  font-size: 0;
  margin: 0;
  padding-left: 40px;
}
main.receipt.convert section.create-pdf .convert-btn .gray-link:not(:last-child) {
  margin-right: 20px;
}
@media screen and (min-width: 1025px) {
  main.receipt.convert section.create-pdf .convert-btn .gray-link:hover .text {
    color: #fff;
  }
  main.receipt.convert section.create-pdf .convert-btn .gray-link:hover .icon path {
    fill: #fff;
    transition: 0.5s;
  }
  main.receipt.convert section.create-pdf .convert-btn .gray-link:hover .icon rect {
    fill: #fff;
    transition: 0.5s;
  }
}
main.receipt.convert section.create-pdf .convert-btn .gray-link .icon {
  position: absolute;
  top: 0;
  left: 10px;
  display: block;
  width: 25px;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main.receipt.convert section.create-pdf .convert-btn .gray-link .icon path {
  transition: 0.5s;
}
main.receipt.convert section.create-pdf .convert-btn .gray-link .icon rect {
  transition: 0.5s;
}
main.receipt.convert section.create-pdf .convert-btn .gray-link .text {
  display: inline-block;
  font-size: 1.4rem;
  line-height: 3rem;
  transition: 0.5s;
}
main.receipt.convert section.create-pdf #displayPDF {
  position: relative;
  margin-bottom: 30px;
}
main.receipt.convert section.create-pdf #displayPDF::before {
  content: "";
  display: block;
  padding-top: 70.7113562438%;
}
main.receipt.convert section.create-pdf #displayPDF canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 780px;
  max-height: 551.5485787017px;
}
main.receipt.convert section.create-pdf > .link-btn {
  margin: 0 auto;
}

main.mypage h2.section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.mypage h2.section-title {
    margin-bottom: 20px;
  }
}
main.mypage p.common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.mypage .pass-wrap {
  display: inline-block;
  padding-right: 20px;
  position: relative;
}
main.mypage .pass-wrap input.pass {
  display: inline-block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  padding: 0;
  border: 0;
  z-index: 0;
}
main.mypage .pass-wrap input.pass::-ms-reveal {
  visibility: hidden;
}
main.mypage .pass-wrap .pass-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 20px;
  height: 100%;
  margin: auto 0;
  z-index: 1;
  cursor: pointer;
}
main.mypage .pass-wrap .pass-btn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main.mypage section.regist-content {
  padding: 0 50px 100px;
  width: 100%;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.mypage section.regist-content {
    padding: 15px 15px 40px;
  }
}
main.mypage section.regist-content .update-content .section-subtitle {
  color: red;
  margin-bottom: 10px;
}
main.mypage section.regist-content .update-content .section-subtitle span {
  color: inherit;
}
@media screen and (max-width: 1024px) {
  main.mypage section.regist-content .update-content .section-subtitle {
    font-size: 1.8rem;
    line-height: 2.6rem;
  }
}
main.mypage section.regist-content .update-content .common-text {
  text-align: center;
}
main.mypage section.regist-content .update-content .color-btn {
  max-width: 320px;
  margin: 40px auto;
}
main.mypage section.regist-content .table-wrap {
  padding: 60px 60px 30px;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6666666667);
  box-shadow: 0 0 10px #ccc;
  max-width: 840px;
  margin: 0 auto;
}
main.mypage section.regist-content .table-wrap .gray-link {
  margin-top: 30px;
}
main.mypage section.regist-content .link-btn {
  margin: 0 auto;
}
main.mypage section.regist-content .link-btn::after {
  display: none;
}
main.mypage section.purchase-history {
  padding: 100px 50px;
  width: 100%;
  background-color: #f8f8f4;
}
@media screen and (max-width: 1024px) {
  main.mypage section.purchase-history {
    padding: 40px 15px;
  }
}
main.mypage section.purchase-history .history-content-wrap {
  display: grid;
  width: 100%;
  max-width: 1024px;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 60px;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1024px) {
  main.mypage section.purchase-history .history-content-wrap {
    grid-template-columns: 1fr;
    gap: 15px 0;
    padding: 15px;
    background-color: #d1b209;
    max-width: 370px;
    margin: 0 auto 40px;
  }
}
main.mypage section.purchase-history .history-content-wrap .history-content {
  border: 10px solid #d1b209;
  padding: 40px 15px;
  text-align: center;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  main.mypage section.purchase-history .history-content-wrap .history-content {
    border: 0;
    padding: 20px 10px;
  }
}
main.mypage section.purchase-history .history-content-wrap .history-content .title {
  display: block;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
}
main.mypage section.purchase-history .history-content-wrap .history-content .title-img {
  display: inline-block;
  width: 85%;
  max-width: 450px;
  height: auto;
}
main.mypage section.purchase-history .history-content-wrap .history-content .info-table {
  text-align: left;
  margin: 10px 0 0;
}
main.mypage section.purchase-history .history-content-wrap .history-content .info-table tbody tr th {
  font-size: 1.4rem;
  font-weight: normal;
  width: 57px;
  vertical-align: top;
}
main.mypage section.purchase-history .history-content-wrap .history-content .info-table tbody tr th::after {
  content: "：";
}
main.mypage section.purchase-history .history-content-wrap .history-content .info-table tbody tr td {
  font-size: 1.4rem;
  font-weight: normal;
  vertical-align: top;
}
main.mypage section.purchase-history .history-content-wrap .history-content .color-btn {
  margin: 10px auto 0;
  max-width: 320px;
}
main.mypage section.premium-news {
  padding: 100px 50px;
  background-image: url(../images/common/premium_back.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news {
    padding: 40px 15px;
  }
}
main.mypage section.premium-news .news-content-wrap {
  width: 100%;
  max-width: 1024px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap {
    max-width: 840px;
    margin: 0 auto 30px;
    grid-template-columns: 1fr;
  }
}
main.mypage section.premium-news .news-content-wrap .news-content {
  position: relative;
  font-size: 0;
  text-align: left;
  padding: 15px;
  background-color: #ffffff;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap .news-content:not(:last-child) {
    margin-bottom: 30px;
  }
}
main.mypage section.premium-news .news-content-wrap .news-content .label {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2rem;
  padding: 0 1rem;
  border-radius: 1.5rem;
  color: #fff;
  background-color: #d1b209;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap .news-content .label {
    text-align: center;
    width: 100px;
    height: 2rem;
    padding: 0;
  }
}
main.mypage section.premium-news .news-content-wrap .news-content .date {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 2rem;
  margin-left: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap .news-content .date {
    width: calc(100% - 100px);
    padding-left: 10px;
    margin-left: 0;
  }
}
main.mypage section.premium-news .news-content-wrap .news-content .news-text {
  font-size: 1.4rem;
  line-height: 2.2rem;
  height: 6.6rem;
  margin-top: 15px;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap .news-content .news-text {
    display: inline-block;
    width: calc(100% - 100px);
    padding-left: 10px;
    margin-top: 0;
  }
}
@media screen and (max-width: 1024px) {
  main.mypage section.premium-news .news-content-wrap .news-content .img-wrapper_4_3 {
    display: inline-block;
    width: 100px;
    height: 6.6rem;
  }
  main.mypage section.premium-news .news-content-wrap .news-content .img-wrapper_4_3::before {
    display: none;
  }
}
main.mypage section.premium-news .pagination-number {
  color: #ffffff;
}
main.mypage section.premium-news .pagination-number.active {
  color: #cc117d;
}
main.mypage section.unsubscribe {
  padding: 50px 50px 120px;
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  main.mypage section.unsubscribe {
    padding: 40px 15px;
  }
}
main.mypage section.unsubscribe .gray-link {
  margin: 0;
}
main.mypage section.unsubscribe .gray-link:not(:last-child) {
  margin-bottom: 20px;
}

main.guide section.guide-content-wrap {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.guide section.guide-content-wrap {
    padding: 15px;
  }
  main.guide section.guide-content-wrap .section-title {
    margin-bottom: 30px;
  }
}
main.guide section.guide-content-wrap .guide-content {
  padding: 40px 0;
  border-top: 1px solid #d1b209;
}
main.guide section.guide-content-wrap .guide-content h3 {
  margin-bottom: 20px;
  font-size: 2.2rem;
  line-height: 3rem;
  text-align: left;
}
main.guide section.guide-content-wrap .guide-content h4 {
  font-size: 1.8rem;
  line-height: 2.5rem;
  font-weight: bold;
  text-align: left;
}
main.guide section.guide-content-wrap .guide-content p.common-text {
  font-size: 1.6rem;
  line-height: 2.5rem;
}
main.guide section.guide-content-wrap .guide-content p.common-text.half-mb {
  margin-bottom: 1.5rem;
}
main.guide section.guide-content-wrap .guide-content p.common-text.non-mb {
  margin-bottom: 0 !important;
}
main.guide section.guide-content-wrap .guide-content p.common-text:not(:last-child) {
  margin-bottom: 2.5rem;
}
main.guide section.guide-content-wrap .guide-content a {
  display: inline;
  color: inherit;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list {
  list-style-type: none;
  counter-reset: number;
  /* カウンターを初期化 */
}
main.guide section.guide-content-wrap .guide-content ol.circle-list.mb {
  margin-bottom: 2.5rem;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  line-height: 2.5rem;
  height: auto;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list li::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* beforeでカウンターを作成 */
  content: counter(number);
  counter-increment: number;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  width: 18px;
  height: 2.5rem;
  padding: 3.5px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list li::after {
  /* afterで○を作る */
  content: "";
  /* 配置を調整 */
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  /* ○を作る */
  width: 18px;
  height: 18px;
  margin: 3.5px 0;
  border: 1px solid #000;
  border-radius: 50%;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list li.non-list::before {
  display: none;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list li.non-list::after {
  display: none;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list.pink-item li {
  padding: 1rem 1.5em;
  height: auto;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list.pink-item li::before {
  top: 1rem;
  color: #cc117d;
}
main.guide section.guide-content-wrap .guide-content ol.circle-list.pink-item li::after {
  top: 1rem;
  border-color: #cc117d;
}

main.about {
  background-color: #f8f8f4;
}
main.about .content-label {
  position: absolute;
  top: -60px;
  left: 50%;
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 6rem;
  padding: 0 50px 0 80px;
  background-color: #ffffff;
  border-radius: 15px 15px 0 0;
  box-shadow: 0 0 5px #ccc;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main.about .content-label {
    padding: 0 30px 0 60px;
  }
}
main.about .content-label .icon {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50px;
  display: block;
  width: auto;
  height: 25px;
  margin: auto 0;
}
@media screen and (max-width: 1024px) {
  main.about .content-label .icon {
    left: 30px;
  }
}
main.about .content-label::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 10px;
  background-color: #ffffff;
  z-index: 5;
}
main.about h2 {
  font-size: 3.2rem;
  text-align: center;
}
main.about h2.section-title {
  font-size: 2.4rem;
}
@media screen and (max-width: 1024px) {
  main.about h2 {
    font-size: 2.8rem;
  }
  main.about h2.section-title {
    font-size: 2.4rem;
  }
}
main.about section.premium {
  padding: 0px 50px 60px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium {
    padding: 15px 15px 40px;
  }
}
main.about section.premium .section-title {
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .section-title {
    margin-bottom: 15px;
  }
}
main.about section.premium .page-catch {
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
  margin-bottom: 110px;
}
main.about section.premium .benefit-subcatch {
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .benefit-subcatch {
    margin-bottom: 40px;
  }
}
main.about section.premium .benefit {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  background-color: #ffffff;
  text-align: center;
  padding: 40px 0 60px;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .benefit {
    padding: 20px 15px 40px;
    max-width: 600px;
  }
}
main.about section.premium .benefit .benefit-content-wrap {
  display: grid;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .benefit .benefit-content-wrap {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 270px;
  }
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon {
  position: relative;
  width: 100%;
  border-radius: 50%;
  border: 10px solid #d1b209;
  height: auto;
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon::after {
  position: relative;
  content: "";
  display: block;
  padding-top: 100%;
  z-index: 0;
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon > * {
  position: absolute;
  z-index: 2;
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon .label {
  top: 30px;
  left: 50%;
  margin: 0 auto;
  display: inline-block;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 3.5rem;
  padding: 0 30px;
  color: #ffffff;
  height: 3.5rem;
  border-radius: 1.6rem;
  background-color: #278332;
  transform: translateX(-50%);
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon h3 {
  top: 7.5rem;
  width: 100%;
  text-align: center;
  font-size: 2.2rem;
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon .icon-img {
  bottom: 30px;
  left: 50%;
  margin: 0 auto;
  display: inline-block;
  width: auto;
  height: 60px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  main.about section.premium .benefit .benefit-content-wrap .benefit-content .content-icon .icon-img {
    height: 65px;
  }
}
main.about section.premium .benefit .benefit-content-wrap .benefit-content .benefit-text {
  text-align: left;
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-top: 20px;
}
main.about section.premium .benefit .benefit-catch {
  margin-top: 60px;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .benefit .benefit-catch {
    display: inline-block;
    text-align: left;
    font-size: 1.8rem;
  }
}
main.about section.premium .price {
  width: 100%;
  max-width: 1024px;
  margin: 60px auto 0;
  background-color: #fff5bf;
  padding: 60px 50px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price {
    margin: 40px auto 0;
    max-width: 600px;
    padding: 40px 15px;
    box-shadow: 0 0 5px #ccc;
  }
}
main.about section.premium .price .benefit-subcatch .strong {
  font-size: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .benefit-subcatch .strong {
    font-size: 1.8rem;
  }
}
main.about section.premium .price .price-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: separate;
  border-spacing: 0 5px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table {
    max-width: 320px;
    display: block;
    border-spacing: 0;
  }
  main.about section.premium .price .price-table tbody {
    display: block;
  }
}
main.about section.premium .price .price-table tr {
  position: relative;
  background-color: #ffffff;
  vertical-align: middle;
  text-align: center;
  box-shadow: 0 0 5px #ccc;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr {
    position: relative;
    display: block;
    padding: 20px 15px;
    margin-bottom: 30px;
  }
}
main.about section.premium .price .price-table tr .label {
  width: 110px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .label {
    position: absolute;
    /* img/2 + 20px */
    top: 50px;
    left: 50px;
    display: block;
    width: auto;
    line-height: 3rem;
    height: 3rem;
    transform: translateY(-1.5rem);
  }
}
main.about section.premium .price .price-table tr .icon-wrap {
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .icon-wrap {
    display: block;
    margin-bottom: 20px;
  }
}
main.about section.premium .price .price-table tr .icon-wrap img {
  display: inline;
  width: auto;
  height: 80px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .icon-wrap img {
    height: 60px;
  }
}
main.about section.premium .price .price-table tr .icon-wrap .caption {
  display: block;
  font-size: 1.4rem;
}
main.about section.premium .price .price-table tr .multiplication {
  font-size: 1.5rem;
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .multiplication {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2rem;
    padding: 0;
  }
}
main.about section.premium .price .price-table tr .price-info {
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .price-info {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 2rem;
  }
}
main.about section.premium .price .price-table tr .price-benefit {
  padding: 20px 30px;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .price-benefit {
    display: block;
    padding: 0 15px;
    margin-top: 20px;
  }
}
main.about section.premium .price .price-table tr .price-benefit-block {
  max-width: 230px;
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
  background-color: #278332;
  font-size: 2rem;
  line-height: 2.4rem;
  font-weight: bold;
  color: #ffffff;
}
main.about section.premium .price .price-table tr .price-benefit-block .strong {
  font-size: 2.4rem;
  line-height: 3rem;
  color: #ffffff;
}
main.about section.premium .price .price-table tr .arrow-bottom {
  position: absolute;
  right: 0;
  bottom: -45px;
  display: block;
  height: 90px;
  width: 90px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-table tr .arrow-bottom {
    height: 70px;
    width: 70px;
    left: 0;
    margin: 0 auto;
  }
}
main.about section.premium .price .price-table tr .arrow-bottom svg {
  transform: rotate(30deg);
}
main.about section.premium .price .price-table tr .arrow-bottom svg path {
  stroke: #fff;
  stroke-width: 2px;
}
main.about section.premium .price .price-benefit-catch {
  text-align: center;
  margin-top: 30px;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-benefit-catch {
    font-size: 1.4rem;
    line-height: 2.5rem;
    margin-top: 0px;
  }
}
main.about section.premium .price .price-benefit-catch .strong {
  font-size: 3rem;
  line-height: 4.2rem;
}
@media screen and (max-width: 1024px) {
  main.about section.premium .price .price-benefit-catch .strong {
    font-size: 2.2rem;
    line-height: 3rem;
  }
}
main.about section.membership {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 60px 50px 60px;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.about section.membership {
    flex-flow: column;
    align-items: flex-start;
    justify-content: center;
    padding: 60px 15px;
    max-width: 630px;
  }
}
main.about section.membership .content-label {
  padding: 0 50px;
}
main.about section.membership .due {
  padding: 70px 50px 60px;
  position: relative;
  box-shadow: 0 0 5px #ccc;
  width: calc(50% - 10px);
  background-color: #fff;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due {
    width: 100%;
    padding: 20px 15px 30px;
  }
}
main.about section.membership .due h2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}
main.about section.membership .due .due-price {
  display: flex;
  flex-flow: column;
}
main.about section.membership .due .due-price .before {
  position: relative;
  font-size: 2rem;
  line-height: 3rem;
  font-weight: bold;
  padding-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due .due-price .before {
    font-size: 1.6rem;
    line-height: 2.5rem;
    padding-bottom: 50px;
  }
}
main.about section.membership .due .due-price .before::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 30px;
  background: url(../images/about_premium/arrowb_2.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due .due-price .before::after {
    bottom: 10px;
  }
}
main.about section.membership .due .due-price .before .down {
  position: relative;
}
main.about section.membership .due .due-price .before .down::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: url(../images/about_premium/batsu.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
main.about section.membership .due .due-price .after {
  font-size: 4rem;
  line-height: 5.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due .due-price .after {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
}
main.about section.membership .due .due-price .after .small {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due .due-price .after .small {
    font-size: 1.6rem;
  }
}
main.about section.membership .due .due-info {
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .due .due-info {
    margin-top: 20px;
    text-align: left;
    display: inline-block;
  }
}
main.about section.membership .admission {
  position: relative;
  box-shadow: 0 0 5px #ccc;
  background-color: #fff;
  padding: 70px 50px 60px;
  width: calc(50% - 10px);
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .admission {
    width: 100%;
    padding: 20px 15px 30px;
    margin-top: 100px;
  }
}
main.about section.membership .admission ul.step {
  text-align: left;
  display: inline-block;
  margin-bottom: 60px;
}
main.about section.membership .admission ul.step li {
  font-size: 1.6rem;
  line-height: 3rem;
}
@media screen and (max-width: 1024px) {
  main.about section.membership .admission ul.step {
    margin-bottom: 20px;
  }
}
main.about section.membership .admission .admission-info {
  font-size: 1.4rem;
  line-height: 2.2rem;
  margin-bottom: 10px;
}
main.about section.membership .admission .color-btn {
  max-width: 320px;
  margin: 0 auto;
}
main.about section.recommend {
  padding: 150px 50px;
  background-image: url(../images/about_premium/premium_back2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  main.about section.recommend {
    padding: 200px 15px;
  }
}
main.about section.recommend h2 {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  main.about section.recommend h2 {
    font-size: 2.2rem;
    margin-bottom: 60px;
  }
}
main.about section.recommend .link-btn {
  border-color: #d1b209;
  margin: 0 auto;
}

main.question .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.question .section-title {
    margin-bottom: 20px;
  }
}
main.question section.question-wrap {
  padding: 0 0 80px;
}
@media screen and (max-width: 1024px) {
  main.question section.question-wrap {
    padding: 0 0 40px;
  }
}
main.question section.question-wrap .searchbox {
  background-color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.question section.question-wrap .searchbox {
    padding: 20px;
  }
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap .searchbox {
    margin-bottom: 0;
  }
}
main.question section.question-wrap .searchbox input[type=text] {
  display: block;
  width: 430px;
  padding: 15px;
  font-size: 1.4rem;
  line-height: 2rem;
  border: 0;
  border-radius: 5px 0 0 5px;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap .searchbox input[type=text] {
    width: calc(100% - 50px);
  }
}
main.question section.question-wrap .searchbox #searchBtn {
  display: block;
  padding: 12px;
  background-color: #c7c7c7;
  width: 50px;
  height: 50px;
  border-radius: 0 5px 5px 0;
  border: 0;
  cursor: pointer;
}
main.question section.question-wrap .searchbox #searchBtn img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
main.question section.question-wrap .label-opener {
  position: relative;
  display: none;
  pointer-events: none;
  margin-bottom: 2px;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap .label-opener {
    display: block;
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: bold;
    padding: 10px 0 28px;
    background-color: #cc117d;
    cursor: pointer;
    pointer-events: auto;
  }
  main.question section.question-wrap .label-opener::after {
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    margin: 0 auto;
    background-image: url(../images/common/arrow_white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    transition: 0.5s;
  }
  main.question section.question-wrap .label-opener.active::after {
    transition: 0.5s;
    transform: rotate(-90deg);
  }
}
main.question section.question-wrap #questionLinks {
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  font-size: 0;
  flex-wrap: wrap;
}
@media screen and (max-width: 1024px) {
  main.question section.question-wrap #questionLinks {
    padding: 0 15px;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionLinks {
    height: 0;
    overflow: hidden;
    padding: 0 30px;
    flex-flow: column;
    transition: 0.5s;
  }
  main.question section.question-wrap #questionLinks.active {
    height: auto;
    transition: 0.5s;
  }
}
main.question section.question-wrap #questionLinks button {
  position: relative;
  display: inline-block;
  padding: 10px 15px 10px 35px;
  color: #ffffff;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5rem;
  border: 0;
  outline: 0;
  background-color: #95989a;
  margin-bottom: 2px;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionLinks button {
    width: 100%;
    text-align: left;
  }
}
main.question section.question-wrap #questionLinks button.active {
  background-color: #cc117d;
}
main.question section.question-wrap #questionLinks button:not(:last-child) {
  margin-right: 2px;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionLinks button:not(:last-child) {
    margin-right: 0;
  }
}
main.question section.question-wrap #questionLinks button::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 15px;
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  margin: auto 0;
  background-image: url(../images/common/arrow_white.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
main.question section.question-wrap #questionLinks .search-result {
  width: 100%;
  text-align: left;
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionLinks .search-result {
    margin-top: 10px;
  }
}
main.question section.question-wrap #questionContentWrap {
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.question section.question-wrap #questionContentWrap {
    padding: 0 15px;
  }
}
main.question section.question-wrap #questionContentWrap .question-content {
  margin-top: 80px;
  display: none;
}
@media screen and (max-width: 1024px) {
  main.question section.question-wrap #questionContentWrap .question-content {
    margin-top: 40px;
  }
}
main.question section.question-wrap #questionContentWrap .question-content.active {
  display: block;
}
main.question section.question-wrap #questionContentWrap .question-content .section-subtitle {
  margin-bottom: 30px;
}
main.question section.question-wrap #questionContentWrap .question-content details {
  background-color: #fdf7ea;
  border: 1px solid #95989a;
}
main.question section.question-wrap #questionContentWrap .question-content details:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionContentWrap .question-content details:not(:last-child) {
    margin-bottom: 10px;
  }
}
main.question section.question-wrap #questionContentWrap .question-content details summary {
  position: relative;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 2.5rem;
  padding: 12px 30px;
  background-color: #ffffff;
  cursor: pointer;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionContentWrap .question-content details summary {
    font-size: 1.4rem;
  }
}
main.question section.question-wrap #questionContentWrap .question-content details summary::before {
  position: absolute;
  top: 0;
  left: 10px;
  bottom: 0;
  content: "Q";
  display: block;
  font-size: 2rem;
  font-weight: bold;
  line-height: 3rem;
  color: #cc117d;
  height: 3rem;
  margin: auto 0;
}
main.question section.question-wrap #questionContentWrap .question-content details summary::after {
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  content: "";
  display: block;
  width: 30px;
  height: 5rem;
  background-image: url(../images/common/plus.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  margin: auto 0;
}
main.question section.question-wrap #questionContentWrap .question-content details summary::-webkit-details-marker {
  display: none;
}
main.question section.question-wrap #questionContentWrap .question-content details[open] summary {
  border-bottom: 1px solid #95989a;
}
main.question section.question-wrap #questionContentWrap .question-content details .detail-text {
  padding: 12px 30px;
}
main.question section.question-wrap #questionContentWrap .question-content details .detail-text p {
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.5rem;
}
main.question section.question-wrap #questionContentWrap .question-content details .detail-text p a {
  display: inline;
  color: #cc117d;
}
@media screen and (max-width: 599px) {
  main.question section.question-wrap #questionContentWrap .question-content details .detail-text p {
    font-size: 1.4rem;
  }
}
main.question section.caution {
  padding: 0 0 120px;
}
@media screen and (max-width: 1024px) {
  main.question section.caution {
    padding: 0 0 40px;
  }
}

@media screen and (min-width: 1025px) {
  main.password {
    min-height: 100vh;
  }
}
main.password .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.password .section-title {
    margin-bottom: 20px;
  }
}
main.password section.resetting {
  padding: 50px;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.password section.resetting {
    padding: 15px 15px 40px;
  }
}
main.password section.resetting .resetting-catch {
  font-size: 1.6rem;
  line-height: 2.5rem;
  margin-bottom: 40px;
}
main.password section.resetting .color-btn {
  max-width: 320px;
  margin: 0 auto;
}
main.password section.resetting .form-content .label-style .rule {
  font-size: 1.2rem;
}
@media screen and (max-width: 1024px) {
  main.password section.resetting .form-content .label-style .rule {
    margin-left: 10px;
  }
}
main.password section.change {
  padding: 50px;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.password section.change {
    padding: 15px 15px 40px;
  }
}
@media screen and (max-width: 1024px) {
  main.password section.change_thanks {
    padding: 0 15px;
  }
}
main.password section.change_thanks .finish-text {
  text-align: center;
  margin: 80px 0;
}
main.password section.change_thanks .link-btn {
  margin: 0 auto;
}

main.unsubscribe section.form {
  padding: 0 50px 100px;
  width: 100%;
  max-width: 1124px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.unsubscribe section.form {
    padding: 15px 15px 40px;
  }
}
main.unsubscribe section.form .section-title {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  main.unsubscribe section.form .section-title {
    margin-bottom: 20px;
  }
}
main.unsubscribe section.form .form-catch {
  font-size: 1.6rem;
  line-height: 2.5rem;
  max-width: 840px;
  margin: 0 auto 30px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.unsubscribe section.form .form-catch {
    text-align: left;
  }
}
main.unsubscribe section.form form .form-content p.text-style {
  border: 1px solid #000;
}
main.unsubscribe section.form form .form-content .caution {
  width: 100%;
  font-size: 1.6rem;
  line-height: 2.5rem;
  font-weight: bold;
  color: red;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  main.unsubscribe section.form form .form-content .caution {
    text-align: left;
  }
}
main.unsubscribe section.form form .form-content.display-flex .btn:not(:last-child) {
  margin: 0 5px 0 0;
}
main.unsubscribe section.form form .form-content.display-flex .submit-btn::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  main.unsubscribe section.form form .form-content.display-flex .btn:not(:last-child) {
    margin: 0 0 10px 0;
  }
}

main.aboutus {
  background-color: #0a0a0a;
}
main.aboutus .section-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
main.aboutus .common-text {
  font-size: 1.4rem;
  line-height: 2.2rem;
  text-align: left;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(100px);
    transition-duration: 1s;
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
    transition-duration: 1s;
  }
}
main.aboutus section.top {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.top {
    width: 100vw;
    height: 75vw;
  }
}
main.aboutus section.top .back-btn {
  position: absolute;
  top: 50px;
  left: 100px;
  margin: 0;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.top .back-btn {
    top: 15px;
    left: 15px;
    margin: 0;
  }
}
main.aboutus section.top .section-bg {
  object-position: top;
}
main.aboutus section.top .title-wrap {
  position: relative;
  text-align: center;
  z-index: 1;
}
main.aboutus section.top .title-wrap .sub-text {
  margin-bottom: 20px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
}
main.aboutus section.top .title-wrap .logo {
  display: block;
  width: 60vw;
  max-width: 500px;
  height: auto;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.top .title-wrap .logo {
    width: 80vw;
  }
}
main.aboutus section.catch {
  position: relative;
  top: -40px;
  padding: 120px 0;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.catch {
    top: -20px;
    padding: 80px 0;
  }
}
main.aboutus section.catch .section-bg {
  opacity: 0.8;
}
main.aboutus section.catch .catch-text {
  position: relative;
  width: 100%;
  max-width: 840px;
  margin: 0 auto;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.catch .catch-text {
    padding: 0 30px;
    text-align: left;
  }
}
main.aboutus section.catch .catch-text .row {
  font-size: 2.2rem;
  line-height: 4rem;
  color: #fff;
}
@media screen and (min-width: 1025px) {
  main.aboutus section.catch .catch-text .row.center {
    text-align: center;
  }
  main.aboutus section.catch .catch-text .row.right {
    text-align: right;
  }
  main.aboutus section.catch .catch-text .row.left {
    text-align: left;
  }
  main.aboutus section.catch .catch-text .row.fadein {
    opacity: 0;
  }
  main.aboutus section.catch .catch-text .row.fadein.active:nth-child(1) {
    animation: fadeIn 2s forwards;
  }
  main.aboutus section.catch .catch-text .row.fadein.active:nth-child(2) {
    animation: fadeIn 2s forwards 0.6s;
  }
  main.aboutus section.catch .catch-text .row.fadein.active:nth-child(3) {
    animation: fadeIn 2s forwards 1.2s;
  }
  main.aboutus section.catch .catch-text .row.fadein.active:nth-child(4) {
    animation: fadeIn 2s forwards 1.8s;
  }
}
main.aboutus section.history {
  padding: 40px 0 50px;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history {
    padding: 40px 15px;
  }
}
main.aboutus section.history .section-title {
  font-size: 2.2rem;
  color: #fff;
  margin-bottom: 30px;
}
main.aboutus section.history .history-content {
  position: relative;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history .history-content {
    flex-flow: column;
    justify-content: baseline;
  }
}
main.aboutus section.history .history-content .period-label {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  width: calc(25% + 50px);
  height: 180px;
  font-size: 2.5rem;
  line-height: 4rem;
  color: #fff;
  padding: 70px 60px;
  text-align: right;
  background: linear-gradient(to right, black, #d1b209);
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history .history-content .period-label {
    position: relative;
    padding: 30px 0;
    height: auto;
    text-align: center;
    width: calc(100% - 30px);
    margin: 0 auto;
  }
}
main.aboutus section.history .history-content:nth-child(2n) .period-label {
  background: linear-gradient(to right, #d1b209, black);
}
main.aboutus section.history .history-content:not(:last-child) {
  margin-bottom: 40px;
}
main.aboutus section.history .history-content .text-wrap {
  position: relative;
  background-color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 75%;
  min-height: 200px;
  padding: 70px 70px 70px 100px;
  z-index: 0;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history .history-content .text-wrap {
    justify-content: baseline;
    width: 100%;
    padding: 40px 15px;
    min-height: 0;
    margin-top: -20px;
  }
}
main.aboutus section.history .history-content .text-wrap .history-img {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  justify-content: center;
}
main.aboutus section.history .history-content .text-wrap .history-img.one {
  grid-template-columns: 304px;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history .history-content .text-wrap .history-img.one {
    grid-template-columns: minmax(315px, 450px);
  }
}
@media screen and (max-width: 1024px) {
  main.aboutus section.history .history-content .text-wrap .history-img {
    margin-top: 20px;
    grid-template-columns: minmax(315px, 450px);
    gap: 0px;
  }
}
main.aboutus section.caution {
  padding: 50px 0;
}
@media screen and (max-width: 1024px) {
  main.aboutus section.caution {
    padding: 0 0 40px;
  }
}
main.aboutus section.caution .caution-content {
  background-color: #fff;
}
@media screen and (min-width: 1025px) {
  main.aboutus section.caution .caution-content:hover {
    border-color: #0a0a0a;
  }
}
main.aboutus section.works {
  padding-bottom: 50px;
}

footer {
  position: relative;
  width: 100%;
  padding: 20px 0 0;
  background-image: url(../images/common/footer_bg.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  footer {
    padding: 20px 0 0;
  }
}
footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6666666667);
  z-index: 0;
}
footer::after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 95px;
  background-color: #000;
  z-index: 1;
}
footer .move-top {
  position: fixed;
  right: 50px;
  bottom: 50px;
  width: 40px;
  height: 40px;
  padding: 10px;
  background-color: #cc117d;
  opacity: 0.8;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  footer .move-top {
    width: 70px;
    height: 70px;
    padding: 20px;
    right: 0px;
    bottom: 0px;
  }
}
footer .move-top:hover {
  opacity: 1;
}
footer .move-top img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
footer .instagram-link {
  position: relative;
  display: block;
  width: 80px;
  text-align: center;
  margin: 0 auto 100px;
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  footer .instagram-link {
    margin: 0 auto 60px;
  }
}
footer .instagram-link .icon {
  display: block;
  width: 30px;
  height: 30px;
  object-fit: contain;
  object-position: center;
  margin: 0 auto;
}
footer .instagram-link .text {
  display: block;
  font-size: 1rem;
  line-height: 2.5rem;
  color: #fff;
}
footer .footer-menu {
  position: relative;
  display: flex;
  width: 840px;
  flex-flow: column;
  height: 160px;
  flex-wrap: wrap;
  padding: 0 30px;
  margin: 0 auto 80px;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  footer .footer-menu {
    width: 100%;
    height: auto;
    margin: 0 0 70px;
  }
}
footer .footer-menu li {
  width: 33.3333333333%;
}
@media screen and (max-width: 1024px) {
  footer .footer-menu li {
    width: 100%;
  }
}
footer .footer-menu li a {
  position: relative;
  display: block;
  font-size: 1.6rem;
  line-height: 2rem;
  color: #fff;
  padding: 10px 0 10px 30px;
}
footer .footer-menu li a:hover {
  opacity: 1;
  letter-spacing: 0.03rem;
}
footer .footer-menu li a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: auto 0;
  background-color: transparent;
  border-color: #fff;
  border-style: solid;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
footer .copyright {
  position: relative;
  font-size: 1.4rem;
  line-height: 2rem;
  color: #fff;
  background-color: #000;
  padding: 15px 30px;
  text-align: left;
  z-index: 1;
}
@media screen and (min-width: 600px) {
  footer .copyright br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  footer .copyright {
    font-size: 1.2rem;
    line-height: 2rem;
  }
}

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