@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Open Sans", YuGothic, "游ゴシック", "ＭＳ Ｐゴシック", "MS P Gothic", "MS-PGothic", Osaka, arial, helvetica, clean, sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.8;
  letter-spacing: 0.05em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background-color: #f6f6f6;
  word-wrap: break-word;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 16px;
  }
}

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

a,
button {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

a:hover {
  text-decoration: none;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

a,
a:hover,
a:active,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

ol,
ul {
  list-style: none;
  margin: 0;
}

dt {
  font-weight: normal;
}

dd {
  margin: 0;
}

p {
  margin-bottom: 0;
}

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

.post,
.page {
  /*テーマ独自CSS打消し*/
  margin: 0;
}

/*tel link*/
@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/*margin*/
.m0 {
  margin: 0;
}

.mt0 {
  margin-top: 0;
}

.mb0 {
  margin-bottom: 0;
}

.mt20 {
  margin-top: 20px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb80 {
  margin-bottom: 80px;
}

/*display*/
.display-xl {
  /*960px以上の時表示*/
  display: none !important;
}
@media screen and (min-width: 960px) {
  .display-xl {
    display: block !important;
  }
}

.display-lg {
  /*960px未満の時表示*/
  display: block !important;
}
@media screen and (min-width: 960px) {
  .display-lg {
    display: none !important;
  }
}

.display-md {
  /*768px未満の時表示*/
  display: block !important;
}
@media screen and (min-width: 768px) {
  .display-md {
    display: none !important;
  }
}

.display-sm {
  /*576px未満の時表示*/
  display: block !important;
}
@media screen and (min-width: 576px) {
  .display-sm {
    display: none !important;
  }
}

/*contens area*/
.sec-inner {
  max-width: 1020px;
  margin: 0 auto;
  padding: 50px 20px;
}
@media screen and (min-width: 768px) {
  .sec-inner {
    padding: 80px 20px;
  }
}

/*text*/
.t-maincolor {
  color: #7f1734;
}

.t-bold {
  font-weight: bold;
}

/*background color*/
.bg-color {
  background-color: #f6f6f6;
}

.bg-color2 {
  background-color: #ece4e6;
}

.bg-pd {
  padding: 20px 15px;
}

/*list*/
.list-st {
  margin-left: 15px;
}
.list-st li {
  position: relative;
  padding-left: 13px;
}
.list-st li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 13px;
  content: "";
  width: 4px;
  height: 4px;
  background: #1a1a1a;
  border-radius: 50%;
}

/*button*/
.btn-ho a,
.btn-ho button,
.btn-ho input {
  text-shadow: 0 0 5px rgba(255, 255, 255, 0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .btn-ho a:hover,
  .btn-ho button:hover,
  .btn-ho input:hover {
    text-shadow: -8px 0px 15px rgba(248, 236, 161, 0.85), 8px 0px 15px rgba(248, 236, 161, 0.85);
  }
}

.btn-default {
  max-width: 230px;
  margin: 0 auto;
  text-align: center;
}
.btn-default a,
.btn-default button,
.btn-default input {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 15px;
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
  background: #333;
  border: none;
  border-radius: 50px;
}

.btn-return {
  max-width: 230px;
  margin: 0 auto;
  text-align: center;
}
.btn-return a,
.btn-return button,
.btn-return input {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 10px;
  color: #000;
  font-size: 14px;
  line-height: 1.8;
  background: #ccc;
  border: none;
  border-radius: 0;
}

/*table*/
.form-area {
  padding: 30px 20px 50px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .form-area {
    padding: 20px 50px 50px;
  }
}

.table01 {
  table-layout: fixed;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.table01 th,
.table01 td {
  display: block;
  text-align: left;
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .table01 th,
  .table01 td {
    display: table-cell;
  }
}
.table01 th {
  width: 100%;
  padding: 20px 0 10px 0;
  font-size: 15px;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  .table01 th {
    width: 200px;
    padding: 20px 15px 20px 0;
    font-size: 16px;
  }
}
.table01 td {
  padding: 0 0 10px 0;
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  .table01 td {
    padding: 20px 0;
  }
}

.pp-txt {
  margin-top: 30px;
  text-align: center;
}
.pp-txt a {
  padding-bottom: 3px;
  border-bottom: solid 1px #000;
}

/*----------------------------------------
header
----------------------------------------*/
header {
  padding: 20px;
  text-align: center;
}
header .logo {
  width: 200px;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .logo {
    width: auto;
  }
}
header .logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  header .logo a {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
header .logo img {
  width: auto;
  height: 100%;
}
header .nav-inner .lo-btn {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
}
header .nav-inner .lo-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 25px 10px;
  color: #fff;
  font-size: 12px;
  line-height: normal;
  background-color: #333;
  border-radius: 0 0 0 28px;
}
@media screen and (min-width: 768px) {
  header .nav-inner .lo-btn a {
    padding: 25px;
    font-size: 15px;
  }
}
@media (hover: hover) {
  header .nav-inner .lo-btn a:hover {
    opacity: 1;
    background-color: #7f1734;
  }
}
header .nav-inner .lo-btn i {
  display: block;
  margin-right: 5px;
}
@media screen and (min-width: 768px) {
  header .nav-inner .lo-btn i {
    display: inline-block;
  }
}

/*-----------------------------------------
footer
-----------------------------------------*/
.footer {
  text-align: center;
  border-top: 1px solid #ccc;
}
.footer .inner {
  margin: 0 auto;
  padding: 30px 20px 25px;
}
@media screen and (min-width: 768px) {
  .footer .inner {
    padding: 60px 20px 25px;
  }
}
.footer .inner .company-name {
  margin-bottom: 20px;
  font-size: 15px;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .footer .inner .company-name {
    font-size: 18px;
  }
}
.footer .inner .company-info {
  font-size: 12px;
  font-weight: bold;
}
@media screen and (min-width: 576px) {
  .footer .inner .company-info {
    font-size: 14px;
  }
}
.footer .inner .company-info .mail i {
  margin-top: 10px;
  font-size: 30px;
}
.footer .copyright {
  margin-top: 30px;
  text-align: center;
}
@media screen and (min-width: 576px) {
  .footer .copyright {
    margin-top: 100px;
  }
}
.footer .copyright small {
  color: #444;
  font-size: 10px;
}
@media screen and (min-width: 576px) {
  .footer .copyright small {
    font-size: 11px;
  }
}

/*-----------------------------------------
NEWS
-----------------------------------------*/
#top-news .box {
  padding: 20px;
  background-color: #fff;
  border-radius: 25px;
}
@media screen and (min-width: 576px) {
  #top-news .box {
    padding: 50px;
  }
}
#top-news .ttl {
  margin-bottom: 30px;
  line-height: 1;
}
#top-news .ttl .en {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 25px;
}
#top-news .ttl .ja {
  margin-left: 15px;
  font-size: 12px;
}
#top-news .list {
  margin-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 576px) {
  #top-news .list {
    font-size: 15px;
  }
}
#top-news .list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0;
}
#top-news .list li .date {
  width: 100%;
  color: #8a8989;
}
@media screen and (min-width: 576px) {
  #top-news .list li .date {
    width: 120px;
  }
}
#top-news .list li p {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

/*-----------------------------------------
RETAKE CONTENTS
-----------------------------------------*/
#top-retake-contents {
  background-color: #fff;
}
#top-retake-contents .ttl {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #top-retake-contents .ttl {
    font-size: 30px;
  }
}
#top-retake-contents .ttl span {
  display: block;
  font-size: 13px;
}
@media screen and (min-width: 576px) {
  #top-retake-contents .ttl span {
    font-size: 18px;
  }
}
#top-retake-contents .info-txt {
  margin-bottom: 50px;
  font-size: 16px;
  text-align: center;
}
#top-retake-contents .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#top-retake-contents .list li {
  width: 100%;
  margin-bottom: 8%;
  -webkit-box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 3px 7px 0 rgba(0, 0, 0, 0.2);
  border-radius: 6px;
}
@media screen and (min-width: 576px) {
  #top-retake-contents .list li {
    width: 48%;
    margin-bottom: 4%;
  }
}
#top-retake-contents .list li:nth-child(2n) {
  margin-left: 0;
}
@media screen and (min-width: 576px) {
  #top-retake-contents .list li:nth-child(2n) {
    margin-left: 4%;
  }
}
#top-retake-contents .list li .list-ttl {
  padding: 15px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: normal;
  background-color: #fff;
  border-radius: 0 0 6px 6px;
}
@media screen and (min-width: 768px) {
  #top-retake-contents .list li .list-ttl {
    padding: 25px 20px;
    font-size: 20px;
  }
}
#top-retake-contents .list li img {
  border-radius: 6px 6px 0 0;
}

.page-ttl {
  margin-bottom: 80px;
  text-align: center;
  font-weight: bold;
  line-height: 1.2;
  letter-spacing: 0.08em;
}
.page-ttl .en {
  display: block;
  font-size: 35px;
}
.page-ttl .ja {
  font-size: 20px;
}

/*-----------------------------------------
NEWS
-----------------------------------------*/
/*一覧*/
#news-list {
  background-color: #fff;
}
#news-list .news-list {
  max-width: 700px;
  margin: 0 auto;
  border-top: 1px solid #ccc;
}
#news-list .news-list li a {
  display: block;
  padding: 20px 0;
  border-bottom: 1px solid #ccc;
}
@media screen and (min-width: 576px) {
  #news-list .news-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (hover: hover) {
  #news-list .news-list li a:hover {
    opacity: 1;
    background-color: #f6f6f6;
  }
}
#news-list .news-list .date {
  display: block;
  width: 120px;
  color: #8a8989;
}
#news-list .news-list .ttl {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
#news-list .return-top {
  margin: 50px auto;
}

.list-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 50px;
}
.list-pagenation .list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 15px;
}
.list-pagenation .list li {
  margin: 0 10px;
}
.list-pagenation .list li.current {
  color: #999;
}

/*個別*/
#single-news {
  background-color: #fff;
}
#single-news h2 {
  padding-bottom: 20px;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
  border-bottom: 1px solid #ccc;
}
#single-news .txt {
  margin-top: 50px;
}
#single-news .txt .alignnone {
  margin: 0px 15px 0 15px;
}
#single-news .txt .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
#single-news .txt .alignright {
  float: right;
  display: inline;
  margin: 0px 15px 0 15px;
}
#single-news .txt .alignleft {
  float: left;
  display: inline;
  margin: 0px 15px 0 15px;
}
#single-news .txt .clear {
  clear: both;
}
#single-news .txt h1 {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h1 {
    font-size: 2.8rem;
  }
}
#single-news .txt h2 {
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h2 {
    font-size: 2.5rem;
  }
}
#single-news .txt h3 {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h3 {
    font-size: 2.3rem;
  }
}
#single-news .txt h4 {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h4 {
    font-size: 2rem;
  }
}
#single-news .txt h5 {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h5 {
    font-size: 1.8rem;
  }
}
#single-news .txt h6 {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #single-news .txt h6 {
    font-size: 1.6rem;
  }
}
#single-news .txt p,
#single-news .txt img,
#single-news .txt table,
#single-news .txt dl {
  margin-bottom: 25px;
}
#single-news .txt img {
  max-width: 100%;
  width: auto;
}
#single-news .txt a {
  color: #7f1734;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  #single-news .txt a:hover {
    opacity: 0.8;
  }
}
#single-news .txt table {
  border-collapse: collapse;
}
#single-news .txt table th,
#single-news .txt table td {
  padding: 5px 10px;
  border: 1px solid #ccc;
}
#single-news .txt ul,
#single-news .txt ol,
#single-news .txt li {
  list-style: revert;
}
#single-news .txt ul,
#single-news .txt ol {
  padding-left: 20px;
}
#single-news .return-top {
  margin: 50px auto;
}

.post-pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-top: 30px;
}
.post-pagenation .list-link {
  margin: 0 30px;
}

/*-----------------------------------------
RETAKE
-----------------------------------------*/
#single-retake {
  background-color: #fff;
}
#single-retake h2 {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 576px) {
  #single-retake h2 {
    font-size: 28px;
  }
}
#single-retake .post-thumbnail {
  margin-bottom: 30px;
}
@media screen and (min-width: 576px) {
  #single-retake .post-thumbnail {
    margin-bottom: 50px;
  }
}
#single-retake .nintei-room-movie .movie-cont a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #f6f6f6;
  border-radius: 5px;
  padding: 15px;
}
#single-retake .nintei-room-movie img {
  width: 120px;
  height: auto;
}
#single-retake .nintei-room-movie .movie-link-txt {
  padding-left: 20px;
  line-height: 1.5;
  font-size: 13px;
}
@media screen and (min-width: 576px) {
  #single-retake .nintei-room-movie .movie-link-txt {
    font-size: 16px;
  }
}
#single-retake .link-icon-pdf {
  position: relative;
  padding-left: 28px;
}
#single-retake .link-icon-pdf::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  content: "";
  background-image: url(https://retake.vra-rptm.jp/wp-content/uploads/2024/03/icon-pdf-1.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 23px;
}
#single-retake .link-txt-border-gray {
  margin-bottom: 10px;
}
#single-retake .link-txt-border-gray a {
  display: block;
  padding: 15px 15px 15px 45px;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
@media screen and (min-width: 576px) {
  #single-retake .link-txt-border-gray a {
    font-size: 15px;
  }
}
#single-retake .return-top {
  margin: 50px auto;
}

/*-----------------------------------------
404
-----------------------------------------*/
#page-404 {
  background-color: #fff;
}
@media screen and (min-width: 576px) {
  #page-404 {
    text-align: center;
  }
}
#page-404 .page-ttl-404 {
  font-size: 20px;
}
@media screen and (min-width: 576px) {
  #page-404 .page-ttl-404 {
    font-size: 40px;
  }
}
#page-404 .top-txt {
  font-size: 20px;
}
@media screen and (min-width: 576px) {
  #page-404 .top-txt {
    font-size: 18px;
  }
}
#page-404 p {
  margin-top: 50px;
}
#page-404 .return-top {
  margin: 50px auto;
}

/*Ultimate Memger*/
/*-----------------------------------------
ログインフォーム
-----------------------------------------*/
.um-page-login main {
  padding: 0 20px;
}

.um-13.um {
  max-width: 550px !important;
  margin-top: 30px;
  padding: 25px;
  background: #fff;
  border-radius: 30px;
}
@media screen and (min-width: 768px) {
  .um-13.um {
    margin-top: 50px;
    padding: 50px;
  }
}

.um .um-form input[type=password],
.um .um-form input[type=search],
.um .um-form input[type=tel],
.um .um-form input[type=text],
.um .um-form textarea {
  color: #666;
  border-radius: 5px;
}

.um-form input[type=number],
.um-form input[type=password],
.um-form input[type=search],
.um-form input[type=tel],
.um-form input[type=text] {
  padding: 5px 10px !important;
}

#um-submit-btn {
  padding: 18px !important;
  font-size: 18px !important;
  background: #7f1734 !important;
  border-radius: 50px !important;
}

#um-submit-btn:hover {
  background-color: #5d061e !important;
}

.um .um-button.um-alt,
.um input[type=submit].um-button.um-alt {
  color: #fff !important;
}

.um a.um-button {
  background-color: #ccc !important;
  border-radius: 50px !important;
}