@charset "UTF-8";
/*=================================
Reset css
=================================*/
@import "base.css";
@import url("//fonts.googleapis.com/css?family=Share+Tech");
@import url("https://fonts.googleapis.com/earlyaccess/sawarabigothic.css");
/*=================================
Base
=================================*/
/*
 * Breakpoint 1
 */
/*
 * Breakpoint 2
 */
/*
 * Breakpoint 3
 */
/*
 * Breakpoint 4
 */
@font-face {
  font-family: RoboB;
  src: url(../fonts/Roboto-Bold.ttf);
}
@font-face {
  font-family: RoboR;
  src: url(../fonts/Roboto-Regular.ttf);
}
body {
  min-width: 1200px;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  color: #000;
  background-color: #fff;
}
@media only screen and (max-width: 768px) {
  body {
    min-width: 320px;
    height: 100%;
  }
}

h1, h2, h3, h4 {
  font-family: "RoboB", sans-serif !important;
}

#wrap {
  overflow: hidden;
}

.only_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .only_sp {
    display: block !important;
  }
}

.only_pc {
  display: block;
}
@media only screen and (max-width: 768px) {
  .only_pc {
    display: none !important;
  }
}

.yellow {
  color: #FFEE55;
  /*#fefd00*/
}

.red {
  color: #f13127;
}

.pink {
  color: #FF559C;
}

.txt_center {
  text-align: center;
}

.bold {
  font-weight: 700;
}

.line_y {
  position: relative;
}
.line_y::before {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 2px;
  background-color: #FFEE55;
  z-index: -1;
}

/*
 * White space 01
 */
.white_space_01 {
  height: 200px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .white_space_01 {
    height: 90px;
  }
}

/*
 * White space 02
 */
.white_space_02 {
  height: 72px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .white_space_02 {
    height: 50px;
  }
}

/*
 * White space 03
 */
.white_space_03 {
  height: 245px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .white_space_03 {
    height: 110px;
  }
}

/*
 * White space 04
 */
.white_space_04 {
  height: 132px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .white_space_04 {
    height: 60px;
  }
}

/*
 * White space 05
 */
.white_space_05 {
  height: 142px;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .white_space_05 {
    height: 60px;
  }
}

/*
 * White space 06
 */
.white_space_06 {
  height: 160px;
  position: relative;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .white_space_06 {
    height: 60px;
  }
}

.f_up {
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
}

.f_left {
  -webkit-transform: translateX(100px);
  transform: translateX(100px);
  opacity: 0;
}

.fade_02 {
  position: relative;
}
.fade_02 .fade_02_container {
  position: relative;
  overflow: hidden;
  display: inline-block;
}
.fade_02 .fade_02_container:after {
  height: 100%;
  width: 100%;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  background-color: #FFEE55;
}
.fade_02 .fade_02_container .fade_02_content {
  visibility: hidden;
  -webkit-transition: visibility 0s 0.3s;
  transition: visibility 0s 0.3s;
}
.fade_02.faded .fade_02_container:after {
  -webkit-animation: fade_02 0.7s forwards;
  animation: fade_02 0.7s forwards;
}
.fade_02.faded .fade_02_container .fade_02_content {
  visibility: visible;
}

@-webkit-keyframes fade_02 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
}

@keyframes fade_02 {
  0% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  45% {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
  }
  50% {
    -webkit-transform: none;
    transform: none;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
  100% {
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }
}
/*=================================
Layout
=================================*/
.container {
  width: 1200px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .container {
    width: 100%;
    min-width: 100%;
  }
}

/*=================================
Home Page
=================================*/
/* Header
---------------------------------*/
.header {
  display: block;
  height: 90px;
  line-height: 90px;
  background-color: rgba(255, 255, 255, 0);
  z-index: 99999;
  width: 100%;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .header {
    height: 60px;
    line-height: 60px;
  }
}
.header h1 {
  font-size: 12px;
  margin: 0.25em 0 0 43px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif !important;
}
@media only screen and (max-width: 768px) {
  .header h1 {
    width: calc(100% - 20px);
    margin: 0.25em 1em;
    font-size: 10px;
  }
}
.header .header_logo {
  width: 345px;
  margin-left: 25px;
  padding-top: 15px;
  float: left;
}
@media only screen and (max-width: 768px) {
  .header .header_logo {
    width: 77%;
    margin-left: 1%;
    padding-top: 5px;
    height: 60px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 1400px) {
  .header .header_logo {
    margin-left: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .header .header_brand {
    height: 40px;
    width: 40px;
    position: absolute;
    right: 0;
    background-color: #FCAE2A;
    margin-top: 7px;
    margin-right: 2%;
    padding: 11px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  .header .header_brand.show .line_one {
    -webkit-transform: rotate(45deg) translate(36%, 187%);
            transform: rotate(45deg) translate(36%, 187%);
  }
}
.header .header_brand.show .line_two {
  opacity: 0;
}
.header .header_brand.show .line_three {
  -webkit-transform: rotate(-45deg) translate(31%, -180%);
          transform: rotate(-45deg) translate(31%, -180%);
}
.header .header_brand.show .header_brand_line {
  height: 2px;
}
@media only screen and (max-width: 768px) {
  .header .header_brand .header_brand_line {
    width: 100%;
    height: 2px;
    background-color: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header .header_brand .header_brand_line.line_two {
    margin: 5px 0;
  }
}
.header .nav {
  float: right;
  margin-right: 15px;
}
@media only screen and (max-width: 1400px) {
  .header .nav {
    margin-right: 5px;
  }
}
@media only screen and (max-width: 768px) {
  .header .nav {
    display: none;
    width: 100%;
    min-width: 320px;
    background-color: #FCAE2A;
    margin-right: 0;
    z-index: 99999;
    margin-top: 60px;
    position: fixed;
  }
}
.header .nav.nav_pc {
  display: block;
  position: fixed;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .header .nav.nav_pc {
    display: none !important;
  }
}
.header .nav.nav_sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .header .nav.nav_sp {
    display: none;
  }
}
.header .nav ul {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.header .nav li {
  float: left;
  line-height: 90px;
  font-weight: 700;
  font-size: 1.4rem;
  color: #000000;
  margin-left: 25px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 1400px) {
  .header .nav li {
    margin-left: 10px;
  }
}
@media only screen and (max-width: 768px) {
  .header .nav li {
    width: 100%;
    padding: 0;
    text-align: center;
    height: 45px;
    line-height: 45px;
    margin-left: 0;
    color: #ffffff;
  }
}
.header .nav li.nav_btn {
  height: 50px;
  width: 286px;
  color: #ffffff;
  border-radius: 25px;
  background-color: #008b8b;
  margin-top: 20px;
  line-height: 50px;
  text-align: center;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1400px) {
  .header .nav li.nav_btn {
    width: 230px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .header .nav li.nav_btn {
    height: 45px;
    line-height: 45px;
    font-size: 1.4rem;
    margin-top: 0;
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(0%);
    transform: translateX(-50%) translateY(0%);
  }
}
.header .nav li:first-child {
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  .header .nav li:nth-last-child(2) {
    margin-bottom: 70px;
  }
}
.header .nav li a {
  color: inherit;
  font-size: inherit;
  display: block;
  text-shadow: 1px 1px 3px #fdfaf5, -1px -1px 3px #fdfaf5;
}
.header .nav li a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .header .nav li a {
    text-shadow: none;
  }
}
.header .nav li:last-of-type a {
  text-shadow: none;
}

@-webkit-keyframes zoom-up {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
@keyframes zoom-up {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  to {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }
}
.main_screen {
  height: 990px;
  width: 100%;
  position: relative;
  z-index: 1;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .main_screen {
    height: 670px;
  }
}
.main_screen .main_screen_cover {
  height: 100%;
  width: 100%;
  background: url(../images/bg_main_screen_02_pc.jpg) no-repeat;
  background-size: cover;
  background-position: 40% 30%;
  -webkit-animation-name: zoom-up;
  animation-name: zoom-up;
  -webkit-animation-duration: 9s;
  animation-duration: 9s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_cover {
    height: 80%;
    background: url(../images/bg_main_screen_02_sp.jpg) no-repeat;
    background-position: 70% 30%;
    background-size: cover;
  }
}
.main_screen .main_screen_info {
  width: 890px;
  padding-top: 260px;
  position: relative;
  padding-left: 240px;
  font-family: "Sawarabi Gothic", "RoboB", sans-serif !important;
  font-weight: 600;
}
@media only screen and (max-width: 1600px) {
  .main_screen .main_screen_info {
    padding-left: 130px;
    padding-top: 220px;
    width: 55%;
  }
}
@media only screen and (max-width: 1400px) {
  .main_screen .main_screen_info {
    padding-left: 110px;
    width: 64%;
  }
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_info {
    width: 93%;
    padding-top: 180px;
    padding-left: 3%;
    margin: 0 auto;
  }
}
.main_screen .main_screen_info p {
  text-transform: uppercase;
  font-size: 6.5rem;
  color: #fff;
}
@media only screen and (max-width: 1400px) {
  .main_screen .main_screen_info p {
    font-size: 5.8rem;
  }
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_info p {
    font-size: 2.6rem;
  }
}
.main_screen .main_screen_info span {
  color: #fff;
  /* #009fe8 */
  display: block;
}
.main_screen .main_screen_img_01 {
  width: 75px;
  height: 610px;
  position: absolute;
  right: -75px;
  top: 182px;
}
@media only screen and (max-width: 1600px) {
  .main_screen .main_screen_img_01 {
    right: -55px;
  }
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_img_01 {
    width: 35px;
    height: 235px;
    left: 50%;
    top: 310px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_img_01 img {
    height: 100%;
  }
}
.main_screen .main_screen_img_02 {
  height: 110px;
  margin-top: 37px;
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_img_02 {
    height: 85px;
    margin-top: 7px;
  }
}
@media only screen and (max-width: 768px) {
  .main_screen .main_screen_img_02 img {
    max-width: 95%;
    height: 100%;
  }
}
.main_screen .scroll {
  display: block;
  cursor: pointer;
  height: 220px;
  width: 30px;
  position: absolute;
  left: 50%;
  bottom: 65px;
  -webkit-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
}
@media only screen and (max-width: 768px) {
  .main_screen .scroll {
    bottom: -65px;
    height: 135px;
  }
}
.main_screen .scroll span {
  position: absolute;
  left: 50%;
  display: block;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}
@media only screen and (max-width: 768px) {
  .main_screen .scroll span:first-child img {
    height: 25px;
  }
}
.main_screen .scroll span:last-child {
  bottom: 0;
  -webkit-transform: translateX(-46%);
          transform: translateX(-46%);
}
@media only screen and (max-width: 768px) {
  .main_screen .scroll span:last-child img {
    height: 50px;
  }
}
.main_screen .scroll span:nth-child(2) {
  height: 100px;
  width: 100%;
  position: absolute;
  overflow: hidden;
  top: 40px;
}
@media only screen and (max-width: 768px) {
  .main_screen .scroll span:nth-child(2) {
    top: 25px;
    height: 58px;
  }
}
.main_screen .scroll span:nth-child(2)::after {
  position: absolute;
  left: 50%;
  display: block;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  content: url(../images/main_screen_scroll_03_pc.png);
  -webkit-animation: scroll 1.5s ease infinite;
  animation: scroll 1.5s ease infinite;
}

@-webkit-keyframes scroll {
  0% {
    top: -85px;
  }
  100% {
    top: 100px;
  }
}
@keyframes scroll {
  0% {
    top: -85px;
  }
  100% {
    top: 100px;
  }
}
/* Main
---------------------------------*/
.main {
  position: relative;
}

/*
 * Fade Up
 */
.fade_up_box {
  width: 100%;
  position: relative;
}

/*
 * Caution
 */
.caution {
  height: 1450px;
  width: 100%;
  background: url(../images/bg_caution_01_pc.png) no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .caution {
    height: auto;
    padding-bottom: 70px;
    background: url(../images/bg_caution_01_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.caution .container {
  padding-top: 60px;
}
@media only screen and (max-width: 768px) {
  .caution .container {
    padding-top: 30px;
  }
}
.caution .caution_title_01 {
  color: #FFEE55;
  font-size: 11rem;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  height: 120px;
  line-height: 120px;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_01 {
    font-size: 4.6rem;
    height: 50px;
    line-height: 50px;
  }
}
.caution .caution_title_01 span {
  line-height: 90px;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_01 span {
    line-height: 50px;
  }
}
.caution .caution_content {
  width: 100%;
  padding: 0 13px;
  margin-top: 27px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .caution .caution_content {
    margin-top: 15px;
    padding: 0 2%;
  }
}
.caution .caution_title_02 {
  padding-left: 35px;
  font-size: 3.8rem;
  font-weight: 700;
  color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_02 {
    font-size: 2rem;
    padding-left: 0;
    text-align: center;
  }
}
.caution .caution_title_02 .only_sp {
  height: 5px;
}
.caution .caution_title_02 span:first-child {
  font-size: 4.8rem;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_02 span:first-child {
    font-size: 2.2rem;
  }
}
.caution .caution_txt {
  margin-top: 35px;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 35px;
}
@media only screen and (max-width: 768px) {
  .caution .caution_txt {
    margin-top: 15px;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.caution .caution_txt p.fsz36 {
  margin-top: 8px;
  margin-bottom: 5px;
}
.caution .caution_txt p.fsz36 span {
  font-size: 3.6rem;
}
@media only screen and (max-width: 768px) {
  .caution .caution_txt p.fsz36 span {
    font-size: 2.4rem;
  }
}
.caution .caution_txt p.mab16 {
  margin-bottom: 2rem;
}
.caution .caution_txt p.italic {
  font-style: italic;
  padding-left: 10px;
  font-size: 2rem;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .caution .caution_txt p.italic {
    padding-left: 0;
    font-size: 1.6rem;
  }
}
.caution .caution_txt p:last-child span {
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  .caution .caution_txt p:last-child span {
    font-size: 1.8rem;
  }
}
.caution .caution_title_03 {
  font-size: 3.6rem;
  font-weight: 700;
  margin-top: 35px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_03 {
    font-size: 2.4rem;
    margin-top: 20px;
  }
}
.caution .caution_title_04 {
  color: #ffffff;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 25px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .caution .caution_title_04 {
    font-size: 1.6rem;
    margin-top: 15px;
  }
}

/*
 * About
 */
.about {
  height: 990px;
  width: 100%;
  background: url(../images/bg_caution_01_pc.png) no-repeat;
  background-size: cover;
  background-position: top;
  margin-top: -40px;
  position: relative;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .about {
    height: auto;
    padding-bottom: 50px;
    background: url(../images/bg_caution_01_sp.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
.about .container {
  position: relative;
  height: 880px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .about .container {
    width: 100%;
    height: auto;
    padding: 0 2%;
  }
}
.about .about_title_01 {
  position: absolute;
  top: 60px;
  width: 700px;
  left: 0;
  height: 290px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .about .about_title_01 {
    top: 40px;
    width: 100%;
    height: 160px;
    padding: 0 2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  .about .about_title_01 .only_sp {
    height: 0 !important;
  }
}
.about .about_title_01 .h2_fade_up {
  position: absolute;
  height: 290px;
}
@media only screen and (max-width: 768px) {
  .about .about_title_01 .h2_fade_up {
    height: 160px;
  }
}
.about .about_title_01 h2 {
  font-size: 9.5rem;
  line-height: 97px;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .about .about_title_01 h2 {
    font-size: 4rem;
    width: 100%;
    overflow: hidden;
    line-height: 45px;
  }
}
.about .about_title_01 p {
  font-weight: 700;
  font-size: 25px;
  color: #FF559C;
  position: absolute;
  bottom: 12px;
  right: 35px;
}
@media only screen and (max-width: 768px) {
  .about .about_title_01 p {
    font-size: 1.6rem;
    bottom: 5px;
    left: 3%;
  }
}
.about .fade_group {
  padding-top: 110px;
}
@media only screen and (max-width: 768px) {
  .about .fade_group {
    padding-top: 220px;
  }
}
.about .fade_up_box {
  width: 570px;
}
@media only screen and (max-width: 768px) {
  .about .fade_up_box {
    width: 100%;
    min-height: 200px;
    max-height: auto;
  }
}
.about .about_txt_fade {
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .about .about_txt_fade {
    position: relative;
  }
}
.about .about_txt_fade .fade_group_txt {
  opacity: 0;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}
.about .about_title_02 {
  position: relative;
  padding-top: 320px;
  font-size: 2.8rem;
  font-weight: 700;
  z-index: 1;
  color: #ffffff;
}
@media only screen and (max-width: 768px) {
  .about .about_title_02 {
    padding-top: 5px;
    font-size: 1.8rem;
  }
}
.about .about_txt {
  width: 570px;
  position: relative;
  margin-top: 65px;
  z-index: 1;
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 26px;
}
@media only screen and (max-width: 768px) {
  .about .about_txt {
    margin-top: 25px;
    width: 100%;
    line-height: 22px;
    font-size: 1.4rem;
    padding-bottom: 15px;
  }
}
.about .about_img_slide {
  position: absolute;
  right: 0;
  bottom: 25px;
  height: 601px;
  overflow: hidden;
  width: 699px;
}
@media only screen and (max-width: 768px) {
  .about .about_img_slide {
    width: 100%;
    position: relative;
    height: auto;
    text-align: center;
    bottom: 0;
  }
}
.about .about_img_slide .fade_02_content {
  visibility: hidden;
}
.about .about_img {
  position: absolute;
  width: 699px;
  height: 601px;
}
@media only screen and (max-width: 768px) {
  .about .about_img {
    width: 100%;
    height: auto;
    padding-top: 0;
    position: relative;
    text-align: center;
  }
}
.about .about_img img {
  max-width: 100%;
}
@media only screen and (max-width: 768px) {
  .about .about_img img {
    max-width: 300px;
  }
}

/*
 * Point
 */
.point {
  height: 870px;
  background: url(../images/bg_point_01_pc.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  padding-top: 85px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-top: -42px;
}
@media only screen and (max-width: 768px) {
  .point {
    padding: 0 2%;
    margin-top: 50px;
    width: 100%;
    height: auto;
    padding-bottom: 50px;
  }
}
.point .point_item_row:nth-child(2) {
  clear: both;
}
@media only screen and (max-width: 768px) {
  .point .point_item_row:nth-child(2) .point_item_cover {
    margin-top: calc(62px + 18px);
  }
}
.point .point_item_row:nth-child(2) .point_item_cover:last-child {
  margin-top: 72px;
}
@media only screen and (max-width: 768px) {
  .point .point_item_row:nth-child(2) .point_item_cover:last-child {
    margin-top: 62px;
  }
}
.point .point_item_row:nth-child(2) .point_item_cover:first-child {
  margin-top: 0;
}
.point .point_item_cover {
  min-height: 255px;
  height: auto;
  width: calc(586px - 17px - 25px);
  float: left;
  margin-right: 25px;
  margin-top: 18px;
  margin-left: 17px;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .point .point_item_cover {
    padding-top: 18px;
    float: none;
    width: calc(100% - 17px);
  }
}
@media only screen and (max-width: 768px) {
  .point .point_item_cover:first-child {
    padding-top: 82px;
  }
}
.point .point_item_cover:last-child {
  margin-right: 0;
  margin-top: 62px;
}
.point .point_item {
  margin-top: -19px;
  margin-left: -16px;
  position: relative;
  background-color: #fff;
  background: url(../images/bg_point_item_pc_01.png) top left no-repeat;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
  opacity: 0;
}
@media only screen and (max-width: 768px) {
  .point .point_item {
    width: calc(100% + 16px);
    margin-top: -36px;
  }
}
.point .point_item::after {
  content: "";
  background-color: #fff;
  width: 50%;
  height: calc(100% - 20px);
  position: absolute;
  top: 0;
  z-index: -1;
  right: 0;
  top: 18px;
}
.point .point_item_icon {
  width: 145px;
  padding-top: 34px;
  margin-left: 24px;
  float: left;
  height: 120px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .point .point_item_icon {
    height: 100px;
  }
}
.point .point_item_title {
  height: 120px;
  width: calc(100% - 145px - 24px);
  float: left;
  position: relative;
  padding: 0 10px;
  padding-top: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .point .point_item_title {
    width: 100%;
    clear: both;
    padding-top: 8px;
    height: auto;
    min-height: 50px;
    padding-left: 30px;
  }
}
.point .point_item_title h3 {
  position: absolute;
  font-weight: 700;
  font-size: 30px;
  color: #FCAE2A;
  top: 53%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 38px;
}
@media only screen and (max-width: 768px) {
  .point .point_item_title h3 {
    font-size: 2.2rem;
    line-height: 25px;
  }
}
.point .point_item_title h3 .pointer {
  position: relative;
  display: inline-block;
  font-size: 28px;
}
.point .point_item_title h3 .pointer::after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  margin-left: -3px;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #FCAE2A;
}
@media only screen and (max-width: 768px) {
  .point .point_item_title h3 .pointer {
    font-size: 2rem;
  }
}
.point .point_item_txt {
  clear: both;
  font-weight: 500;
  font-size: 1.5rem;
  background-color: #ffffff;
  height: auto;
  color: #000000;
  margin-left: 16px;
  padding: 8px 16px 35px 22px;
  line-height: 27px;
}
@media only screen and (max-width: 768px) {
  .point .point_item_txt {
    width: calc(100% - 16px);
    font-size: 1.4rem;
    padding: 2%;
    line-height: 24px;
    padding-bottom: 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.point .point_item_txt p {
  position: relative;
  z-index: 1;
  display: inline-block !important;
  padding-right: 1px;
}
.point .point_item_txt p.bold {
  font-weight: 700;
}
.point .point_item_txt p.line_y::before {
  content: "";
  width: 100%;
  height: 6px;
  position: absolute;
  bottom: 3.5px;
  background-color: #FFEE55;
  z-index: -1;
}
.point .point_item_txt span {
  position: relative;
  z-index: 1;
}

/*
 * Note
 */
.note {
  height: 290px;
  padding-top: 24px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .note {
    padding-top: 15px;
    margin: 0 auto;
    width: 98%;
    height: 280px;
  }
}
.note .note_title_cover {
  height: 122px;
  position: relative;
  padding-top: 28.5px;
  padding-left: 70px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .note .note_title_cover {
    padding-top: 5px;
    padding-left: 20px;
    height: 70px;
  }
}
.note .note_title_cover img {
  position: absolute;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .note .note_title_cover img {
    height: 70px;
  }
}
.note .note_title_cover .note_title {
  background: url(../images/bg_note_01_pc.png) right no-repeat;
  background-size: cover;
  height: 65px;
  font-weight: 700;
  font-size: 3.8rem;
  color: #000000;
  line-height: 65px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .note .note_title_cover .note_title {
    position: relative;
    z-index: -1;
    height: 60px;
    font-size: 1.4rem;
    line-height: 22px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.note .note_title_cover .note_title p {
  position: absolute;
  top: 50%;
  padding-left: 50px;
  padding-right: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.note .note_txt_01 {
  margin-top: 5px;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  line-height: 34px;
}
@media only screen and (max-width: 768px) {
  .note .note_txt_01 {
    line-height: 20px;
    font-size: 1.3rem;
    margin-top: 20px;
  }
}
.note .note_txt_02 {
  font-size: 4rem;
  position: relative;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}
@media only screen and (max-width: 768px) {
  .note .note_txt_02 {
    font-size: 2.4rem;
  }
}
.note .note_txt_02 p {
  position: relative;
  width: auto;
  display: inline-block;
}
.note .note_txt_02 p.line_y:before {
  height: 18px;
  bottom: 6px;
}

/*
 * Contact
 */
.contact {
  height: 428px;
  background-color: #FCAE2A;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact {
    height: auto;
    padding-bottom: 15px;
    padding-top: 65px;
    margin-bottom: 65px;
  }
}
.contact .container {
  height: 100%;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .contact .container {
    padding: 0 2%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.contact .contact_img {
  position: absolute;
  left: 0;
  width: 97px;
  top: -35px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_img {
    width: 100%;
    height: 51px;
    top: -25px;
  }
}
@media only screen and (max-width: 768px) {
  .contact .contact_img img {
    margin: 0 auto;
  }
}
.contact .contact_title {
  font-size: 4rem;
  color: #FFEE55;
  font-weight: 700;
  padding-top: 30px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_title {
    font-size: 2rem;
    padding-top: 45px;
  }
}
.contact .contact_txt_01 {
  color: #FFEE55;
  font-weight: 700;
  font-size: 1.6rem;
  padding-top: 15px;
  line-height: 26px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_txt_01 {
    padding-top: 12px;
    font-size: 1.3rem;
    line-height: 18px;
  }
}
.contact .contact_btn {
  height: 105px;
  width: 900px;
  margin: 0 auto;
  border: 2px solid #ffffff;
  padding: 10px 75px;
  position: relative;
  margin-top: 30px;
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .contact .contact_btn {
    font-size: 1.8rem;
    margin-top: 20px;
    padding: 10px;
    height: 60px;
    line-height: 20px;
    width: auto;
  }
}
.contact .contact_btn:hover {
  color: #FCAE2A;
  background-color: #fff;
  border: 2px solid #FCAE2A;
}
.contact .contact_btn:hover::after {
  content: "";
}
.contact .contact_btn p {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: inherit;
  display: block;
  width: 100%;
  height: 100%;
  line-height: 100px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  .contact .contact_btn p {
    height: auto;
    line-height: 22px;
  }
}
.contact .contact_btn a {
  display: block;
  color: inherit;
}
.contact .contact_btn a:hover {
  opacity: 1;
}
.contact .contact_btn::after {
  content: url(../images/icon_contact_01_pc.png);
  position: absolute;
  right: -83px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media only screen and (max-width: 768px) {
  .contact .contact_btn::after {
    content: "";
  }
}
.contact .contact_txt_02 {
  width: 700px;
  height: 34px;
  margin: 0 auto;
  background-color: #fff;
  color: #FCAE2A;
  text-align: center;
  line-height: 34px;
  margin-top: 34px;
  font-size: 1.6rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .contact .contact_txt_02 {
    margin-top: 25px;
    height: 30px;
    width: auto;
    font-size: 1.3rem;
    line-height: 30px;
  }
}
.contact .contact_info {
  width: 660px;
  margin: 0 auto;
  color: #fff;
  font-weight: 700;
  margin-top: 27px;
  line-height: 42px;
  height: 42px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_info {
    width: 100%;
    position: relative;
    height: 60px;
    line-height: 30px;
    padding-left: 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.contact .contact_info img {
  float: left;
}
@media only screen and (max-width: 768px) {
  .contact .contact_info img {
    width: 30px;
    height: auto;
    position: absolute;
    left: 0;
    top: 7px;
  }
}
.contact .contact_phone {
  font-size: 5rem;
  float: left;
  margin-left: 15px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_phone {
    font-size: 4rem;
    margin-left: 0;
  }
}
.contact .contact_phone a {
  color: inherit;
}
.contact .contact_time {
  float: right;
  font-size: 1.5rem;
  padding-top: 5px;
}
@media only screen and (max-width: 768px) {
  .contact .contact_time {
    float: left;
    padding-top: 0;
    padding-left: 10px;
  }
}

/*
 * Hour
 */
.hour {
  background-color: #fff;
  height: auto;
  text-align: center;
  padding-bottom: 70px;
  width: 96%;
  margin: 0 auto;
}
.hour .hour_title_01 {
  margin-top: 12px;
  font-size: 11rem;
  color: #FCAE2A;
  text-transform: uppercase;
  position: relative;
  height: 106px;
}
.hour .hour_title_01 h2 {
  line-height: 90px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_01 h2 {
    line-height: 48px;
  }
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_01 {
    height: auto;
    font-size: 5rem;
    margin-top: 0;
  }
}
.hour .hour_title_01 span {
  font-size: 7rem;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_01 span {
    font-size: 5rem;
  }
}
.hour .hour_title_01.fade_02 .fade_02_container:after {
  background-color: #FCAE2A;
}
.hour .hour_txt_01 {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  color: #000;
  line-height: 24px;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_txt_01 {
    font-size: 1.3rem;
    margin-top: 8px;
    line-height: 22px;
  }
}
.hour .hour_title_02 {
  font-weight: 700;
  font-size: 4rem;
  color: #FCAE2A;
  margin-top: 17px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_02 {
    font-size: 2.4rem;
    line-height: 30px;
  }
}
.hour .hour_title_03 {
  margin-top: 16px;
  color: #000;
  font-size: 8rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_03 {
    font-size: 3.4rem;
  }
}
.hour .hour_title_03.fade_02 .fade_02_container:after {
  background-color: #000000;
}
.hour .hour_txt_02 {
  margin-top: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  line-height: 35px;
  padding: 0 65px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .hour .hour_txt_02 {
    margin-top: 25px;
    font-size: 1.4rem;
    line-height: 26px;
    padding: 0 2%;
  }
}
.hour .hour_txt_02 div {
  margin-bottom: 20px;
}
.hour .hour_txt_02 div.mt56 {
  margin-top: 56px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_txt_02 div.mt56 {
    margin-top: 38px;
  }
}
.hour .hour_txt_02 div p {
  display: inline-block;
  position: relative;
  z-index: 1;
  padding-right: 1px;
}
.hour .hour_txt_02 div p.line_y::before {
  bottom: 6px;
}
.hour .hour_title_04 {
  color: #FCAE2A;
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 45px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_04 {
    font-size: 1.8rem;
    margin-top: 35px;
  }
}
.hour .hour_table {
  width: 100%;
  overflow: hidden;
  margin-top: 27px;
  padding-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_table {
    margin-top: 25px;
    padding-bottom: 40px;
  }
}
.hour .hour_table table {
  background-color: #fff;
  width: 100%;
  border-collapse: collapse;
}
.hour .hour_table table th {
  font-size: 2rem;
}
@media only screen and (max-width: 768px) {
  .hour .hour_table table th {
    font-size: 1.2rem;
  }
}
.hour .hour_table table th, .hour .hour_table table td {
  text-align: center;
  height: 44px;
}
.hour .hour_table table thead {
  height: 44px;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
  background-color: #FCAE2A;
}
@media only screen and (max-width: 768px) {
  .hour .hour_table table thead {
    min-height: 44px;
    height: auto;
    font-size: 1.4rem;
  }
}
.hour .hour_table table thead .white_space_03 {
  height: 8px;
}
.hour .hour_table table thead .white_space_03 th {
  height: 8px;
  background-color: #fff;
}
.hour .hour_table table tbody {
  margin-top: 5px;
}
.hour .hour_table table tbody td {
  font-weight: 700;
  font-size: 1.6rem;
  color: #000;
  padding: 5px;
}
@media only screen and (max-width: 768px) {
  .hour .hour_table table tbody td {
    font-size: 1.3rem;
  }
}
.hour .hour_table table tbody tr:nth-child(2n+1) td {
  background-color: #ffeac7;
}
.hour .hour_title_05 {
  font-size: 3rem;
  color: #FCAE2A;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .hour .hour_title_05 {
    font-size: 2.4rem;
  }
}
.hour .progress_bar_counter {
  margin-top: 40px;
  width: 100%;
  position: relative;
  height: 320px;
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter {
    margin-top: 50px;
    height: auto;
  }
}
@media only screen and (max-width: 450px) {
  .hour .progress_bar_counter {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter img {
    max-width: 100%;
  }
}
.hour .progress_bar_counter .progress_bar_item {
  width: 298px;
  height: 100%;
  float: left;
  position: relative;
  opacity: 0;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter .progress_bar_item {
    width: 49%;
    float: none;
    height: auto;
    display: inline-block;
  }
}
.hour .progress_bar_counter .progress_bar_txt {
  height: 50px;
  line-height: 50px;
  color: #FCAE2A;
  font-size: 3rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter .progress_bar_txt {
    height: 40px;
    line-height: 40px;
    font-size: 2.4rem;
  }
}
.hour .progress_bar_counter .num_percent {
  display: none !important;
  opacity: 0 !important;
}
.hour .progress_bar_counter .percent_bar {
  height: 270px !important;
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter .percent_bar {
    height: 150px !important;
    width: 150px !important;
  }
}
.hour .progress_bar_counter .progress-text {
  color: #FCAE2A;
  font-size: 4rem;
  font-family: "Share Tech", sans-serif;
  top: 66%;
  left: 50%;
  position: absolute;
  width: 195px;
  text-align: right;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter .progress-text {
    width: 85%;
    font-size: 2rem;
  }
}
.hour .progress_bar_counter .progress-percentage {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
          transform: translate(-50%, -45%);
  text-align: center;
  padding: 0px 10px;
  font-size: 14.5rem;
  color: #FCAE2A;
  font-weight: 500;
  font-family: "Share Tech", sans-serif;
}
@media only screen and (max-width: 768px) {
  .hour .progress_bar_counter .progress-percentage {
    font-size: 8rem;
    padding: 0;
  }
}
.hour .circular-progress-bar {
  position: relative;
  margin: 0 auto;
}

/*
 * Lessons
 */
.lessons {
  background-color: #fdfaf5;
  height: 1990px;
}
@media only screen and (max-width: 768px) {
  .lessons {
    height: auto;
    padding-bottom: 30px;
  }
}
.lessons .container {
  height: 1250px;
}
@media only screen and (max-width: 768px) {
  .lessons .container {
    height: auto;
  }
}
.lessons .fade_group {
  height: 700px;
  padding-top: 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .lessons .fade_group {
    padding-top: 110px;
    height: auto;
  }
}
.lessons .fade_up_box {
  width: 950px;
  height: 665px;
}
@media only screen and (max-width: 768px) {
  .lessons .fade_up_box {
    height: auto;
    width: 100%;
    min-height: 160px;
  }
}
.lessons .lessons_title_01 {
  width: 950px;
  height: 240px;
  top: -140px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_title_01 {
    width: 100%;
    top: -74px;
    height: 160px;
  }
}
.lessons .lessons_title_01 p {
  left: 0;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_title_01 p {
    bottom: 0;
  }
}
.lessons .lessons_title_01 .fade_02_content {
  height: 240px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_title_01 .fade_02_content {
    height: 155px;
  }
}
.lessons .lessons_title_02 {
  padding-top: 190px;
  font-size: 2.4rem;
  color: #FCAE2A;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_title_02 {
    padding-top: 30px;
    font-size: 2rem;
  }
}
.lessons .lessons_txt {
  color: #000;
}
.lessons .lessons_txt span {
  color: inherit;
}
.lessons .lessons_txt p {
  position: relative;
  display: inline-block;
  padding-right: 1px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_img {
    padding-top: 10px;
  }
}
.lessons .lessons_img_slide {
  top: 86px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_img_slide {
    top: 0;
  }
}
.lessons .lessons_sample {
  padding-top: 50px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample {
    padding-top: 30px;
  }
}
.lessons .lessons_sample .lessons_sample_item.mt {
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_item.mt {
    margin-top: 30px;
  }
}
.lessons .lessons_sample .lessons_sample_title {
  height: 95px;
  color: #FCAE2A;
  font-size: 7rem;
  text-align: left;
  width: 100%;
  position: relative;
  padding-bottom: 13px;
  overflow: hidden;
  margin-top: 40px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_title {
    font-size: 2.7rem;
    height: 37px;
    padding-bottom: 10px;
  }
}
.lessons .lessons_sample .lessons_sample_title h2 {
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_title h2 {
    width: 100%;
    left: 100%;
  }
}
.lessons .lessons_sample .lessons_sample_txt_01 {
  color: #FCAE2A;
  font-size: 2.4rem;
  font-weight: 700;
  height: 34px;
  float: left;
  line-height: 34px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_txt_01 {
    font-size: 2rem;
    height: 30px;
    line-height: 30px;
  }
}
.lessons .lessons_sample .lessons_sample_txt_02 {
  color: #000;
  float: left;
  margin-left: 10px;
  min-height: 34px;
  height: auto;
  font-weight: 500;
  font-size: 1.5rem;
  padding-top: 12px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_txt_02 {
    margin-left: 0;
    font-size: 1.4rem;
  }
}
.lessons .lessons_sample .lessons_sample_txt_03 {
  padding-top: 6px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #000;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_txt_03 {
    font-size: 1.4rem;
    position: relative;
    line-height: 22px;
  }
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_txt_03 img {
    width: 30px;
  }
}
.lessons .lessons_sample .lessons_sample_txt_04 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  color: #000;
  line-height: 35px;
  padding: 0 65px;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_txt_04 {
    margin-top: 25px;
    font-size: 1.4rem;
    line-height: 26px;
    padding: 0 2%;
  }
}
.lessons .lessons_sample .lessons_sample_img {
  margin-top: 25px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_img img {
    max-width: 100%;
  }
}
.lessons .lessons_sample .lessons_sample_img.fade_02 .fade_02_container:after {
  background-color: #FCAE2A;
}
.lessons .lessons_sample .lessons_sample_note {
  color: #000;
  font-weight: 500;
  font-size: 1.3rem;
  margin-top: 22px;
  text-align: left;
  width: 100%;
  line-height: 23px;
}
@media only screen and (max-width: 768px) {
  .lessons .lessons_sample .lessons_sample_note {
    line-height: 20px;
  }
}

/*
 * Voice
 */
.voice {
  position: relative;
}
.voice .voice_title_01 {
  color: #000;
  font-size: 11rem;
  width: 100%;
  position: relative;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_title_01 {
    font-size: 5rem;
    width: 100%;
    height: 50px;
  }
}
.voice .voice_title_01 h2 {
  width: 320px;
  line-height: 85px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_title_01 h2 {
    line-height: 50px;
    width: 150px;
  }
}
.voice .voice_title_01 p {
  position: absolute;
  font-size: 2.5rem;
  font-weight: 700;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  .voice .voice_title_01 p {
    left: 160px;
    bottom: 5px;
    font-size: 2rem;
    width: 100px;
  }
}
.voice .voice_title_01.fade_02 .fade_02_container {
  width: 425px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_title_01.fade_02 .fade_02_container {
    width: 100%;
  }
}
.voice .voice_item {
  height: auto;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item {
    width: 100%;
    padding: 0 1%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}
.voice .voice_item .voice_title_02 {
  height: 135px;
  position: relative;
  border-bottom: 2px solid #FCAE2A;
  width: 636px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item .voice_title_02 {
    width: 100%;
    height: 90px;
  }
}
.voice .voice_item .voice_title_02 p {
  font-size: 2.4rem;
  font-weight: 700;
  color: #FCAE2A;
  position: absolute;
  bottom: 8px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item .voice_title_02 p {
    font-size: 1.6rem;
    padding-right: 100px;
  }
}
.voice .voice_item .voice_title_02 h3 {
  text-transform: uppercase;
  position: absolute;
  right: 0;
  font-size: 11rem;
  color: #FCAE2A;
  opacity: 0.3;
  height: 100px;
  bottom: 6px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item .voice_title_02 h3 {
    bottom: -4px;
    font-size: 8rem;
    height: 90px;
  }
}
.voice .voice_item .voice_title_02 h3 span {
  font-size: 4rem;
  top: 18px;
  right: 129px;
  position: absolute;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item .voice_title_02 h3 span {
    right: 105px;
    font-size: 2.4rem;
  }
}
.voice .voice_item.voice_one {
  background-image: url(../images/bg_item_voice_01_pc.jpg);
  min-height: 672px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_one {
    background-position: left;
  }
}
.voice .voice_item.voice_two {
  background-image: url(../images/bg_item_voice_02_pc.jpg);
  min-height: 702px;
}
.voice .voice_item.voice_two .voice_title_02 {
  float: right;
  height: 128px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_two .voice_title_02 {
    float: none;
    height: 90px;
  }
}
.voice .voice_item.voice_two .voice_txt_01 {
  float: right;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_two .voice_txt_01 {
    float: none;
  }
}
.voice .voice_item.voice_three {
  margin-top: 145px;
  min-height: 703px;
  background-image: url(../images/bg_item_voice_03_pc.jpg);
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_three {
    background-position: left;
    margin-top: 40px;
  }
}
.voice .voice_item.voice_three .voice_title_02 {
  width: 575px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_three .voice_title_02 {
    width: 100%;
  }
}
.voice .voice_item.voice_three .voice_txt_01 {
  width: 575px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_item.voice_three .voice_txt_01 {
    width: 100%;
  }
}
.voice .voice_txt_01 {
  color: #000;
  margin-top: 17px;
  font-weight: 500;
  font-size: 1.5rem;
  width: 636px;
  line-height: 28px;
}
@media only screen and (max-width: 768px) {
  .voice .voice_txt_01 {
    width: 100%;
    font-size: 1.4rem;
    line-height: 24px;
  }
}
.voice .voice_txt_01 p {
  padding-bottom: 20px;
}
/*
 * Inst
 */
.inst {
  background-color: #fff;
  text-align: center;
  margin-top: 120px;
}
@media only screen and (max-width: 768px) {
  .inst {
    margin-top: 40px;
  }
}
.inst .inst_title_01 {
  font-size: 5.2rem;
  font-weight: 700;
  color: #000;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_01 {
    font-size: 3.2rem;
    line-height: 43px;
  }
}
.inst .inst_title_01 .line_y {
  position: relative;
  z-index: 1;
}
.inst .inst_title_01 .line_y::before {
  height: 12px;
  bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_01 .line_y::before {
    height: 0;
  }
}
.inst .inst_title_02 {
  margin-top: 43px;
  height: 240px;
  position: relative;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_02 {
    margin-top: 10px;
    height: 215px;
  }
}
.inst .inst_title_02 img {
  float: left;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_02 img {
    width: 100px;
    float: none;
  }
}
.inst .inst_title_02 h2 {
  font-size: 11rem;
  color: #FCAE2A;
  padding-top: 50px;
  text-transform: uppercase;
  width: 800px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_02 h2 {
    width: 100%;
    font-size: 5rem;
    padding-top: 10px;
  }
}
.inst .inst_title_02 p {
  color: #FCAE2A;
  font-size: 2.5rem;
  font-weight: 700;
  width: 800px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .inst .inst_title_02 p {
    width: 100%;
  }
}
.inst .inst_txt_01 {
  font-size: 1.8rem;
  color: #000;
  line-height: 28px;
  text-align: center;
  margin-top: 10px;
}
@media only screen and (max-width: 768px) {
  .inst .inst_txt_01 {
    width: 96%;
    margin: 0 auto;
    font-size: 1.4rem;
    line-height: 22px;
  }
}
.inst .inst_list {
  width: 100%;
  margin-top: 60px;
  overflow: hidden;
  padding-bottom: 140px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .inst .inst_list {
    margin-top: 40px;
    padding-bottom: 50px;
    padding: 0 2%;
  }
}
.inst .inst_list .inst_item_row {
  clear: both;
}
.inst .inst_list .inst_item {
  float: left;
  width: 311px;
  height: auto;
  margin-right: 132px;
  margin-bottom: 40px;
  opacity: 0;
  -webkit-transform: translateY(70px);
  transform: translateY(70px);
}
@media only screen and (max-width: 768px) {
  .inst .inst_list .inst_item {
    height: auto;
    width: 49%;
    margin-right: 2%;
  }
}
@media only screen and (max-width: 450px) {
  .inst .inst_list .inst_item {
    height: auto;
    max-width: 100%;
    width: 311px;
    margin: 0 auto;
    margin-bottom: 50px;
    float: none;
  }
}
.inst .inst_list .inst_item:nth-child(3n) {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .inst .inst_list .inst_item:nth-child(3n) {
    margin-right: 2%;
  }
}
@media only screen and (max-width: 450px) {
  .inst .inst_list .inst_item:nth-child(3n) {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 768px) {
  .inst .inst_list .inst_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media only screen and (max-width: 450px) {
  .inst .inst_list .inst_item:nth-child(2n) {
    margin-left: auto;
    margin-right: auto;
  }
}
.inst .inst_list .inst_item img {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .inst .inst_list .inst_item img {
    width: 100%;
  }
}
@media only screen and (max-width: 450px) {
  .inst .inst_list .inst_item img {
    width: 311px;
  }
}
.inst .inst_list .inst_item .inst_item_txt {
  width: 100%;
  margin-left: 10px;
  margin-top: -15px;
  color: #fff;
  font-weight: 500;
  font-size: 1.6rem;
  background-color: #FCAE2A;
  position: relative;
  z-index: 1;
  text-align: left;
  padding: 12px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .inst .inst_list .inst_item .inst_item_txt {
    width: 100%;
    font-size: 1.3rem;
    margin-left: 0;
    padding: 5px;
  }
}
@media only screen and (max-width: 450px) {
  .inst .inst_list .inst_item .inst_item_txt {
    font-size: 1.4rem;
    margin-left: 0;
    width: 311px;
    padding: 12px;
  }
}
.inst .inst_list .inst_item .inst_item_txt p {
  padding-bottom: 5px;
}
.inst .inst_list .inst_item .inst_item_txt p:first-child {
  text-transform: uppercase;
}
.inst .inst_list .inst_item .inst_item_txt p:nth-child(2) {
  font-size: 1.5rem;
  font-weight: 400;
  padding-bottom: 18px;
}
.inst .inst_list .inst_item .inst_item_txt p:nth-child(3) {
  font-size: 1.4rem;
  font-weight: 500;
}

/*
 * Media
 */
.media {
  text-align: center;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .media {
    margin-top: 80px;
  }
}
.media .media_title_02 {
  color: #FCAE2A;
  font-size: 11rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  height: 150px;
}
@media only screen and (max-width: 768px) {
  .media .media_title_02 {
    height: 105px;
    font-size: 7rem;
  }
}
.media .media_title_02 p {
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .media .media_title_02 p {
    font-size: 2rem;
  }
}
.media .media_list {
  margin-top: 70px;
  width: 100%;
  min-height: 260px;
}
@media only screen and (max-width: 768px) {
  .media .media_list {
    margin-top: 30px;
  }
}
.media .media_list .media_item {
  float: left;
  width: 280px;
  margin-bottom: 30px;
  margin-right: 25px;
}
@media only screen and (max-width: 768px) {
  .media .media_list .media_item {
    width: 48%;
    margin-bottom: 20px;
    margin-right: 1%;
    margin-left: 1%;
  }
}
.media .media_list .media_item:nth-child(4n) {
  margin-right: 0;
}
.media .media_list .media_item img {
  max-width: 100%;
  margin: 0 auto;
}

/*
 * QA
 */
.qa {
  width: 100%;
  position: relative;
  clear: both;
  padding-top: 70px;
}
@media only screen and (max-width: 768px) {
  .qa {
    padding-top: 40px;
  }
}
.qa .qa_title {
  width: 100%;
  text-align: center;
  color: #FCAE2A;
  font-family: "RoboB", sans-serif;
  font-size: 11rem;
}
@media only screen and (max-width: 768px) {
  .qa .qa_title {
    font-size: 7rem;
  }
}
.qa .qa_title span {
  font-size: 6rem;
}
@media only screen and (max-width: 768px) {
  .qa .qa_title span {
    font-size: 5rem;
  }
}
.qa .qa_list {
  margin-top: 40px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .qa .qa_list {
    margin-top: 30px;
  }
}
.qa .qa_item {
  padding: 22px 45px;
  border-bottom: 1px dashed #FCAE2A;
}
@media only screen and (max-width: 768px) {
  .qa .qa_item {
    padding: 15px 1%;
  }
}
.qa .qa_ques {
  color: #FCAE2A;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 44px;
}
@media only screen and (max-width: 768px) {
  .qa .qa_ques {
    font-size: 1.8rem;
    line-height: 25px;
  }
}
.qa .qa_ans {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 40px;
  color: #000000;
}
@media only screen and (max-width: 768px) {
  .qa .qa_ans {
    font-size: 1.3rem;
    line-height: 24px;
    margin-top: 10px;
  }
}
.qa .qa_ans span {
  font-size: 2.4rem;
  color: #FCAE2A;
}
@media only screen and (max-width: 768px) {
  .qa .qa_ans span {
    font-size: 1.8rem;
  }
}

/*
 * Access
 */
.access {
  margin-top: 10px;
  background-color: #fdfaf5;
  clear: both;
}
@media only screen and (max-width: 768px) {
  .access {
    margin-top: 10px;
  }
}
.access .access_title_02 {
  color: #FCAE2A;
  font-size: 11rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  height: 80px;
}
@media only screen and (max-width: 768px) {
  .access .access_title_02 {
    height: 90px;
    font-size: 7rem;
  }
}
.access .access_title_02 .access_fade_up {
  position: absolute;
  top: -70px;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
}
@media only screen and (max-width: 768px) {
  .access .access_title_02 .access_fade_up {
    top: -42px;
  }
}
.access .access_title_02 p {
  font-size: 2.5rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .access .access_title_02 p {
    font-size: 2rem;
  }
}
.access .access_btn_group {
  margin-top: 60px;
  height: 53px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .access .access_btn_group {
    height: 50px;
    width: 320px;
    margin: 0 auto;
    margin-top: 20px;
  }
}
.access .access_btn_group .container {
  height: 53px;
  margin: 0 auto;
  width: 500px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .access .access_btn_group .container {
    padding: 0 1%;
    height: 50px;
    padding-top: 10px;
    width: 98%;
  }
}
.access .access_btn_group .access_btn {
  padding: 10px 45px;
  color: #fff;
  height: 52px;
  float: left;
  margin-left: 25px;
  background-color: #FCAE2A;
  border-radius: 35px;
  line-height: 30px;
  font-size: 2rem;
  font-weight: 700;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .access .access_btn_group .access_btn {
    padding: 5px 13.7px;
    height: 30px;
    margin-left: 7px;
    font-size: 1rem;
    line-height: 20px;
    padding-right: 24px;
  }
}
.access .access_btn_group .access_btn:first-child {
  margin-left: 0;
}
.access .access_btn_group .access_btn span {
  font-size: 1rem;
  position: absolute;
  right: 27px;
  top: 11px;
}
@media only screen and (max-width: 768px) {
  .access .access_btn_group .access_btn span {
    right: 9px;
    top: 6px;
  }
}
.access .access_list {
  width: 100%;
  margin-top: 60px;
}
@media only screen and (max-width: 768px) {
  .access .access_list {
    width: 96%;
    margin: 0 auto;
    margin-top: 40px;
  }
}
.access .access_list .access_item {
  width: 100%;
  height: 500px;
  padding-bottom: 136px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item {
    height: auto;
    padding-bottom: 60px;
  }
}
.access .access_list .access_item:first-child .access_item_title .fade_02_container {
  width: 350px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:first-child .access_item_title .fade_02_container {
    width: 100%;
    height: 100%;
  }
}
.access .access_list .access_item:first-child .access_item_title h3 {
  width: 258px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:first-child .access_item_title h3 {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(2) .access_item_title .fade_02_container {
  width: 455px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(2) .access_item_title .fade_02_container {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(2) .access_item_title h3 {
  width: 368px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(2) .access_item_title h3 {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(2) .access_item_title p {
  left: 390px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(2) .access_item_title p {
    left: 0;
  }
}
.access .access_list .access_item:nth-child(3) .access_item_title .fade_02_container {
  width: 420px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(3) .access_item_title .fade_02_container {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(3) .access_item_title h3 {
  width: 330px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(3) .access_item_title h3 {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(3) .access_item_title p {
  left: 350px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(3) .access_item_title p {
    left: 0;
  }
}
.access .access_list .access_item:nth-child(4) .access_item_title .fade_02_container {
  width: 625px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(4) .access_item_title .fade_02_container {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(4) .access_item_title h3 {
  width: 506px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(4) .access_item_title h3 {
    width: 100%;
  }
}
.access .access_list .access_item:nth-child(4) .access_item_title p {
  left: 522px;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item:nth-child(4) .access_item_title p {
    left: 0;
  }
}
.access .access_list .access_item iframe {
  height: 500px;
  width: 63%;
  float: left;
  position: relative;
  z-index: 9999;
  border: 0;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item iframe {
    width: 100%;
    height: 300px;
    float: none;
  }
}
.access .access_list .access_item .access_item_info {
  width: 32%;
  float: left;
  margin-left: 2%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .access .access_list .access_item .access_item_info {
    clear: both;
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    float: none;
  }
}
.access .access_list .access_item .access_item_info .fade_02 .fade_02_container:after {
  background-color: #FCAE2A;
}
.access .access_item_title {
  position: relative;
  width: 100%;
  height: 85px;
}
.access .access_item_title h3 {
  width: auto;
  font-size: 8rem;
  color: #FCAE2A;
  height: 85px;
  border-bottom: 4px solid #FCAE2A;
  text-transform: uppercase;
}
@media only screen and (max-width: 768px) {
  .access .access_item_title h3 {
    font-size: 4.5rem;
    width: 100%;
    height: 50px;
    text-align: center;
  }
}
.access .access_item_title .fade_02_container {
  height: 100% !important;
}
.access .access_item_title .fade_02_container .fade_02_content {
  height: 100% !important;
}
.access .access_item_title p {
  font-size: 2rem;
  position: absolute;
  font-weight: 700;
  color: #FF559C;
  bottom: 15px;
  left: 285px;
  width: 100px;
}
@media only screen and (max-width: 768px) {
  .access .access_item_title p {
    width: 100%;
    left: 0;
    position: relative;
    text-align: center;
    bottom: -5px;
  }
}
.access .access_item_txt {
  width: 100%;
  padding-right: 15px;
  margin-top: 25px;
  line-height: 28px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.access .access_item_txt p {
  margin-bottom: 34px;
  font-size: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .access .access_item_txt p {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}

/*
 * Contact form
 */
.contact_form {
  margin-top: 70px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .contact_form {
    margin-top: 90px;
  }
}
.contact_form .contact_title_01 {
  color: #FCAE2A;
  font-size: 8rem;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  height: 100px;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_title_01 {
    font-size: 5rem;
    height: 80px;
  }
}
.contact_form .contact_fade_up {
  position: absolute;
  top: 50px;
  opacity: 0;
}
.contact_form .contact_title_02 {
  text-align: center;
  color: #FCAE2A;
  font-size: 2rem;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_title_02 {
    font-size: 1.6rem;
  }
}
.contact_form .contact_title_03 {
  text-align: center;
  color: #FCAE2A;
  font-size: 1.6rem;
  margin-top: 22px;
  font-weight: 700;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_title_03 {
    font-size: 1.4rem;
    margin-top: 15px;
  }
}
.contact_form .contact_form {
  width: 622px;
  margin: 0 auto;
  margin-top: 25px;
  text-align: center;
  color: #9c9c9c;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_form {
    width: 96%;
    margin-top: 15px;
  }
}
.contact_form .contact_form .button-box {
  margin-bottom: 80px;
}
.contact_form .contact_form .button-box .button {
  display: inline-block;
}
.contact_form .contact_form .button-box .button #button a {
  display: inline-block;
  background-color: #FCAE2A;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 285px;
  height: 48px;
  line-height: 48px;
  border: 0;
  cursor: pointer;
  vertical-align: bottom;
  margin: 0 10px 20px;
}
.contact_form .contact_form .button-box .button input {
  display: inline-block;
  background-color: #FCAE2A;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 285px;
  height: 48px;
  line-height: 48px;
  border: 0;
  cursor: pointer;
  vertical-align: bottom;
  margin: 0 10px 20px;
  -webkit-appearance: none;
  border-radius: 0;
}
.contact_form .contact_inp {
  width: 100%;
  height: 50px;
  border: 1px solid #dfe2e3;
  background-color: #f1f5f7;
  line-height: 50px;
  color: #333;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 22px;
  padding-left: 18px;
  opacity: 0.8;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_inp {
    height: 40px;
    line-height: 40px;
    font-size: 1.3rem;
    margin-bottom: 18px;
    padding-left: 14px;
  }
}
.contact_form .cover_chk {
  text-align: left;
  margin-bottom: 40px;
}
.contact_form .contact_chk {
  text-align: left;
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 500;
  margin-left: 0;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_chk {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 5px;
    font-size: 1.3rem;
  }
}
.contact_form label {
  color: #000000;
  margin-right: 33px;
}
@media only screen and (max-width: 768px) {
  .contact_form label {
    margin-right: 0;
  }
}
.contact_form .cover_secl {
  height: 50px;
  width: 100%;
  position: relative;
  margin-bottom: 22px;
}
@media only screen and (max-width: 768px) {
  .contact_form .cover_secl {
    margin-top: 20px;
    margin-bottom: 0;
    height: 40px;
  }
}
.contact_form .cover_secl::after {
  content: url(../images/btn_chk.png);
  position: absolute;
  right: 1px;
  top: 18px;
}
@media only screen and (max-width: 768px) {
  .contact_form .cover_secl::after {
    top: 12px;
  }
}
.contact_form .contact_sel {
  display: block;
  width: 100%;
  height: 50px;
  border: 1px solid #dfe2e3;
  background-color: #f1f5f7;
  line-height: 50px;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 18px;
  opacity: 0.8;
}
@media only screen and (max-width: 768px) {
  .contact_form .contact_sel {
    height: 40px;
    line-height: 40px;
    font-size: 1.3rem;
    padding-left: 14px;
  }
}
.contact_form textarea {
  margin-bottom: 30px;
  width: 100%;
  height: 150px;
  border: 1px solid #dfe2e3;
  background-color: #f1f5f7;
  line-height: 30px;
  color: #9c9c9c;
  font-size: 1.5rem;
  font-weight: 500;
  padding-left: 18px;
  opacity: 0.8;
  padding-top: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .contact_form textarea {
    font-size: 1.3rem;
    padding-left: 14px;
    line-height: 26px;
    margin-top: 20px;
    height: 100px;
    margin-bottom: 20px;
  }
}
.contact_form .inp_sbm {
  background-color: #FCAE2A;
  color: #fff;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  width: 372px;
  height: 48px;
  line-height: 48px;
  margin-bottom: 102px;
  border: 0;
  cursor: pointer;
  -webkit-appearance: none;
  border-radius: 0;
}
@media only screen and (max-width: 768px) {
  .contact_form .inp_sbm {
    font-size: 1.6rem;
    width: 300px;
    max-width: 100%;
    margin-bottom: 110px;
    height: 38px;
    line-height: 38px;
  }
}
.contact_form .inp_sbm:hover {
  opacity: 0.8;
}

/*
 * Scroll top button
 */
.scroll_top {
  position: absolute;
  bottom: -80px;
  right: 20px;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .scroll_top {
    bottom: -110px;
  }
}
@media only screen and (max-width: 768px) {
  .scroll_top img {
    height: 90px;
  }
}
.scroll_top:hover {
  opacity: 0.8;
}

/*
 * Fixed contact
 */
.contact_box {
  display: block !important;
  position: fixed;
  bottom: 0;
  height: 70px;
  padding: 5px;
  background-color: rgba(0, 29, 43, 0.42);
  z-index: 99999;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact_box .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_box .container > div {
  background-color: #008b8b;
  border: 2px solid #fff;
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.contact_box .container > div img {
  width: 28px;
  margin-right: 1%;
}
.contact_box .container > div > a {
  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;
  height: 55px;
}
.contact_box .contact_box_txt {
  color: #fff;
  font-size: 1.5rem;
  text-align: left;
  padding-left: 0px;
  line-height: 1.5rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .contact_box .contact_box_txt {
    font-size: 1.2rem;
  }
}
.contact_box .contact_box_txt span {
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 18px;
}
.contact_box .to_contact {
  width: 300px;
  margin-right: 20px;
}
@media only screen and (max-width: 768px) {
  .contact_box .to_contact {
    margin-right: 1%;
    width: 55%;
  }
}
.contact_box .to_tel {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .contact_box .to_tel {
    width: 43%;
  }
}

/* Footer
---------------------------------*/
.footer {
  height: 96px;
  line-height: 96px;
  background-color: #001d2b;
  text-align: center;
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  .footer {
    height: 56px;
    line-height: 56px;
  }
}
.footer p {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .footer p {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=style.css.map */