/**
* Template Name: Bikin - v4.2.0
* Template URL: https://bootstrapmade.com/bikin-free-simple-landing-page-template/
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body {
  font-family: 'Kiwi Maru', serif, "Open Sans", sans-serif;
  color: #444444;
}

a {
  color: #89b0ae;
  text-decoration: none;
}

a:hover {
  color: #555b6e;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Krub", sans-serif;
}

.bold{
  font-weight: bold;
}

.underline-pink{
  border-bottom: solid 2px #ffd6ba;
}

.title{
  margin-bottom: 10px;
}

.gen-img {
  width: 70%;
  margin: 20px 0px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 567px) {
  .gen-img {
    width: 50%;
  }
}

@media (min-width: 992px) {
  .gen-img {
    width: 40%;
  }
}

.right{
  text-align: right;
}

.hand{
  font-family: 'Just Another Hand', cursive;
  font-size: 1.7rem;
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #ffd6ba;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #555b6e;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  background: #fff;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #89b0ae;
  border-top-color: #bee3db;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  -webkit-animation: animate-preloader 1s linear infinite;
  animation: animate-preloader 1s linear infinite;
}

@-webkit-keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  background: #ffd6ba;
  border-bottom: 2px solid #fff;
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 1px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

@media (max-width: 414px){
  #header .logo {
    font-size: 20px;
  }
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-family: "Krub", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2d405f;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted {
  background: #e2e5fe;
  padding: 9px 25px;
  margin-left: 30px;
  border-radius: 5px;
  font-weight: 600;
  color: #fff;
  color: #3b4ef8;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #3b4ef8;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  text-transform: none;
  font-weight: 500;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #3b4ef8;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #2d405f;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
    color: #fff;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(29, 41, 60, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 6px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #2d405f;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #89b0ae;
}

.navbar-mobile .getstarted {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #3b4ef8;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  background: white;
  border-bottom: 2px solid white;
  text-align: center;
}

#hero .container {
  padding-top: 100px;
}

#hero p{
  text-align: center;
}

@media (max-width:413px){
  #hero .container {
    padding-top: 30px;
  }
}

#hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #141d2b;
  width: 60%;
  color: #2d405f;
}

#hero h2 {
  color: #466393;
  margin: 15px 0 0 0;
  font-size: 24px;
  color: #2d405f;
}

#hero p{
  margin: 15px 0 0 0;
}

#hero .btn-get-started {
  font-family: 'Kiwi Maru', serif, "Krub", sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: block;
  padding: 20px 32px 20px 32px;
  margin-top: 25px;
  border-radius: 5px;
  transition: 0.5s;
  color: #fff;
  background: #89b0ae;
}

#hero .btn-get-started2 {
  margin-top: 20px;
}

#hero .btn-get-started:hover {
  background: #555b6e;
}

#hero .hero-img {
  max-width: 40%;
  margin-top: 30px;
}

@media (max-width: 992px) {
  #hero h1 {
    font-size: 36px;
    line-height: 42px;
    width: 100%;
  }
  #hero h2 {
    font-size: 20px;
    line-height: 24px;
  }
  #hero .hero-img {
    max-width: 70%;
  }
}

@media (max-height: 768px) {
  #hero {
    height: auto;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 60px 0;
  overflow: hidden;
}

.section-bg {
  background-color: #f6f8fb;
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: #2d405f;
}

.section-title h2::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: rgba(255, 255, 255, 0.534);
  bottom: 0;
  left: calc(50% - 25px);
}

.section-title p {
  margin-bottom: 0;
  text-align: center;
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/
.about {
  background: #89b0ae;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

.about2 {
  background: #555b6e;
  background-size: cover;
  padding: 60px 0;
  position: relative;
  color: #fff;
}

.about .content, .about2 .content{
  padding: 0px 30px 0px 0;
}

.about .section-title h2, .about2 .section-title h2 {
  color: #fff;
}

.about .content p, .about2 .content p {
  margin-bottom: 30px;
}

@media (max-width: 576px) {
.about .content p, .about2 .content p {
  width: 100%;
  padding-right: var(--bs-gutter-x,.75rem);
  padding-left: var(--bs-gutter-x,.75rem);
  margin-right: auto;
  margin-left: auto;
  }
}

.about .content .about-btn, .about2 .content .about-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.322);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

#eg{
  margin-top: 3%;
}

.about .content .about-btn i, .about2 .content .about-btn i {
  font-size: 14px;
}

.about .content .about-btn:hover, .about2 .content .about-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.about .icon-boxes .icon-box, .about2 .icon-boxes .icon-box {
  margin-top: 30px;
}

.about .icon-boxes .icon-box i, .about2 .icon-boxes .icon-box i, .icon-box .iconify {
  font-size: 40px;
  color: #bee3db;
  margin-bottom: 10px;
}

.about .icon-boxes .icon-box h3, .about2 .icon-boxes .icon-box h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px 0;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.about .icon-boxes .icon-box p, .about2 .icon-boxes .icon-box p {
  font-size: 15px;
}

@media (max-width: 1200px) {
  .about .content, .about2 .content {
    padding-right: 0;
  }
}

@media (max-width: 768px) {
  .about, .about2 {
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Services
--------------------------------------------------------------*/
.services {
  background: #89b0ae;
  padding-bottom: 80px;
}

.services .container{
  padding-right: var(--bs-gutter-x,1rem);
  padding-left: var(--bs-gutter-x,1rem);
}

.services .section-title h2, .services .section-title p {
  color: #fff;
}

.services .section-title h2::after {
  background: rgba(255, 255, 255, 0.2);
}

.services .icon-box {
  padding: 50px 30px;
  position: relative;
  overflow: hidden;
  background: #fff;
  transition: all 0.3s;
  border-radius: 5px;
  text-align: center;
}

.services .icon-box:hover {
  transform: scale(1.08);
}

.services .icon {
  margin-bottom: 15px;
}

.services .icon i {
  font-size: 32px;
  line-height: 1;
  color: #2d405f;
  background: #eff2f8;
  padding: 20px;
  border-radius: 50px;
  transition: all 0.3s;
}

.services .title {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.services .title a {
  color: #2d405f;
  transition: 0.3s;
}

.services .title a:hover {
  color: #89b0ae;
}

.services p {
  margin-bottom: 30px;
}

.services .description {
  font-size: 15px;
  line-height: 28px;
  margin-bottom: 0;
}

.services .counseling-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.171);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.services .counseling-btn i {
  font-size: 14px;
}

.services .counseling-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.services .top-btn {
  display: inline-block;
  background: rgba(255, 255, 255, 0.171);
  padding: 6px 30px 8px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 50px;
  margin-right:auto;
  margin-left:auto;
}


@media (max-width: 992px) {
  .services .top-btn {
    margin-top: 0px;;
  }
}

/*--------------------------------------------------------------
# Inner Page
--------------------------------------------------------------*/
.inner-page .question{
  text-align: center;
}
.advice h1, h2, h3, h4, h5{
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

.advice{
  text-align:center;
}


.detail img{
  margin: 10px;
}

.inner-page .choice-btn {
  font-size: 1.2rem;
  text-align: center;
  display: inline-block;
  background: #89b0ae;
  padding: 6px 20px 8px 20px;
  width: 70%;
  margin: 10px;
  color: #fff;
  border-radius: 50px;
  transition: 0.3s;
}

.fu .choice-btn {
  width: 90%;
}

@media (min-width: 992px){
  .fu .choice-btn {
    width: 70%;
  }
}

.inner-page .choice-btn:hover {
  background: #555b6e;
}


.advice {
  background: #89b0ae;
  background-size: cover;
  padding: 30px 30px;
  position: relative;
  color: #fff;
}

.advice p{
  margin-bottom: 0px;
}

/*--------------------------------------------------------------
# Example
--------------------------------------------------------------*/

.exp img{
  margin-right: auto;
  margin-left: auto;
  display: block;
}

.exp .openbox{
  text-align: center;
}

.example{
  text-align: center;
  margin-bottom:5%;
}

.example h2{
  background: #89b0ae;
  color: #ffffff;
  padding: 2%;
  border-radius: 50px;
  margin-bottom: 3%;
}

.example h3{
  border-bottom: solid 2px #89b0ae;
}

.example h3, p{
  text-align: left;
}

.example img{
  padding: 3% 0 3% 0;
  width: 50%;
  max-width: 400px;
}

@media (min-width: 1024px){
  .example h2{
    /*width: 80%;*/
    margin-right: auto;
    margin-left: auto;
  }
}

/*--------------------------------------------------------------
# Coaching
--------------------------------------------------------------*/

.coach h2 {
  border-bottom: solid 2px #89b0ae;
  margin-top: 3%;
  margin-bottom:2%;
}

.coach h3 {
  text-align: center;
  background: #89b0ae;
  color: #ffffff;
  padding: 2%;
  border-radius: 50px;
  margin-top: 3%;
  margin-bottom: 3%;

}

.coach p{
  margin-bottom:5%;
}





/*--------------------------------------------------------------
# Detail 学習アドバイス詳細
--------------------------------------------------------------*/

.detail .container{
  padding-right: var(--bs-gutter-x,1rem);
  padding-left: var(--bs-gutter-x,1rem);
}

.detail, .tips{
  text-align:left;
  padding: 30px 0px 0px 0px;
  
}

.detail h2{
  padding:10px 0px;
}

.detail h3{
  margin-top: 30px;
  margin-bottom: 20px;
}

.detail h4,h5{
  font-size: 18px;
  margin-top: 10px;
}


.detail .inside {
  padding-top: 40px;
}

.exp{
  padding-bottom: 30px;
}

.book{
  padding-right:0px !important; 
  padding-left:0px !important; 
}

.book p{
  margin-top: 10px;
}

.recommend .highlight{
  background-color: #89b0ae42;
}

/* Table*/
#sound{
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 80%;
  margin-right: auto;
  margin-left: auto;
}

.time {
  width: 90%;
  margin-right: auto;
  margin-left: auto;
}

#sound td, #sound th, .time td, .time th {
  text-align:center;
  border: 1px solid #ddd;
  padding: 8px;
}

#sound tr:nth-child(even), .time tr:nth-child(even){
  background-color: #f2f2f2;
}

#sound tr:hover{
  background-color: #ddd;
}

#sound th, .time th{
  padding-top: 12px;
  padding-bottom: 12px;
  background-color: #555b6e;
  color: white;
}

.go-tips {
  text-align: center;
  margin-bottom: 15px;
}

.tips h4{
  margin-top: 20px;
}


/* 学習相談してみる */

.more{
  text-align: center;
}

.more .choice-btn {
  width: 90%;
  text-align: center;
  background-color: #555b6e;
}

.more .choice-btn:hover {
  background-color: #89b0ae;
}

@media (min-width: 414px){
  .more .choice-btn {
    width: 350px;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Open box
--------------------------------------------------------------*/

.openbox input {
  display: none; /* チェックボックスを隠す */
}
.openbox .boxshow {
  height: 0;
  opacity: 0; /* 折り畳んだ時に中を透明にする */
  display: none;/* 閉じた時に中身の要素をなくす */
  text-align: left;
  margin: 2% 0% 2% 0%;
  padding: 1%;
  background-color: #89b0ae2a;
}
.inputcss:checked + .boxshow {
  height: auto;
  opacity: 1; /*クリックやタップで中を表示させる*/
  display: block;/* 折り畳みになるように */
}
.openbox label {
  background: #89b0ae;
  color:#ffffff;
  padding: 5px 15px;
  text-align: center;
  margin: 1% 3% 2% 3%;
  border-radius: 50px;
}

.openbox-navy label {
  background: #28407e;
}

.openbox-bottleneck{
  margin-top: 15px;
}

.openbox-bottleneck label {
  background: #ffffff44;
  margin: 1% 3% 0% 3%;
}

.openbox-bottleneck .boxshow {
  height: 0;
  opacity: 0; /* 折り畳んだ時に中を透明にする */
  display: none;/* 閉じた時に中身の要素をなくす */
  text-align: left;
  margin: 20px 0 0 0;
  padding: 1%;
  background-color: #ffffff44;
}


/*--------------------------------------------------------------
# Coaching Section
--------------------------------------------------------------*/
@media (max-width: 414px){
  .coach img{
  width: 90%;
  }
}

/*--------------------------------------------------------------
# Breadcrumbs
--------------------------------------------------------------*/
.breadcrumbs {
  margin-top: 60px;
  padding: 5px 0;
  box-shadow: 0px 2px 15px rgba(45, 64, 95, 0.06);
  font-size: .8rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 10px 0;
}

.breadcrumbs ol li + li {
  padding-left: 10px;
}

.breadcrumbs ol li + li::before {
  display: inline-block;
  padding-right: 10px;
  color: #3d5782;
  content: "/";
}

@media (min-width: 992px) {
  .breadcrumbs {
    margin-top: 70px;
    font-size: 1rem;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  color: #444444;
  font-size: 14px;
  background: #fff;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: #fff;
}

#footer .footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top .footer-contact h4 {
  font-size: 22px;
  margin: 0 0 30px 0;
  padding: 2px 0 2px 0;
  line-height: 1;
  font-weight: 700;
  color: #2d405f;
}

#footer .footer-top .footer-contact p {
  font-size: 14px;
  line-height: 24px;
  margin-bottom: 0;
  font-family: "Krub", sans-serif;
  color: #4e6fa4;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

#footer .footer-top .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

#footer .footer-top .footer-links ul i {
  padding-right: 2px;
  color: #6c7afa;
  font-size: 18px;
  line-height: 1;
}

#footer .footer-top .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: #777777;
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: #3b4ef8;
}

#footer .footer-newsletter {
  font-size: 15px;
}

#footer .footer-newsletter h4 {
  font-size: 16px;
  font-weight: bold;
  color: #2d405f;
  position: relative;
  padding-bottom: 12px;
}

#footer .footer-newsletter form {
  margin-top: 30px;
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 5px;
  text-align: left;
  border: 1px solid #9da7fc;
}

#footer .footer-newsletter form input[type="email"] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}

#footer .footer-newsletter form input[type="submit"] {
  position: absolute;
  top: -1px;
  right: -2px;
  bottom: -1px;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #3b4ef8;
  color: #fff;
  transition: 0.3s;
  border-radius: 0 5px 5px 0;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}

#footer .footer-newsletter form input[type="submit"]:hover {
  background: #0a22f6;
}

#footer .credits {
  padding-top: 5px;
  font-size: 13px;
  color: #444444;
}

#footer .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #555b6e;
  color: #ffffff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 5px;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}

#footer .social-links a:hover {
  background: #89b0ae;
  color: #fff;
  text-decoration: none;
}
