@charset "UTF-8";
/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none !important;
  }
}

body {
  font-size: 16px;
  color: #240C1F;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.5;
  background: #fff;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  body {
    letter-spacing: 0;
  }
}

.inner {
  max-width: 950px;
  margin: 0 auto;
  padding: 0 40px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.header-inner {
  max-width: initial;
}

.footer-inner {
  max-width: initial;
}

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

a {
  font-family: "Noto Sans JP", sans-serif;
}

::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

:-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-ms-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="submit"],
.contact select,
.contact textarea,
.contact input[type="password"],
.login-section input[type="text"],
.login-section input[type="email"],
.login-section input[type="submit"],
.login-section select,
.login-section textarea,
.login-section input[type="password"],
.member-section input[type="text"],
.member-section input[type="email"],
.member-section input[type="submit"],
.member-section select,
.member-section textarea,
.member-section input[type="password"] {
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 1px solid #B2B2B2;
  background: #fff;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  width: 100%;
  padding: 0;
  margin: 0;
  outline: none;
}

.headerLogo {
  max-width: 100px;
}

@media screen and (max-width: 767px) {
  .headerLogo {
    max-width: 60px;
  }
}

.headerLogo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.headerLogo a:hover {
  opacity: .6;
}

.header {
  padding: 10px 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  -webkit-transition: .3s;
  transition: .3s;
}

.header.add {
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-box-shadow: 0 3px 6px rgba(62, 62, 62, 0.3);
          box-shadow: 0 3px 6px rgba(62, 62, 62, 0.3);
}

.header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-inner ul {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header-inner ul li {
  margin-right: 40px;
}

@media screen and (max-width: 1150px) {
  .header .header-inner ul li {
    margin-right: 20px;
  }
}

.header .header-inner ul li:last-child {
  margin-right: 0;
}

.header .header-inner ul li a {
  font-size: 16px;
  color: #240C1F;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 1150px) {
  .header .header-inner ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .header .header-inner ul li a {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.header .header-inner ul li a:hover {
  color: #B29C62;
}

.header .header-inner ul .header-btn1 {
  margin-right: 20px;
}

.header .header-inner ul .header-btn1 a {
  color: #fff;
  background: #B29C62;
  padding: 10px 20px;
  border: 1px solid #B29C62;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

@media screen and (max-width: 1150px) {
  .header .header-inner ul .header-btn1 a {
    padding: 10px 10px;
  }
}

.header .header-inner ul .header-btn1 a:hover {
  color: #B29C62;
  background: #fff;
}

.header .header-inner ul .header-btn2 a {
  color: #fff;
  background: #707070;
  padding: 10px 20px;
  border: 1px solid #707070;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

.header .header-inner ul .header-btn2 a:hover {
  color: #707070;
  background: #fff;
}

.top-inner {
  max-width: 1400px;
}

.top {
  position: relative;
}

.top .contents {
  position: absolute;
  right: 47%;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  letter-spacing: 4px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .top .contents {
    left: initial;
    right: 0;
    padding: 0 20px;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.top .icon {
  max-width: 140px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .top .icon {
    max-width: 70px;
    margin: 0 auto 20px;
  }
}

.top .text1 {
  font-size: 38px;
}

@media screen and (max-width: 1050px) {
  .top .text1 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .top .text1 {
    font-size: 20px;
  }
}

.top .text1 span {
  font-size: 36px;
}

@media screen and (max-width: 1050px) {
  .top .text1 span {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .top .text1 span {
    font-size: 16px;
  }
}

.top .text2 {
  font-size: 50px;
  /* font-weight: 600; */
  color: #B29C62;
}

@media screen and (max-width: 1050px) {
  .top .text2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {
  .top .text2 {
    font-size: 24px;
  }
}

.top .text3 {
  margin-top: 10px;
  font-size: 20px;
  /* font-weight: 900; */
  color: #B29C62;
}

@media screen and (max-width: 1000px) {
  .top .text3 {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .top .text3 {
    font-size: 10px;
  }
}

.section {
  padding: 80px 0 90px;
}

@media screen and (max-width: 767px) {
  .section {
    padding: 40px 0;
  }
}

.topGreeting {
  background: url(../img/topSea.png) no-repeat center center/cover;
}

.topGreeting .box {
  border: 1px solid #B29C62;
  background: #fff;
  padding: 8px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box {
    padding: 3px;
  }
}

.topGreeting .box .box-wrap {
  border: 1px solid #B29C62;
  padding: 150px 60px 65px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .box-wrap {
    padding: 70px 16px 30px;
  }
}

.topGreeting .box .title {
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .title {
    margin-bottom: 30px;
  }
}

.topGreeting .box .title .wrap {
  display: inline-block;
  font-size: 26px;
  position: relative;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .title .wrap {
    font-size: 18px;
  }
}

.topGreeting .box .title .wrap .message {
  position: absolute;
  max-width: 180px;
  top: -99px;
  left: -137px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .title .wrap .message {
    max-width: 80px;
    top: -45px;
    left: -60px;
  }
}

.topGreeting .box .lead {
  text-align: center;
  font-size: 30px;
  margin-bottom: 40px;
  letter-spacing: 2px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .lead {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.topGreeting .box .text {
  text-align: center;
  font-size: 14px;
  line-height: 2;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .text {
    margin-bottom: 20px;
  }
}

.topGreeting .box .name {
  max-width: 250px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .topGreeting .box .name {
    max-width: 130px;
  }
}

.top2 {
  background: url(../img/top2-bg.png) no-repeat center center/cover;
  position: relative;
}

@media screen and (max-width: 767px) {
  .top2 {
    padding-bottom: 50px;
  }
}

.top2 .line {
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top2 .line {
    bottom: -10%;
  }
}

.top2 .title {
  font-size: 34px;
  color: #B29C62;
  margin-bottom: 40px;
  /* font-weight: 600; */
  text-align: center;
}

@media screen and (max-width: 767px) {
  .top2 .title {
    font-size: 20px;
  }
}

.top2 .title2 {
  font-size: 36px;
  /* font-weight: bold; */
  text-align: center;
  color: #240C1F;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .top2 .title2 {
    margin-bottom: 20px;
    font-size: 25px;
  }
}

.top2 p {
  font-size: 14px;
  color: #240C1F;
  text-align: center;
  line-height: 2;
}

.top2 .p-text2 {
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .top2 .p-text2 {
    margin-bottom: 0;
  }
}

.top2 .arrow {
  margin: 40px auto;
  max-width: 8px;
}

@media screen and (max-width: 767px) {
  .top2 .arrow {
    margin: 20px auto;
  }
}

.footer {
  background: #333133;
  padding: 40px 0;
}

.footer .heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .footer .heading {
    display: block;
  }
}

.footer .heading ul {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 767px) {
  .footer .heading ul {
    display: block;
  }
}

.footer .heading ul li {
  margin-right: 40px;
}

@media screen and (max-width: 1150px) {
  .footer .heading ul li {
    margin-right: 20px;
  }
}

.footer .heading ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .footer .heading ul li {
    margin-bottom: 20px;
    text-align: center;
    margin-right: 0;
  }
}

.footer .heading ul li a {
  font-size: 16px;
  color: #240C1F;
  font-weight: 600;
  -webkit-transition: .3s;
  transition: .3s;
  color: #fff;
}

@media screen and (max-width: 1150px) {
  .footer .heading ul li a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .footer .heading ul li a {
    font-size: 12px;
    letter-spacing: 0;
  }
}

.footer .heading ul li a:hover {
  color: #B29C62;
}

.footer .heading ul .header-btn1 {
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .footer .heading ul .header-btn1 {
    margin-right: 0;
  }
}

.footer .heading ul .header-btn1 a {
  color: #fff;
  background: #B29C62;
  padding: 10px 20px;
  border: 1px solid #B29C62;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

@media screen and (max-width: 1150px) {
  .footer .heading ul .header-btn1 a {
    padding: 10px 10px;
  }
}

@media screen and (max-width: 767px) {
  .footer .heading ul .header-btn1 a {
    width: 100%;
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
}

.footer .heading ul .header-btn1 a:hover {
  color: #B29C62;
  background: #fff;
}

.footer .heading ul .header-btn2 a {
  color: #fff;
  background: #707070;
  padding: 10px 20px;
  border: 1px solid #707070;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 600;
}

.footer .heading ul .header-btn2 a:hover {
  color: #707070;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .footer .heading ul .header-btn2 a {
    width: 100%;
    display: block;
    max-width: 300px;
    margin: 0 auto;
  }
}

.footer .bottom ul {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .footer .bottom ul {
    display: block;
  }
}

.footer .bottom ul li {
  margin-right: 60px;
}

.footer .bottom ul li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .footer .bottom ul li {
    margin-bottom: 10px;
    text-align: center;
    margin-right: 0;
  }
}

.footer .bottom ul li a {
  color: #fff;
  font-size: 14px;
  -webkit-transition: .3s;
  transition: .3s;
  font-weight: 400;
}

.footer .bottom ul li a:hover {
  color: #B29C62;
}

.footer .bottom .copyright {
  color: #fff;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .footer .bottom .copyright {
    font-size: 10px;
  }
}

.footerLogo {
  max-width: 100px;
}

@media screen and (max-width: 767px) {
  .footerLogo {
    margin: 0 auto 20px;
  }
}

.footerLogo a {
  -webkit-transition: .3s;
  transition: .3s;
}

.footerLogo a:hover {
  opacity: .6;
}

.topAbout1 {
  background: #CEC5B0;
  padding: 50px 0 5px;
  text-align: center;
  font-size: 34px;
  color: #fff;
  line-height: 1.7;
  position: relative;
}

@media screen and (max-width: 767px) {
  .topAbout1 {
    padding: 20px 0 10px;
    font-size: 16px;
  }
}

.topAbout1::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 50vw 0 50vw;
  border-color: transparent #CEC5B0 #CEC5B0 #CEC5B0;
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .topAbout1::before {
    border-width: 20px 50vw 0 50vw;
  }
}

.topAbout1::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 50vw 0 50vw;
  border-color: #CEC5B0 transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .topAbout1::after {
    border-width: 20px 50vw 0 50vw;
  }
}

.topAbout1 span {
  position: relative;
  letter-spacing: 2px;
}

.topAbout1 span::before {
  position: absolute;
  content: "";
  top: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .topAbout1 span::before {
    width: 2px;
    height: 2px;
  }
}

.topAbout2 {
  background: url(../img/topAbout2-bg.png) no-repeat top center/cover;
}

@media screen and (min-width: 768px) {
  .topAbout2 {
    padding-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  .topAbout2 {
    padding-top: 60px;
  }
}

.topAbout2 p {
  font-size: 16px;
  margin-bottom: 60px;
  text-align: center;
  letter-spacing: 1px;
}

@media screen and (max-width: 767px) {
  .topAbout2 p {
    margin-bottom: 30px;
  }
}

.topAbout2 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.topAbout2 ul li {
  width: 31%;
}

@media screen and (max-width: 767px) {
  .topAbout2 ul li {
    width: 32.5%;
  }
}

.feature {
  background: url(../img/feature-bg.png) no-repeat top center/cover;
}

.feature .main-title {
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .feature .main-title {
    margin-bottom: 30px;
  }
}

.feature .main-title .row1 {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .feature .main-title .row1 {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.feature .main-title .row2 {
  font-size: 44px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (max-width: 767px) {
  .feature .main-title .row2 {
    font-size: 22px;
  }
}

.feature .main-title .row2 span {
  position: relative;
  top: 10px;
  display: table;
}

.feature .main-title .row2 .s-wrap {
  font-size: 90px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #79C0CB;
  display: table-cell;
  vertical-align: middle;
  border-radius: 50%;
  width: 98px;
  height: 98px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .feature .main-title .row2 .s-wrap {
    font-size: 40px;
    width: 50px;
    height: 50px;
  }
}

.feature {
  position: relative;
}

.feature .under-line {
  position: absolute;
  bottom: -5%;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .feature .under-line {
    bottom: -1%;
  }
}

.feature ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .feature ul {
    display: block;
  }
}

.feature ul li {
  border: 1px solid #CCB222;
  padding: 20px 25px;
}

@media screen and (min-width: 768px) {
  .feature ul li {
    width: calc(50% - 40px * 1/2);
    margin-right: 40px;
  }
  .feature ul li:nth-child(2n) {
    margin-right: 0;
  }
  .feature ul li:last-child {
    margin-right: 0;
  }
  .feature ul li:nth-child(n + 3) {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .feature ul li {
    margin-bottom: 20px;
  }
  .feature ul li:last-child {
    margin-bottom: 0;
  }
}

.feature ul li .img {
  max-width: 100px;
  margin: 0 auto 10px;
}

.feature ul li .img img {
  width: auto;
  height: 100px;
}

.feature ul li .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .feature ul li .title {
    font-size: 18px;
  }
}

.feature ul li .title span {
  font-size: 13px;
  font-weight: bold;
  display: block;
}

@media screen and (max-width: 767px) {
  .feature ul li .title span {
    font-size: 15px;
  }
}

.feature ul li .title .num {
  font-family: "alana", sans-serif;
  font-size: 30px;
  color: #79C0CB;
  line-height: 1;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .feature ul li .title .num {
    font-size: 39px;
  }
}

.feature ul li .title .text {
  text-align: center;
}

.feature ul li .contents {
  font-size: 14px;
}

.feature ul li .contents span {
  font-weight: bold;
}

.topAttendance {
  background: url(../img/topAttendance-bg.png) no-repeat center center/cover;
}

.topAttendance .title {
  text-align: center;
  position: relative;
  z-index: 2;
}

.topAttendance .title .wrap {
  display: inline-block;
  padding: 10px 40px;
  background: #B29C62;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .topAttendance .title .wrap {
    font-size: 18px;
  }
}

.topAttendance .title .wrap::after {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: 1px solid #B29C62;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .topAttendance .title .wrap {
    margin-bottom: 30px;
  }
}

.topAttendance p {
  font-size: 14px;
  text-align: center;
}

.topAttendance ul {
  margin-top: 80px;
  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;
}

@media screen and (max-width: 767px) {
  .topAttendance ul {
    margin-top: 30px;
  }
}

.topAttendance ul li {
  width: 50%;
}

.topAttendance ul .left {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  opacity: 0;
}

.topAttendance ul .left.is-show {
  -webkit-animation: fadeleft 1s ease .1s forwards;
          animation: fadeleft 1s ease .1s forwards;
}

.topAttendance ul .right {
  -webkit-transform: translateX(20%);
          transform: translateX(20%);
  opacity: 0;
}

.topAttendance ul .right.is-show {
  -webkit-animation: faderight 1s ease .1s forwards;
          animation: faderight 1s ease .1s forwards;
}

@-webkit-keyframes fadeleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes fadeleft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-25%);
            transform: translateX(-25%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@-webkit-keyframes faderight {
  from {
    opacity: 0;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

@keyframes faderight {
  from {
    opacity: 0;
    -webkit-transform: translateX(25%);
            transform: translateX(25%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
  }
}

.topVoice {
  background: url(../img/topGreeting.png) no-repeat center center/cover;
}

.topVoice .main-title {
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topVoice .main-title {
    margin-bottom: 30px;
  }
}

.topVoice .main-title .wrap {
  display: inline-block;
  font-size: 33px;
  font-weight: 600;
  padding: 10px 30px;
  border: 1px solid #B29C62;
  color: #B29C62;
  position: relative;
}

.topVoice .main-title .wrap .icon {
  position: absolute;
  top: -60px;
  left: -100px;
  max-width: 140px;
}

@media screen and (max-width: 767px) {
  .topVoice .main-title .wrap .icon {
    max-width: 70px;
    top: -40px;
    left: -40px;
  }
}

@media screen and (max-width: 767px) {
  .topVoice .main-title .wrap {
    font-size: 20px;
    padding: 10px 10px;
  }
}

.voice ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.voice ul li {
  border-radius: 10px;
  background: #fff;
  padding: 30px 20px;
  /* border: 1px solid #b3b1b1; */
  letter-spacing: 0;
  -webkit-box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
  box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
  .voice ul li {
    width: calc(33.3333% - 25px * 2/3);
    margin-right: 25px;
  }
  .voice ul li:nth-child(3n) {
    margin-right: 0;
  }
  .voice ul li:nth-child(n + 4) {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .voice ul li {
    width: calc(50% - 10px * 1/2);
    margin-right: 10px;
    padding: 20px 10px;
  }
  .voice ul li:nth-child(2n) {
    margin-right: 0;
  }
  .voice ul li:nth-child(n + 3) {
    margin-top: 10px;
  }
}

.voice ul li a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #240C1F;
  background: #fff;
}

.voice ul li a:hover {
  color: #B29C62;
}

.voice ul li .title {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .voice ul li .title {
    font-size: 14px;
  }
}

.voice ul li .name {
  font-size: 14px;
  margin-bottom: 10px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice ul li .name {
    text-align: left;
  }
}

.voice ul li .thumbnail {
  margin-bottom: 10px;
  width: 100%;
}

.voice ul li .thumbnail .wrap {
  position: relative;
  padding-top: 75%;
}

.voice ul li .thumbnail .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.voice ul li .contents {
  font-size: 12px;
}

.topDifference .main-lead2 {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .topDifference .main-lead2 {
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 768px) {
  .topDifference {
    background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(76%, #ffff), color-stop(76%, #CEC5B0), to(#CEC5B0));
    background: linear-gradient(180deg, #fff 0%, #ffff 76%, #CEC5B0 76%, #CEC5B0 100%);
  }
}

.topDifference .topTitle {
  text-align: center;
  position: relative;
  z-index: 2;
}

.topDifference .topTitle .wrap {
  display: inline-block;
  padding: 10px 40px;
  background: #ADAA97;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .topDifference .topTitle .wrap {
    font-size: 18px;
  }
}

.topDifference .topTitle .wrap::after {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: 1px solid #ADAA97;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .topDifference .topTitle .wrap {
    margin-bottom: 30px;
  }
}

.topDifference p {
  font-size: 14px;
  text-align: center;
}

.topDifference .main-title {
  margin-bottom: 60px;
  text-align: center;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .topDifference .main-title {
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.topDifference .main-title .row1 {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .topDifference .main-title .row1 {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.topDifference .main-title .row2 {
  font-size: 44px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (max-width: 767px) {
  .topDifference .main-title .row2 {
    font-size: 22px;
  }
}

.topDifference .main-title .row2 span {
  position: relative;
  top: 10px;
  display: table;
}

.topDifference .main-title .row2 .s-wrap {
  font-size: 90px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #B29C62;
  display: table-cell;
  vertical-align: middle;
  border-radius: 50%;
  width: 98px;
  height: 98px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .topDifference .main-title .row2 .s-wrap {
    font-size: 40px;
    width: 50px;
    height: 50px;
  }
}

.topDifference .lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  letter-spacing: 0;
}

@media screen and (max-width: 767px) {
  .topDifference .lists {
    display: block;
  }
}

.topDifference .lists .list {
  width: 31.5%;
  height: inherit;
  border-radius: 10px;
  border: 1px solid #CEC5B0;
  background: #fff;
  padding: 30px 20px;
  display: block;
  color: #240C1F;
  height: inherit;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .topDifference .lists .list {
    width: 100%;
    margin-bottom: 20px;
  }
  .topDifference .lists .list:last-child {
    margin-bottom: 0;
  }
}

.topDifference .lists .list .title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topDifference .lists .list .title {
    font-size: 18px;
    margin-bottom: 10px;
  }
}

.topDifference .lists .list .img {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .topDifference .lists .list .img {
    margin-bottom: 10px;
  }
}

.topDifference .lists .list .contents {
  font-size: 14px;
}

.topDifference .lists2 {
  padding-left: 15px;
}

.topDifference .lists2 .list2 {
  list-style: disc;
}

.safe {
  position: relative;
}

.safe .bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.safe .topTitle {
  text-align: center;
  position: relative;
  z-index: 2;
}

.safe .topTitle .wrap {
  display: inline-block;
  padding: 10px 40px;
  background: #B29C62;
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 60px;
  position: relative;
  z-index: 1;
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .safe .topTitle .wrap {
    font-size: 18px;
  }
}

.safe .topTitle .wrap::after {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: 1px solid #B29C62;
  width: 100%;
  height: 100%;
  content: "";
  z-index: -1;
}

@media screen and (max-width: 767px) {
  .safe .topTitle .wrap {
    margin-bottom: 30px;
  }
}

.safe p {
  font-size: 14px;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .safe p {
    text-align: left;
  }
}

.paTop {
  padding-top: 87.99px;
}

@media screen and (max-width: 767px) {
  .paTop {
    padding-top: 60.8px;
  }
}

.page-section {
  background: url(../img/page-bg.png) no-repeat center center/cover;
}

.company .box {
  border: 1px solid #707070;
}

.company .box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.company .box .row:last-child .dt,
.company .box .row:last-child dd {
  border-bottom: none !important;
}

.company .box .dt {
  padding: 20px;
  text-align: center;
  background: #ADAA97;
  width: 205px;
  color: #fff;
  font-weight: 400;
  border-right: 1px solid #707070;
  border-bottom: 1px solid #C0C0C0;
}

@media screen and (max-width: 767px) {
  .company .box .dt {
    font-size: 13px;
    width: 100px;
    padding: 15px;
  }
}

.company .box .dd {
  padding: 20px 40px;
  width: calc(100% - 205px);
  font-weight: 500;
  color: #333;
  border-bottom: 1px solid #C0C0C0;
}

@media screen and (max-width: 767px) {
  .company .box .dd {
    font-size: 13px;
    width: calc(100% - 100px);
    padding: 15px;
  }
}

.cu {
  background: url(../img/cu-bg.png) no-repeat center center/cover;
}

.cu .box {
  border: 1px solid #C7C7C7;
}

.cu .box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .cu .box .row {
    display: block;
  }
}

.cu .box .row:last-child .dt {
  border-bottom: none !important;
}

.cu .box .row:last-child .dd {
  border-bottom: none !important;
}

.cu .box .row .dt {
  width: 180px;
  color: #707070;
  font-size: 23px;
  font-weight: 600;
  padding: 15px;
  border-bottom: 1px solid #C7C7C7;
  border-right: 1px solid #C7C7C7;
  position: relative;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dt {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}

.cu .box .row .dt.f1 {
  background: #CEC5B0;
}

.cu .box .row .dt.f2 {
  background: #E0DCD2;
}

.cu .box .row .dt.f3 {
  background: #F2EFE9;
}

.cu .box .row .dt .wrap {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dt .wrap {
    padding: 10px;
  }
}

.cu .box .row .dd {
  width: calc(100% - 180px);
  background: #fff;
  padding: 15px;
  border-bottom: 1px solid #C7C7C7;
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd {
    width: 100%;
    padding: 15px;
  }
}

.cu .box .row .dd .title {
  font-size: 23px;
  font-weight: 600;
  color: #ED7131;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd .title {
    font-size: 16px;
    text-align: center;
    margin-bottom: 10px;
  }
}

.cu .box .row .dd .text {
  line-height: 2;
}

.cu .box .row .dd-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd-flex {
    display: block;
  }
}

.cu .box .row .dd-flex .item {
  width: 50%;
  padding: 15px;
}

.cu .box .row .dd-flex .item.add {
  border-right: 1px solid #C7C7C7;
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd-flex .item.add {
    border-bottom: 1px solid #C7C7C7;
    border-right: none;
  }
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd-flex .item {
    padding: 15px;
  }
}

@media screen and (max-width: 767px) {
  .cu .box .row .dd-flex .item {
    width: 100%;
  }
}

.cu .box .row ul {
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .cu .box .row ul {
    padding-left: 15px;
  }
}

.cu .box .row ul li {
  list-style: disc;
}

.cu-title {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .cu-title {
    margin-bottom: 30px;
  }
}

.cu-title .text {
  color: #B29C62;
  font-size: 34px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .cu-title .text {
    font-size: 20px;
  }
}

.cu-title .icon {
  max-width: 270px;
  margin: 0 auto;
}

.topProfile {
  position: relative;
}

.topProfile .line {
  position: absolute;
  bottom: -10%;
  left: 0;
  width: 100%;
}

.topProfile .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .topProfile .wrap {
    display: block;
  }
}

.topProfile .wrap .left {
  width: 60%;
}

@media screen and (max-width: 767px) {
  .topProfile .wrap .left {
    display: block;
    margin-bottom: 10px;
    width: 100%;
  }
}

.topProfile .wrap .left .title {
  font-size: 34px;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .topProfile .wrap .left .title {
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
  }
}

.topProfile .wrap .left .title span {
  font-size: 20px;
}

@media screen and (max-width: 767px) {
  .topProfile .wrap .left .title span {
    font-size: 14px;
  }
}

.topProfile .wrap .left .text {
  font-size: 14px;
  line-height: 2;
}

.topProfile .wrap .right {
  width: 35%;
}

@media screen and (max-width: 767px) {
  .topProfile .wrap .right {
    width: 70%;
    margin: 0 auto;
  }
}

.media {
  background: url(../img/media-bg2.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .media {
    background: url(../img/media-bg2.png) no-repeat top center/cover;
  }
}

.media .box ul {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .media .box ul {
    margin-bottom: 30px;
  }
}

.media .box ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #240C1F;
  padding: 20px 0;
  border-bottom: 1px solid #240C1F;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .media .box ul li a {
    display: block;
    padding: 10px 0;
  }
}

.media .box ul li a::after {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: url(../img/arrow-side.png) no-repeat center center/cover;
  width: 4.25px;
  -webkit-transition: .3s;
  transition: .3s;
  height: 7.92px;
}

@media screen and (max-width: 767px) {
  .media .box ul li a::after {
    right: 10px;
  }
}

.media .box ul li a:hover {
  opacity: .6;
  -webkit-transition: .3s;
  transition: .3s;
}

.media .box ul li a:hover::after {
  right: 15px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .media .box ul li a:hover::after {
    right: 10px;
  }
}

.media .box ul li a .time {
  font-size: 14px;
  width: 120px;
}

@media screen and (max-width: 767px) {
  .media .box ul li a .time {
    width: 100%;
    font-size: 12px;
    margin-bottom: 5px;
  }
}

.media .box ul li a .title {
  font-size: 16px;
  width: calc(100% - 120px);
}

@media screen and (max-width: 767px) {
  .media .box ul li a .title {
    width: 100%;
    font-size: 14px;
  }
}

.media .box {
  background: rgba(255, 255, 255, 0.86);
  padding: 40px 60px;
}

.media .box:first-child {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .media .box:first-child {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .media .box {
    padding: 30px 20px;
  }
}

.media .box .main-title {
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .media .box .main-title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.media .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .media .flex {
    display: block;
  }
}

.media .flex .item {
  width: 46%;
}

@media screen and (max-width: 767px) {
  .media .flex .item {
    width: 100%;
  }
  .media .flex .item:first-child {
    margin-bottom: 50px !important;
  }
}

.media .flex .item:first-child {
  margin-bottom: 10px;
}

.media .flex .item .img {
  max-width: 240px;
  margin: 0 auto 40px;
}

.media .flex .item .img.img2 {
  max-width: 260px;
}

@media screen and (max-width: 767px) {
  .media .flex .item .img {
    margin: 0 auto 20px;
    max-width: 150px !important;
  }
}

.media .flex .item .lead {
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .media .flex .item .lead {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.media .flex .item .title2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .media .flex .item .title2 {
    margin-bottom: 10px;
    font-size: 16px;
  }
}

.media .flex .item .text2 {
  font-size: 12px;
  line-height: 2;
}

@media screen and (min-width: 768px) {
  .media .flex .item .text2 {
    height: 250px;
  }
}

@media screen and (max-width: 767px) {
  .media .flex .item .text2 {
    margin-bottom: 20px;
  }
}

.media .btn {
  text-align: center;
}

.media .btn a {
  margin: 0 auto;
}

.section-btn a {
  border: 1px solid #B29C62;
  color: #fff;
  background: #B29C62;
  width: 240px;
  height: 70px;
  line-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 19px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
}

@media screen and (max-width: 767px) {
  .section-btn a {
    font-size: 16px;
    height: 50px;
    line-height: 50px;
  }
}

.section-btn a .arrow {
  max-width: 40px;
  position: relative;
  left: 15px;
  top: -2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.section-btn a .arrow img {
  vertical-align: middle;
}

.section-btn a:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.section-btn a:hover .arrow {
  -webkit-transition: .3s;
  transition: .3s;
  left: 20px;
}

.section-btn a:hover::after {
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  left: 0;
  opacity: 0;
}

.topColumn {
  background: url(../img/topColumn-bg.png) no-repeat center center/cover;
}

.topColumn .main-title {
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topColumn .main-title {
    margin-bottom: 30px;
  }
}

.topColumn .main-title .wrap {
  display: inline-block;
  font-size: 33px;
  font-weight: 600;
  padding: 10px 30px;
  color: #B29C62;
  position: relative;
}

.topColumn .main-title .wrap .icon {
  position: absolute;
  top: -45px;
  left: -70px;
  max-width: 160px;
}

@media screen and (max-width: 767px) {
  .topColumn .main-title .wrap .icon {
    max-width: 70px;
    top: -20px;
    left: -20px;
  }
}

@media screen and (max-width: 767px) {
  .topColumn .main-title .wrap {
    font-size: 20px;
    padding: 10px 10px;
  }
}

.topColumn .slick-slide {
  padding: 0 10px;
}

.topColumn ul .list a {
  background: #FFFFFF;
  border-radius: 10px;
  padding: 30px 20px;
  color: #240C1F;
  display: block;
}

.topColumn ul .list a .title {
  font-size: 16px;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .topColumn ul .list a .title {
    margin-bottom: 10px;
  }
}

.topColumn ul .list a .img {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .topColumn ul .list a .img {
    margin-bottom: 10px;
  }
}

.topColumn ul .list a .img .img-wrap {
  position: relative;
  padding-top: 75%;
}

.topColumn ul .list a .img .img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.topColumn ul .list a .text {
  font-size: 12px;
}

.topColumn .slick-next,
.topColumn .slick-prev {
  display: none !important;
}

.topColumn .slick-dots li.slick-active button:before {
  color: #240C1F;
}

.topColumn .slick-dots {
  bottom: -55px;
}

@media screen and (max-width: 767px) {
  .topColumn .slick-dots {
    bottom: -35px;
  }
}

.topColumn .slick-list {
  overflow: visible;
}

body,
html {
  overflow-x: hidden;
}

.ac_header {
  background: #F2EFE9;
  padding: 1.5rem 4rem 1.5rem 1rem;
  position: relative;
  z-index: +1;
  cursor: pointer;
  -webkit-transition: .2s;
  transition: .2s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .ac_header {
    padding: 1rem 2.5rem 1rem 1rem;
  }
}

.ac_inner {
  display: none;
  /* コンテンツは消しておくのがミソ */
  padding: 1.5rem 2rem 1.5rem 2rem;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .ac_inner {
    padding: 1rem 1rem 1rem 1rem;
  }
}

/* アイコンの形はここから */
.i_box {
  position: absolute;
  top: 50%;
  right: 2rem;
  width: 20px;
  height: 20px;
  margin-top: -10px;
}

@media screen and (max-width: 767px) {
  .i_box {
    right: 1rem;
  }
}

.i_box:before,
.i_box:after {
  position: absolute;
  content: "";
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  vertical-align: middle;
}

.i_box:before {
  border-top: 2px solid #240C1F;
  width: 15px;
  height: 0;
  top: 0;
  bottom: 0;
  right: 0;
}

.i_box:after {
  border-left: 2px solid #240C1F;
  width: 0;
  height: 15px;
  top: 0;
  bottom: 0;
  right: 6px;
  -webkit-transition: .3s;
  transition: .3s;
  /* これがあるからアイコンが優しく動く */
}

.ac_header.open .i_box:after {
  height: 0;
  /* openというクラスがつい時アイコンがどうなるかをを指示している...③ */
}

/* アイコンの形ここまで */
.qa .main-title {
  font-size: 22px;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .qa .main-title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.qa .row {
  margin-bottom: 20px;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .qa .row {
    margin-bottom: 20px;
    font-size: 14px;
  }
}

.contact .title {
  font-size: 22px;
  font-weight: bold;
  color: #B29C62;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .contact .title {
    font-size: 16px;
    margin-bottom: 30px;
    text-align: left;
  }
}

.contact .lead {
  font-size: 14px;
  margin-bottom: 40px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .contact .lead {
    font-size: 13px;
    margin-bottom: 30px;
  }
}

.contact .box {
  border: 1px solid rgba(112, 112, 112, 0.32);
  background: #fff;
  border-radius: 10px;
  padding: 80px 80px;
  -webkit-box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
}

@media screen and (max-width: 767px) {
  .contact .box {
    padding: 30px 20px;
  }
}

.contact .box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contact .box .row {
    margin-bottom: 20px;
    display: block;
  }
}

.contact .box .row .dt {
  font-size: 14px;
  width: 190px;
  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;
}

@media screen and (max-width: 767px) {
  .contact .box .row .dt {
    font-size: 13px;
    width: 100%;
    margin-bottom: 10px;
  }
}

.contact .box .row .dt .req {
  border: .5px solid #FF0000;
  color: #FF0000;
  font-size: 12px;
  padding: 1px 8px;
}

.contact .box .row .dt .req.no {
  border: none;
  color: #969696;
}

.contact .box .row .dd {
  width: calc(100% - 240px);
}

.contact .box .row .dd input[type="text"] {
  padding: 10px;
}

.contact .box .row .dd input[type="email"] {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .contact .box .row .dd {
    width: 100%;
  }
}

.contact .box .row .dd textarea {
  height: 200px;
  resize: none;
  padding: 10px;
}

.contact .box .row-textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.contact .box .row-textarea .dt {
  padding-top: 10px;
}

.contact .box .check-row {
  margin: 0 auto 60px;
  max-width: 300px;
}

@media screen and (max-width: 767px) {
  .contact .box .check-row {
    margin-bottom: 30px;
    max-width: 240px;
  }
}

.contact .box .submit-design {
  text-align: center;
  cursor: pointer;
}

.contact .box .submit-design .wrap {
  cursor: pointer;
  border: 1px solid #B29C62;
  color: #fff;
  background: #B29C62;
  width: 320px;
  height: 70px;
  line-height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: .3s;
  transition: .3s;
  position: relative;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .contact .box .submit-design .wrap {
    font-size: 15px;
    height: 50px;
    line-height: 50px;
    width: 90%;
    max-width: 270px;
    margin: 0 auto;
  }
}

.contact .box .submit-design .wrap .arrow {
  max-width: 40px;
  position: relative;
  left: 15px;
  top: -2px;
  -webkit-transition: .3s;
  transition: .3s;
}

.contact .box .submit-design .wrap .arrow img {
  vertical-align: middle;
}

.contact .box .submit-design .wrap:hover {
  -webkit-transition: .3s;
  transition: .3s;
  opacity: .6;
}

.contact .box .submit-design .wrap:hover .arrow {
  -webkit-transition: .3s;
  transition: .3s;
  left: 20px;
}

.contact .box .submit-design .wrap:hover::after {
  -webkit-transition: .3s;
  transition: .3s;
  top: 0;
  left: 0;
  opacity: 0;
}

.wpcf7-list-item-label {
  color: #fff;
}

.wpcf7-spinner {
  display: none !important;
}

.c-text {
  display: inline-block;
  padding-left: 20px;
}

.c-text p {
  display: inline-block;
}

.c-text a {
  color: #240C1F;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.c-text a:hover {
  color: #B29C62;
}

.check-row p {
  display: inline-block;
}

.check-row .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  position: absolute;
  bottom: -20px;
  white-space: nowrap;
}

.contact input[type="checkbox"],
.login-section input[type="checkbox"],
.member-section input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  left: -1000%;
}

.contact .wpcf7-list-item-label {
  position: relative;
}

.contact .wpcf7-list-item-label::before {
  position: absolute;
  border: 1px solid #240C1F;
  content: "";
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  opacity: 1;
}

.contact .wpcf7-list-item-label::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 3px;
  top: 50%;
  left: 50%;
  border-bottom: 3px solid #240C1F;
  border-left: 3px solid #240C1F;
  opacity: 1;
  -webkit-transform: rotate(-45deg) translate(26%, -50%);
          transform: rotate(-45deg) translate(26%, -50%);
  opacity: 0;
}

.contact input[type="checkbox"]:checked + span::after {
  opacity: 1 !important;
}

.drawer-icon {
  position: fixed;
  top: 35px;
  right: 16px;
  z-index: 5000;
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

@media screen and (min-width: 768px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-icon.is-active {
  -webkit-transform: translateX(-200px);
          transform: translateX(-200px);
}

.drawer-icon.is-active .drawer-icon-bar1 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  top: 8px;
}

.drawer-icon.is-active .drawer-icon-bar2 {
  opacity: 0;
}

.drawer-icon.is-active .drawer-icon-bar3 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  top: 8px;
}

.drawer-icon-bars {
  width: 35px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 35px;
  height: 3px;
  background: #B29C62;
  top: 0;
  left: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar1 {
  top: 0;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar2 {
  top: 8px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-icon-bar3 {
  top: 16px;
  -webkit-transition: .3s;
  transition: .3s;
}

.drawer-content {
  width: 200px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #fff;
  z-index: 250;
  -webkit-transform: translateX(105%);
          transform: translateX(105%);
  -webkit-transition: -webkit-transform .5s ease 0s;
  transition: -webkit-transform .5s ease 0s;
  transition: transform .5s ease 0s;
  transition: transform .5s ease 0s, -webkit-transform .5s ease 0s;
}

.drawer-content.is-active {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drawer-icon-nav ul {
  margin-top: 60.8px;
}

.drawer-icon-nav ul li {
  border-bottom: 1px dotted #240C1F;
}

.drawer-icon-nav ul li a {
  display: block;
  color: #240C1F;
  padding: 18px 20px;
}

.header.is-active {
  background: #fff;
}

.drawer-mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 220;
  display: none;
}

.drawer-mask.is-active {
  display: block;
}

.page-heading {
  background: #F5F2EB;
  font-size: 30px;
  /* font-weight: 600; */
  padding: 90px 0 50px;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .page-heading {
    font-size: 20px;
    padding: 60px 0 30px;
  }
}

.privacy h2 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 20px;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .privacy h2 {
    font-size: 16px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}

.privacy p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .privacy p {
    font-size: 13px;
  }
}

.privacy ol {
  padding-left: 20px;
}

.privacy ol li {
  list-style: auto;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .privacy ol li {
    font-size: 13px;
  }
}

.privacy ul {
  padding-left: 20px;
}

.privacy ul li {
  list-style: disc;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .privacy ul li {
    font-size: 13px;
  }
}

.privacy a {
  text-decoration: underline;
  color: #240C1F;
  -webkit-transition: .3s;
  transition: .3s;
}

.privacy a:hover {
  color: #B29C62;
}

.pageProfile .cu-title {
  color: #240C1F;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageProfile .cu-title {
    font-size: 18px;
  }
}

@media screen and (min-width: 768px) {
  .pageProfile .wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.profile2 {
  background: url(../img/profile2-bg.png) no-repeat center center/cover;
}

.profile2 .main-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .profile2 .main-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.profile2 .box {
  padding: 50px 90px;
  background: #fff;
  margin-bottom: 40px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 767px) {
  .profile2 .box {
    padding: 15px;
    margin-bottom: 20px;
  }
}

.profile2 .box .book {
  position: absolute;
  bottom: 10%;
  right: 0%;
  max-width: 250px;
}

@media screen and (max-width: 900px) {
  .profile2 .box .book {
    position: initial;
    max-width: 130px;
    margin-left: auto;
  }
}

.profile2 .box .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 2px solid #CCCCCC;
  position: relative;
}

.profile2 .box .row::after {
  content: "";
  position: absolute;
  left: 104.5px;
  top: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: #E8E6DD;
  z-index: 0;
}

@media screen and (max-width: 767px) {
  .profile2 .box .row::after {
    left: 54.5px;
  }
}

.profile2 .box .row.border-none {
  border-bottom: none;
}

.profile2 .box .row.border-none::after {
  height: 300%;
}

.profile2 .box .dt {
  width: 100px;
  min-width: 100px;
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .profile2 .box .dt {
    width: 50px;
    min-width: 50px;
    padding: 5px;
  }
}

.profile2 .box .dt .span1 {
  font-size: 28px;
  color: #ADAA97;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .profile2 .box .dt .span1 {
    font-size: 16px;
  }
}

.profile2 .box .dt .span2 {
  font-size: 17px;
  color: #ADAA97;
}

@media screen and (max-width: 767px) {
  .profile2 .box .dt .span2 {
    font-size: 12px;
  }
}

.profile2 .box .center {
  width: 9px;
  min-width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ADAA97;
  position: relative;
  z-index: 1;
}

.profile2 .box .dd {
  padding: 20px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .profile2 .box .dd {
    padding: 10px;
  }
}

.profile2 .box2 {
  padding: 40px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .profile2 .box2 {
    padding: 10px 10px;
  }
}

.profile3 .box {
  background: #F0EFE9;
  padding: 60px 80px;
}

@media screen and (max-width: 767px) {
  .profile3 .box {
    padding: 30px 20px;
  }
}

.profile3 .box .main-title {
  color: #6F7070;
  margin-bottom: 60px;
  font-size: 22px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .profile3 .box .main-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.profile3 .box .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex {
    display: block;
  }
}

.profile3 .box .flex .item {
  width: 45%;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item:first-child {
    margin-bottom: 30px;
  }
}

.profile3 .box .flex .item .title {
  color: #fff;
  width: 100%;
  max-width: 200px;
  margin: 0 auto 20px;
  font-size: 18px;
  text-align: center;
  padding: 5px 0;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item .title {
    font-size: 16px;
    margin: 0 auto 10px;
  }
}

.profile3 .box .flex .item .title.line {
  background: #57BE37;
}

.profile3 .box .flex .item .title.mail {
  background: #B29C62;
}

.profile3 .box .flex .item .img {
  max-width: 200px;
  margin: 0 auto 20px;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item .img {
    margin: 0 auto 10px;
    max-width: 150px;
  }
}

.profile3 .box .flex .item .text1 {
  font-size: 16px;
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item .text1 {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.profile3 .box .flex .item .text2 {
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .profile3 .box .flex .item .text2 {
    font-size: 14px;
  }
}

.academy1 {
  color: #240C1F;
  font-size: 28px;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .academy1 {
    font-size: 18px;
  }
}

.academy2 {
  background: url(../img/academy2.png) no-repeat center center/cover;
}

.academy2 .box {
  padding: 7px;
  border: 1px solid #B29C62;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .academy2 .box {
    padding: 3px;
  }
}

.academy2 .box-wrap {
  padding: 80px;
  border: 1px solid #B29C62;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .academy2 .box-wrap {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 360px) {
  .academy2 .box-wrap {
    font-size: 13px;
  }
}

.academy3 .main-title {
  font-size: 34px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 60px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .academy3 .main-title {
    font-size: 16px;
    margin-bottom: 30px;
  }
}

.academy3 span {
  position: relative;
  letter-spacing: 2px;
}

.academy3 span:before {
  position: absolute;
  content: "";
  top: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #240C1F;
}

@media screen and (max-width: 767px) {
  .academy3 span:before {
    width: 2px;
    height: 2px;
  }
}

.academy3 p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
}

.academy3 .flex {
  margin-top: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .academy3 .flex {
    margin-top: 30px;
  }
}

.academy3 .flex .item {
  width: 31.5%;
}

.academy4 {
  background: url(../img/academy4-bg.png) no-repeat center center/cover;
  padding: 60px 0 60px;
}

.academy4 .main-title {
  margin-bottom: 30px;
  text-align: center;
  margin-top: 0px;
}

@media screen and (max-width: 767px) {
  .academy4 .main-title {
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

.academy4 .main-title .row1 {
  font-size: 33px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .academy4 .main-title .row1 {
    font-size: 20px;
    margin-bottom: 0;
  }
}

.academy4 .main-title .row2 {
  font-size: 44px;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media screen and (max-width: 767px) {
  .academy4 .main-title .row2 {
    font-size: 22px;
  }
}

.academy4 .main-title .row2 span {
  position: relative;
  top: 10px;
  display: table;
}

.academy4 .main-title .row2 .s-wrap {
  font-size: 90px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #B29C62;
  display: table-cell;
  vertical-align: middle;
  border-radius: 50%;
  width: 98px;
  height: 98px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .academy4 .main-title .row2 .s-wrap {
    font-size: 40px;
    width: 50px;
    height: 50px;
  }
}

.academy4 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 100px;
}

@media screen and (max-width: 767px) {
  .academy4 .flex {
    margin-top: 30px;
    display: block;
  }
}

.academy4 .flex .item {
  width: 100%;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .academy4 .flex .item {
    margin-bottom: 10px;
  }
}

.academy4 .flex .item a {
  font-size: 18px;
  text-align: center;
  padding: 15px 10px;
  border: 1px solid #707070;
  width: 100%;
  color: #240C1F;
  max-width: 230px;
  display: block;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .academy4 .flex .item a {
    margin: 0 auto;
    padding: 10px 10px;
    font-size: 16px;
  }
}

.academy4 .flex .item a:hover {
  opacity: .6;
}

.academy5 .heading {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), color-stop(20%, #fff), color-stop(20%, #4c4a4a), to(#4c4a4a));
  background: linear-gradient(180deg, #fff 0%, #fff 20%, #4c4a4a 20%, #4c4a4a 100%);
  padding: 30px 0;
}

@media screen and (max-width: 767px) {
  .academy5 .heading {
    padding: 20px 0;
  }
}

.academy5 .heading .academy5-inner {
  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;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner {
    display: block;
  }
}

.academy5 .heading .academy5-inner .left {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .left {
    width: 70%;
    margin-bottom: 10px;
    margin: 0 auto;
  }
}

.academy5 .heading .academy5-inner .right {
  width: 48%;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .right {
    width: 100%;
  }
}

.academy5 .heading .academy5-inner .right .text1 {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  top: 6%;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .right .text1 {
    max-width: 200px;
  }
}

.academy5 .heading .academy5-inner .right .text2 {
  font-size: 34px;
  color: #fff;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .right .text2 {
    font-size: 24px;
    text-align: center;
  }
}

.academy5 .heading .academy5-inner .right .text3 {
  font-size: 18px;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .right .text3 {
    font-size: 14px;
    text-align: center;
  }
}

.academy5 .heading .academy5-inner .right .text3 span {
  font-size: 36px;
}

@media screen and (max-width: 767px) {
  .academy5 .heading .academy5-inner .right .text3 span {
    font-size: 18px;
  }
}

.academy5 .bottom .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  margin: 60px 0;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex {
    margin: 30px 0;
    display: block;
  }
}

.academy5 .bottom .flex .item {
  width: 31.5%;
  padding: 10px 0;
  color: #fff;
  background: #4DAAA9;
  text-align: center;
  font-size: 19px;
  font-weight: bold;
  position: relative;
  height: 80px;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex .item {
    padding: 0;
    height: 60px;
  }
}

.academy5 .bottom .flex .item .text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 100%;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex .item {
    font-size: 17px;
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex .item:last-child {
    margin-bottom: 0;
  }
}

.academy5 .bottom .flex .item .span1 {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex .item .span1 {
    font-size: 13px;
  }
}

.academy5 .bottom .flex .item .span2 {
  font-size: 13px;
}

.academy5 .bottom .flex .item .span3 {
  font-size: 17px;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .flex .item .span3 {
    font-size: 15px;
  }
}

.academy5 .bottom .contents {
  font-size: 14px;
  line-height: 2;
  position: relative;
}

.academy5 .bottom .contents .img {
  position: absolute;
  bottom: 25%;
  right: 0;
  max-width: 350px;
}

@media screen and (max-width: 767px) {
  .academy5 .bottom .contents .img {
    position: initial;
    width: 70%;
    margin: 10px auto 0;
    display: none;
  }
}

.academy5 .bottom .contents2 .img {
  bottom: -8%;
}

.red {
  color: #FF0000;
}

html {
  scroll-behavior: smooth;
}

#id1 {
  position: relative;
  top: -80px;
}

@media screen and (max-width: 767px) {
  #id1 {
    top: -60px;
  }
}

#id2 {
  position: relative;
  top: -80px;
}

@media screen and (max-width: 767px) {
  #id2 {
    top: -60px;
  }
}

#id3 {
  position: relative;
  top: -80px;
}

@media screen and (max-width: 767px) {
  #id3 {
    top: -60px;
  }
}

.trial-heading {
  position: relative;
}

.trial-heading .contents {
  background: rgba(244, 240, 231, 0.76);
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(20%, -50%);
          transform: translate(20%, -50%);
  padding: 40px;
  width: 100%;
  max-width: 700px;
}

@media screen and (max-width: 1000px) {
  .trial-heading .contents {
    padding: 20px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    max-width: 500px;
  }
}

@media screen and (max-width: 767px) {
  .trial-heading .contents {
    max-width: 350px;
    padding: 10px;
  }
}

.trial-heading .contents .title {
  font-size: 33px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #240C1F;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .trial-heading .contents .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .trial-heading .contents .title {
    font-size: 18px;
  }
}

.trial-heading .contents .text {
  font-size: 22px;
  text-align: center;
  line-height: 1.7;
}

@media screen and (max-width: 1000px) {
  .trial-heading .contents .text {
    font-size: 16px;
  }
}

@media screen and (max-width: 767px) {
  .trial-heading .contents .text {
    font-size: 14px;
  }
}

.trial1 .fukidashi {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi {
    margin-bottom: 30px;
  }
}

.trial1 .fukidashi .left {
  max-width: 700px;
  margin-right: auto;
  padding: 20px;
  border: 4px solid #B29C62;
  border-radius: 20px;
  position: relative;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 40px;
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi .left {
    padding: 15px;
    font-size: 14px;
    margin-bottom: 15px;
  }
}

.trial1 .fukidashi .left::before {
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-style: solid;
  border-width: 15px 40px 15px 0;
  border-color: transparent #B29C62 transparent transparent;
  content: "";
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi .left::before {
    left: -20px;
    border-width: 7.5px 20px 7.5px 0;
  }
}

.trial1 .fukidashi .left::after {
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-style: solid;
  border-width: 10px 30px 10px 0;
  border-color: transparent #fff transparent transparent;
  content: "";
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi .left::after {
    left: -10px;
    border-width: 3.5px 10px 3.5px 0;
  }
}

.trial1 .fukidashi .right {
  max-width: 700px;
  margin-left: auto;
  padding: 20px;
  border: 4px solid #B29C62;
  background: #B29C62;
  position: relative;
  font-size: 20px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi .right {
    padding: 15px;
    font-size: 14px;
  }
}

.trial1 .fukidashi .right::before {
  position: absolute;
  top: 50%;
  right: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-style: solid;
  border-width: 15px 0px 15px 40px;
  border-color: transparent transparent transparent #B29C62;
  content: "";
}

@media screen and (max-width: 767px) {
  .trial1 .fukidashi .right::before {
    right: -20px;
    border-width: 7.5px 0px 7.5px 20px;
  }
}

.trial1 .text1 {
  text-align: center;
  font-size: 14px;
}

.low {
  font-size: 14px;
  margin-bottom: 100px;
}

.low h3 {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .low h3 {
    font-size: 16px;
  }
}

.trial2 {
  background: #F0EFE9;
}

.trial2 .bottom-text {
  font-size: 16px;
  margin-top: 30px;
}

@media screen and (max-width: 767px) {
  .trial2 .bottom-text {
    font-size: 13px;
  }
}

.trial2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .trial2 .flex {
    display: block;
  }
}

.trial2 .flex .card {
  /* width: calc(25% - 20px * 3/4); */
  width: calc(33% - 20px * 3/3);
  margin-right: 20px;
  background: #fff;
  position: relative;
  z-index: 1;
}

.trial2 .flex .card .wrap {
  background: #fff;
  position: relative;
  z-index: 2;
  padding: 30px 15px;
  height: 100%;
}

.trial2 .flex .card:last-child {
  margin-right: 0;
}

.trial2 .flex .card:last-child::before {
  position: initial !important;
}

@media screen and (min-width: 768px) {
  .trial2 .flex .card::before {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -45px;
    width: 29px;
    height: 34px;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .trial2 .flex .card::before {
    position: absolute;
    bottom: -50px;
    -webkit-transform: translateX(-50%) rotate(90deg);
            transform: translateX(-50%) rotate(90deg);
    left: 50%;
    width: 29px;
    height: 34px;
    content: "";
  }
}

@media screen and (max-width: 767px) {
  .trial2 .flex .card {
    width: 100%;
    margin-bottom: 30px;
  }
  .trial2 .flex .card:last-child {
    margin-bottom: 0;
  }
}

.trial2 .flex .card::after {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 100%;
  height: 100%;
  content: "";
  background: #B7B5A7;
  z-index: 0;
}

.trial2 .flex .card .num {
  max-width: 100px;
  margin: 0 auto 10px;
}

.trial2 .flex .card .title {
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .trial2 .flex .card .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.trial2 .flex .card .text {
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .trial2 .flex .card .text {
    font-size: 13px;
  }
}

.trial2 .flex .card .img {
  text-align: center;
}

.trial2 .flex .card .img img {
  width: auto;
  height: 80px;
  margin: 0 auto 10px;
}

.login-section {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}

.login-section .flex {
  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;
}

@media screen and (max-width: 767px) {
  .login-section .flex {
    display: block;
  }
}

.login-section .flex .left {
  width: 45%;
}

.login-section .flex .left .img {
  max-width: 240px;
  margin: 0 auto 40px;
}

@media screen and (max-width: 767px) {
  .login-section .flex .left .img {
    max-width: 150px;
    margin: 0 auto 20px;
  }
}

.login-section .flex .left .text1 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .login-section .flex .left .text1 {
    font-size: 16px;
  }
}

.login-section .flex .left .text2 {
  font-size: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .login-section .flex .left .text2 {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .login-section .flex .left {
    width: 100%;
    margin-bottom: 20px;
  }
}

.login-section .flex .right {
  background: #fff;
  border-radius: 10px;
  width: 55%;
  padding: 40px 60px;
}

@media screen and (max-width: 767px) {
  .login-section .flex .right {
    width: 100%;
    padding: 20px;
  }
}

.login-section .swpm-username-label,
.login-section .swpm-password-label,
.login-section .swpm-rememberme-label {
  display: none;
}

.login-section input[type="text"],
.login-section input[type="password"] {
  width: 100%;
  padding: 20px !important;
  border: none;
  border-bottom: 1px solid #ddd;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .login-section input[type="text"],
  .login-section input[type="password"] {
    font-size: 14px;
  }
}

.login-section .swpm-username-input,
.login-section .swpm-password-input {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .login-section .swpm-username-input,
  .login-section .swpm-password-input {
    margin-bottom: 20px;
  }
}

.login-section .login-section .swpm-login-submit {
  margin-bottom: 20px;
}

.login-section .swpm-login-submit {
  text-align: center;
  margin-top: 20px;
}

.login-section .swpm-login-submit input {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 29px;
  background: #2E2D2D;
  border: 1px solid #2E2D2D;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

.login-section .swpm-login-submit input:hover {
  background: #fff;
  color: #2E2D2D;
}

@media screen and (max-width: 767px) {
  .login-section .swpm-login-submit input {
    font-size: 14px;
    max-width: 250px;
  }
}

.login-section .swpm-forgot-pass-link,
.login-section .re-btn {
  text-align: center;
}

.login-section .swpm-forgot-pass-link a,
.login-section .re-btn a {
  color: #240C1F;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 14px;
}

.login-section .swpm-forgot-pass-link a:hover,
.login-section .re-btn a:hover {
  color: #B29C62;
}

.login-section .swpm-forgot-pass-link {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .login-section .swpm-forgot-pass-link {
    margin-bottom: 10px;
  }
}

.swpm-edit-profile-link a,
.swpm-logged-logout-link a {
  color: #240C1F;
  display: block;
  text-align: center;
  -webkit-transition: .3s;
  transition: .3s;
}

.swpm-edit-profile-link a:hover,
.swpm-logged-logout-link a:hover {
  color: #B29C62;
}

.swpm-edit-profile-link {
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .swpm-edit-profile-link {
    margin-bottom: 10px;
  }
}

.swpm-logged-membership,
.swpm-logged-status,
.swpm-logged-username,
.swpm-logged-expiry {
  margin-bottom: 20px;
  border-bottom: 1px solid #240C1F;
}

@media screen and (max-width: 767px) {
  .swpm-logged-membership,
  .swpm-logged-status,
  .swpm-logged-username,
  .swpm-logged-expiry {
    margin-bottom: 10px;
  }
}

.archiveVoice {
  position: relative;
}

.archiveVoice .voice-bg {
  position: absolute;
  top: 0;
  right: -5%;
  max-width: 400px;
}

@media screen and (max-width: 767px) {
  .archiveVoice .voice-bg {
    position: initial;
    display: none;
  }
}

.voice2 {
  background: url(../img/profile2-bg.png) no-repeat center center/cover;
}

.voice2 .title {
  font-size: 34px;
  margin-bottom: 60px;
  font-weight: 400;
  color: #B29C62;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice2 .title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.single-voice {
  max-width: 800px;
  margin: 0 auto;
}

.single-voice .thumbnail {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single-voice .thumbnail {
    margin: 0 auto;
    margin-bottom: 20px;
    width: 100%;
  }
}

.single-voice .title {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .single-voice .title {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

.single-voice .name {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .single-voice .name {
    font-size: 16px;
    margin-bottom: 20px;
  }
}

.single-voice .comments {
  font-size: 16px;
  line-height: 2;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .single-voice .comments {
    font-size: 14px;
    margin-bottom: 30px;
  }
}

.single-voice .btn2 {
  text-align: center;
}

.single-voice .btn2 a {
  margin: 0 auto;
}

.pageBute {
  margin-top: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageBute {
    margin-top: 30px;
  }
}

.pageBute .next,
.pageBute .prev {
  display: none;
}

.pageBute span {
  margin-left: 8px;
  padding: 0 15px;
  color: #fff;
  background: #ADAA97;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.pageBute a {
  margin-left: 8px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
  padding: 0 15px;
  color: #240C1F;
  background: #fff;
  -webkit-transition: .3s;
  transition: .3s;
}

.pageBute a:hover {
  background: #B29C62;
  color: #fff;
}

.topColumn ul .list a {
  -webkit-transition: .3s;
  transition: .3s;
}

.topColumn ul .list a:hover {
  color: #B29C62;
}

.voice ul li .title {
  min-height: 48px;
}

.category-text {
  background: #ADAA97;
  color: #fff;
  font-size: 12px;
  padding: 2px 8px;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-left: auto;
  max-width: 150px;
}

.column .category-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: relative;
}

@media screen and (max-width: 767px) {
  .column .category-flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.column .category-flex .item {
  width: 31%;
}

@media screen and (max-width: 767px) {
  .column .category-flex .item {
    width: calc(33% - 10px * 2/3);
    margin-right: 10px;
  }
  .column .category-flex .item:nth-child(3n) {
    margin-right: 0;
  }
  .column .category-flex .item:nth-child(n + 4) {
    margin-top: 10px;
  }
}

.column .category-flex .item:last-child {
  margin-right: 0;
}

.column .category-flex .item a {
  display: block;
  width: 100%;
  text-align: center;
  color: #240C1F;
  background: #FFFDD3;
  padding: 15px 0;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 900px) {
  .column .category-flex .item a {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .column .category-flex .item a {
    font-size: 12px;
  }
}

.column ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

@media screen and (max-width: 767px) {
  .column ul {
    padding: 30px 0;
  }
}

.column ul li {
  border-radius: 10px;
  background: #fff;
  padding: 30px 0px;
  border: 1px solid #b3b1b1;
  letter-spacing: 0;
  -webkit-box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 8px 8px 30px rgba(0, 0, 0, 0.05);
}

@media screen and (min-width: 768px) {
  .column ul li {
    width: calc(33.3333% - 20px * 2/3);
    margin-right: 20px;
  }
  .column ul li:nth-child(3n) {
    margin-right: 0;
  }
  .column ul li:nth-child(n + 4) {
    margin-top: 25px;
  }
}

@media screen and (max-width: 767px) {
  .column ul li {
    width: calc(50% - 10px * 1/2);
    margin-right: 10px;
    padding: 15px 0px;
  }
  .column ul li:nth-child(2n) {
    margin-right: 0;
  }
  .column ul li:nth-child(n + 3) {
    margin-top: 10px;
  }
}

.column ul li a {
  -webkit-transition: .3s;
  transition: .3s;
  color: #240C1F;
  background: #fff;
}

.column ul li a:hover {
  color: #B29C62;
}

.column ul li .title {
  font-size: 16px;
  margin-bottom: 10px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .column ul li .title {
    font-size: 14px;
    padding: 0 10px;
  }
}

.column ul li .time {
  padding: 0 20px;
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .column ul li .time {
    font-size: 12px;
    padding: 0 10px;
  }
}

.column ul li .category {
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .column ul li .category {
    padding: 0 10px;
  }
}

.column ul li .category-text {
  background: #ADAA97;
  color: #fff;
  font-size: 13px;
  padding: 5px 15px;
  margin-bottom: 10px;
  display: inline-block;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin-left: auto;
  max-width: 150px;
}

.column ul li .thumbnail {
  margin-bottom: 10px;
  width: 100%;
}

.column ul li .thumbnail .wrap {
  position: relative;
  padding-top: 75%;
}

@media screen and (max-width: 767px) {
  .column ul li .thumbnail .wrap {
    padding-top: 60%;
  }
}

.column ul li .thumbnail .wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .column ul li .thumbnail .wrap img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.column ul li .contents {
  font-size: 12px;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .column ul li .contents {
    padding: 0 10px;
  }
}

.column ul li .title {
  min-height: 48px;
}

.single-column .category .category-text {
  background: #ADAA97;
  color: #fff;
  padding: 10px 25px;
  display: inline-block;
}

.swpm-pw-reset-widget-inside {
  max-width: 500px;
  margin: 0 auto;
}

.swpm-pw-reset-email-input {
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .swpm-pw-reset-email-input {
    margin-bottom: 20px;
  }
}

.reset {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}

.reset input[type="text"] {
  padding: 10px;
}

.reset input[type="submit"] {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 29px;
  background: #2E2D2D;
  border: 1px solid #2E2D2D;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .reset input[type="submit"] {
    max-width: 250px;
  }
}

.reset .swpm-pw-reset-submit-button {
  text-align: center;
}

.reset-title {
  font-size: 22px;
  margin-bottom: 60px;
  font-weight: 600;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .reset-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.swpm-profile-membership-level-row {
  display: none;
}

.member-section td {
  padding: 10px;
}

.member-section table {
  width: 100%;
}

.member-section input {
  padding: 10px;
}

.member-section select {
  padding: 10px;
}

.member-section input[type="submit"] {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 29px;
  background: #2E2D2D;
  border: 1px solid #2E2D2D;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 60px auto 10px;
}

@media screen and (max-width: 767px) {
  .member-section input[type="submit"] {
    margin: 30px auto 10px;
    max-width: 250px;
  }
}

#error-page input {
  padding: 40px;
}

.register {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}

.register .title {
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .register .title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.register input[type="submit"] {
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  border-radius: 29px;
  background: #2E2D2D;
  border: 1px solid #2E2D2D;
  -webkit-transition: .3s;
  transition: .3s;
  padding: 10px;
  width: 100%;
  max-width: 300px;
  margin: 60px auto 0;
  cursor: pointer;
  transition: .3s;
}

.register input[type="submit"]:hover {
  color: #240C1F;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .register input[type="submit"] {
    max-width: 250px;
    margin: 30px auto 0;
  }
}

.register table {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

.register td {
  padding: 10px;
}

.register td input {
  padding: 10px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .register td {
    font-size: 14px;
  }
}

.register .box h3 {
  text-align: center;
  font-size: 18px;
  border-bottom: 1px solid #240C1F;
  font-weight: 600;
  margin-bottom: 40px;
  padding-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .register .box h3 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .register .box h3 {
    font-size: 16px;
  }
}

.register .box1 {
  display: block;
}

.register ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .register ul {
    display: block;
    margin-bottom: 30px;
  }
}

.register ul li {
  width: 31.5%;
}

@media screen and (max-width: 767px) {
  .register ul li {
    width: 100%;
    margin-bottom: 10px;
  }
  .register ul li:last-child {
    margin-bottom: 0;
  }
}

.register ul a {
  color: #240C1F;
  cursor: pointer;
  padding: 10px 0;
  text-align: center;
  display: block;
  background: #fff;
  border: 1px solid #240C1F;
  -webkit-transition: .3s;
  transition: .3s;
}

.register ul a:hover {
  color: #fff;
  background: #B29C62;
  border: 1px solid #B29C62;
}

.register ul input[type="radio"] {
  position: absolute;
  left: -222%;
  opacity: 0;
}

.checked a {
  color: #fff !important;
  border: 1px solid #B29C62 !important;
  background: #B29C62 !important;
}

.swpm-more-tag-not-logged-in {
  padding: 10px 20px;
  border: 1px solid #B29C62;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .swpm-more-tag-not-logged-in {
    padding: 10px;
    border-radius: 10px;
  }
}

.swpm-more-tag-not-logged-in a {
  color: #B29C62;
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.swpm-more-tag-not-logged-in a:hover {
  opacity: .6;
}

.thanks p {
  text-align: center;
  margin-bottom: 80px;
  font-size: 18px;
  font-weight: 600;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .thanks p {
    margin-bottom: 30px;
    font-size: 14px;
  }
}

.thanks .btn a {
  text-align: center;
  margin: 0 auto;
}

.swpm-login-action-msg {
  text-align: center;
  color: red;
}

.l-register {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}

.l-register h2 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 60px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .l-register h2 {
    font-size: 18px;
    margin-bottom: 30px;
  }
}

.l-register p {
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .l-register p {
    text-align: left;
  }
}

.l-register .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .l-register .btn {
    margin-top: 30px;
  }
}

.l-register .btn a {
  margin: 0 auto;
}

.topAttendance .title .wrap {
  background: #92C6C5;
}

.topAttendance .title .wrap {
  padding: 0;
}

.topAttendance .title .wrap .text4 {
  background: #92C6C5;
  padding: 10px;
}

.topDifference .main-title .row2 .s-wrap {
  background: #92C6C5;
}

.topDifference .topTitle .wrap {
  background: #92C6C5;
}

.topDifference .topTitle .wrap {
  padding: 0;
}

.topDifference .topTitle .wrap .text4 {
  background: #92C6C5;
  padding: 10px;
}

.topVoice .main-title .wrap {
  padding: 0;
  position: relative;
  z-index: 2;
  border: none;
}

.topVoice .main-title .wrap::after {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: 1px solid #ADAA97;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
}

.topVoice .main-title .wrap .text4 {
  background: #92C6C5;
  padding: 10px;
  color: #fff;
  border: none;
  position: relative;
  z-index: 3;
}

.safe .topTitle .wrap {
  padding: 0;
  position: relative;
  z-index: 2;
  border: none;
}

.safe .topTitle .wrap::after {
  position: absolute;
  top: 10px;
  left: 10px;
  background: transparent;
  border: 1px solid #ADAA97;
  width: 100%;
  height: 100%;
  content: "";
  z-index: 0;
}

.safe .topTitle .wrap .text4 {
  background: #92C6C5;
  padding: 10px;
  color: #fff;
  border: none;
  position: relative;
  z-index: 3;
}

.topVoice .main-title .wrap .icon {
  z-index: 4;
}

@media screen and (min-width: 768px) {
  .topVoice .main-title .wrap .icon {
    position: absolute;
    top: -70px;
    left: -110px;
    max-width: 140px;
  }
}

.topColumn .main-title .wrap {
  color: #240C1F;
}

.topColumn ul .list a .title {
  min-height: 48px;
}

.member-section {
  background: url(../img/contact-bg.png) no-repeat center center/cover;
}

@media screen and (max-width: 767px) {
  .media {
    padding: 80px 0;
  }
  .register td {
    font-size: 12px;
    padding: 5px;
    white-space: nowrap;
  }
  .member-section td {
    font-size: 12px;
    padding: 5px;
    white-space: nowrap;
  }
}

@media screen and (min-width: 768px) {
  .pageProfile .wrap {
    -webkit-box-align: initial;
        -ms-flex-align: initial;
            align-items: initial;
  }
  .pageProfile .wrap .left {
    width: 53%;
  }
  .pageProfile .wrap .left .title {
    margin-top: -20px;
  }
  .pageProfile .wrap .right {
    width: 42%;
  }
}

.p2-first-row {
  position: relative;
}

.p2-first-row .white-border1 {
  position: absolute;
  background: #fff;
  width: 15px;
  height: 2px;
  content: "";
  top: 5px;
  left: 97.5px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p2-first-row .white-border1 {
    left: 50px;
  }
}

.p2-first-row .white-border2 {
  position: absolute;
  background: #fff;
  width: 15px;
  height: 2px;
  content: "";
  top: 13px;
  left: 97.5px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p2-first-row .white-border2 {
    left: 50px;
  }
}

.p2-first-row .white-border3 {
  position: absolute;
  background: #fff;
  width: 15px;
  height: 2px;
  content: "";
  top: 21px;
  left: 97.5px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p2-first-row .white-border3 {
    left: 50px;
  }
}

.p2-first-row .white-border4 {
  position: absolute;
  background: #fff;
  width: 15px;
  height: 2px;
  content: "";
  top: 29px;
  left: 97.5px;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .p2-first-row .white-border4 {
    left: 50px;
    content: initial;
    background: transparent;
  }
}

.trial1-contents .row {
  padding: 40px 60px;
  border-bottom: 3px solid #E2E2E2;
}

@media screen and (max-width: 767px) {
  .trial1-contents .row {
    padding: 20px 10px;
    border-bottom: 2px solid #E2E2E2;
  }
}

.trial1-contents .row .dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}

.trial1-contents .row .dt .num {
  font-size: 26px;
  width: 40px;
  height: 40px;
  text-align: center;
  display: table;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  .trial1-contents .row .dt .num {
    font-size: 20px;
    width: 30px;
    height: 30px;
  }
}

.trial1-contents .row .dt .num .num-wrap {
  display: table-cell;
  vertical-align: middle;
  background: #B29C62;
  color: #fff;
}

.trial1-contents .row .dt .dt-text {
  font-size: 24px;
  color: #B29C62;
}

@media screen and (max-width: 767px) {
  .trial1-contents .row .dt .dt-text {
    font-size: 20px;
  }
}

.trial1-contents .row .dd {
  font-size: 16px;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .trial1-contents .row .dd {
    font-size: 14px;
  }
}

.trial2 .flex .card .title {
  color: #B29C62;
}

@media screen and (max-width: 767px) {
  .feature ul li .title .num {
    font-size: 29px;
  }
}

.feature ul {
  margin: 0 auto;
}

@media screen and (min-width: 768px) {
  .topDifference2-1 .lists .list {
    width: 31.5%;
  }
  .academy5 .heading .academy5-inner .right .text1 {
    margin: 40px 0 0;
  }
}

.academy4 .flex .item a {
  margin: 0 auto;
}

.contact .box .check-row {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .contact .box .check-row {
    margin-bottom: 20px;
  }
}

.contact .wpcf7-list-item-label::before {
  top: 54%;
}

.contact .box .submit-design {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .contact .box .submit-design {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  .academy5 .bottom .contents .img {
    bottom: 19% !important;
  }
}

@media screen and (max-width: 767px) {
  .check-row p {
    font-size: 13px;
  }
}

#left_circle {
  width: 100% !important;
}

#right_circle {
  width: 100% !important;
}

.character-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  font-family: sans-serif;
  margin-top: 80px;
}

@media screen and (max-width: 767px) {
  .character-circle {
    display: block;
    margin-top: 50px;
  }
}

.character-circle .circle-item {
  position: relative;
  width: 48%;
}

@media screen and (max-width: 767px) {
  .character-circle .circle-item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .character-circle .circle-item:first-child {
    margin-bottom: 50px;
  }
}

.character-circle .item-title {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 4px;
  opacity: 0;
}

.character-circle .item-title.is-show {
  -webkit-animation: fadein 1s ease 1s forwards;
          animation: fadein 1s ease 1s forwards;
}

@media screen and (max-width: 767px) {
  .character-circle .item-title.is-show {
    -webkit-animation: fadein 1s ease 1s forwards;
            animation: fadein 1s ease 1s forwards;
  }
}

@media screen and (max-width: 1000px) {
  .character-circle .item-title {
    font-size: 26px;
  }
}

@media screen and (max-width: 767px) {
  .character-circle .item-title {
    letter-spacing: 2px;
    font-size: 20px;
  }
}

.character-circle .item-contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  opacity: 0;
}

@media screen and (max-width: 1000px) {
  .character-circle .item-contents {
    font-size: 14px;
  }
}

.character-circle .item-contents.is-show {
  -webkit-animation: fadeup 1s ease 1s forwards;
          animation: fadeup 1s ease 1s forwards;
}

@media screen and (max-width: 767px) {
  .character-circle .item-contents.is-show {
    -webkit-animation: fadeup 1s ease 1s forwards;
            animation: fadeup 1s ease 1s forwards;
  }
}

.character-circle .item-contents .item-text1 {
  position: absolute;
  top: 36%;
  right: 8%;
}

.character-circle .item-contents .item-text2 {
  position: absolute;
  top: 83%;
  right: 37%;
}

.character-circle .item-contents .item-text3 {
  position: absolute;
  top: 85%;
  right: 57%;
}

.character-circle .item-contents .item-text4 {
  position: absolute;
  top: 66%;
  right: 88%;
  white-space: nowrap;
}

.character-circle .item-contents .item-text5 {
  position: absolute;
  top: 21%;
  left: 19%;
}

.character-circle .item-contents .item-text6 {
  position: absolute;
  top: -6%;
  left: 37%;
}

.character-circle .item-contents .item-text7 {
  position: absolute;
  top: -11%;
  right: 36%;
}

.character-circle .item-contents .item-text8 {
  position: absolute;
  top: 27%;
  right: 11%;
  color: #fff;
}

.character-circle .item-contents .item-text9 {
  position: absolute;
  top: 64%;
  left: 18%;
}

.character-circle .item-contents .item-text10 {
  position: absolute;
  top: 10%;
  left: 30%;
  color: #fff;
}

@-webkit-keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0px);
            transform: translateY(0px);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.profile3 .box .main-title {
  font-weight: 400;
}

.contact .title {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .login-section .swpm-password-input {
    margin-bottom: 70px;
  }
}

.feature .main-title .row1,
.topAttendance .title .wrap .text4,
.topVoice .main-title .wrap .text4,
.topDifference .topTitle .wrap .text4,
.topDifference .main-title .row2,
.feature .main-title .row2 {
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .img-add {
    bottom: 20% !important;
  }
  .feature .main-title .row1,
  .topAttendance .title .wrap .text4,
  .topVoice .main-title .wrap .text4,
  .topDifference .topTitle .wrap .text4,
  .topDifference .main-title .row2,
  .feature .main-title .row2,
  .academy4 .main-title .row2,
  .safe .topTitle .wrap {
    font-size: 34px;
  }
  .voice ul li .contents {
    font-size: 14px;
  }
  .topDifference .main-title .row2 .s-wrap,
  .feature .main-title .row2 .s-wrap,
  .academy4 .main-title .row2 .s-wrap {
    font-size: 60px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
    border-radius: 50%;
    width: 68px;
    height: 68px;
    line-height: 1;
  }
  .cu .box .row .dd .text {
    font-size: 16px;
    letter-spacing: 0px;
    line-height: 1.7;
  }
  .feature ul li .title {
    font-size: 22px;
  }
  .topGreeting .box .text,
  .top2 p,
  .topAbout2 p,
  .feature ul li .contents,
  .topAttendance p,
  .topDifference p,
  .safe p,
  .topProfile .wrap .left .text,
  .academy5 .bottom .contents,
  .voice2 p {
    font-size: 16px;
    letter-spacing: 1px;
    line-height: 2;
  }
  .feature ul li .title span {
    font-size: 16px;
  }
  .feature ul li .title .num {
    font-size: 35px;
  }
  .topColumn ul .list a .text,
  .media .flex .item .text2,
  .column ul li .contents {
    font-size: 14px;
  }
  .contact .box .row .dt {
    font-size: 16px;
  }
  .academy5 .bottom .flex .item .span1 {
    font-size: 16px;
  }
  .academy5 .bottom .contents .img {
    bottom: -1%;
  }
}

@media screen and (max-width: 767px) {
  .media .flex .item .text2,
  .topAbout2 p {
    font-size: 14px;
    line-height: 2;
  }
}

.topColumn .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.topColumn .slick-slide {
  height: auto !important;
}

.feature ul li .title,
.feature ul li .title span,
.cu .box .row .dt,
.cu .box .row .dd .title,
.topColumn .main-title .wrap,
.media .box .main-title,
.academy4 .main-title .row2,
.academy5 .bottom .flex .item,
.safe .topTitle .wrap .text4,
.privacy h2 {
  font-weight: 400;
}

.circle-item {
  position: relative;
  padding-bottom: 48%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .circle-item {
    padding-bottom: 100%;
  }
}

.circle-item canvas {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media screen and (max-width: 767px) {
  .character-circle .item-contents {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .login-section .swpm-login-submit {
    margin-top: 40px;
  }
}

.back-to-top {
  position: fixed;
  right: 2%;
  bottom: 5%;
  z-index: 100;
}

.back-to-top a {
  display: block;
  text-align: center;
  font-size: 14px;
  background: #fff;
  border: 1px solid #B29C62;
  color: #B29C62;
  padding: 10px;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .back-to-top a {
    font-size: 11px;
    padding: 7px;
  }
}

.back-to-top a:hover {
  background: #B29C62;
  color: #fff;
}

.topGreeting .box .title .wrap {
  white-space: nowrap;
}

.topColumn .main-title .wrap {
  white-space: nowrap;
}

@media screen and (max-width: 767px) {
  .feature ul li .title span {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .trial-heading .contents {
    position: relative;
    -webkit-transform: initial;
            transform: initial;
    top: initial;
    right: initial;
    margin: 0 auto;
    max-width: initial;
  }
  .trial-heading .inner {
    padding: 0;
  }
}

.qa .ac_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.trial1-contents .main-title {
  font-size: 34px;
  text-align: center;
  margin-bottom: 0px;
}

@media screen and (max-width: 767px) {
  .trial1-contents .main-title {
    font-size: 20px;
    margin-bottom: 0px;
  }
}

.topDifference-bottom-wrap {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .topDifference-bottom-wrap {
    margin-top: 20px;
  }
}

.topDifference-bottom-wrap .text2 {
  margin-bottom: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .topDifference-bottom-wrap .text2 {
    margin-bottom: 20px;
  }
}

.topDifference-bottom-wrap .section-btn a {
  margin: 0 auto;
}

.section-btn-trial a {
  width: 400px;
}

@media screen and (max-width: 767px) {
  .section-btn-trial a {
    width: 320px;
  }
}

.voice2 .btn {
  text-align: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .voice2 .btn {
    margin-top: 20px;
  }
}

.voice2 .btn a {
  margin: 0 auto;
}

.h3-add {
  color: #B29C62;
  font-size: 20px;
  padding-left: 20px;
  border-left: 3px solid #B29C62;
  line-height: 1.2;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .h3-add {
    font-size: 16px;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1050px) {
  .academy5 .bottom .contents .img {
    display: none;
  }
}

.top .topImg {
  -webkit-animation-name: topanimation;
          animation-name: topanimation;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  /*１秒かけてアニメーション*/
}

.top {
  overflow: hidden;
}

.top .icon {
  -webkit-animation-name: text1;
          animation-name: text1;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.top .text1 {
  -webkit-animation-name: text1;
          animation-name: text1;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.top .text2 {
  -webkit-animation-name: text2;
          animation-name: text2;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

.top .text3 {
  -webkit-animation-name: text2;
          animation-name: text2;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes topanimation {
  0% {
    /*アニメーションを開始するときのCSSを記述*/
    -webkit-filter: blur(50px);
            filter: blur(50px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    /*アニメーションの中間のCSSを記述*/
  }
  100% {
    /*アニメーションを終了するときのCSSを記述*/
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes topanimation {
  0% {
    /*アニメーションを開始するときのCSSを記述*/
    -webkit-filter: blur(50px);
            filter: blur(50px);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    /*アニメーションの中間のCSSを記述*/
  }
  100% {
    /*アニメーションを終了するときのCSSを記述*/
    -webkit-filter: blur(0px);
            filter: blur(0px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes text1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    text-shadow: 0 0 20px black;
    color: transparent;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0);
    color: #240C1F;
  }
}

@keyframes text1 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    text-shadow: 0 0 20px black;
    color: transparent;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    text-shadow: 0 0 20px rgba(0, 0, 0, 0);
    color: #240C1F;
  }
}

@-webkit-keyframes text2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    text-shadow: 0 0 20px #b29c62;
    color: transparent;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    text-shadow: 0 0 20px rgba(178, 156, 98, 0);
    color: #B29C62;
  }
}

@keyframes text2 {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
    text-shadow: 0 0 20px #b29c62;
    color: transparent;
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
    text-shadow: 0 0 20px rgba(178, 156, 98, 0);
    color: #B29C62;
  }
}

@media screen and (min-width: 768px) {
  .course-section-btn {
    position: absolute;
    bottom: 30px;
    left: 50%;
    width: 100%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    max-width: 255px;
    margin: 0 auto;
  }
  .course-section-btn a {
    width: 100%;
    font-size: 16px;
    height: 60px;
    line-height: 56px;
  }
  .course-section-btn a .arrow {
    max-width: 30px;
  }
  .topDifference .lists .list {
    padding: 30px 20px 110px;
  }
  .topDifference2-1 .lists .list {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  .course-section-btn {
    margin-top: 20px;
  }
  .course-section-btn a {
    width: 100%;
  }
}

@media screen and (max-width: 1000px) {
  .course-section-btn {
    max-width: 230px;
  }
  .course-section-btn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .course-section-btn {
    max-width: 200px;
  }
  .course-section-btn a {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .course-section-btn {
    max-width: initial;
    width: 100%;
  }
  .course-section-btn a {
    font-size: 16px;
  }
}

.step88 {
  max-width: 88px !important;
}

@media screen and (min-width: 768px) {
  .step88 {
    margin-bottom: 0 !important;
  }
}

@media screen and (min-width: 768px) {
  .step88-title {
    margin-bottom: 2px !important;
  }
}

#swpm_message ul li {
  width: 100% !important;
}

@media screen and (max-width: 767px) {
  .login-btn1 {
    margin-top: 20px;
  }
}

.login-btn1 a {
  color: #fff;
  height: 45px;
  line-height: 45px;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  font-size: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-btn1 a:hover {
  color: #fff !important;
}

.login .language-switcher .button {
  opacity: 0;
}

.topDifference .lists .list .contents,
.voice ul li .contents {
  font-family: "Noto Serif JP", serif;
}

.pageProfile-title {
  color: #240C1F;
  font-size: 24px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .pageProfile-title {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .topDifference .main-lead2 {
    font-size: 14px;
  }
  .topDifference-bottom-wrap .text2 {
    font-size: 14px;
  }
  .academy2 .box-wrap {
    font-size: 14px;
  }
  .academy3 p {
    font-size: 14px;
  }
  .trial2 .flex .card .text {
    font-size: 14px;
  }
  .top2 .title2 {
    font-size: 18px;
  }
  .top2 .arrow {
    max-width: 5px;
  }
}

.trialBtn a {
  margin: 0 auto;
  width: 100%;
  max-width: 550px;
}

@media screen and (min-width: 768px) {
  .trialBtn a {
    font-size: 22px;
  }
}

@media screen and (max-width: 767px) {
  .trialBtn a {
    font-size: 14px;
  }
}

@media screen and (max-width: 360px) {
  .trialBtn a {
    font-size: 12.5px;
  }
}

@media screen and (max-width: 767px) {
  .trialBtn .arrow {
    max-width: 30px !important;
  }
}

@media screen and (max-width: 360px) {
  .trialBtn .arrow {
    max-width: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .top .contents {
    top: 33%;
  }
}

.cu .box .row .dd .title {
  color: #B29C62;
}

.form-table td img {
  width: auto;
}

.form-table input[type="checkbox"] {
  position: initial;
  opacity: 1;
}

.profile-first-text {
  padding: 10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
  .profile-first-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .profile-first-text {
    margin-bottom: 10px;
  }
}

.profile-first-text a {
  color: #B29C62;
  -webkit-transition: .3s;
  transition: .3s;
}

@media screen and (max-width: 767px) {
  .profile-first-text a {
    font-size: 13px;
  }
}

.profile-first-text a:hover {
  opacity: .6;
}

.noinput {
  pointer-events: none;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}

.child-category {
  background: #F7F7F7;
  padding: 30px 0;
  width: 1000px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .child-category {
    padding: 15px 0;
    background: transparent;
  }
}

.child-category .wrap {
  max-width: 700px;
  margin: 0 auto 0px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.child-category .wrap > a {
  display: none !important;
}

.child-category .wrap .item {
  width: 30%;
}

.child-category .wrap .item a {
  display: block;
  text-align: center;
  color: #240C1F;
  font-size: 16px;
  padding-bottom: 5px;
  -webkit-transition: .3s;
  transition: .3s;
}

.child-category .wrap .item a:hover {
  color: #B29C62;
  border-bottom: 1.5px solid #B29C62;
}

.child-menu .cat-content {
  height: 70px;
  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;
  background-color: #f7f7f7;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-bottom: -70px;
}

.child-menu .cat-content .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 70%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.components-checkbox-control__input-container input[type="checkbox"] {
  opacity: 1;
  position: initial;
  left: initial;
}

.inside input[type="checkbox"] {
  opacity: 1;
  position: initial;
  left: initial;
}

.category-text {
  margin-right: 5px;
}

.category-text:last-child {
  margin-right: 0;
}

.child-category .wrap .item a span {
  font-size: 12px;
}

@media screen and (max-width: 767px) {
  .child-category .wrap .item a {
    font-size: 12px;
  }
  .child-category .wrap .item a span {
    font-size: 10px;
  }
}

@media screen and (max-width: 360px) {
  .child-category .wrap .item a {
    font-size: 11px;
  }
  .child-category .wrap .item a span {
    font-size: 10px;
  }
}

@media screen and (max-width: 767px) {
  .child-category .wrap .item a span {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .category-text {
    font-size: 11px !important;
    padding: 2px 5px !important;
  }
}

#the-list input[type="checkbox"] {
  position: initial !important;
  left: initial !important;
  opacity: 1 !important;
}

.swpm-edit-profile-form input[type="password"] {
  padding: 10px;
}

@media screen and (max-width: 767px) {
  .column ul li {
    padding: 12px 0px 15px;
  }
  .column ul li .category {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .column ul li .category-text {
    margin-left: initial !important;
    margin-bottom: 5px !important;
  }
}

.text-add0815 {
  text-align: left !important;
}

.text-add0815 a {
  color: #B29C62;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.text-add0815 a:hover {
  opacity: .6;
}

@media screen and (max-width: 1100px) and (min-width: 767px) {
  .trial-heading .contents {
    -webkit-transform: translate(30%, -50%);
            transform: translate(30%, -50%);
  }
}

@media screen and (max-width: 767px) {
  .column .category-flex {
    margin-bottom: 20px;
  }
  .column .category-flex .item a {
    padding: 10px 0;
  }
}

.wp-submenu img {
  width: initial;
}

@media screen and (max-width: 1080px) and (min-width: 600px) {
  .column ul li .category-text {
    font-size: 10px;
    padding: 5px 5px;
  }
  .column ul li .category {
    padding: 0 5px;
  }
}

.test.inview {
  -webkit-animation: 6s linear infinite rotation1;
          animation: 6s linear infinite rotation1;
}

.top2 .arrow {
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.top2 .arrow.inview {
  -webkit-animation: down 1s .3s forwards;
          animation: down 1s .3s forwards;
}

.top2-animation .title2 {
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.top2-animation .title2.inview {
  -webkit-animation: down 1s .3s forwards;
          animation: down 1s .3s forwards;
}

.top2-animation .p-text2 {
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.top2-animation .p-text2.inview {
  -webkit-animation: down 1s .3s forwards;
          animation: down 1s .3s forwards;
}

.topAbout1 {
  opacity: 0;
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}

.topAbout1.inview {
  -webkit-animation: down 1s .3s forwards;
          animation: down 1s .3s forwards;
}

@-webkit-keyframes down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes down {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-80px);
            transform: translateY(-80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.animation-feature ul li {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation-feature ul li.inview {
  -webkit-animation: up 1s .3s forwards;
          animation: up 1s .3s forwards;
}

.animation-voice ul li {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation-voice ul li.inview {
  -webkit-animation: up 1s .3s forwards;
          animation: up 1s .3s forwards;
}

.animation-d .lists .list:nth-child(1) {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation-d .lists .list:nth-child(1).inview {
  -webkit-animation: up 1s .3s forwards;
          animation: up 1s .3s forwards;
}

.animation-d .lists .list:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation-d .lists .list:nth-child(2).inview {
  -webkit-animation: up 1s .5s forwards;
          animation: up 1s .5s forwards;
}

@media screen and (max-width: 767px) {
  .animation-d .lists .list:nth-child(2).inview {
    -webkit-animation: up 1s .3s forwards;
            animation: up 1s .3s forwards;
  }
}

.animation-d .lists .list:nth-child(3) {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.animation-d .lists .list:nth-child(3).inview {
  -webkit-animation: up 1s .7s forwards;
          animation: up 1s .7s forwards;
}

@media screen and (max-width: 767px) {
  .animation-d .lists .list:nth-child(3).inview {
    -webkit-animation: up 1s .3s forwards;
            animation: up 1s .3s forwards;
  }
}

.media .box {
  opacity: 0;
  -webkit-transform: translateY(80px);
          transform: translateY(80px);
}

.media .box.inview {
  -webkit-animation: up 1s .3s forwards;
          animation: up 1s .3s forwards;
}

@-webkit-keyframes up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes up {
  0% {
    opacity: 0;
    -webkit-transform: translateY(80px);
            transform: translateY(80px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.other-child-category {
  display: none;
}

.other-child-category2 {
  display: none;
}

.other-child-category4 {
  display: none;
}

@media screen and (max-width: 767px) {
  .is-sp2 {
    display: none !important;
  }
}

.top .text2 {
  text-shadow: #fff 1px 2px !important;
}

.academy3-text {
  text-align: left !important;
}

.academy3-text a {
  color: #B29C62;
  text-decoration: underline;
  -webkit-transition: .3s;
  transition: .3s;
}

.academy3-text a:hover {
  opacity: .6;
}

.fukidashi-after {
  margin-top: 60px;
  margin-bottom: 0 !important;
}

@media screen and (max-width: 767px) {
  .fukidashi-after {
    margin-top: 30px;
  }
}

.card-name-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin: 0 auto;
}

.card-name-item {
  width: 47%;
  border: solid 1px #C9C9C9;
}

.single-column .time {
  padding: 10px 0;
}

@media screen and (max-width: 767px) {
  .single-column .time {
    font-size: 11px;
    padding: 2px 0px;
    position: relative;
    top: 2px;
  }
}

.single-heading-add0819 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.single-column .category .category-text {
  margin-bottom: 0;
}

.single-heading-add0819 {
  margin-bottom: 10px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

/* Vimeo動画を画面サイズいっぱいに表示 */
.wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 62.25%;
  /* 16:9のアスペクト比の場合 */
  height: 0;
  width: 100%;
}

.wp-block-embed__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 360px) {
  .column .category-flex .item a {
    font-size: 10px;
  }
}

@media screen and (min-width: 768px) {
  .child-category3 .wrap .item {
    width: 20%;
  }
  .other-child-category .wrap .item {
    width: 20%;
  }
}

@media screen and (max-width: 767px) {
  .child-category .wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .child-category .wrap .item {
    width: 45%;
  }
  .child-category .wrap .item:nth-child(n + 3) {
    margin-top: 10px;
  }
}

.voice-btn0821 {
  text-align: center;
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .voice-btn0821 {
    margin-top: 30px;
  }
}

.voice-btn0821 a {
  margin: 0 auto;
}

@media screen and (max-width: 360px) {
  .topDifference-bottom-wrap .section-btn a {
    font-size: 14px;
  }
  .section-btn-trial a {
    width: 280px;
  }
}

.single-column .category .category-text {
  max-width: 350px;
}

@media screen and (min-width: 768px) {
  .child-category33 .wrap .item {
    width: 30% !important;
  }
}

@media screen and (max-width: 360px) {
  .academy3 .main-title {
    font-size: 14px;
  }
  .topAbout1 {
    font-size: 14px;
  }
}

.book-mv {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
}

.book-mv a {
  -webkit-transition: .3s;
  transition: .3s;
}

.book-mv a:hover {
  opacity: .6;
}

.book-mv .btn {
  position: absolute;
}

@media screen and (min-width: 768px) {
  .book-mv .btn {
    bottom: 5%;
    left: 24%;
    max-width: 32%;
  }
}

@media screen and (max-width: 767px) {
  .book-mv .btn {
    bottom: 1.5%;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.book-mv .brn-bottom-text {
  text-align: center;
  white-space: nowrap;
  font-size: 16px;
}

@media screen and (max-width: 1000px) {
  .book-mv .brn-bottom-text {
    font-size: 14px;
  }
}

@media screen and (max-width: 900px) {
  .book-mv .brn-bottom-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 767px) {
  .book-mv .brn-bottom-text {
    font-size: 13px;
  }
}

.book-mv-wrap {
  background: url(../img/topSea2.png) no-repeat center center/cover;
}

.book-title {
  font-size: 34px;
  margin-bottom: 80px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .book-title {
    font-size: 22px;
  }
}

.book2 {
  background: #f4f4f4;
}

.book2 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .book2 .flex {
    display: block;
  }
}

.book2 .flex .box {
  width: 48%;
  -webkit-box-shadow: 0 3px 6px #707070;
          box-shadow: 0 3px 6px #707070;
  padding: 80px 40px 60px;
  position: relative;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .book2 .flex .box {
    padding: 50px 20px 30px;
    width: 100%;
  }
  .book2 .flex .box:first-child {
    margin-bottom: 60px;
  }
}

.book2 .flex .box .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  position: absolute;
  top: -40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 40px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  color: #fff;
}

.book2 .flex .box .icon .wrap {
  position: relative;
  height: 100%;
}

.book2 .flex .box .icon .wrap .w-text {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.book2 .flex .box .row {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .book2 .flex .box .row {
    margin-bottom: 10px;
  }
}

.book2 .flex .box .row .check {
  width: 20px;
  margin-right: 10px;
  position: relative;
  top: 0px;
}

.book2 .flex .box .row .text {
  width: calc(100% - 25px);
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .book2 .flex .box .row .text {
    font-size: 16px;
  }
}

.book-obi {
  background: #cdc4b0;
  font-size: 34px;
  padding: 40px 0 40px;
  text-align: center;
  position: relative;
}

@media screen and (max-width: 767px) {
  .book-obi {
    padding: 30px 0;
  }
}

.book-obi::after {
  position: absolute;
  content: "";
  border-style: solid;
  border-right: 25px solid transparent;
  border-left: 25px solid transparent;
  border-top: 30px solid #f4f4f4;
  border-bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}

@media screen and (max-width: 767px) {
  .book-obi::after {
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 20px solid #f4f4f4;
  }
}

@media screen and (max-width: 767px) {
  .book-obi {
    font-size: 18px;
  }
}

.book-obi span {
  font-size: 120%;
  color: #dc4c8a;
}

.is-sp360 {
  display: none;
}

@media screen and (max-width: 360px) {
  .is-sp360 {
    display: block;
  }
}

.book3 {
  position: relative;
}

.book3 .bg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.book3 .box {
  font-size: 16px;
  line-height: 2;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
  z-index: 2;
  padding: 0 60px 60px;
}

@media screen and (max-width: 767px) {
  .book3 .box {
    font-size: 14px;
    padding: 0 20px 20px;
  }
}

.book3 .box .span1 {
  font-size: 115%;
  font-weight: bold;
}

.book3 .box .span2 {
  font-weight: bold;
  color: #dc4c8a;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
  font-size: 120%;
}

.book3 .name {
  max-width: 250px;
  margin-top: 50px;
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .book3 .name {
    max-width: 130px;
    margin-top: 20px;
  }
}

.book4 {
  background: #e2f3f2;
}

.book4 .wrap {
  background: #fff;
  padding: 60px 40px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .book4 .wrap {
    padding: 20px;
  }
}

.book4 .wrap .box {
  background: #fff8fc;
  padding: 80px 80px;
  margin-top: 100px;
  position: relative;
  border: 1px solid #dc4c8a;
  border-radius: 20px;
}

@media screen and (max-width: 767px) {
  .book4 .wrap .box {
    border-radius: 10px;
    padding: 40px 15px;
  }
}

.book4 .wrap .title {
  color: #fff;
  background: #dc4c8a;
  font-size: 36px;
  text-align: center;
  font-weight: bold;
  position: relative;
  max-width: 400px;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: -28px;
  width: 100%;
  line-height: 1;
  padding: 10px 0 12px;
}

@media screen and (max-width: 767px) {
  .book4 .wrap .title {
    font-size: 22px;
    max-width: 250px;
    top: -24px;
  }
}

.book4 .wrap .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}

.book4 .wrap .flex:last-child {
  margin-bottom: 0;
}

.book4 .wrap .flex .dt {
  font-family: "braisetto", script;
  color: #dc4c8a;
  font-weight: 700;
  font-size: 56px;
  margin-right: 40px;
  width: 106px;
}

@media screen and (max-width: 767px) {
  .book4 .wrap .flex .dt {
    font-size: 25px;
    margin-right: 10px;
    width: 46px;
  }
}

.book4 .wrap .flex .dd {
  font-size: 28px;
  width: calc(100% - 146px);
}

@media screen and (max-width: 767px) {
  .book4 .wrap .flex .dd {
    font-size: 16px;
    width: calc(100% - 56px);
  }
}

.book-cta .wrap {
  max-width: 650px;
  margin: 0 auto 0px;
}

@media screen and (max-width: 767px) {
  .book-cta .wrap {
    margin: 0 auto 0px;
  }
}

.book-cta .wrap .btn {
  margin-top: 20px;
}

@media screen and (max-width: 767px) {
  .book-cta .wrap .btn {
    margin-top: 10px;
  }
}

.book-cta .wrap a {
  -webkit-transition: .3s;
  transition: .3s;
}

.book-cta .wrap a:hover {
  opacity: .6;
}

.book-cta .wrap .brn-bottom-text {
  text-align: center;
  font-size: 18px;
}

@media screen and (max-width: 767px) {
  .book-cta .wrap .brn-bottom-text {
    font-size: 13px;
  }
}

@media screen and (max-width: 767px) {
  .book4 .wrap .box {
    margin-top: 50px;
  }
}

.book5 {
  background: url(../img/book5-bg.jpg) no-repeat center center/cover;
}

.book5 .img {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .book5 .img {
    margin-bottom: 15px;
  }
}

.book5 .book {
  max-width: 270px;
  margin: 0 auto 50px;
}

@media screen and (max-width: 767px) {
  .book5 .book {
    max-width: 130px;
    margin-bottom: 20px;
  }
}

.book5 .span1 {
  font-weight: bold;
  color: #dc4c8a;
  font-size: 120%;
}

.book5 .span2 {
  font-weight: bold;
  font-size: 120%;
}

.book5 .box .box-wrap {
  padding: 60px 60px 60px;
}

@media screen and (max-width: 767px) {
  .book5 .box .box-wrap {
    padding: 30px 20px 30px;
  }
}

.column ul li .category-text {
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .child-category3 .wrap .item {
    width: 21%;
  }
  .child-category .wrap .item a {
    white-space: nowrap;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

body {
  color: #000;
}

@media screen and (min-width: 768px) {
  .logo {
    padding-left: 5%;
  }
  .logo a {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .logo a:hover {
    opacity: .6;
  }
  .logo img {
    max-width: 72px;
  }
  .scroll_head {
    -webkit-transition: 0s;
    transition: 0s;
  }
  .scroll_head .logo {
    padding-left: 0;
  }
  .scroll_head .logo img {
    max-width: 56px;
    padding-left: 0;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
  .index_header {
    padding-bottom: 50px;
  }
  footer .logo {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo img {
    max-width: 45px;
  }
  .fv {
    padding-top: 100px;
  }
}

.line_btn {
  background: #3EC755;
  color: #fff;
  font-weight: bold;
  border: 1px solid #3EC755;
  -webkit-transition: .3s;
  transition: .3s;
}

.line_btn:hover {
  background: #fff;
  color: #3EC755;
}

.btn {
  min-width: 200px;
}

.bnr a {
  display: block;
  margin-bottom: 40px;
}

.bnr a:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .bnr a {
    margin-bottom: 20px;
  }
}

.navi_main .navi a {
  position: relative;
}

.navi_main .navi a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.navi_main .navi a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header {
  background-color: #E0F3FA;
  border-bottom-right-radius: 50% 30px;
  border-bottom-left-radius: 50% 30px;
}

.header.scroll_head {
  background: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}

.top-bg {
  background-color: #E0F3FA;
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

.top-bg .about {
  background: transparent;
}

.voice .about {
  background: transparent;
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 0% 100%;
  }
  50% {
    background-position: 100% 0%;
  }
  100% {
    background-position: 0% 100%;
  }
}

@keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #b6c6e2;
  }
  100% {
    background-color: #7285ae;
  }
}

@-webkit-keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@media screen and (min-width: 768px) {
  .fv {
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 0;
  }
}

.swiper-container {
  width: 100%;
}

.swiper-slide {
  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;
}

.img-wrap {
  position: relative;
  padding-top: 52%;
  width: 100%;
}

.img-wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fv .img-wrap img {
    border-radius: 30px 0 30px 0;
  }
}

.about {
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .about {
    padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 23vw;
  }
}

.service {
  padding-top: 9vw;
  padding-bottom: 5vw;
}

.service:before {
  background: url(../img/wave1.svg) no-repeat center center/cover;
  top: -7vw;
  padding-top: 7.835504886%;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 15vw;
  }
}

@media screen and (max-width: 767px) {
  .service:before {
    top: -23vw;
    padding-top: 27.2727272727%;
  }
}

.top-voice {
  position: relative;
  padding-top: 19vw;
  background: #E0F3FA;
}

.top-voice::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 7.835504886%;
  background: url(../img/wave2.svg) no-repeat center center/cover;
  top: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top-voice {
    padding-top: 35vw;
  }
}

@media screen and (max-width: 767px) {
  .top-voice::before {
    top: -1px;
    padding-top: 27.2727272727%;
  }
}

h2 small {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .btn_area {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}

.more {
  color: #283237;
  font-weight: 700;
  font-size: 20px;
  position: relative;
  -webkit-transition: .3s;
  transition: .3s;
  margin-bottom: 10px;
  display: inline-block;
  text-orientation: sideways;
}

.more.more-v {
  border-bottom: 1px solid #283237;
}

.more:hover {
  -webkit-transition: .3s;
  transition: .3s;
}

.more:hover::before {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-50%) scale(1.2);
  transform: translateY(-50%) scale(1.2);
}

.more::before {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  bottom: -60px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  background: #FFFBA6;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  left: -10px;
  z-index: -1;
}

.more.more-v::before {
  top: 75%;
}

@media screen and (max-width: 767px) {
  .more.more-v::before {
    top: 20px;
    left: -20px;
  }
}

.more.more-v.double {
  border-bottom-width: 4px;
  position: relative;
}

.more.more-v.double::after {
  content: '';
  display: block;
  width: 100%;
  border-bottom: solid 1px #283237;
  bottom: -10px;
}

/* .more::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #000;
} */
@media screen and (max-width: 767px) {
  .more {
    font-size: 20px;
  }
}

.h_line2 b {
  color: #BAEDFF;
}

.line_btn {
  letter-spacing: 1px;
}

footer address dl dd {
  font-size: 14px;
}

footer .col {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .logo {
  margin-bottom: 0;
  margin-right: 20px;
}

footer .wrap2 {
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  footer .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.bnr .popular-release {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 24px 0;
}

.bnr a {
  -webkit-transition: .3s;
  transition: .3s;
}

.bnr a:hover {
  opacity: .6;
}

.bnr .wrap2 {
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .bnr {
    padding: 100px 0;
  }
}

.bottom-dd a {
  border-bottom: 1px solid #000;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  margin-right: 13px;
}

.bottom-dd a:hover {
  opacity: .6;
}

.bottom-dd a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .bottom-dd a {
    font-size: 13px;
    margin-right: 13px;
  }
  .bottom-dd a:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .bottom-dd a {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer address dl dd {
    white-space: wrap;
    text-align: left;
  }
  .bottom-dd {
    margin-top: 20px;
  }
  footer .copyright {
    font-size: 2.5vw;
  }
  .header {
    padding-top: 10px;
  }
  footer {
    padding-top: 30px;
  }
}

.page_header {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .page_header {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .page_header {
    padding-bottom: 20px;
  }
  .page_header main {
    padding-top: 91px;
  }
  .page_header .logo {
    padding-left: 0;
  }
  .page_header .logo img {
    max-width: 56px;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
}

.page_visual {
  height: 200px;
  background: url(../img/header-bg.png);
  color: #000;
  position: relative;
  padding-top: 64px;
}

.page_visual article h1 b {
  color: #FFFBA6;
}

.about_intro .h_line {
  font-weight: 600;
  font-size: 2.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.about_intro .h_line span {
  width: 75%;
}

@media screen and (max-width: 850px) {
  .about_intro .h_line {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 360px) {
  .about_intro .h_line {
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line span {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about_intro .h_line:after {
    margin-left: 0em;
    width: 22%;
    height: 1.5px;
    position: relative;
    top: 35px;
  }
}

@media screen and (max-width: 850px) {
  .wrap2 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .wrap2 {
    padding: 0;
  }
}

body,
html {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line:after {
    display: none;
  }
}

.page_link a:before {
  display: inline-block;
  content: "●";
  margin-right: 16px;
  color: #BAEDFF;
}

@media screen and (min-width: 768px) {
  .about_intro .photo_img {
    margin-top: 80px;
  }
  .media_box article h3 {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .about_intro p + .photo_img::before {
    padding-top: 31%;
  }
}

.blue {
  color: #BAEDFF;
}

.yellow {
  color: #FFFBA6;
}

.media_box .photo_img:before {
  padding-top: 68.5%;
}

.media_box .photo_img img {
  border-radius: 68px;
}

@media screen and (min-width: 768px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 26px;
  }
  .message {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 20px;
  }
}

.active-section {
  margin-bottom: 200px;
}

.active-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.active-flex::after {
  content: '';
  display: block;
  width: 245px;
}

.active-box {
  width: 245px;
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .active-box {
    width: 100%;
  }
}

.active-box h3 {
  font-size: 20px;
  margin-bottom: 16px;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.active-box .photo_img {
  width: 100%;
  height: 167px;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  .active-box .photo_img {
    height: inherit;
  }
}

.active-box .photo_img img {
  width: 100%;
  height: auto;
}

.active-section .under-name-cards {
  margin: 80px 0;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .active-section .under-name-cards {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .active-section {
    margin-bottom: 40px;
  }
}

.promotion-video {
  width: 100%;
  height: 450px;
  margin: 60px 0;
  background-color: #333;
}

.media_box {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

.media_box figure {
  width: 44%;
}

.media_box figure img {
  width: 100%;
  height: auto;
  min-height: inherit;
}

.media_box article {
  width: 54%;
}

@media screen and (max-width: 767px) {
  .media_box article {
    width: 100%;
  }
}

.profile {
  margin-bottom: 30px;
}

.profile .greeting-rep {
  background-color: #E0F3FA;
  width: 100vw;
  margin: 60px calc(50% - 50vw);
  padding: 150px 0;
}

@media screen and (max-width: 767px) {
  .profile .greeting-rep {
    margin-bottom: 0;
    padding: 80px 16px;
  }
}

.profile .greeting-rep h3,
.profile .greeting-rep p {
  width: 100%;
  max-width: 837px;
  margin: 0 auto;
  text-align: center;
}

.profile .greeting-rep h3 {
  margin-bottom: 48px;
}

@media screen and (max-width: 767px) {
  .profile .greeting-rep p {
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 0px;
  }
}

.staff h3 {
  margin-bottom: 24px;
}

.staff .media_box {
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}

@media screen and (max-width: 767px) {
  .staff .media_box {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .staff .media_box .photo_img {
    width: 100%;
  }
}

.staff .media_box .photo_img img {
  border-radius: 86px;
}

.staff .media_box article {
  padding-left: 32px;
}

@media screen and (max-width: 767px) {
  .staff .media_box article {
    width: 48%;
  }
}

.staff .media_box article p {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (min-width: 768px) {
  .profile .photo_img2 {
    width: 65vw;
    margin-bottom: 37px;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

@media screen and (max-width: 767px) {
  .profile .photo_img2 {
    width: 95vw;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

.message {
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (min-width: 768px) {
  .message p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
  }
}

@media screen and (max-width: 767px) {
  .message p {
    text-align: left;
  }
}

@media screen and (min-width: 768px) {
  .profile .text {
    margin-left: 0vw;
    max-width: 577px;
    margin: 0 auto;
  }
  .profile .photo_img {
    width: 75vw;
  }
  .profile .photo_img:before {
    padding-top: 49%;
  }
  .dl_table dl dt {
    width: 5em;
  }
}

.dl_table {
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .media_box article h3 {
    text-align: center;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    text-align: center;
  }
  .message h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .service .item figure {
    margin-bottom: 10px;
  }
  .service h3 {
    margin-bottom: 40px;
  }
  .service .col {
    margin-bottom: 50px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .service .col .item {
    width: 45%;
    margin-bottom: 20px;
  }
  .service .item p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 360px) {
  .service .item p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.b-posi article {
  padding: 0;
  margin: 0;
}

.b-posi .media_box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.b-posi .media_box.photo_right .photo_img3 {
  position: relative;
}

.b-posi .media_box.photo_right .photo_img3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #b6c6e2;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .b-posi .landscape {
    margin: 0;
    margin-bottom: 57px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box article {
    width: 48%;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3::before {
    width: 250px;
    height: 250px;
  }
}

@media screen and (min-width: 768px) {
  .page_service .landscape:before {
    padding-top: 31%;
  }
}

.page_service .h3Title {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .page_service .h3Title {
    font-size: 20px;
  }
}

.b-posi {
  padding-bottom: 100px;
}

.b-posi .item figcaption {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .b-posi .item figcaption {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .attention {
    margin-top: 20px;
  }
}

.vision {
  padding: 100px 0;
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

.vision h2 {
  font-size: 30px;
  text-align: center;
}

.vision .row {
  margin-bottom: 60px;
}

.vision .row:last-child {
  margin-bottom: 0;
}

.vision h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

.vision .wrap2 {
  max-width: 900px;
}

@media screen and (max-width: 767px) {
  .vision {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .vision h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .vision .row {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .vision h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.cta2 {
  padding: 100px 0;
}

.cta2 .btn2 {
  text-align: center;
}

.cta2 .btn2 a {
  font-size: 18px;
  font-weight: 600;
  background: #3EC755;
  text-align: center;
  padding: 20px 40px;
  border: 1px solid #3EC755;
  color: #fff;
  border-radius: 20px;
  display: block;
  max-width: 386px;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta2 .btn2 a:hover {
  background: #fff;
  color: #3EC755;
}

@media screen and (max-width: 767px) {
  .cta2 {
    padding: 50px 0;
  }
}

@media screen and (min-width: 768px) {
  p {
    line-height: 2.2;
  }
  .page_voice .col_3 > * {
    margin-right: 28px;
    margin-left: 0px;
    width: calc(33.33333% - 28px * 2/3);
  }
  .page_voice .col_3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

.page_voice .item .photo_img {
  margin-bottom: 10px;
}

.page_voice .item time {
  margin-bottom: 5px;
}

.page_voice .item h2 {
  font-size: 17px;
  margin-bottom: 0;
}

.single {
  padding-bottom: 100px;
}

.single .movie-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比 (高さ / 幅 * 100) */
  height: 0;
  margin-bottom: 60px;
}

.single iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.single h1 {
  margin-bottom: 40px;
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #7285ae;
  font-size: 24px;
  margin-bottom: 60px;
  margin-top: 40px;
  color: #7285ae;
}

.single .h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #000;
  font-size: 20px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.single h3,
.single h4,
.single h5,
.single h6 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.single ul li {
  list-style: inside;
}

.single .contents {
  margin-bottom: 60px;
}

.single .contents a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.single .contents a:hover {
  opacity: .6;
}

.single .thumbnail img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .single {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .single .movie-wrap {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single iframe {
    border-radius: 15px;
  }
}

@media screen and (max-width: 767px) {
  .single h1 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single .h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h3,
  .single h4,
  .single h5,
  .single h6 {
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .single .contents {
    margin-bottom: 40px;
  }
}

.pagenation .p-flex {
  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;
}

.pagenation a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagenation a:hover {
  opacity: .6;
}

.pagenation .center a {
  background: #F1EB77;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
  top: -3px;
}

.pagenation .p-item {
  width: 55px;
  margin: 0 15px;
  min-width: 55px;
}

.pagenation .p-item a {
  width: 55px;
  min-width: 55px;
}

.pagenation .p-item span {
  width: 55px;
  min-width: 55px;
  opacity: 0;
}

.media-cateogry {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .media-cateogry {
    padding-bottom: 50px;
  }
}

.pagenation2 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .pagenation2 {
    margin-top: 40px;
  }
}

.media-cateogry .category-area {
  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;
  margin-bottom: 60px;
}

.media-cateogry .category-area .category-title {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  margin-bottom: 20px;
}

.media-cateogry .category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media-cateogry .category-items .c-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.media-cateogry .category-items .c-item a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .category-items .c-item a:hover {
  opacity: .6;
}

.media-cateogry .ul-lists li {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.media-cateogry .ul-lists li:first-child {
  border-top: 1px solid #000;
}

.media-cateogry .ul-lists li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li .flex .left {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li .flex .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li a {
  font-size: 16px;
  font-weight: 500;
}

.media-cateogry .ul-lists li .time {
  width: 120px;
}

.media-cateogry .ul-lists li .ul-title {
  width: calc(100% - 120px);
}

.media-cateogry .ul-lists li .ul-category {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.media-cateogry .ul-lists li .ul-btn {
  text-align: right;
}

.media-cateogry .ul-lists li .ul-btn a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .ul-lists li .ul-btn a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area {
    display: block;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area .category-title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .left {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .right {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .time {
    width: 100%;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-title {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-category {
    margin-bottom: 10px;
  }
}

.privacy h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .privacy {
    padding: 50px 0;
  }
}

body {
  -webkit-animation: fadein 3s forwards;
  animation: fadein 3s forwards;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .dl_table dl dd {
    width: calc(100% - 6em);
  }
}

.pagenation2 .pagination a,
.pagenation2 .pagination span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
}

.pagenation2 .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .pagenation2 .pagination a,
  .pagenation2 .pagination span {
    margin: 0 5px;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.single p {
  min-height: 20px;
}

@media screen and (max-width: 767px) {
  .navi_main .navi a:hover::after {
    display: none;
  }
}

/*==================================
      レスポンシブ設定 マップ型変数breakpointsを定義
      =================================*/
/*==================================
      # 色、フォントファミリー
      =================================*/
/*==================================
      common(一般) - 全体に共通するスタイル
      =================================*/
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::-webkit-input-placeholder {
  color: rgba(62, 62, 62, 0.5);
}

::-webkit-input-placeholder,
:-ms-input-placeholder,
::-ms-input-placeholder,
::placeholder {
  color: rgba(62, 62, 62, 0.5);
}

body {
  color: #000;
}

@media screen and (min-width: 768px) {
  .logo {
    padding-left: 5%;
  }
  .logo a {
    -webkit-transition: .3s;
    transition: .3s;
  }
  .logo a:hover {
    opacity: .6;
  }
  .logo img {
    max-width: 72px;
  }
  .scroll_head {
    -webkit-transition: 0s;
    transition: 0s;
  }
  .scroll_head .logo {
    padding-left: 0;
  }
  .scroll_head .logo img {
    max-width: 56px;
    padding-left: 0;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
  footer .logo {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .logo img {
    max-width: 45px;
  }
  .fv {
    padding-top: 100px;
  }
}

.contact_btn {
  background: #FFFBA6;
  color: #283237;
  font-weight: bold;
  border: 1px solid #FFFBA6;
  -webkit-transition: .3s;
  transition: .3s;
  letter-spacing: 1px;
}

.contact_btn:hover {
  background: #fff;
}

.line_btn {
  background: #3EC755;
  color: #fff;
  font-weight: bold;
  border: 1px solid #3EC755;
  -webkit-transition: .3s;
  transition: .3s;
  letter-spacing: 1px;
}

.line_btn:hover {
  background: #fff;
  color: #3EC755;
}

.btn {
  min-width: 200px;
}

.navi_main .navi a {
  position: relative;
}

.navi_main .navi a::after {
  position: absolute;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #000000;
  bottom: -1px;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transform-origin: center top;
  transform-origin: center top;
  /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  /*変形の時間*/
}

.navi_main .navi a:hover::after {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  /*ホバー後、x軸方向に1（相対値）伸長*/
}

.header.scroll_head {
  background: #fff;
  -webkit-transition: 0s;
  transition: 0s;
}

.top-bg .fv,
.voice .fv {
  background: transparent;
}

@-webkit-keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #c6e4e4;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c6e4e4;
  }
  100% {
    background-color: #7285ae;
  }
}

@keyframes gradationTest {
  0% {
    background-color: #7285ae;
  }
  25% {
    background-color: #c6e4e4;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c6e4e4;
  }
  100% {
    background-color: #7285ae;
  }
}

@-webkit-keyframes AnimationName {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

@keyframes AnimationName {
  0% {
    background-position: 100% 0%;
  }
  50% {
    background-position: 0% 100%;
  }
  100% {
    background-position: 100% 0%;
  }
}

/* @-webkit-keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
}

@keyframes gradationTest2 {
  0% {
    background-color: #b6c6e2;
  }
  25% {
    background-color: #b6c6e2;
  }
  50% {
    background-color: #c5e4e3;
  }
  75% {
    background-color: #c5e4e3;
  }
  100% {
    background-color: #b6c6e2;
  }
} */
@media screen and (min-width: 768px) {
  .fv {
    margin-top: 75px;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    padding-bottom: 0;
  }
}

.fv .swiper-container {
  width: 100%;
}

.fv .swiper-slide {
  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;
}

.fv .img-wrap {
  position: relative;
  padding-top: 52%;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .fv .img-wrap img {
    border-radius: 30px 0 30px 0;
  }
}

.about {
  padding-bottom: 12vw;
}

@media screen and (min-width: 768px) {
  .about {
    padding-top: 180px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding-bottom: 23vw;
  }
}

.service {
  padding-top: 9vw;
  padding-bottom: 5vw;
}

.service:before {
  background: url(../img/wave1.svg) no-repeat center center/cover;
  top: -7vw;
  padding-top: 7.835504886%;
}

@media screen and (max-width: 767px) {
  .service {
    padding-top: 15vw;
  }
}

@media screen and (max-width: 767px) {
  .service:before {
    top: -23vw;
    padding-top: 27.2727272727%;
  }
}

.top-voice::before {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  padding-top: 7.835504886%;
  background: url(../img/wave2.svg) no-repeat center center/cover;
  top: -2px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 767px) {
  .top-voice::before {
    top: -1px;
    padding-top: 27.2727272727%;
  }
}

h2 small {
  margin-top: 0;
}

@media screen and (max-width: 767px) {
  .btn_area {
    margin-top: 40px;
    margin-right: 0;
  }
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 34px;
  }
}

.more:hover {
  -webkit-transition: .3s;
  transition: .3s;
}

.more:hover::before {
  -webkit-transition: .3s;
  transition: .3s;
  -webkit-transform: translateY(-50%) scale(1.2);
  transform: translateY(-50%) scale(1.2);
}

.more::after {
  position: absolute;
  content: "";
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: #000;
}

@media screen and (max-width: 767px) {
  .more {
    font-size: 20px;
  }
}

.h_line2 b {
  color: #BAEDFF;
}

footer address dl dd {
  font-size: 14px;
}

footer .col {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

footer .logo {
  margin-bottom: 0;
  margin-right: 20px;
}

footer .wrap2 {
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  footer .logo {
    margin-right: 0;
    margin-bottom: 10px;
  }
}

.bnr .popular-release {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  margin: 24px 0;
}

.bnr a {
  -webkit-transition: .3s;
  transition: .3s;
}

.bnr a:hover {
  opacity: .6;
}

.bnr .wrap2 {
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .bnr {
    padding: 100px 0;
  }
}

.bottom-dd a {
  border-bottom: 1px solid #000;
  -webkit-transition: .3s;
  transition: .3s;
  font-size: 13px;
  margin-right: 13px;
}

.bottom-dd a:hover {
  opacity: .6;
}

.bottom-dd a:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .bottom-dd a {
    font-size: 13px;
    margin-right: 13px;
  }
  .bottom-dd a:last-child {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .bottom-dd a {
    font-size: 12px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  footer address dl dd {
    white-space: wrap;
    text-align: left;
  }
  .bottom-dd {
    margin-top: 20px;
  }
  footer .copyright {
    font-size: 2.5vw;
  }
  .header {
    padding-top: 10px;
    height: 90px;
  }
  footer {
    padding-top: 30px;
  }
}

.page_header {
  background: #fff;
}

@media screen and (max-width: 767px) {
  .page_header {
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 768px) {
  .page_header {
    padding-bottom: 20px;
  }
  .page_header main {
    padding-top: 91px;
  }
  .page_header .logo {
    padding-left: 0;
  }
  .page_header .logo img {
    max-width: 56px;
    padding-top: 5px;
    position: relative;
    top: 7px;
  }
}

.page_visual article h1 b {
  color: #80DBF6;
}

.about_intro .h_line {
  font-weight: 500;
  font-size: 2.7rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: relative;
}

.about_intro .h_line :before {
  content: "";
  display: block;
  width: 30%;
  height: 1px;
  display: block;
  background-color: #000;
  position: absolute;
  bottom: 30px;
  right: -16%;
}

.about_intro .h_line span {
  width: 75%;
}

@media screen and (max-width: 850px) {
  .about_intro .h_line {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 360px) {
  .about_intro .h_line {
    font-size: 1.35rem;
  }
}

@media screen and (max-width: 767px) {
  .about_intro .h_line span {
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about_intro .h_line:after {
    margin-left: 0em;
    width: 22%;
    height: 1.5px;
    position: relative;
    top: 35px;
  }
}

@media screen and (max-width: 850px) {
  .wrap2 {
    padding: 0 20px;
  }
}

@media screen and (max-width: 767px) {
  .wrap2 {
    padding: 0;
  }
}

body,
html {
  overflow-x: hidden;
}

@media screen and (max-width: 767px) {
  .about_intro .h_line:after {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .full-screen-w {
    width: 100vw;
    margin: 120px calc(50% - 50vw) 0;
  }
  .full-screen-w img {
    width: 100%;
  }
  .media_box article h3 {
    font-size: 1.3rem;
  }
}

@media screen and (min-width: 768px) {
  .about_intro p + .photo_img::before {
    padding-top: 31%;
  }
}

.media_box .photo_img:before {
  padding-top: 68.5%;
}

.media_box .photo_img img {
  border-radius: 68px;
}

@media screen and (min-width: 768px) {
  .message {
    padding: 100px 0;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .active-section {
    margin-bottom: 40px;
  }
}

.profile {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .profile {
    margin-bottom: 0px;
  }
}

@media screen and (min-width: 768px) {
  .profile .photo_img2 {
    width: 65vw;
    margin-bottom: 37px;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

/* @include mq(sp) {
  position: absolute;
  width: auto;
  height: auto;
  min-width: 100%;
  min-height: 100%;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
  object-fit: cover;
} */
@media screen and (max-width: 767px) {
  .profile .photo_img2 {
    width: 95vw;
    margin-right: calc(50% - 50vw);
    margin-right: initial;
    margin-left: auto;
    margin-left: calc(50% - 50vw);
    border-radius: 0 0 70px 0;
  }
}

.message {
  /* background-color: #7285ae;
  -webkit-animation: gradationTest2 7s infinite;
  animation: gradationTest2 7s infinite; */
  background: linear-gradient(45deg, #ecffff 30%, #cce3e4, #b0c4ea);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

@media screen and (min-width: 768px) {
  .message p {
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
    text-align: left;
  }
  .message-name {
    text-align: right !important;
    margin-top: 48px;
  }
  .br-sp {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .message p {
    text-align: left;
  }
  .message-name {
    text-align: right !important;
    margin-top: 32px;
  }
  .br-sp {
    display: block;
  }
}

/* @include mq(sp) {
  .message p {
    text-align: left;
  }
} */
@media screen and (min-width: 768px) {
  .profile .text {
    margin-left: 0vw;
    max-width: 577px;
    margin: 80px auto;
  }
  .profile .photo_img {
    width: 75vw;
  }
  .profile .photo_img:before {
    padding-top: 49%;
  }
  .dl_table dl dt {
    width: 5em;
  }
}

.company .wrap3 {
  margin-bottom: 64px;
}

.company .wrap3 h3.title,
.company .wrap3 .row h4 {
  text-align: center;
  margin-bottom: 8px;
}

.company .wrap3 h3.title,
.company .wrap3 .row {
  margin-bottom: 32px;
}

@media screen and (max-width: 767px) {
  .media_box article h3 {
    text-align: left;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .profile .text h3,
  .page_about h3 {
    text-align: center;
  }
  .message h3 {
    font-size: 20px;
    margin-bottom: 30px;
  }
  .service .item figure {
    margin-bottom: 10px;
  }
  .service h3 {
    margin-bottom: 40px;
  }
  .service .col {
    margin-bottom: 50px;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .service .col .item {
    width: 45%;
    margin-bottom: 20px;
  }
  .service .item p {
    font-size: 16px;
    line-height: 1.4;
  }
}

@media screen and (max-width: 360px) {
  .service .item p {
    font-size: 14px;
    line-height: 1.4;
  }
}

.b-posi article {
  padding: 0;
  margin: 0;
}

.b-posi .media_box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.b-posi .media_box.photo_right .photo_img3 {
  position: relative;
}

.b-posi .media_box.photo_right .photo_img3::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: #b6c6e2;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .b-posi .landscape {
    margin: 0;
    margin-bottom: 57px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box article {
    width: 48%;
  }
}

@media screen and (min-width: 768px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 35%;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3 {
    width: 50%;
    margin: 0 auto 20px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .media_box.photo_right .photo_img3::before {
    width: 250px;
    height: 250px;
  }
}

@media screen and (min-width: 768px) {
  .page_service .landscape:before {
    padding-top: 31%;
  }
}

.page_service .h3Title {
  font-size: 28px;
}

@media screen and (max-width: 767px) {
  .page_service .h3Title {
    font-size: 20px;
  }
}

.b-posi {
  padding-bottom: 100px;
}

.b-posi .item figcaption {
  font-size: 18px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .b-posi .item figcaption {
    font-size: 18px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .b-posi .attention {
    margin-top: 20px;
  }
}

.vision {
  /* background-color: #7285ae;
  -webkit-animation: gradationTest2 7s infinite;
  animation: gradationTest2 7s infinite; */
  padding: 100px 0;
  background: linear-gradient(45deg, #c6e4e4 30%, #a8c2ee, #7285ae 85%);
  background-size: 200% 200%;
  -webkit-animation: AnimationName 13s ease infinite;
  animation: AnimationName 13s ease infinite;
  position: relative;
}

.vision h2 {
  font-size: 30px;
  text-align: center;
}

.vision .row {
  margin-bottom: 60px;
}

.vision .row:last-child {
  margin-bottom: 0;
}

.vision h3 {
  text-align: center;
  font-size: 22px;
  margin-bottom: 30px;
}

.vision .wrap2 {
  max-width: 900px;
}

@media screen and (max-width: 767px) {
  .vision {
    padding: 50px 0;
  }
}

@media screen and (max-width: 767px) {
  .vision h2 {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .vision .row {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .vision h3 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.cta2 {
  padding: 100px 0;
}

.cta2 .btn2 {
  text-align: center;
}

.cta2 .btn2 a {
  font-size: 18px;
  font-weight: 600;
  background: #3EC755;
  text-align: center;
  padding: 20px 40px;
  border: 1px solid #3EC755;
  color: #fff;
  border-radius: 20px;
  display: block;
  max-width: 386px;
  margin: 0 auto;
  -webkit-transition: .3s;
  transition: .3s;
}

.cta2 .btn2 a:hover {
  background: #fff;
  color: #3EC755;
}

@media screen and (max-width: 767px) {
  .cta2 {
    padding: 50px 0;
  }
}

@media screen and (min-width: 768px) {
  p {
    line-height: 2.2;
  }
  .page_voice .col_3 > * {
    margin-right: 28px;
    margin-left: 0px;
    width: calc(33.33333% - 28px * 2/3);
  }
  .page_voice .col_3 > *:nth-child(3n) {
    margin-right: 0;
  }
}

.page_voice .item .photo_img {
  margin-bottom: 10px;
}

.page_voice .item time {
  margin-bottom: 5px;
}

.page_voice .item h2 {
  font-size: 17px;
  margin-bottom: 0;
}

.single {
  padding-bottom: 100px;
}

.single .movie-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  /* 16:9のアスペクト比 (高さ / 幅 * 100) */
  height: 0;
  margin-bottom: 60px;
}

.single iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 20px;
}

.single h1 {
  margin-bottom: 40px;
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #7285ae;
  font-size: 24px;
  margin-bottom: 60px;
  margin-top: 40px;
  color: #7285ae;
}

.single .h1 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
}

.single h2 {
  font-weight: bold;
  border-bottom: 2px solid #000;
  font-size: 20px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.single h3,
.single h4,
.single h5,
.single h6 {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 60px;
  margin-top: 40px;
}

.single ul li {
  list-style: inside;
}

.single .contents {
  margin-bottom: 60px;
}

.single .contents a {
  -webkit-transition: .3s;
  transition: .3s;
  text-decoration: underline;
}

.single .contents a:hover {
  opacity: .6;
}

.single .thumbnail img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) {
  .single {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 767px) {
  .single .movie-wrap {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single iframe {
    border-radius: 15px;
  }
}

@media screen and (max-width: 767px) {
  .single h1 {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 20px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single .h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h2 {
    font-size: 18px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single h3,
  .single h4,
  .single h5,
  .single h6 {
    font-size: 16px;
    margin-bottom: 30px;
    margin-top: 20px;
  }
}

@media screen and (max-width: 767px) {
  .single p {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .single .contents {
    margin-bottom: 40px;
  }
}

.pagenation .p-flex {
  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;
}

.pagenation a {
  display: inline-block;
  -webkit-transition: .3s;
  transition: .3s;
}

.pagenation a:hover {
  opacity: .6;
}

.pagenation .center a {
  background: #F1EB77;
  font-size: 18px;
  font-weight: bold;
  padding: 10px 15px;
  border-radius: 15px;
  position: relative;
  top: -3px;
}

.pagenation .p-item {
  width: 55px;
  margin: 0 15px;
  min-width: 55px;
}

.pagenation .p-item a {
  width: 55px;
  min-width: 55px;
}

.pagenation .p-item span {
  width: 55px;
  min-width: 55px;
  opacity: 0;
}

.media-cateogry {
  padding-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .media-cateogry {
    padding-bottom: 50px;
  }
}

.pagenation2 {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .pagenation2 {
    margin-top: 40px;
  }
}

.media-cateogry .category-area {
  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;
  margin-bottom: 60px;
}

.media-cateogry .category-area .category-title {
  font-size: 24px;
  font-weight: bold;
  margin-right: 40px;
  margin-bottom: 20px;
}

.media-cateogry .category-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.media-cateogry .category-items .c-item {
  margin-right: 20px;
  margin-bottom: 20px;
}

.media-cateogry .category-items .c-item a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .category-items .c-item a:hover {
  opacity: .6;
}

.media-cateogry .ul-lists li {
  display: block;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid #000;
}

.media-cateogry .ul-lists li:first-child {
  border-top: 1px solid #000;
}

.media-cateogry .ul-lists li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li .flex .left {
  width: 52%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li .flex .right {
  width: 40%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.media-cateogry .ul-lists li a {
  font-size: 16px;
  font-weight: 500;
}

.media-cateogry .ul-lists li .time {
  width: 120px;
}

.media-cateogry .ul-lists li .ul-title {
  width: calc(100% - 120px);
}

.media-cateogry .ul-lists li .ul-category {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 5px 15px;
  border-radius: 10px;
  font-size: 12px;
}

.media-cateogry .ul-lists li .ul-btn {
  text-align: right;
}

.media-cateogry .ul-lists li .ul-btn a {
  background: #F1EB77;
  border: 1px solid #F1EB77;
  color: #000;
  -webkit-transition: .3s;
  transition: .3s;
  display: inline-block;
  padding: 10px 20px;
  border-radius: 16px;
}

.media-cateogry .ul-lists li .ul-btn a:hover {
  opacity: .6;
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area {
    display: block;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .category-area .category-title {
    font-size: 18px;
    margin-bottom: 20px;
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex {
    display: block;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .left {
    width: 100%;
    display: block;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .flex .right {
    display: block;
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .time {
    width: 100%;
    margin-bottom: 7px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-title {
    width: 100%;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 767px) {
  .media-cateogry .ul-lists li .ul-category {
    margin-bottom: 10px;
  }
}

.privacy {
  margin-bottom: 100px;
}

.privacy h3 {
  margin-top: 40px;
  margin-bottom: 15px;
}

.privacy p {
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .privacy {
    padding: 50px 0;
  }
}

body {
  -webkit-animation: fadein 3s forwards;
  animation: fadein 3s forwards;
  opacity: 0;
}

@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .dl_table dl dd {
    width: calc(100% - 6em);
  }
}

.pagenation2 .pagination a,
.pagenation2 .pagination span {
  width: 45px;
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: bold;
  margin: 0 10px;
}

.pagenation2 .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 767px) {
  .pagenation2 .pagination a,
  .pagenation2 .pagination span {
    margin: 0 5px;
    font-size: 14px;
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}

.single p {
  min-height: 20px;
}

@media screen and (max-width: 767px) {
  .navi_main .navi a:hover::after {
    display: none;
  }
}

.staff2 .media_box .photo_img img {
  border-radius: 0;
}

@media screen and (max-width: 767px) {
  .company .dl_table {
    padding-top: 30px;
  }
}

.company .dl_table dl {
  margin-bottom: 25px;
}

.company .wrap3 {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .company .dl_table dl {
    margin-bottom: 15px;
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .company .wrap3 {
    margin-bottom: 3ch;
  }
}

.more:after {
  display: none;
}

.bnr-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.bnr-flex .bnr-item {
  width: 48.5%;
}

@media screen and (max-width: 767px) {
  .bnr-flex {
    display: block;
  }
}

.mailmagazine {
  width: 100%;
  max-width: 996px;
  height: 337px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.mailmagazine .mailmagazine-left {
  width: 48%;
  height: 100%;
  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;
  background-color: #FFFBA6;
}

@media screen and (max-width: 767px) {
  .mailmagazine .mailmagazine-left {
    width: 100%;
    height: 50%;
  }
}

.mailmagazine .mailmagazine-left p {
  font-size: 32px;
}

.mailmagazine .mailmagazine-right {
  width: 52%;
  background-color: #E0F3FA;
}

@media screen and (max-width: 767px) {
  .mailmagazine .mailmagazine-right {
    width: 100%;
    height: 50%;
  }
}

@media screen and (max-width: 767px) {
  .bnr-flex .bnr-item {
    width: 100%;
    margin-bottom: 10px;
  }
  .bnr-flex .bnr-item:last-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .bnr {
    margin-bottom: 46px;
  }
  .bnr .popular-release {
    font-size: 1.6rem;
    margin-bottom: 10px !important;
  }
}

@media screen and (min-width: 768px) {
  .bnr .popular-release {
    margin-top: 0;
  }
}

.single .thumbnail img {
  max-height: 500px;
  width: auto;
}

@media screen and (max-width: 767px) {
  .single .thumbnail img {
    max-height: 300px;
    width: auto;
  }
}

.column ul.column-list-top {
  width: 738px;
  margin: 120px auto 48px;
  padding: 0;
  display: block;
  border-top: 1px solid #000;
}

@media screen and (max-width: 767px) {
  .column ul.column-list-top {
    width: 100%;
    margin: 0;
  }
}

.column ul.column-list-top li {
  width: 100%;
  border: none;
  border-bottom: 1px solid #000;
  border-radius: inherit;
  -webkit-box-shadow: none;
          box-shadow: none;
  margin: 0;
}

.column ul.column-list-top li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 767px) {
  .column ul.column-list-top li a {
    display: block;
  }
}

.column ul.column-list-top li a .thumbnail {
  width: 38%;
}

@media screen and (max-width: 767px) {
  .column ul.column-list-top li a .thumbnail {
    width: 100%;
  }
}

.column ul.column-list-top li a .column-list-right {
  width: 56%;
}

@media screen and (max-width: 767px) {
  .column ul.column-list-top li a .column-list-right {
    width: 100%;
  }
}

.column ul.column-list-top li a .column-list-right .category {
  display: inline-block;
  padding: 0;
}

.column ul.column-list-top li a .column-list-right .category .category-text {
  margin-bottom: 0;
  padding: 2px 16px;
  background-color: #E0F3FA;
  color: #000;
  font-size: 14px;
}

.column ul.column-list-top li a .column-list-right .time {
  display: inline-block;
  margin-right: 16px;
  padding: 0;
}

.column ul.column-list-top li a .column-list-right .title {
  margin-bottom: 0;
  padding: 0;
  font-weight: 600;
}

.column ul.column-list-top li a .column-list-right .contents {
  height: inherit;
}

.column ul.column-list-top li a .column-list-right .column-list-bottom {
  margin-top: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.column ul.column-list-top li a .column-list-right .column-list-bottom .link-detail {
  width: 160px;
  height: 40px;
  padding: 4px 0;
  background-color: #F1eb77;
  text-align: center;
  border-radius: 8px;
}

.column ul.column-list-top li a .column-list-right .column-list-bottom .link-detail span {
  line-height: 30px;
}

@media screen and (max-width: 767px) {
  .top-bg .fv {
    padding-top: 60px;
  }
}

@media screen and (max-width: 767px) {
  .top-bg .fv .wrap {
    width: 100%;
  }
}

.top-bg .fv .wrap::before {
  content: "";
  background: url(../img/wave1.svg) no-repeat center center/cover;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: -15px;
  padding-top: 7.835504886%;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  z-index: 100;
}

@media screen and (max-width: 767px) {
  .top-bg .fv .wrap::before {
    bottom: -2px;
  }
}

.top-bg .fv .wrap .img-wrap img {
  border-radius: inherit;
}

@media screen and (max-width: 767px) {
  .header {
    height: 70px;
    border-bottom-right-radius: 50% 15px;
    border-bottom-left-radius: 50% 15px;
  }
}

.header .wrap {
  width: inherit;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .header .wrap {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  section.index-about h2 {
    border-left: inherit;
  }
  section.index-about .about-top {
    margin: 32px 0;
  }
  section.index-about .btn_area:after {
    display: none;
  }
  section.index-about .btn_area a.more:before {
    bottom: -35px;
    left: -20px;
  }
}

section.service article .col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

section.service article .col .item {
  width: 30%;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  section.service article .col .item {
    width: 50%;
  }
}

@media screen and (max-width: 767px) {
  section.service article .col .item figure {
    max-width: 80px;
  }
}

@media screen and (max-width: 767px) {
  .navi_main ul.submenu {
    display: block;
    position: inherit;
    background: transparent;
    -webkit-box-shadow: none;
            box-shadow: none;
    width: 100%;
    margin-top: -8px;
    padding-left: 24px;
    visibility: visible;
    opacity: 1;
    top: inherit;
    left: inherit;
    right: inherit;
    padding: inherit;
    padding-left: 16px;
    border-radius: inherit;
  }
  .navi_main ul.submenu:before {
    content: none;
  }
  .navi_main ul.submenu li {
    padding: inherit;
    max-width: inherit;
  }
  .navi_main ul.submenu li figure {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .voice-center img {
    -webkit-transform: scale(1.5);
            transform: scale(1.5);
  }
}

#left_circle,
#right_circle {
  width: 100% !important;
}

.character-circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 80px 0 100px;
}

.character-circle .circle-item {
  position: relative;
  width: 48%;
}

.character-circle .circle-item .item-title {
  font-size: 20px;
  position: absolute;
  top: 50%;
  width: 100%;
  text-align: center;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  letter-spacing: 4px;
  opacity: 0;
}

.character-circle .circle-item .item-title.is-show {
  -webkit-animation: fadein 1s ease 1s forwards;
          animation: fadein 1s ease 1s forwards;
}

.character-circle .circle-item .item-contents {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-size: 18px;
  -webkit-transform: translateY(5%);
          transform: translateY(5%);
  opacity: 0;
}

.character-circle .circle-item .item-contents.is-show {
  -webkit-animation: fadeup 1s ease 1s forwards;
          animation: fadeup 1s ease 1s forwards;
}

.character-circle .circle-item .item-contents .item-text1 {
  position: absolute;
  top: 36%;
  right: 8%;
}

.character-circle .circle-item .item-contents .item-text2 {
  position: absolute;
  top: 83%;
  right: 37%;
}

.character-circle .circle-item .item-contents .item-text3 {
  position: absolute;
  top: 85%;
  right: 57%;
}

.character-circle .circle-item .item-contents .item-text4 {
  position: absolute;
  top: 66%;
  right: 88%;
  white-space: nowrap;
}

.character-circle .circle-item .item-contents .item-text5 {
  position: absolute;
  top: 21%;
  left: 19%;
}

.character-circle .circle-item .item-contents .item-text6 {
  position: absolute;
  top: -6%;
  left: 37%;
}

.character-circle .circle-item .item-contents .item-text7 {
  position: absolute;
  top: -11%;
  right: 36%;
}

.character-circle .circle-item .item-contents .item-text8 {
  position: absolute;
  top: 27%;
  right: 11%;
  color: #fff;
}

.character-circle .circle-item .item-contents .item-text9 {
  position: absolute;
  top: 64%;
  left: 18%;
}

.character-circle .circle-item .item-contents .item-text10 {
  position: absolute;
  top: 10%;
  left: 30%;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .character-circle {
    display: block;
    margin-top: 50px;
  }
  .character-circle .circle-item {
    width: 100%;
  }
  .character-circle .circle-item:first-child {
    margin-bottom: 50px;
  }
  .character-circle .circle-item .item-title {
    -webkit-animation: fadein 1s ease 1s forwards;
            animation: fadein 1s ease 1s forwards;
  }
  .character-circle .circle-item .item-contents.is-show {
    -webkit-animation: fadeup 1s ease 1s forwards;
            animation: fadeup 1s ease 1s forwards;
  }
}

@media screen and (max-width: 1000px) {
  .character-circle .item-title {
    font-size: 26px;
  }
  .character-circle .item-contents {
    font-size: 14px;
  }
}

@media screen and (max-width: 767px) {
  .character-circle .item-title {
    letter-spacing: 2px;
    font-size: 20px;
  }
}

@keyframes fadeup {
  from {
    opacity: 0;
    -webkit-transform: translateY(5%);
            transform: translateY(5%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .company .dl_table {
    padding-top: 0px;
  }
  .profile .greeting-rep h3 {
    margin-bottom: 30px;
  }
  .profile .greeting-rep h2 {
    margin-bottom: 30px;
  }
}

.thanks {
  margin-top: 150px;
}

.thanks .inner p {
  margin-bottom: 150px;
}

.member-section {
  padding-top: 150px;
}

.login-section {
  padding-top: 150px;
}

section.reset {
  padding-top: 150px;
}

.cat-content {
  display: none;
}

.other-child-category {
  display: none;
}

.column .category-flex .item a {
  -webkit-transition: .3s;
  transition: .3s;
}

.column .category-flex .item a:hover {
  opacity: .6;
}

.child-category .wrap .item a:hover {
  color: inherit;
  border-bottom: none;
  opacity: .6;
}

.child-category {
  width: 100%;
  max-width: 1000px;
}

@media screen and (max-width: 767px) {
  .navi_main .navi li a {
    font-size: 16px;
    margin-bottom: 25px;
  }
  .navi_main .sub_navi {
    margin-top: 0;
  }
}

.page-section {
  background: transparent;
}

.company .box .dt {
  background: #000;
  background: #FFFDD3;
  color: #240C1F;
}

.pagination .current,
.pageBute a {
  border-radius: 0;
  padding: 0;
}

.pageBute a:hover {
  opacity: .6;
  background: inherit;
}

@media screen and (max-width: 767px) {
  section.archiveVoice ul li .title {
    height: inherit;
    min-height: inherit;
  }
}

.book4 {
  background: #fff;
}

.book4 .wrap {
  padding: 0;
}

.contact11 {
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .contact11 {
    margin-bottom: 50px;
  }
}

section.contact .submit {
  padding-bottom: 0;
}

section.contact .check-row {
  width: 100%;
  margin: 16px auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.thanks .btn {
  text-align: center;
  min-width: initial;
  width: 100%;
}

.thanks .inner p {
  margin-bottom: 60px;
}

@media screen and (max-width: 767px) {
  .thanks .inner p {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .character-circle .circle-item .item-contents {
    font-size: 13px;
  }
}

.pagination a,
.pagination span {
  border-radius: 0;
}

.pagination .next {
  display: none !important;
}

.pagination .prev {
  display: none;
}

body {
  -webkit-animation: fadein 3s forwards;
          animation: fadein 3s forwards;
  opacity: 0;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.page_header {
  border-radius: 0;
}

@media screen and (max-width: 1150px) {
  .about .small {
    line-height: 1.5;
  }
  .index-about .wrap2 {
    max-width: 780px;
  }
  .index-about p.about-top {
    margin: 0 20px 0;
    font-size: 22px;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .about .small {
    line-height: 2.2;
  }
  .index-about p.about-top {
    margin: 0 0px 30px;
    font-size: 22px;
    line-height: 1.7;
  }
}

@media screen and (min-width: 768px) {
  .about {
    padding: 0 40px;
    padding-top: 80px;
  }
  .about .small {
    font-size: 15px;
  }
  .service h2 {
    text-align: center;
  }
}

.column ul li a:hover {
  color: inherit;
  opacity: .6;
}

.voice ul li a:hover {
  color: inherit;
  opacity: .6;
}

@media screen and (min-width: 768px) {
  .top-bg {
    padding-bottom: 120px;
  }
}

.wave {
  overflow: hidden;
  position: relative;
  width: 100%;
  /* ウィンドウ幅に対応 */
  height: 200px;
}

@media screen and (max-width: 767px) {
  .wave {
    height: 100px;
  }
}

.wave svg {
  position: absolute;
  width: 200%;
  /* 波を2セット描画することで途切れを防ぐ */
  height: 100%;
}

.wave .wave {
  -webkit-animation: wave 8s linear infinite;
          animation: wave 8s linear infinite;
}

.service .wave .wave:nth-of-type(1) {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  /* 奥の波の速度を調整 */
  z-index: 2;
  fill: #C6EAF7;
  position: relative;
  opacity: .4;
}

.service .wave .wave:nth-of-type(2) {
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  /* 奥の波の速度を調整 */
  fill: #C6EAF7;
}

.service .wave .wave:nth-of-type(3) {
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  /* さらに奥の波の速度を調整 */
  fill: #fff;
  opacity: 1;
}

.top-voice .wave .wave:nth-of-type(1) {
  -webkit-animation-duration: 8s;
          animation-duration: 8s;
  /* 奥の波の速度を調整 */
  z-index: 2;
  fill: #C6EAF7;
  position: relative;
}

.top-voice .wave .wave:nth-of-type(2) {
  -webkit-animation-duration: 15s;
          animation-duration: 15s;
  /* 奥の波の速度を調整 */
  opacity: .6;
  fill: #E0F3FA;
}

.top-voice .wave .wave:nth-of-type(3) {
  -webkit-animation-duration: 25s;
          animation-duration: 25s;
  /* さらに奥の波の速度を調整 */
  fill: #E0F3FA;
  opacity: 1;
}

@-webkit-keyframes wave {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* 開始位置 */
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    /* 画面の半分を動く */
  }
}

@keyframes wave {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    /* 開始位置 */
  }
  to {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    /* 画面の半分を動く */
  }
}

.service,
.top-voice {
  position: relative;
}

.service .wave,
.top-voice .wave {
  position: absolute;
  top: -180px;
  left: 0;
  width: 100%;
  background: transparent;
}

@media screen and (max-width: 767px) {
  .service .wave,
  .top-voice .wave {
    top: -70px;
  }
}

.no-color {
  background: transparent;
}

.service h2 {
  text-align: center;
}

.top-voice::before {
  display: none;
}

@media screen and (min-width: 768px) {
  .service {
    padding-top: 6vw;
  }
  .top-voice {
    padding-top: 9vw;
  }
}

@media screen and (max-width: 767px) {
  .top-voice {
    padding-top: 20vw;
  }
  .bnr {
    padding-top: 60px;
  }
  .about_intro p {
    font-size: 14px;
  }
  .active-box h3 {
    display: block;
    width: 100%;
    height: initial;
  }
}

.curriculum .month {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .curriculum .c1 {
    width: 150px;
  }
}

@media screen and (min-width: 768px) {
  .curriculm-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: calc(100% - 175px);
  }
  .curriculm-right .item {
    width: 47%;
  }
}

.wrap3 {
  max-width: 1000px;
}

@media screen and (min-width: 768px) {
  .wrap3 {
    padding: 0 40px;
  }
}

@media screen and (min-width: 768px) {
  .curriculum .month:not(:last-child):after {
    left: 46px;
  }
}

@media screen and (max-width: 767px) {
  .curriculum .month {
    display: block;
  }
  .curriculum .c1 {
    width: 100%;
  }
  .curriculm-right {
    width: 100%;
  }
  .curriculum .month:not(:last-child):after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.curriculm-right p {
  font-size: 13px;
  line-height: 1.8;
}

.curriculum ol li {
  list-style-type: outside;
}

.curriculum .c1 p {
  line-height: 1.7;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .curriculum .c1 {
    padding: 10px 0;
  }
}

@media screen and (max-width: 767px) {
  .curriculm-right {
    margin: 18px 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .staff .media_box article {
    padding-left: 0;
    width: 100%;
  }
  .staff .media_box article .text {
    font-size: 14px;
  }
  .page_service p {
    font-size: 16px;
  }
}

.staff .photo_img {
  padding-top: 30%;
  position: relative;
}

@media screen and (max-width: 767px) {
  .staff .photo_img {
    padding-top: 67%;
  }
}

.staff .photo_img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 70px !important;
}

.book-cta .wrap {
  width: 100%;
}

.book-btn a {
  display: block;
  background: #DC4C8A;
  color: #fff;
  border-radius: 20px;
  padding: 20px 10px;
  -webkit-box-shadow: 0 3px 6px #b5b3b3;
          box-shadow: 0 3px 6px #b5b3b3;
  margin-bottom: 10px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {
  .book-btn a {
    padding: 10px 10px;
  }
}

.book-btn .flex {
  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;
}

.book-btn .flex .icon {
  width: 40px;
  margin-left: 20px;
}

@media screen and (max-width: 767px) {
  .book-btn .flex .icon {
    width: 30px;
    margin-left: 10px;
  }
}

.book-btn .flex .text {
  font-size: 35px;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .book-btn .flex .text {
    font-size: 18px;
  }
}

@media screen and (max-width: 360px) {
  .book-btn .flex .text {
    font-size: 16px;
  }
}

.register,
.l-register {
  padding-top: 150px;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .register,
  .l-register {
    padding-top: 60px;
  }
}

.l-register .btn {
  width: 100%;
}

.swpm-registration-widget-form input[type="text"],
.swpm-registration-widget-form input[type="password"] {
  border: 1px solid #000;
}

.reset input[type="text"] {
  border: 1px solid #000;
}

.reset,
.l-register {
  background: #fff;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top-voice .wave {
    top: -80px;
  }
}

section.mail .wrapper-image-btn {
  background-image: url(../img/mail03.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 0;
  padding-top: 66.6666666667%;
  position: relative;
}

section.mail .wrapper-image-btn figure {
  width: 60%;
  margin: 0 auto;
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translate(-50%, -50%);
}

section.mail .wrapper-image-btn figure img {
  -webkit-box-shadow: 2px 2px 2px #aaa;
          box-shadow: 2px 2px 2px #aaa;
  border-radius: 28px;
}

.promotion-video .video_frame video {
  width: 100%;
  height: 450px;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: 50% 32%;
     object-position: 50% 32%;
}

@media screen and (min-width: 768px) {
  section.contact .check-row {
    width: 68%;
    margin-left: auto;
    margin-right: 0;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.navi_main .submenu li figure {
  max-width: 100%;
}

.navi_main .submenu li a strong {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 767px) {
  .navi_main .submenu li a strong {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
}

.navi_main .submenu li {
  padding: 30px 10px;
  max-width: 250px;
}

.toggle:before {
  top: 35%;
}

.toggle:after {
  top: 62%;
}

.trial-heading .contents .title,
.trial1-contents .main-title,
.trial-heading .contents .text {
  font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
}

.section.tra-contact {
  margin: 0% auto;
  -webkit-box-shadow: initial;
          box-shadow: initial;
  border-radius: 0px;
}

.section.tra-contact .btn {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .section.tra-contact .inner222 {
    padding: 0;
  }
}

.trial-heading {
  padding-top: 70px;
}

.toggle {
  top: -5px;
}

@media screen and (max-width: 767px) {
  .index_header .toggle {
    top: -5px !important;
  }
}

@media screen and (min-width: 768px) {
  .header .logo {
    padding-left: 0 !important;
    max-width: 72px;
  }
  .scroll_head .logo img,
  .page_header .logo img {
    max-width: 72px;
    padding-top: 0 !important;
  }
  .scroll_head .logo img,
  .page_header .logo img {
    top: 0;
  }
}

.logo2025 img {
  max-width: 65px;
}

.s-header .logo {
  max-width: 100px;
}

@media screen and (max-width: 767px) {
  .s-header .logo {
    max-width: 87px;
  }
}

.s-header .logo img {
  max-width: 100px;
}

@media screen and (max-width: 767px) {
  .s-header .logo img {
    max-width: 87px;
  }
}

.trial2 .flex .card .title {
  color: #61BFDB;
}

.trial1-contents .row .dt .num .num-wrap {
  background: #80DBF6;
}

.trial1-contents .row .dt .dt-text {
  color: #240C1F;
}

.trial1 .fukidashi .right {
  border: 4px solid #FFFEE3;
  background: #FFFEE3;
  color: #240C1F;
}

.trial1 .fukidashi .left {
  border: 4px solid #CECBC1;
}

.trial1 .fukidashi .left::before {
  border-color: transparent #CECBC1 transparent transparent;
}

.trial1 .fukidashi .right::before {
  border-color: transparent transparent transparent #FFFEE3;
}

.trialBtn a {
  font-weight: bold;
  border-radius: 12px;
  background: #F1eb77;
  border: none;
  color: #240C1F;
}

@media screen and (max-width: 767px) {
  .trialBtn a {
    font-size: 15px;
  }
}

@media screen and (max-width: 767px) {
  .trial2 .flex .card .wrap {
    width: 100%;
  }
  .trial1-contents .row .dt .num {
    margin-right: 10px;
  }
}

.navi_main .submenu li a strong:after {
  min-width: 16px;
}

@media screen and (min-width: 768px) {
  .navi_main .submenu li a {
    font-size: .9rem;
  }
  .navi_main .submenu {
    position: absolute;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /* visibility: hidden; */
    opacity: 1;
    top: 50px;
    left: -27vw;
    right: 0px;
    width: 59.214286vw;
    margin: 0 auto;
    padding: 35px 10px 25px;
    border-radius: 24px;
    background: white;
    -webkit-transition: all 0.6s ease;
    transition: all 0.6s ease;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}

.c10 {
  padding: 20px 0;
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    margin-bottom: 40px;
  }
}

.story-section .story-img {
  margin-bottom: 80px;
}

@media screen and (max-width: 767px) {
  .story-section .story-img {
    margin-bottom: 40px;
  }
}

.trialBtn a {
  position: relative;
}

.trialBtn a:hover::after {
  top: 50% !important;
  left: initial !important;
  opacity: 1 !important;
}

.trialBtn a::after {
  position: absolute;
  content: "";
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 6%;
  font-size: 24px;
  color: black;
  display: inline-block;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  border-right: 3px solid black;
  border-top: 3px solid black;
  width: 10px;
  height: 10px;
  margin: 0px;
}

@media screen and (max-width: 767px) {
  .trialBtn a::after {
    border-right: 2px solid black;
    border-top: 2px solid black;
    width: 8px;
    height: 8px;
  }
}

#page-top a {
  position: relative;
  padding: 34px 5px 20px;
}

#page-top a::before {
  position: absolute;
  content: "";
  top: 25%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
  left: 50%;
  font-size: 24px;
  color: black;
  display: inline-block;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  width: 10px;
  height: 10px;
  margin: 0px;
}

@media screen and (max-width: 360px) {
  .trialBtn a {
    font-size: 13px;
  }
  .trialBtn a:after {
    right: 7%;
  }
}

.name-cards .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.name-cards .flex .item {
  width: 47%;
  border: 0.7px solid #707070;
}

.name-cards .flex .item-left {
  position: relative;
  border: 0.7px solid #707070;
  position: relative;
  background: #CDEAF3;
}

.name-cards .flex .item-left .wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
}

.voice .column {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .voice .column {
    margin-bottom: 0px;
  }
}

.voice-category .item {
  margin-bottom: 0;
  padding: 2px 16px;
  background-color: #E0F3FA;
  color: #000;
  font-size: 14px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .voice-category .item {
    font-size: 11px !important;
    padding: 2px 5px !important;
  }
}

.voice-add {
  padding: 0;
  margin-bottom: 100px !important;
  margin-top: -50px !important;
}

.voice-add a {
  display: block;
}

.logo .service_brain-logo {
  max-width: 100px;
}

@media screen and (max-width: 767px) {
  .voice .col > a figure img {
    height: auto;
  }
  .voice .col > a figure {
    height: auto;
  }
}

.youtube-movie {
  margin: 40px 0 60px;
}

@media screen and (max-width: 767px) {
  .youtube-movie {
    margin: 30px 0;
  }
}

.youtube-movie .wrap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
}

.youtube-movie .wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .media_box article .h3-title {
    font-size: 27px;
    margin-bottom: 48px;
  }
  .youtube-movie {
    margin-bottom: 100px;
  }
}

.brain2025 .btn-area {
  height: auto;
}

.active-section2 {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .youtube-movie {
    margin: 0;
    margin-bottom: 40px;
  }
  .page_about h2 {
    margin-bottom: 30px;
  }
}
