@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* 動画 */
.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Serif JP", sans-serif;
  background-color: #F6EFE7;
  color: #5A1E0F;
}

.is-pc {
  display: block;
}
#tex_center{text-align: center;}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

hr {
  margin: 80px 0;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

.inner {
  width: 100%;
  max-width: 1250px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.gothic {
  font-family: "Noto Sans JP", serif;
}

.small-inner {
  width: 100%;
  max-width: 1010px;
  padding-right: 25px;
  padding-left: 25px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .small-inner {
    padding-right: 10px;
    padding-left: 10px;
  }
}

h1 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  h1 {
    font-size: 2.8rem;
  }
}

h3 {
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  h3 {
    font-size: 2rem;
  }
}

.small {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .small {
    font-size: 1.2rem;
  }
}

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  white-space: nowrap;
}
.card-title {
  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;
  position: relative;
  padding-bottom: 4px;
}
.card-title::after {
  content: "";
  position: absolute;
  height: 1px;
  width: 75%;
  bottom: 0;
  background-color: #5A1E0F;
}
.card-title img {
  height: 34px;
  width: 34px;
}
.card-text {
  text-align: center;
  font-size: 1.8rem;
}
.card-text span {
  font-weight: bold;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .card-text span {
    font-size: 2rem;
  }
}
.card-img {
  margin-top: auto;
  width: 100%;
}

.profile {
  position: relative;
  padding: 40px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 44px;
}
@media screen and (max-width: 768px) {
  .profile {
    padding: 20px 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.profile::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  background-color: rgba(91, 59, 27, 0.3);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .profile::before {
    display: none;
  }
}
.profile .title {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", serif;
}
.profile .name {
  margin-top: 10px;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .profile .name {
    font-size: 2rem;
  }
}
.profile .name span {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .profile .name span {
    font-size: 1.6rem;
  }
}
.profile .about {
  margin-top: 20px;
  font-family: "Noto Sans JP", serif;
}
.profile-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 344px;
          flex: 0 0 344px;
}
@media screen and (max-width: 768px) {
  .profile-img {
    width: 100%;
  }
}
.profile-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-kobayashi {
  background-color: #fff;
}
.profile-aoki {
  background-color: #F6EFE7;
  margin-top: 44px;
  top: -20px;
}
@media screen and (max-width: 768px) {
  .profile-aoki {
    margin-top: 12px;
    top: 0;
  }
}

.btn {
  padding: 12px 34px;
  background-color: #EB8F21;
  color: #fff;
  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;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}
.btn:hover {
  opacity: 0.8;
}
.btn--main-view {
  font-size: 3rem;
}
@media screen and (max-width: 768px) {
  .btn--main-view {
    font-size: 1.8rem;
    white-space: nowrap;
  }
}

.section-title {
  font-size: 4rem;
  text-align: center;
  position: relative;
  padding-top: 152px;
  color: #111;
}
@media screen and (max-width: 768px) {
  .section-title {
    padding-top: 92px;
    font-size: 2.4rem;
  }
}
.section-title::before {
  content: attr(data-en);
  font-family: "Noto Sans JP", serif;
  font-size: 12rem;
  color: rgba(177, 146, 127, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .section-title::before {
    font-size: 5.6rem;
  }
}

.section {
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .section {
    margin-top: 60px;
  }
}

.gradation {
  position: relative;
  overflow: hidden;
}
.gradation .parallelogram {
  -webkit-clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(15% 0%, 100% 0%, 85% 100%, 0% 100%);
  background: rgb(30, 3, 1);
  background: -webkit-gradient(linear, left bottom, left top, from(rgb(30, 3, 1)), color-stop(50%, rgb(205, 89, 27)), to(rgb(235, 142, 33)));
  background: linear-gradient(0deg, rgb(30, 3, 1) 0%, rgb(205, 89, 27) 50%, rgb(235, 142, 33) 100%);
  font-size: 3.2rem;
  padding: 46px 0;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .gradation .parallelogram {
    font-size: 2rem;
    padding: 24px 0 124px;
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
  }
}
.gradation-text {
  position: relative;
  z-index: 2;
}
.gradation-text span {
  font-size: 6rem;
}
@media screen and (max-width: 768px) {
  .gradation-text span {
    font-size: 2.8rem;
  }
}
.gradation .fire {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 566px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .gradation .fire {
    width: 302px;
    right: -60px;
  }
}
.gradation-01::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  top: 0;
  left: 0;
  background-color: #F6EFE7;
}
.gradation-02::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 50%;
  top: 0;
  right: 0;
  background-color: #F6EFE7;
}

.gradation--text {
  max-width: 878px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .gradation--text {
    width: 100%;
    max-width: 354px;
  }
}

.box {
  background-color: #fff;
  padding: 30px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 20px 10px;
  }
}
.box-text {
  margin-top: 12px;
}
.box-text span {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .box-text span {
    font-size: 1.8rem;
  }
}
.box .note {
  font-size: 1.4rem;
  margin-top: 12px;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .box-img {
    margin-top: 12px;
  }
}
.box .date {
  margin-top: 10px;
  font-family: "Noto Sans JP", serif;
  font-size: 1.8rem;
}
.box .contents {
  margin-top: 12px;
  background-color: #F6EFE7;
  padding: 4px 16px;
  font-family: "Noto Sans JP", serif;
}
.box:not(:first-child) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .box:not(:first-child) {
    margin-top: 30px;
  }
}

.pagetop {
  height: 50px;
  width: 50px;
  position: fixed;
  right: 40px;
  bottom: 30px;
  background: #EB8F21;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .pagetop {
    right: 10px;
    bottom: 10px;
  }
}

.pagetop-arrow {
  height: 10px;
  width: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  -webkit-transform: translateY(20%) rotate(-45deg);
          transform: translateY(20%) rotate(-45deg);
}

.main-view {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .main-view {
    max-height: 650px;
  }
}
.main-view-logo {
  width: 134px;
}
@media screen and (max-width: 768px) {
  .main-view-logo {
    width: 80px;
  }
}
.main-view-nav {
  z-index: 100;
  padding: 10px 20px;
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .main-view-nav {
    display: none;
  }
}
.main-view-nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .main-view-nav__links {
    display: none;
  }
}
.main-view-nav__link {
  display: inline-block;
  position: relative;
}
.main-view-nav__link:last-child {
  font-size: 20px;
}
.main-view-nav__link:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  height: 1px;
  margin: -5px 0;
  left: 0;
  background-color: #EB8F21;
  -webkit-transition: all 0.4s ease-in 0s;
  transition: all 0.4s ease-in 0s;
}
.main-view-nav__link a:hover {
  opacity: 1;
}
.main-view-nav__link.active:after, .main-view-nav__link:hover:after {
  width: 100%;
}
.main-view-img {
  position: relative;
  z-index: -1; /*最背面に設定*/
  height: 100%;
  overflow: hidden;
}
.main-view-img video {
  -o-object-fit: cover;
     object-fit: cover;
  /*天地中央配置*/
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  /*縦横幅指定*/
  width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
  height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
  min-height: 100%;
  min-width: 100%;
}
@media screen and (max-width: 768px) {
  .main-view-img video {
    top: 63%;
    width: 100%;
    min-height: 80%;
    height: 70%;
    -o-object-position: 60% 100%;
       object-position: 60% 100%;
  }
}
.main-view-body {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 100%;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  height: 100%;
  width: 52%;
  background: -webkit-gradient(linear, left top, right top, from(#1b0e08), color-stop(60%, #1b0e08), to(transparent));
  background: linear-gradient(90deg, #1b0e08 0%, #1b0e08 60%, transparent 100%);
  padding: 132px 0 44px 20px;
}
@media screen and (max-width: 768px) {
  .main-view-body {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    height: auto;
    width: 100%;
    top: 0;
    padding: 20px 10px 0;
    background: -webkit-gradient(linear, left top, left bottom, from(#1b0e08), color-stop(85%, #1b0e08), to(transparent));
    background: linear-gradient(180deg, #1b0e08 0%, #1b0e08 85%, transparent 100%);
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.main-view-title {
  position: relative;
  font-size: 4.2rem;
}
@media screen and (max-width: 1440px) {
  .main-view-title {
    font-size: 3rem;
  }
}
@media screen and (max-width: 768px) {
  .main-view-title {
    font-size: 2rem;
  }
}
.main-view-title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #fff;
}
.main-view-banner {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background-color: #fec247;
  border-radius: 50%;
  width: 278px;
  height: 278px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .main-view-banner {
    width: 108px;
    height: 108px;
    right: auto;
    left: 10px;
    top: 190px;
  }
}
.main-view-banner p {
  text-align: center;
  font-weight: bold;
  font-size: 3.2rem;
}
@media screen and (max-width: 768px) {
  .main-view-banner p {
    font-size: 1.2rem;
  }
}
.main-view-banner span {
  font-family: "Noto Sans JP", serif;
  display: block;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .main-view-banner span {
    font-size: 1rem;
  }
}
.main-view-program {
  width: 80%;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .main-view-program {
    width: 60%;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .main-view-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.bg-white {
  background-color: #fff;
  position: relative;
  /*z-index: -2;  動画クリックを可能にするため非公開*/
}

.about .recommended {
  background-color: #fff;
}
.about .recommended h3 {
  background-color: #EB8F21;
  color: #fff;
  padding: 18px;
  font-size: 3.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about .recommended h3 {
    font-size: 2.4rem;
  }
}
.about .recommended .check-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 24px 0;
  gap: 20px;
  max-width: 530px;
  margin-left: auto;
  margin-right: auto;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about .recommended .check-list {
    padding: 20px 10px;
  }
}
.about .recommended .check-list li {
  padding-left: 72px;
  position: relative;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about .recommended .check-list li {
    font-size: 1.6rem;
    padding-left: 40px;
  }
}
.about .recommended .check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(/rcp/assets/images/icon-check.svg) center/cover;
  width: 41px;
  height: 36px;
}
@media screen and (max-width: 768px) {
  .about .recommended .check-list li::before {
    width: 25px;
    height: 24px;
  }
}
.about .video h3 {
  text-align: center;
}

.program {
  padding-top: 80px;
}
@media screen and (max-width: 768px) {
  .program {
    padding-top: 60px;
  }
}
.program-lead {
  text-align: center;
  margin-top: 24px;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .program-lead {
    font-size: 1.6rem;
  }
}
.program .step-list {
  margin-top: 24px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  row-gap: 4px;
}
@media screen and (max-width: 768px) {
  .program .step-list {
    display: block;
    margin-top: 16px;
  }
}
.program .step-list dt {
  position: relative;
  color: #fff;
  width: 27%;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  padding: 56px 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .program .step-list dt {
    width: 100%;
    font-size: 1.8rem;
    padding: 10px 0;
  }
}

.program .step-list dt:nth-last-of-type(2), .program .step-list dt:first-of-type, .program .step-list dt:last-of-type {
  padding: 20px 0;
}
.program .step-list dt span {
  background-color: #fff;
  color: #5A1E0F;
  font-size: 1.8rem;
  position: absolute;
  top: 20px;
  left: 0;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 85% 100%, 0% 100%);
  padding: 4px 32px 4px 16px;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .program .step-list dt span {
    top: 10px;
    padding: 2px 24px 2px 10px;
    font-size: 1.4rem;
  }
}
.program .step-list dd {
  width: 73%;
  background-color: #F6EFE7;
  font-family: "Noto Sans JP", serif;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .program .step-list dd {
    padding: 10px;
    width: 100%;
  }
}
.program .step-title-01 {
  background-color: #f6a329;
}
.program .step-title-02 {
  background-color: #ea871f;
}
.program .step-title-03 {
  background-color: #d76213;
}
.program .step-title-04 {
  background-color: #cf5d19;
}
.program .step-title-05 {
  background-color: #c9541c;
}
.program .step-title-06 {
  background-color: #c34c1f;
}
.program .step-title-07 {
  background-color: #c33c1f;
}
.program .step-title-08 {
  background-color: #b42310;
}
.tokuten {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .tokuten {
    margin-top: 16px;
  }
}
.tokuten-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.tokuten-list-item > * {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .tokuten-list-item > * {
    width: 100%;
  }
}
.tokuten-list-item:not(:first-child) {
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .tokuten-list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.tokuten-title {
  color: #fff;
  display: inline-block;
  padding: 0 4px;
}
.tokuten-title.period {
  background-color: #eb8f21;
}
.tokuten-title.buy {
  background-color: #da5e23;
}

.section-title.question {
  padding-top: 0;
  margin-top: 80px;
}
@media screen and (max-width: 768px) {
  .section-title.question {
    margin-top: 60px;
  }
}

.detail {
  font-family: "Noto Sans JP", serif;
}
.detail-title {
  text-align: center;
  font-family: "Noto Serif JP", sans-serif;
}
.detail-title span {
  display: block;
  font-size: 3.2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail-title span {
    font-size: 2rem;
  }
}
.detail-img {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .detail-img {
    margin-top: 8px;
  }
}
.detail-sub-title {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
  margin-top: 2rem;
  text-align: center;
  background-color: #F6EFE7;
}
@media screen and (max-width: 768px) {
  .detail-sub-title {
    font-size: 1.8rem;
  }
}
.detail-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .detail-container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.detail-online {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 35%;
          flex: 0 0 35%;
}
@media screen and (max-width: 768px) {
  .detail-online {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.detail-list {
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .detail-list {
    font-size: 1.8rem;
  }
}
.detail-note {
  font-size: 1.4rem;
}
.detail-price {
  margin-top: 20px;
  font-size: 1.4rem;
}
.detail-price strong {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .detail-price strong {
    font-size: 2rem;
  }
}
.detail-btn {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .detail-btn {
    margin-top: 16px;
  }
}
.detail-btn .btn {
  font-size: 2.4rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  .detail-btn .btn {
    font-size: 1.8rem;
  }
}
.detail-btn .btn span {
  font-size: 1.4rem;
}
.detail-link {
  text-align: right;
  margin-top: 8px;
}

.accordion {
  margin-top: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.accordion .toggle {
  display: none;
}
.accordion .option {
  position: relative;
  background-color: #fff;
}
.accordion-title, .accordion-content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-family: "Noto Sans JP", serif;
}
.accordion-title .label, .accordion-content .label {
  font-size: 2.4rem;
  color: #EB8F21;
  font-weight: 700;
  font-family: "Noto Sans JP", serif;
}
@media screen and (max-width: 768px) {
  .accordion-title .label, .accordion-content .label {
    font-size: 1.6rem;
  }
}
.accordion-title a, .accordion-content a {
  text-decoration: underline;
}
.accordion-title {
  padding: 16px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .accordion-title {
    padding: 16px 32px 16px 10px;
  }
}
.accordion-title::after, .accordion-title::before {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 2px;
  height: 16px;
  background-color: #5A1E0F;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .accordion-title::after, .accordion-title::before {
    right: 20px;
  }
}
.accordion-title::after {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
}
.accordion-content p {
  padding: 0 32px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .accordion-content p {
    padding: 0 32px 16px 10px;
  }
}
.accordion .toggle:checked + .accordion-title + .accordion-content {
  max-height: 500px;
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}
.accordion .toggle:checked + .accordion-title::before {
  -webkit-transform: translateY(-50%) rotate(90deg) !important;
          transform: translateY(-50%) rotate(90deg) !important;
}

.about-program-title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .about-program-title-wrap {
    gap: 10px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.about-program-title h3 {
  font-family: "Noto Serif JP", sans-serif;
  font-size: 2.4rem;
}
@media screen and (max-width: 768px) {
  .about-program-title h3 {
    font-size: 1.8rem;
    background-color: #F6EFE7;
  }
}
.about-program-title p {
  font-size: 1.8rem;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .about-program-title p {
    font-size: 1.6rem;
  }
}
.about-program-img {
  width: 35%;
}
@media screen and (max-width: 768px) {
  .about-program-img {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}

.flow {
  background-color: #F6EFE7;
  margin-top: 20px;
  padding: 10px 20px;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 10px 10px;
  }
}
.flow h4 {
  font-size: 1.8rem;
  text-align: center;
  padding: 0.5em 0 1.6em;
}
.flow-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .flow-list {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 10px;
    gap: 34px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.flow-item {
  font-size: 14px;
  display: block;
  position: relative;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .flow-item {
    width: 100%;
  }
}
.flow-item{
  padding: 4px 16px 4px 20px;
  background: #5A1E0F;
  height: 80px;
  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;*/
}
@media screen and (max-width: 768px) {
  .flow-item {
    height: auto;
  }
}
.flow-item::before, .flow-item::after {
  content: "";
  position: absolute;
  right: -1px;
}
.flow-item::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 10px 48px 0;
  border-color: transparent #F6EFE7 transparent transparent;
  top: -1px;
}
@media screen and (max-width: 768px) {
  .flow-item::before {
    display: none;
  }
}
.flow-item::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 48px 10px;
  border-color: transparent transparent #F6EFE7 transparent;
  bottom: -1px;
}
@media screen and (max-width: 768px) {
  .flow-item::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: -10px;
    border-width: 10px 10px 0 10px;
    border-color: #5A1E0F transparent transparent transparent;
  }
}
.flow-item span {
  position: absolute;
  bottom: 100%;
  left: 0;
  color: #5A1E0F;
}
.flow-item {
  width : calc(100% / 3) ;
}
@media screen and (max-width: 768px) {
  .flow-item{
    margin-top: -10px;
    width: 100%;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 20px;
  z-index: 1000;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
  color: #5A1E0F;
}
@media screen and (max-width: 768px) {
  .header {
    position: relative;
    padding: 10px 20px;
  }
}
.header-logo {
  width: 130px;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: 80px;
  }
}

.global-menu-pc__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  color: #5A1E0F;
  font-family: "Noto Sans JP", serif;
  font-weight: bold;
}
.global-menu-pc__link {
  display: inline-block;
  position: relative;
}
.global-menu-pc__link:after {
  content: "";
  display: block;
  position: absolute;
  width: 0;
  bottom: 0;
  height: 2px;
  margin: -5px 0;
  left: 0;
  background-color: #EB8F21;
  -webkit-transition: all 0.4s ease-in 0s;
  transition: all 0.4s ease-in 0s;
}
.global-menu-pc__link:last-child::after {
  display: none;
}
.global-menu-pc__link.active:after, .global-menu-pc__link:hover:after {
  width: 100%;
}

/* ハンバーガー */
.hamburger {
  z-index: 3;
  width: 40px;
  height: 40px;
  cursor: pointer;
  text-align: center;
  position: relative;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  top: 50%;
  right: 0;
  background: #5A1E0F;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(2) {
  top: 30px;
}

/* ナビ開いてる時のバツボタン */
.hamburger.active span:nth-child(1) {
  top: 24px;
  background: #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 24px;
  background: #fff;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* ナビメニュー内 */
.global-menu-sp {
  position: fixed;
  top: 0;
  left: 0;
  color: #fff;
  background: #1a1a19;
  text-align: center;
  width: 100%;
  padding: 50px;
  opacity: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}

.global-menu-sp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

.global-menu-sp__logo {
  margin: auto;
  width: 120px;
  padding-bottom: 40px;
  position: relative;
}
.global-menu-sp__logo::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 1px;
  background-color: #333330;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.global-menu-sp-links {
  margin-top: 40px;
}

.global-menu-sp-link {
  list-style-type: none;
  padding: 0;
  width: 100%;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}
.global-menu-sp-link:last-child {
  padding-bottom: 0;
}

.global-menu-sp-link a {
  letter-spacing: 2px;
  display: block;
  color: #fff;
  padding: 24px 0;
  font-size: 20px;
  text-decoration: none;
}

/* ハンバーガーメニュー押してactiveクラスを付いたら表示する */
nav.global-menu-sp.active {
  opacity: 100;
  visibility: visible;
}

.footer {
  background-color: #5A1E0F;
  padding: 32px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.footer-logo {
  width: 400px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 180px;
  }
}

.copyright {
  text-align: center;
  color: #fff;
}

.content {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .content {
    padding: 20px 0;
  }
}