@charset "UTF-8";
/* -----------------------------------------
Reaet
----------------------------------------- */
html {
  font-family: sans-serif;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
}

ul,
ol {
  list-style-type: none;
}

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

td,
th {
  padding: 0;
}

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

i {
  display: block;
}

a {
  background-color: transparent;
  text-decoration: none;
}
a:hover, a:active {
  text-decoration: none;
  outline: 0;
}
a:before, a:after {
  text-decoration: none;
}

b,
strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  overflow: visible;
  text-transform: none;
}
button:focus {
  outline: none;
}

select {
  text-transform: none;
}

button {
  -webkit-appearance: button;
  cursor: pointer;
}

input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled],
input[disabled] {
  cursor: default;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input {
  line-height: normal;
  vertical-align: middle;
}
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}
input[type=checkbox], input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

select {
  vertical-align: middle;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

/* -----------------------------------------
Scaffolding
----------------------------------------- */
body {
  min-width: 1200px;
  position: relative;
  transition: all 0.6s;
}

.wrapper {
  position: relative;
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 14px;
  line-height: 1.35;
  overflow: hidden;
}
.wrapper * {
  box-sizing: border-box;
  background-repeat: no-repeat;
}
.wrapper a {
  position: relative;
}
.wrapper a:hover, .wrapper a:active, .wrapper a:focus {
  text-decoration: none;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

@media screen and (max-width: 767px) {
  body {
    min-width: 320px;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
/* -----------------------------------------
Page Contetns
----------------------------------------- */
.link-over {
  opacity: 1;
  transition: opacity 0.4s;
}
.link-over:hover {
  opacity: 0.8;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
}

/* Font
----------------------------------------- */
@font-face {
  font-family: "Harenosora";
  src: url("../font/Harenosora.otf") format("opentype");
}
/* Animation
----------------------------------------- */
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease;
}
body.fadeout:after {
  opacity: 1;
}

.slide-up {
  opacity: 0;
  transition: all 0.6s;
  transform: translateY(200px);
}
.slide-up.show {
  opacity: 1;
  transform: translateY(0);
}
.slide-up.list1 {
  transition-delay: 0;
}
.slide-up.list2 {
  transition-delay: 0.2s;
}
.slide-up.list3 {
  transition-delay: 0.4s;
}
.slide-up.list4 {
  transition-delay: 0.6s;
}

.slide-in {
  opacity: 0;
  transition: ease-in-out 2s;
  transform: translateX(-20%);
  transition-delay: 0.4s;
}
.slide-in.show {
  opacity: 1;
  transform: translateX(0);
}

@keyframes bgiLoop {
  0% {
    background-position: 0 0;
    opacity: 1;
  }
  80% {
    opacity: 0.6;
  }
  100% {
    background-position: -100px -200px;
    opacity: 0;
  }
}
.fade-in {
  opacity: 0;
  transition: ease-in-out 1s;
  transition-delay: 0.4s;
}
.fade-in.show {
  opacity: 1;
}

.coverd-txt {
  position: relative;
  display: inline-block;
}
.coverd-txt:after {
  content: "";
  display: inline-block;
  width: 0;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  background: rgba(150, 133, 116, 0.9);
}
.coverd-txt span {
  opacity: 0;
}
.coverd-txt.active:after {
  animation: sliding_bg_horizon 1s cubic-bezier(0.19, 1, 0.22, 1) 1.4s forwards;
}
.coverd-txt.active span {
  animation: passing-txt 1s cubic-bezier(0.19, 1, 0.22, 1) 1.4s forwards;
}

@keyframes sliding_bg_horizon {
  0% {
    left: 0;
    width: 0;
  }
  50% {
    left: 0;
    width: 100%;
  }
  51% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0;
  }
}
@keyframes passing-txt {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes lightText {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.2;
  }
  70% {
    opacity: 0.2;
  }
  75% {
    opacity: 1;
    filter: brightness(150%);
  }
  80% {
    opacity: 0.2;
    filter: brightness(100%);
  }
  85% {
    opacity: 1;
    filter: brightness(150%);
  }
  90% {
    opacity: 0.2;
  }
  95% {
    opacity: 0.8;
    filter: brightness(150%);
  }
  100% {
    opacity: 1;
    filter: brightness(100%);
  }
}
@keyframes fadeInTxt {
  to {
    opacity: 1;
  }
}
@keyframes blurImg {
  0% {
    filter: blur(10px);
  }
  90% {
    filter: blur(10px);
  }
  100% {
    filter: blur(0px);
  }
}
@keyframes upDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
/* Loading box
----------------------------------------- */
.loading-box {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  z-index: 999999;
  background-color: white;
}
.loading-box * {
  box-sizing: border-box;
}
.loading-box .box {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.loading-box .circle-spinner {
  height: 60px;
  width: 60px;
  position: relative;
  animation: fulfilling-bouncing-circle-spinner-animation infinite 4000ms ease;
}
.loading-box .circle-spinner .orbit {
  height: 60px;
  width: 60px;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  border: 1.8px solid #968574;
  animation: fulfilling-bouncing-circle-spinner-orbit-animation infinite 4000ms ease;
}
.loading-box .circle-spinner .circle {
  height: 60px;
  width: 60px;
  color: #968574;
  display: block;
  border-radius: 50%;
  position: relative;
  border: 6px solid #968574;
  animation: fulfilling-bouncing-circle-spinner-circle-animation infinite 4000ms ease;
  transform: rotate(0deg) scale(1);
}

@keyframes fulfilling-bouncing-circle-spinner-animation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fulfilling-bouncing-circle-spinner-orbit-animation {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1);
  }
  62.5% {
    transform: scale(0.8);
  }
  75% {
    transform: scale(1);
  }
  87.5% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fulfilling-bouncing-circle-spinner-circle-animation {
  0% {
    transform: scale(1);
    border-color: transparent;
    border-top-color: inherit;
  }
  16.7% {
    border-color: transparent;
    border-top-color: initial;
    border-right-color: initial;
  }
  33.4% {
    border-color: transparent;
    border-top-color: inherit;
    border-right-color: inherit;
    border-bottom-color: inherit;
  }
  50% {
    border-color: inherit;
    transform: scale(1);
  }
  62.5% {
    border-color: inherit;
    transform: scale(1.4);
  }
  75% {
    border-color: inherit;
    transform: scale(1);
    opacity: 1;
  }
  87.5% {
    border-color: inherit;
    transform: scale(1.4);
  }
  100% {
    border-color: transparent;
    border-top-color: inherit;
    transform: scale(1);
  }
}
/* Header
----------------------------------------- */
.header {
  position: fixed;
  animation: 0;
  width: 100%;
  left: 0;
  z-index: 99;
  transition: transform 0.5s ease;
  transform: translateY(0);
}
.header .inner {
  max-width: 100%;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .header .inner {
    padding: 1rem;
    position: relative;
  }
}
.header .logo {
  width: 48px;
}
@media screen and (max-width: 767px) {
  .header .logo {
    width: 36px;
    margin: 0;
  }
}
.header .link span {
  display: inline-block;
  margin-left: 2rem;
}
.header .link span.active {
  border-bottom: 1px solid #000;
}
.header .link a {
  font-family: "Oswald", sans-serif;
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .header .sp-toggle {
    display: block;
    width: 34px;
    height: 22px;
    position: relative;
    margin-top: -10px;
    cursor: pointer;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle .bar {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000;
    position: absolute;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle .bar.bar1 {
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle .bar.bar2 {
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle .bar.bar3 {
    top: 16px;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle.active .bar.bar1 {
    transform: rotate(45deg);
    top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle.active .bar.bar2 {
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .header .sp-toggle.active .bar.bar3 {
    transform: rotate(-45deg);
    top: 8px;
  }
}

.header--unpinned {
  transform: translateY(-150%);
}

/* Sp menu
----------------------------------------- */
.hidden-menu {
  display: none;
}
@media screen and (max-width: 767px) {
  .hidden-menu {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    z-index: 9;
    transition: all 0.6s;
    transform: translateX(100%);
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu .list {
    padding: 6rem 1rem;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu .list li {
    text-align: center;
    margin: 2rem 0;
    opacity: 0;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu .list li a {
    font-family: "Oswald", sans-serif;
    color: #000;
    font-size: 0.9rem;
    font-weight: 400;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu .list li.active a {
    border-bottom: 1px solid #000;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active {
    transform: translateX(0%);
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li {
    animation: 1s linear forwards fadeInTxt;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(1) {
    animation-delay: 0.8s;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(2) {
    animation-delay: 1.2s;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(3) {
    animation-delay: 1.6s;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(4) {
    animation-delay: 2s;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(5) {
    animation-delay: 2.4s;
  }
}
@media screen and (max-width: 767px) {
  .hidden-menu.active .list li:nth-child(6) {
    animation-delay: 2.8s;
  }
}

/* Footer
----------------------------------------- */
.footer {
  background-color: #000000;
}
.footer .inner {
  padding: 2rem 2rem 1rem;
}
@media screen and (max-width: 767px) {
  .footer .inner {
    padding: 1rem 1rem 1rem;
  }
}
.footer .logo {
  width: 48px;
}
@media screen and (max-width: 767px) {
  .footer .logo {
    width: 36px;
  }
}
.footer .link {
  text-align: center;
  margin-bottom: 14px;
  margin-top: -30px;
  padding: 0 50px;
}
@media screen and (max-width: 767px) {
  .footer .link {
    margin-top: -10px;
  }
}
.footer .link a {
  text-align: center;
  color: #fff;
  font-size: 12px;
}
.footer .copyright {
  text-align: center;
  color: #fff;
  font-size: 12px;
}
@media screen and (max-width: 767px) {
  .footer .copyright {
    margin-top: -0.4rem;
    font-size: 10px;
  }
}

.top-page {
  /* FV
     ----------------------------------------- */
  /* Cloud
     ----------------------------------------- */
  /* ani cloud
  ----------------------------------------- */
  /* Mission
     ----------------------------------------- */
  /* Principles
     ----------------------------------------- */
  /* Profile
     ----------------------------------------- */
  /* Review
     ----------------------------------------- */
}
.top-page .fv {
  background-image: url(../img/top-fv-back-img.png);
  background-position: 50% 20%;
  background-size: 100%;
}
.top-page .fv .inner {
  padding: 8rem 6rem 0 2rem;
}
@media screen and (max-width: 767px) {
  .top-page .fv .inner {
    padding: 4rem 2rem 0 0;
  }
}
.top-page .fv .box {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.top-page .fv .box .img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top-page .fv .box .img {
    width: 45%;
  }
}
.top-page .fv .box .txt {
  width: 60%;
  padding: 1rem 0 6rem 2rem;
  position: relative;
  max-width: 690px;
}
@media screen and (max-width: 767px) {
  .top-page .fv .box .txt {
    width: 55%;
    padding: 0.6rem 0 0 0;
  }
}
.top-page .fv .box .txt .movie {
  width: 60%;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .top-page .fv .box .txt .movie {
    width: 100%;
  }
}
.top-page .fv .box .txt .movie video {
  width: 100%;
  height: auto;
  display: block;
}
.top-page .fv .box .txt h1 {
  text-align: right;
  font-size: 4rem;
  position: absolute;
  bottom: 2rem;
  right: 4.4rem;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
@media screen and (max-width: 767px) {
  .top-page .fv .box .txt h1 {
    text-align: left;
    font-size: 1.4rem;
    right: -0.2rem;
    bottom: 1rem;
    padding-left: 0.4rem;
    width: 100%;
    color: #fff;
  }
}
.top-page .fv .box .txt h1 span b {
  color: #fff;
  letter-spacing: 2px;
}
.top-page .fv .box .txt h1 span.t-1 {
  text-shadow: 4px 1px 2px rgba(0, 0, 0, 0.2);
}
.top-page .fv .box .txt h1 span.t-2 {
  text-shadow: 4px 1px 2px rgba(0, 0, 0, 0.2);
  display: inline-block;
}
.top-page .fv .box .txt h1 .coverd-txt.type2 {
  margin-right: -4rem;
}
.top-page .fv .box .txt h1 .coverd-txt.active.t-2 {
  animation-delay: 0.6s;
}
.top-page .fv .box .txt h1 .coverd-txt.active.t-2:after {
  animation-delay: 0.6s;
}
.top-page .fv .box .txt p {
  font-family: Georgia, serif;
  font-size: 1.2rem;
  position: absolute;
  bottom: 2rem;
  left: 7rem;
}
@media screen and (max-width: 767px) {
  .top-page .fv .box .txt p {
    font-size: 0.7rem;
    bottom: 1rem;
    left: 6rem;
    color: #fff;
    width: 100%;
  }
}
.top-page .cloud {
  position: relative;
  margin-top: -11rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .cloud {
    margin-top: -5rem;
    z-index: -1;
  }
}
.top-page .cloud2 {
  position: relative;
  margin-top: -20rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .cloud2 {
    margin-top: -6rem;
  }
}
.top-page .ani-cloud {
  position: relative;
  transition: all 0.6s;
}
.top-page .ani-cloud:after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/cloud-3-img.png);
  background-repeat: no-repeat;
  z-index: 9;
  background-size: 90%;
  opacity: 0;
}
.top-page .ani-cloud.active:after {
  animation: bgiLoop 8s linear;
}
.top-page .mission {
  overflow: hidden;
}
.top-page .mission .inner {
  padding: 18rem 0 2rem 8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-page .mission .inner {
    padding: 6rem 1rem 0 1rem;
    flex-flow: column-reverse;
  }
}
.top-page .mission .txt {
  width: 30%;
  padding: 6rem 2rem 2rem 0;
}
@media screen and (max-width: 767px) {
  .top-page .mission .txt {
    width: 100%;
    padding: 2rem 1rem 2rem 1rem;
    text-align: center;
  }
}
.top-page .mission .txt h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: #968574;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-page .mission .txt h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.top-page .mission .txt h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-page .mission .txt h2 span.sub-txt {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
}
.top-page .mission .txt h3 {
  font-weight: 600;
  font-size: 1.6rem;
  margin-bottom: 2rem;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .top-page .mission .txt h3 {
    font-size: 1.4rem;
  }
}
.top-page .mission .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.top-page .mission .txt .label {
  display: inline-block;
}
.top-page .mission .txt .label a {
  font-family: "Oswald", sans-serif;
  color: #000;
  font-size: 0.9rem;
  font-weight: 400;
  display: inline-block;
  background-color: #1b1464;
  color: #fff;
  padding: 4px 40px;
}
.top-page .mission .txt .label a:hover {
  transform: scale(1.1);
}
.top-page .mission .img {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .top-page .mission .img {
    width: 100%;
  }
}
.top-page .mission .img .ttl {
  position: relative;
  z-index: 2;
}
.top-page .mission .img .ttl img {
  width: 108%;
  max-width: initial;
}
@media screen and (max-width: 767px) {
  .top-page .mission .img .ttl img {
    width: 100%;
  }
}
.top-page .mission .img .wrap {
  margin-top: -2rem;
  position: relative;
  height: 600px;
  padding: 4rem 3rem 0;
}
@media screen and (max-width: 767px) {
  .top-page .mission .img .wrap {
    margin-top: -1rem;
    height: auto;
    padding: 2rem 2rem 0 0;
  }
}
.top-page .mission .img .wrap .img1 {
  width: 32%;
  position: absolute;
  right: 4rem;
  top: 0;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .mission .img .wrap .img1 {
    right: 0;
  }
}
.top-page .mission .img .wrap .img2 {
  width: 90%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .top-page .mission .img .wrap .img2 {
    width: 100%;
  }
}
.top-page .principles .ttl {
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .principles .ttl {
    margin-bottom: 1rem;
  }
}
.top-page .principles .ttl img {
  width: 132%;
  max-width: initial;
  margin-left: -1.8rem;
}
@media screen and (max-width: 767px) {
  .top-page .principles .ttl img {
    width: 224%;
  }
}
.top-page .principles .inner {
  background-image: url(../img/top-principles-back-img.png);
  background-size: cover;
  background-position: 50% 2rem;
}
@media screen and (max-width: 767px) {
  .top-page .principles .inner {
    background-image: url(../img/top-principles-sp-back-img.png);
  }
}
.top-page .principles .bg-wrap {
  position: relative;
}
.top-page .principles h2 {
  position: relative;
  z-index: 1;
  text-align: center;
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-page .principles h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    color: #968574;
  }
}
.top-page .principles h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .top-page .principles h2 span.sub-txt {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
}
.top-page .principles .list {
  position: relative;
  z-index: 1;
  padding: 0 4rem 4rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top-page .principles .list {
    padding: 0 4rem 4rem;
    flex-flow: column;
  }
}
.top-page .principles .list li {
  width: 31%;
  padding: 1rem;
  border-radius: 30px;
  background: linear-gradient(#e4eafc, #bcc7f6);
  border-radius: 60px;
  box-shadow: 0 0 13px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .top-page .principles .list li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.top-page .principles .list h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 0.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top-page .principles .list h3 {
    font-size: 1.2rem;
  }
}
.top-page .principles .list p {
  font-size: 0.8rem;
  line-height: 1.9;
  text-align: center;
}
.top-page .profile .inner {
  overflow: hidden;
  position: relative;
}
.top-page .profile .ttl {
  padding: 0rem 0;
  width: 70%;
  margin-left: auto;
  margin-right: -4rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-page .profile .ttl {
    width: 100%;
    margin: 0;
    padding: 1rem 0 1rem 1rem;
    overflow: hidden;
    z-index: 2;
  }
}
@media screen and (max-width: 767px) {
  .top-page .profile .ttl img {
    width: 120%;
    max-width: inherit;
  }
}
.top-page .profile .wrap {
  padding: 0 0 0 8rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap {
    padding: 1rem;
    flex-flow: column-reverse;
  }
}
.top-page .profile .wrap .txt {
  width: 45%;
  padding: 2rem 2rem 6rem 0;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .txt {
    width: 100%;
    padding: 2rem 0rem 1rem 0;
    text-align: center;
  }
}
.top-page .profile .wrap .txt h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: #968574;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .txt h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.top-page .profile .wrap .txt h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .txt h2 span.sub-txt {
    font-size: 1rem;
    margin-top: 0.4rem;
  }
}
.top-page .profile .wrap .txt h3 {
  font-weight: 600;
  font-size: 3rem;
  margin-bottom: 2rem;
  font-family: "Harenosora";
  letter-spacing: -8px;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .txt h3 {
    font-size: 2rem;
    letter-spacing: -6px;
  }
}
.top-page .profile .wrap .txt h3 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.3rem;
  display: block;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .txt h3 span.sub-txt {
    font-size: 1rem;
  }
}
.top-page .profile .wrap .txt h3 .slide-in-txt .c1,
.top-page .profile .wrap .txt h3 .slide-in-txt .c2,
.top-page .profile .wrap .txt h3 .slide-in-txt .c3,
.top-page .profile .wrap .txt h3 .slide-in-txt .c4,
.top-page .profile .wrap .txt h3 .slide-in-txt .c5,
.top-page .profile .wrap .txt h3 .slide-in-txt .c6 {
  opacity: 0;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c1,
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c2,
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c3,
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c4,
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c5,
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c6 {
  animation: 2s linear forwards fadeInTxt;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c1 {
  animation-delay: 0s;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c2 {
  animation-delay: 0.4s;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c3 {
  animation-delay: 0.8s;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c4 {
  animation-delay: 1.2s;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c5 {
  animation-delay: 1.6s;
}
.top-page .profile .wrap .txt h3 .slide-in-txt.active .c6 {
  animation-delay: 2s;
}
.top-page .profile .wrap .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.top-page .profile .wrap .img {
  width: 55%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .img {
    width: 100%;
    padding-bottom: 3rem;
  }
}
.top-page .profile .wrap .img img {
  width: 55%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .img img {
    max-width: 250px;
  }
}
.top-page .profile .wrap .img .bg-img {
  position: absolute;
  top: -70vh;
  left: 0;
  width: 100%;
  height: 170vh;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .img .bg-img {
    top: -60%;
    left: -1rem;
    width: calc(100% + 2rem);
    height: 160%;
    z-index: 1;
    overflow: hidden;
  }
}
.top-page .profile .wrap .img .bg-img img {
  width: 120%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  left: -7%;
  top: 0;
}
@media screen and (max-width: 767px) {
  .top-page .profile .wrap .img .bg-img img {
    max-width: initial;
    left: -20%;
    top: -10%;
  }
}
.top-page .review {
  background-image: url(../img/top-review-back-img.png);
  background-position: top;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .top-page .review {
    background-image: url(../img/top-review-sp-back-img.png);
  }
}
.top-page .review .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .top-page .review .inner {
    padding-bottom: 30rem;
  }
}
.top-page .review .ttl {
  padding: 2rem 0;
  width: 62%;
  margin-left: auto;
  margin-right: -4rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .review .ttl {
    padding: 1rem 0;
    width: 65%;
    margin-right: initial;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .top-page .review .ttl img {
    width: 170%;
    max-width: inherit;
  }
}
.top-page .review .box-img {
  position: absolute;
  top: -70px;
  left: 4rem;
  width: 320px;
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .top-page .review .box-img {
    width: 100%;
    top: -20px;
    left: 1rem;
    align-items: flex-end;
  }
}
.top-page .review .box-img img {
  width: 200px;
}
@media screen and (max-width: 767px) {
  .top-page .review .box-img img {
    width: 34%;
    max-width: 170px;
  }
}
.top-page .review .box-img h2 {
  font-family: "Oswald", sans-serif;
  font-size: 3rem;
  color: #968574;
  line-height: 1.1;
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .top-page .review .box-img h2 {
    font-size: 2rem;
    letter-spacing: 2px;
    margin-top: 0;
    margin-bottom: 1rem;
    margin-left: 0rem;
    width: 50%;
    text-align: center;
  }
}
.top-page .review .box-img h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
  text-align: right;
  margin-top: 4px;
}
@media screen and (max-width: 767px) {
  .top-page .review .box-img h2 span.sub-txt {
    font-size: 1rem;
    margin-top: 0.4rem;
    text-align: center;
  }
}
.top-page .review .list {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .top-page .review .list {
    margin-top: 7rem;
  }
}
.top-page .review .list li {
  margin: 0 8rem 3rem;
  background-color: #f7f7f7;
  padding: 1rem 3rem 3rem;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .top-page .review .list li {
    margin: 0 1rem 2rem;
    padding: 1rem;
  }
}
.top-page .review .list .list-top {
  padding-top: 1rem;
  position: relative;
}
.top-page .review .list .list-top h3 {
  font-family: "Oswald", sans-serif;
  color: #2a2f88;
  font-weight: 600;
  font-size: 1.2rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid #8d8786;
  padding-left: 140px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .top-page .review .list .list-top h3 {
    font-size: 1rem;
    padding: 0;
    margin-bottom: 1rem;
    margin-left: 0;
    border-bottom: none;
  }
}
.top-page .review .list .list-top p {
  font-weight: 600;
  font-size: 1.2rem;
  margin-top: 0.4rem;
  padding-left: 140px;
  margin-left: 1rem;
}
@media screen and (max-width: 767px) {
  .top-page .review .list .list-top p {
    font-size: 1rem;
    margin: 2rem 1rem 0;
    padding-left: 100px;
    border-bottom: 1px solid #8d8786;
    padding-bottom: 0.4rem;
  }
}
@media screen and (max-width: 767px) {
  .top-page .review .list .list-top p span {
    font-size: 0.8rem;
  }
}
.top-page .review .list .list-top .list-img {
  width: 140px;
  position: absolute;
  left: -20px;
  top: -1.6rem;
}
@media screen and (max-width: 767px) {
  .top-page .review .list .list-top .list-img {
    width: 100px;
    position: absolute;
    left: 0;
    top: auto;
    bottom: -26px;
  }
}
.top-page .review .list .list-txt {
  margin-top: 2rem;
}
.top-page .review .list .list-txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 1rem;
  font-weight: 600;
}
.top-page .review .list .list-txt p:last-child {
  margin-bottom: 0;
}
.top-page .review .more-btn {
  padding-bottom: 5rem;
  text-align: center;
  padding-top: 1rem;
}
.top-page .review .more-btn a {
  display: inline-flex;
  align-items: center;
}
.top-page .review .more-btn span {
  display: inline-block;
  margin-right: 20px;
  color: #968574;
  font-weight: 600;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .top-page .review .more-btn span {
    font-size: 1.2rem;
  }
}
.top-page .review .more-btn img {
  width: 80px;
}
@media screen and (max-width: 767px) {
  .top-page .review .more-btn img {
    width: 60px;
  }
}

.program-page {
  /* FV
     ----------------------------------------- */
  /* Process
     ----------------------------------------- */
  /* About
     ----------------------------------------- */
  /* Why
     ----------------------------------------- */
  /* Who
     ----------------------------------------- */
  /* Points
     ----------------------------------------- */
  /* Interview
     ----------------------------------------- */
  /* Offer
     ----------------------------------------- */
  /* Contactus
     ----------------------------------------- */
}
.program-page .fv {
  position: relative;
}
.program-page .fv .inner {
  position: relative;
  z-index: 2;
  padding: 12rem 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .program-page .fv .inner {
    padding: 10rem 2rem 8rem;
  }
}
.program-page .fv .inner p {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
}
.program-page .fv .inner p span {
  font-size: 1.2rem;
  color: #fff;
}
.program-page .fv .inner a {
  display: inline-block;
  width: 90px;
  position: absolute;
  left: 10rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .program-page .fv .inner a {
    width: 60px;
    left: auto;
    bottom: 2rem;
    right: 1rem;
  }
}
.program-page .fv .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.program-page .fv .movie video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.program-page .process .inner {
  text-align: center;
}
.program-page .process .box {
  overflow: hidden;
}
.program-page .process h2 {
  padding: 8rem 14rem;
}
@media screen and (max-width: 767px) {
  .program-page .process h2 {
    padding: 2rem 4rem;
  }
}
.program-page .about .inner {
  padding: 8rem 0 2rem 8rem;
}
@media screen and (max-width: 767px) {
  .program-page .about .inner {
    padding: 1rem 0;
  }
}
@media screen and (max-width: 767px) {
  .program-page .about .ttl {
    width: calc(100% + 1rem);
    margin-left: -1rem;
  }
}
@media screen and (max-width: 767px) {
  .program-page .about .ttl img {
    width: 102%;
    max-width: inherit;
    margin-left: -0.4rem;
  }
}
.program-page .about .wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap {
    flex-flow: column;
  }
}
.program-page .about .wrap .txt,
.program-page .about .wrap .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt,
  .program-page .about .wrap .img {
    width: 100%;
  }
}
.program-page .about .wrap .txt {
  padding: 1rem 0rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt {
    padding: 1rem 2rem 1rem;
    text-align: center;
  }
}
.program-page .about .wrap .txt h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  color: #968574;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.program-page .about .wrap .txt h2 span.coverd-txt span b {
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt h2 span.coverd-txt span b {
    font-size: 1.3rem;
    margin-top: 0.4rem;
  }
}
.program-page .about .wrap .txt h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt h2 span.sub-txt {
    font-size: 0.9rem;
    margin-top: 1rem;
    font-weight: 600;
  }
}
.program-page .about .wrap .txt h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt h3 {
    font-size: 1.4rem;
  }
}
.program-page .about .wrap .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.program-page .about .wrap .txt .label {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 18px;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .txt .label {
    display: none;
  }
}
.program-page .about .wrap .img {
  position: relative;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .img {
    padding: 0 2rem;
  }
}
.program-page .about .wrap .img .ttl {
  padding-left: 6rem;
  margin-bottom: 2rem;
}
.program-page .about .wrap .img .ttl img {
  max-width: inherit;
  width: 192%;
}
.program-page .about .wrap .img .img-wrap {
  position: relative;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .img .img-wrap {
    text-align: center;
  }
}
.program-page .about .wrap .img .img-wrap .img1 {
  width: 90%;
}
.program-page .about .wrap .img .img-wrap .img2 {
  width: 30%;
  position: absolute;
  bottom: -2rem;
  right: 6rem;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .program-page .about .wrap .img .img-wrap .img2 {
    width: 40%;
    bottom: 0rem;
    right: 0rem;
  }
}
.program-page .why {
  background-image: url(../img/program-blue-back.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .program-page .why {
    position: relative;
    background-image: none;
  }
}
@media screen and (max-width: 767px) {
  .program-page .why .sp-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
  }
}
@media screen and (max-width: 767px) {
  .program-page .why .sp-back img {
    position: relative;
    -o-object-fit: unset;
       object-fit: unset;
    width: 100%;
    height: 100%;
  }
}
.program-page .why .inner {
  padding: 8rem 8rem 16rem 0;
}
@media screen and (max-width: 767px) {
  .program-page .why .inner {
    padding: 2rem 2rem 10rem;
  }
}
.program-page .why .wrap {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap {
    flex-flow: column;
  }
}
.program-page .why .wrap .txt,
.program-page .why .wrap .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt,
  .program-page .why .wrap .img {
    width: 100%;
  }
}
.program-page .why .wrap .txt {
  padding: 0 4rem 0 2rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt {
    padding: 3rem 0 0;
    text-align: center;
  }
}
.program-page .why .wrap .txt h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  color: #968574;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.program-page .why .wrap .txt h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt h2 span.sub-txt {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
  }
}
.program-page .why .wrap .txt h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt h3 {
    font-size: 1.2rem;
  }
}
.program-page .why .wrap .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.program-page .why .wrap .txt .label {
  position: absolute;
  top: 1rem;
  right: 0;
  width: 18px;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .txt .label {
    display: none;
  }
}
.program-page .why .wrap .img .ttl {
  padding: 4rem 0 6rem;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .img .ttl {
    padding: 4rem 0 2rem;
    text-align: right;
  }
}
.program-page .why .wrap .img .ttl img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .img .ttl img {
    width: 70%;
  }
}
.program-page .why .wrap .img .img-wrap {
  position: relative;
  padding-bottom: 10rem;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .img .img-wrap {
    padding-bottom: 0;
  }
}
.program-page .why .wrap .img .img-wrap .img1 {
  width: 50%;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .img .img-wrap .img1 {
    width: 40%;
  }
}
.program-page .why .wrap .img .img-wrap .img2 {
  width: 90%;
  position: absolute;
  right: 0;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .program-page .why .wrap .img .img-wrap .img2 {
    width: 85%;
  }
}
.program-page .who {
  margin-top: -12rem;
}
@media screen and (max-width: 767px) {
  .program-page .who {
    margin-top: 0;
  }
}
.program-page .who .inner {
  padding: 8rem 0 6rem 8rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .inner {
    padding: 2rem;
  }
}
.program-page .who .wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap {
    flex-flow: column-reverse;
  }
}
.program-page .who .wrap .txt,
.program-page .who .wrap .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt,
  .program-page .who .wrap .img {
    width: 100%;
  }
}
.program-page .who .wrap .txt {
  padding: 6rem 0rem 0rem 4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt {
    padding: 0rem;
    text-align: center;
  }
}
.program-page .who .wrap .txt h2 {
  font-family: "Oswald", sans-serif;
  font-size: 2.3rem;
  color: #968574;
  line-height: 1.1;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt h2 {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.program-page .who .wrap .txt h2 span.sub-txt {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  color: #000;
  display: block;
  margin-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt h2 span.sub-txt {
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 1rem;
  }
}
.program-page .who .wrap .txt h3 {
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt h3 {
    font-size: 1.2rem;
  }
}
.program-page .who .wrap .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.program-page .who .wrap .txt .label {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 18px;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .txt .label {
    display: none;
  }
}
.program-page .who .wrap .img {
  position: relative;
  padding-left: 1rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .img {
    padding-left: 0;
  }
}
.program-page .who .wrap .img .ttl {
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .img .ttl {
    padding: 4rem 1rem 0 5rem;
    margin: 0;
    text-align: right;
  }
}
.program-page .who .wrap .img .ttl img {
  max-width: inherit;
  width: 102%;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .img .ttl img {
    width: 100%;
  }
}
.program-page .who .wrap .img .img-wrap {
  position: relative;
  text-align: right;
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .img .img-wrap {
    text-align: left;
    padding: 0rem 2rem;
    margin-top: -6rem;
    z-index: -1;
  }
}
.program-page .who .wrap .img .img-wrap img {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .program-page .who .wrap .img .img-wrap img {
    width: 82%;
  }
}
.program-page .points {
  position: relative;
  overflow: hidden;
}
.program-page .points .inner {
  position: relative;
  z-index: 1;
  padding-bottom: 12rem;
}
@media screen and (max-width: 767px) {
  .program-page .points .inner {
    padding: 2rem 2rem 4rem;
  }
}
.program-page .points h2 {
  text-align: center;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .program-page .points h2 {
    font-size: 1.2rem;
  }
}
.program-page .points h2 .img {
  text-align: left;
}
.program-page .points h2 img {
  width: 98%;
}
.program-page .points h2 span {
  margin-top: 2rem;
}
.program-page .points .list {
  padding: 0 12rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .program-page .points .list {
    padding: 0;
    flex-flow: column;
  }
}
.program-page .points .list li {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .program-page .points .list li {
    width: 100%;
    text-align: center;
  }
}
.program-page .points .list li h3 {
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.4rem;
  padding: 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .program-page .points .list li h3 {
    font-size: 1.2rem;
  }
}
.program-page .points .list li h3 span {
  display: inline-block;
  background: linear-gradient(transparent 60%, #d1c767 60%);
}
.program-page .points .list li p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.program-page .points .list li:first-child h3 {
  padding: 0;
}
.program-page .points .list li:first-child h3 span {
  background: linear-gradient(transparent 50%, #d1c767 50%, #d1c767 70%, transparent 70%);
}
@media screen and (max-width: 767px) {
  .program-page .points .list li:first-child h3 span {
    background: linear-gradient(transparent 80%, #d1c767 80%);
  }
}
.program-page .points .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.program-page .points .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.program-page .interview .inner {
  padding: 2rem 0 4rem;
}
.program-page .interview h2 {
  font-family: "Oswald", sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 2rem;
  display: inline-block;
}
.program-page .interview h2 .img {
  padding-right: 8rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .program-page .interview h2 .img {
    padding-right: 1rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .program-page .interview h2 .img img {
    max-width: inherit;
    width: 162%;
  }
}
@media screen and (max-width: 767px) {
  .program-page .interview h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;
  }
}
.program-page .interview h2 span.coverd-txt {
  margin-left: 8rem;
}
@media screen and (max-width: 767px) {
  .program-page .interview h2 span.coverd-txt {
    margin-left: 0;
  }
}
.program-page .interview .list {
  padding: 0 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .program-page .interview .list {
    padding: 0 2rem;
    flex-flow: column;
  }
}
.program-page .interview .list li {
  width: 30%;
  background-color: #b8ada3;
  padding: 1rem;
  box-shadow: 0 0 13px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .program-page .interview .list li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .program-page .interview .list li:last-child {
    margin-bottom: 0;
  }
}
.program-page .interview .list li .thumbnail {
  text-align: center;
}
.program-page .interview .list li .thumbnail img {
  max-width: 100%;
}
.program-page .interview .list li .thumbnail iframe {
  width: 100%;
  height: auto;
}
.program-page .interview .list h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1rem 0;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .program-page .interview .list h3 {
    font-size: 1.2rem;
  }
}
.program-page .interview .list h3 span {
  font-size: 0.8rem;
}
.program-page .interview .list p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.program-page .offer {
  background-color: #000;
}
.program-page .offer .ttl {
  text-align: center;
}
.program-page .offer .ttl img {
  max-width: inherit;
  width: 100%;
}
.program-page .offer .txt {
  text-align: center;
  padding: 1rem 0;
}
.program-page .offer .txt img {
  width: 36%;
}
@media screen and (max-width: 767px) {
  .program-page .offer .txt img {
    width: 50%;
  }
}
.program-page .offer .btn {
  text-align: center;
  padding-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .program-page .offer .btn {
    padding-bottom: 2rem;
    margin-top: 0.4rem;
  }
}
.program-page .offer .btn a {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.1;
  display: inline-block;
  background-color: #fff;
  color: #000;
  padding: 0.6rem 6rem;
  box-shadow: 6px 6px 0 0 #b1b1b1;
  animation-name: upDown;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
@media screen and (max-width: 767px) {
  .program-page .offer .btn a {
    font-size: 0.8rem;
    padding: 0.6rem 2rem;
  }
}
.program-page .contactus {
  position: relative;
  overflow: hidden;
}
.program-page .contactus .inner {
  position: relative;
  z-index: 1;
}
.program-page .contactus .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 8rem;
}
@media screen and (max-width: 767px) {
  .program-page .contactus .wrap {
    padding: 2rem 2rem;
  }
}
.program-page .contactus .wrap .txt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .program-page .contactus .wrap .txt {
    width: 70%;
  }
}
.program-page .contactus .wrap .img {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .program-page .contactus .wrap .img {
    width: 40px;
  }
}
.program-page .contactus .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.program-page .contactus .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.resourses-page {
  /* FV
     ----------------------------------------- */
  /* youtube
     ----------------------------------------- */
  /* Interview
     ----------------------------------------- */
  /* Sns
     ----------------------------------------- */
}
.resourses-page .fv {
  position: relative;
}
.resourses-page .fv .inner {
  position: relative;
  z-index: 2;
  padding: 12rem 2rem 10rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .fv .inner {
    padding: 10rem 1rem 8rem;
  }
}
.resourses-page .fv .inner p {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .resourses-page .fv .inner p {
    font-size: 0.9rem;
  }
}
.resourses-page .fv .inner p span {
  font-size: 1.2rem;
  color: #fff;
}
.resourses-page .fv .inner a {
  display: inline-block;
  width: 90px;
  position: absolute;
  left: 10rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .fv .inner a {
    width: 60px;
    left: auto;
    bottom: 2rem;
    right: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .resourses-page .fv h1 {
    padding: 0 1rem;
  }
}
.resourses-page .fv .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.resourses-page .fv .movie video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.resourses-page .youtube .inner {
  padding: 2rem 8rem 3rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .youtube .inner {
    padding: 1rem 2rem 3rem;
  }
}
.resourses-page .youtube .ttl {
  padding: 1rem;
}
.resourses-page .youtube h2 {
  margin: 1rem 0 2rem;
  text-align: center;
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .resourses-page .youtube h2 {
    font-size: 1.2rem;
    margin: 0 0 1rem;
  }
}
.resourses-page .youtube .img {
  box-shadow: 0px 6px 8px 1px rgba(0, 0, 0, 0.1);
}
.resourses-page .youtube .link {
  padding: 0 4rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .youtube .link {
    padding: 0;
    margin-top: 2rem;
  }
}
.resourses-page .youtube .link a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .resourses-page .youtube .link a {
    font-size: 0.9rem;
  }
}
.resourses-page .youtube .link a:hover {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .youtube .link a:hover {
    font-size: 1.1rem;
  }
}
.resourses-page .interview {
  background-image: url(../img/resourses-interview-back-img.png);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.resourses-page .interview .inner {
  padding: 2rem 0 4rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .inner {
    padding: 2rem 2rem 6rem;
  }
}
.resourses-page .interview .ttl {
  padding-left: 8rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .ttl {
    padding-left: 0rem;
    margin-bottom: 1rem;
  }
}
.resourses-page .interview .ttl img {
  max-width: inherit;
  width: 104%;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .ttl img {
    max-width: 100%;
    width: 100%;
  }
}
.resourses-page .interview h2 {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 7rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview h2 {
    font-size: 1.2rem;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.resourses-page .interview .list {
  padding: 0 8rem;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .list {
    padding: 0 1rem;
    flex-flow: column;
  }
}
.resourses-page .interview .list li {
  width: 30%;
  background-color: #b8ada3;
  padding: 1rem;
  box-shadow: 0 0 13px 6px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .list li {
    width: 100%;
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .list li:last-child {
    margin-bottom: 0;
  }
}
.resourses-page .interview .list li .thumbnail {
  text-align: center;
}
.resourses-page .interview .list li .thumbnail img {
  max-width: 100%;
}
.resourses-page .interview .list li .thumbnail iframe {
  width: 100%;
  height: auto;
}
.resourses-page .interview .list h3 {
  font-weight: 600;
  font-size: 1.2rem;
  margin: 1rem 0;
  animation: lightText 0.6s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .list h3 {
    font-size: 1.2rem;
  }
}
.resourses-page .interview .list h3 span {
  font-size: 0.8rem;
}
.resourses-page .interview .list p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.resourses-page .interview .link {
  padding: 0 12rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .link {
    padding: 0;
  }
}
.resourses-page .interview .link a {
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  transition: all 0.6s;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .link a {
    font-size: 0.9rem;
  }
}
.resourses-page .interview .link a:hover {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .interview .link a:hover {
    font-size: 1.1rem;
  }
}
.resourses-page .sns .inner {
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .sns .inner {
    padding: 3rem 2rem;
  }
}
.resourses-page .sns .list {
  display: flex;
  justify-content: center;
}
.resourses-page .sns .list li {
  width: 60px;
  margin: 0 0.4rem;
}
@media screen and (max-width: 767px) {
  .resourses-page .sns .list li {
    width: 45px;
    margin: 0 0.2rem;
  }
}

.review-page {
  /* FV
     ----------------------------------------- */
  /* voice
     ----------------------------------------- */
  /* program
     ----------------------------------------- */
}
.review-page .fv {
  position: relative;
}
.review-page .fv .inner {
  position: relative;
  z-index: 2;
  padding: 12rem 2rem 10rem;
}
@media screen and (max-width: 767px) {
  .review-page .fv .inner {
    padding: 10rem 1rem 8rem;
  }
}
.review-page .fv .inner p {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .review-page .fv .inner p {
    font-size: 0.9rem;
  }
}
.review-page .fv .inner p span {
  font-size: 1.2rem;
  color: #fff;
}
.review-page .fv .inner a {
  display: inline-block;
  width: 90px;
  position: absolute;
  left: 10rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .review-page .fv .inner a {
    width: 60px;
    left: auto;
    bottom: 2rem;
    right: 1rem;
  }
}
.review-page .fv h1 {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .review-page .fv h1 {
    padding: 0 1rem;
  }
}
.review-page .fv h1 img {
  width: 70%;
}
.review-page .fv .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.review-page .fv .movie video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.review-page .voice .inner {
  padding: 4rem 8rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .inner {
    padding: 2rem;
  }
}
.review-page .voice .box {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.review-page .voice .box:after {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #c6c6c6;
  box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
}
.review-page .voice .box:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}
.review-page .voice .box:last-child:after {
  content: none;
}
.review-page .voice .box.type1 {
  padding-bottom: 6rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1 {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.review-page .voice .box.type1.bottom {
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1.bottom {
    margin-bottom: 2rem;
  }
}
.review-page .voice .box.type1 .txt,
.review-page .voice .box.type1 .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1 .txt,
  .review-page .voice .box.type1 .img {
    width: 100%;
  }
}
.review-page .voice .box.type1:nth-child(odd) .img {
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1:nth-child(odd) .img {
    padding: 0;
  }
}
.review-page .voice .box.type1:nth-child(even) .img {
  padding-right: 2rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1:nth-child(even) .img {
    padding: 0;
  }
}
.review-page .voice .box.type1 .txt .hidden-txt {
  height: 270px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type1 .txt .hidden-txt {
    height: 150px;
  }
}
.review-page .voice .box.type2 {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type2 {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
}
.review-page .voice .box.type2 .img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type2 .img {
    width: 100%;
  }
}
.review-page .voice .box.type2 .txt {
  width: 70%;
  padding-left: 2rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box.type2 .txt {
    width: 100%;
    padding: 0;
  }
}
.review-page .voice .box.type2 .txt h3 {
  margin-bottom: 2rem;
  font-family: "Oswald", sans-serif;
}
.review-page .voice .box.type2 .txt .hidden-txt {
  height: 150px;
  overflow: hidden;
}
.review-page .voice .box .ttl {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .ttl {
    order: 1;
  }
}
.review-page .voice .box .ttl h3 {
  font-family: "Oswald", sans-serif;
  margin: 3rem 0;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .ttl h3 {
    margin: 2rem 0;
  }
}
.review-page .voice .box h2 {
  font-family: "Oswald", sans-serif;
  margin-bottom: 2rem;
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box h2 {
    font-size: 1.2rem;
  }
}
.review-page .voice .box h3 {
  font-weight: 600;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box h3 {
    font-size: 1rem;
  }
}
.review-page .voice .box h3 span {
  display: inline-block;
  margin-left: 0.6rem;
  font-size: 0.9rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box h3 span {
    font-size: 0.8rem;
  }
}
.review-page .voice .box .txt {
  position: relative;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .txt {
    order: 3;
  }
}
.review-page .voice .box .txt .hidden-txt {
  position: relative;
  padding-bottom: 2rem;
  transition: all 0.4s;
}
.review-page .voice .box .txt .hidden-txt:before {
  content: "";
  width: 100%;
  height: 3rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
}
.review-page .voice .box .txt .hidden-txt.active {
  height: auto;
}
.review-page .voice .box .txt p {
  font-size: 0.8rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  font-weight: 600;
}
.review-page .voice .box .txt p:last-child {
  margin-bottom: 0;
}
.review-page .voice .box .txt .more-btn {
  cursor: pointer;
  display: inline-block;
  color: #000;
  font-size: 1.2rem;
  font-weight: 600;
  font-family: "Oswald", sans-serif;
  letter-spacing: 1px;
  transition: all 0.6s;
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .txt .more-btn {
    font-size: 0.9rem;
  }
}
.review-page .voice .box .txt .more-btn:hover {
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .txt .more-btn:hover {
    font-size: 1.1rem;
  }
}
.review-page .voice .box .txt .more-btn .arrow {
  transition: all 0.6s;
  display: inline-block;
}
.review-page .voice .box .txt .more-btn.active .arrow {
  transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .review-page .voice .box .img {
    order: 2;
    margin-bottom: 1rem;
  }
}
.review-page .program {
  position: relative;
  overflow: hidden;
}
.review-page .program .inner {
  position: relative;
  z-index: 1;
}
.review-page .program .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 6rem 8rem;
}
@media screen and (max-width: 767px) {
  .review-page .program .wrap {
    padding: 2rem 2rem;
  }
}
.review-page .program .wrap .txt {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .review-page .program .wrap .txt {
    width: 70%;
  }
}
.review-page .program .wrap .img {
  width: 90px;
}
@media screen and (max-width: 767px) {
  .review-page .program .wrap .img {
    width: 40px;
  }
}
.review-page .program .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.review-page .program .movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.terms-page {
  width: 760px;
  padding-top: 22px;
  padding-right: 0;
  padding-bottom: 20px;
  padding-left: 0;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .terms-page {
    width: 95%;
    margin: 0 auto;
    padding: 10px 0;
  }
}
.terms-page .box {
  border: 1px solid #d5d5d5;
  margin-bottom: 20px;
  padding-top: 10px;
  padding-right: 5%;
  padding-bottom: 20px;
  padding-left: 5%;
}
.terms-page .box h2 {
  margin: 10px 0;
  font-size: 18px;
  font-weight: bold;
  color: #2e2c2c;
  border-bottom: 1px solid #515151;
  line-height: 1.75;
}
.terms-page .box h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.75;
  color: #2e2c2c;
}
.terms-page .box .table {
  border: 1px #ccc solid;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 10px 0 20px;
}
.terms-page .box .table th {
  padding: 10px;
  border: 1px #ccc solid;
  border-width: 0 0 1px 1px;
  font-size: 16px;
  font-weight: 600;
  width: 35%;
  text-align: left;
  line-height: 1.75;
}
.terms-page .box .table td {
  padding: 10px;
  border: 1px #ccc solid;
  font-size: 16px;
  border-width: 0 0 1px 1px;
  width: 65%;
  line-height: 1.75;
}
.terms-page .box .table td span {
  font-size: 8pt;
  color: #ff0000;
}
.terms-page .box p {
  font-size: 16px;
  line-height: 1.7;
}

.terms2-page {
  /* FV
    ----------------------------------------- */
  /* About
    ----------------------------------------- */
}
.terms2-page .fv {
  position: relative;
}
.terms2-page .fv .inner {
  position: relative;
  z-index: 2;
}
.terms2-page .fv .inner a {
  display: inline-block;
  width: 90px;
  position: absolute;
  left: 10rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .terms2-page .fv .inner a {
    width: 60px;
    left: auto;
    bottom: 2rem;
    right: 1rem;
  }
}
.terms2-page .fv h1 img {
  width: 100%;
}
.terms2-page .about .inner {
  padding: 6rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .terms2-page .about .inner {
    padding: 2rem 1rem;
  }
}
.terms2-page .about .terms-ttl-h2 {
  font-family: "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  margin-top: 30px;
  background-color: #3f53a6;
  text-align: center;
  color: #fff;
  font-size: 22px;
  padding: 20px;
  letter-spacing: 1px;
  margin-bottom: 6px;
}
@media screen and (max-width: 767px) {
  .terms2-page .about .terms-ttl-h2 {
    font-size: 20px;
  }
}
.terms2-page .about .terms-ttl-h3 {
  border-left: 8px solid #3f53a6;
  font-size: 20px;
  padding: 2px 15px;
  margin-left: 5px;
  margin-top: 35px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .terms2-page .about .terms-ttl-h3 {
    font-size: 18px;
  }
}
.terms2-page .about p {
  font-size: 16px;
  margin: 0 0 1.6em;
  letter-spacing: 1px;
  line-height: 1.75;
}
.terms2-page .about li {
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1.75;
}
.terms2-page .about .terms-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px 6px;
}
.terms2-page .about .terms-table th {
  text-align: left;
  background: #b1b8db;
  font-weight: 500;
  padding: 12px 20px;
  width: 25%;
  border: none;
}
.terms2-page .about .terms-table td {
  border: none;
  background: #d8dced;
  padding: 12px 20px;
  width: 75%;
}

.plan-page {
  /* FV
    ----------------------------------------- */
  /* Process
    ----------------------------------------- */
  /* Course
    ----------------------------------------- */
  /* plan-detail
  ----------------------------------------- */
  /* support
  ----------------------------------------- */
  /* Offer
    ----------------------------------------- */
}
.plan-page .fv {
  position: relative;
}
.plan-page .fv .inner {
  position: relative;
  z-index: 2;
  padding: 12rem 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .plan-page .fv .inner {
    padding: 10rem 2rem 8rem;
  }
}
.plan-page .fv .inner p {
  font-family: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: center;
  margin: 1rem 0;
  font-weight: 600;
}
.plan-page .fv .inner p span {
  font-size: 1.2rem;
  color: #fff;
}
.plan-page .fv .inner a {
  display: inline-block;
  width: 90px;
  position: absolute;
  left: 10rem;
  bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .plan-page .fv .inner a {
    width: 60px;
    left: auto;
    bottom: 2rem;
    right: 1rem;
  }
}
.plan-page .fv .movie {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.plan-page .fv .movie video {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.plan-page .process .inner {
  padding: 4rem 12rem;
}
@media screen and (max-width: 767px) {
  .plan-page .process .inner {
    padding: 1rem 0;
  }
}
.plan-page .process .wrap {
  display: flex;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap {
    flex-flow: column-reverse;
  }
}
.plan-page .process .wrap .txt {
  width: 70%;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap .txt {
    width: 100%;
  }
}
.plan-page .process .wrap .img {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap .img {
    width: 100%;
  }
}
.plan-page .process .wrap .txt {
  padding: 1rem 0rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap .txt {
    padding: 1rem 2rem 1rem;
    text-align: center;
  }
}
.plan-page .process .wrap .txt h2 {
  line-height: 1.1;
  margin-bottom: 2rem;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap .txt h2 {
    font-size: 1rem;
    letter-spacing: 2px;
  }
}
.plan-page .process .wrap .txt h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #cab38b;
  display: inline-block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .plan-page .process .wrap .txt h2 span {
    font-size: 1.4rem;
    letter-spacing: 1px;
  }
}
.plan-page .process .wrap .txt p {
  font-size: 1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
}
.plan-page .process .wrap .txt p:last-child {
  margin-bottom: 0;
}
.plan-page .course {
  background-image: url(../img/plan-course-back-img.png);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plan-page .course {
    position: relative;
  }
}
.plan-page .course .inner {
  padding: 3rem 16rem;
}
@media screen and (max-width: 767px) {
  .plan-page .course .inner {
    padding: 2rem 2rem;
  }
}
.plan-page .course h2 {
  line-height: 1.1;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan-page .course h2 {
    letter-spacing: 2px;
  }
}
.plan-page .course h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .plan-page .course h2 span {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.plan-page .course .wrap {
  display: flex;
}
.plan-page .course .wrap .img {
  width: 50%;
}
.plan-page .course .txt {
  margin: 2rem 0;
  color: #fff;
}
.plan-page .course .txt h3 {
  display: inline-block;
  background-color: #cab38b;
  padding: 4px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 11px 11px 30px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .plan-page .course .txt h3 {
    padding: 4px 10px;
    font-size: 1rem;
  }
}
.plan-page .course .txt p {
  letter-spacing: 1px;
  line-height: 1.75;
  margin-bottom: 2rem;
}
.plan-page .course .txt p:last-child {
  margin-bottom: 0;
}
.plan-page .course .txt p.number {
  padding-left: 2rem;
  position: relative;
}
.plan-page .course .txt p.number span {
  position: absolute;
  top: 0;
  left: 0;
}
.plan-page .plan-detail .inner {
  padding: 4rem 10rem 0 5rem;
}
@media screen and (max-width: 767px) {
  .plan-page .plan-detail .inner {
    padding: 2rem 2rem 0;
  }
}
.plan-page .plan-detail .wrap {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .plan-page .plan-detail .wrap {
    flex-flow: column-reverse;
  }
}
.plan-page .plan-detail .wrap .img {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .plan-page .plan-detail .wrap .img {
    width: 100%;
  }
}
.plan-page .plan-detail .wrap .txt {
  width: 60%;
  padding: 0 2rem 6rem 4rem;
}
@media screen and (max-width: 767px) {
  .plan-page .plan-detail .wrap .txt {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}
.plan-page .plan-detail .wrap .txt h2 {
  margin-bottom: 1rem;
}
.plan-page .plan-detail .wrap .txt h2 span {
  display: inline-block;
  background-color: #cab38b;
  color: #fff;
  padding: 4px 30px;
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
  box-shadow: 11px 11px 30px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  .plan-page .plan-detail .wrap .txt h2 span {
    padding: 4px 10px;
    font-size: 1rem;
  }
}
.plan-page .support {
  background-image: url(../img/plan-support-back-img.png);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .plan-page .support {
    position: relative;
  }
}
.plan-page .support .inner {
  padding: 3rem 16rem;
}
@media screen and (max-width: 767px) {
  .plan-page .support .inner {
    padding: 2rem;
  }
}
.plan-page .support h2 {
  line-height: 1.1;
  margin-bottom: 2rem;
  font-size: 0.8rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan-page .support h2 {
    letter-spacing: 2px;
  }
}
.plan-page .support h2 span {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 1rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .plan-page .support h2 span {
    font-size: 2rem;
    letter-spacing: 2px;
  }
}
.plan-page .support .wrap {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .plan-page .support .wrap {
    flex-flow: column;
  }
}
.plan-page .support .wrap .img {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .plan-page .support .wrap .img {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.plan-page .support .wrap .img img {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .plan-page .support .wrap .img img {
    padding: 0;
  }
}
.plan-page .support .wrap .img:last-child {
  width: 100%;
}
.plan-page .offer {
  background-image: url(../img/plan-offer-back-img.png);
  background-size: cover;
  background-position: top center;
  overflow: hidden;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan-page .offer {
    position: relative;
    background-position: top left;
  }
}
.plan-page .offer .inner {
  padding: 8rem 10rem;
}
@media screen and (max-width: 767px) {
  .plan-page .offer .inner {
    padding: 6rem 2rem;
  }
}
.plan-page .offer .ttl {
  text-align: center;
}
.plan-page .offer .ttl img {
  max-width: inherit;
  width: 100%;
}
.plan-page .offer .ttl {
  line-height: 1.75;
  letter-spacing: 1px;
  font-weight: 600;
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.plan-page .offer .ttl span {
  color: #bd8421;
}
.plan-page .offer p {
  letter-spacing: 1px;
}/*# sourceMappingURL=style.css.map */