@charset "utf-8";]

html {
  font-size: 62.5%;
}

body {
  width: 100%;
  max-width: 1500px;
  height: auto;
  margin: 0 auto;
  font-size: 1.6em;
  color: #767676;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


/*header*/

.logo {
  width: 100%;
  max-width: 230px;
  height: 30px;
  margin-top: 25px;
  margin-left: 50px;
  margin-bottom: 20px;
}

/*mv*/


/*ヘッダー*/
header {
  width: 100%;
  margin: 0 auto;
}


/*main*/
.subtitle {
  display: inline-block;
  margin-top: 100px;
  position: relative;
  margin-left: 145px;
}

.subtitle::before,
.subtitle::after {
  content: '';
  top: 0;
  height: 1px;
  width: 80px;
  background: #333;
  position: absolute;
}

.subtitle::before {
  left: 0;
  margin-top: 11px;
  margin-left: -100px;
}

.subtitle::after {
  right: 0;
  margin-top: 11px;
  margin-right: -100px;
}

h1 {
  font-size: 30px;
  margin-top: 10px;
  margin-bottom: 20px;
  letter-spacing: 1rem;
  text-align: center;
  position: relative;
}

h1::before {
  content: '';
  top: 0;
  right: 0;
  height: 2px;
  width: 100%;
  position: absolute;
  margin-top: 50px;
  background: #F5834D;
}

.subtitlediv {
  width: 100%;
  max-width: 38rem;
  margin: 0 auto;
}

.bookdiv1 {
  max-width: 115rem;
  margin: 0 auto;
  justify-content: center;
}

.bookdiv1 h2 {
  font-weight: bold
}

.bookdiv2 {
  width: 38rem;
  padding: 20px;
  justify-content: unset;
}

.bookdiv2 img {
  max-width: 9rem;
}

.bookdiv2 p {
  padding-left: 10px;
}

.bookdiv3 {
  max-width: 23rem;
  margin-left: 10px;
  position: relative;
}

.new {
  position: absolute;
  background-color: rgba(255, 0, 0, 0.56);
  color: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  font-size: 5px;
  font-weight: bold;
}

.bookdiv3 p {
  font-size: 12px;
  padding-top: 5px;
}

.bookdiv3 h2 a {
  text-decoration: none;
  color: #534336;
}

/*ナビ固定*/
.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
}
/*ナビ固定ここまで*/

/*お問い合わせボタン*/
#toiawase {
  position: fixed;
  z-index: 3;
  bottom: 20px;
  right: 20px;
  font-size: 80%;
  right: 20px;
}

#toiawase a{
  display: block;
  background: rgba(35, 164, 127, 0.81);
  color: #fff;
  width: 175px;
  padding: 10px 5px;
  text-align: center;
  text-decoration: none;
  border-radius: 10px;
}

#toiawase a:hover{
  background: #23A47F;
  text-decoration: none;
}

/*main*/
p {
  font-size: 1.5rem;/*  15px*/
}


/*フッター*/
footer {
  width: 100%;
  max-width: 1500px;
  height: 100px;
  background-color: #F5834D;
  color: #fff;
}

footer p {
  text-align: center;
  padding-top: 40px;
  margin-top: 30px;
}

/*ハンバーガーメニュー*/
/*全体のレイアウト*/
nav{
  width: 100%;
  height: 70px;
  position: relative;
  background: #F6F6F6;
}

.drawer{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: 70px;
  padding: 0 1em;
}

.nav_fujiki,
.nav_staff {
  display: none;
}

/*トグル*/
.navbar_toggle{
  z-index:9999;
}

.navbar_toggle_icon {
  position: relative;
  display: block;
  height: 2px;
  width: 30px;
  background: #5c6b80;
  -webkit-transition: ease .5s;
  transition: ease .5s;
}

.navbar_toggle_icon:nth-child(1) {
  top: 0;
}

.navbar_toggle_icon:nth-child(2) {
  margin: 8px 0;
}

.navbar_toggle_icon:nth-child(3) {
  top: 0;
}
/*OPEN時の動き*/
.navbar_toggle.open .navbar_toggle_icon:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(2) {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0;
}

.navbar_toggle.open .navbar_toggle_icon:nth-child(3) {
  top: -10px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*ナビ部分*/
.menu{
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition:ease .5s;
  transition:ease .5s;
  z-index:1000;
}

.menu ul li{
  padding: 2em;
  border-bottom: 1px solid #CCC;
}

.menu ul li a {
  text-decoration: none;
  color: #23A47F;
  padding-bottom: 5px;
}

.menu ul li a::after {
  border-bottom: solid 2px #23A47F;
  bottom: 0;
  content: "";
  display: block;
  transition: all .3s ease;
  -webkit-transition: all .3s ease;
  width: 0;
}

.menu ul li a:hover::after {
  width: 100%;
}

/*OPEN時の動き*/
.menu.open {
  -webkit-transform:translateX(0);
  transform:translateX(0);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
}

/*子階層以降共通*/
nav li li {
  height: 0;
  width: 145px;
  overflow: hidden;
  transition: .5s;
  background-color: #F6F6F6;
  margin: 0 auto;
  text-align: center;
}
nav li li a {
  border-top: 1px solid #eee;
}
nav li:hover > ul > li {
  height: 6rem;
}
.menu ul ul {
  height: 0px;
}

/*メディアクエリ*/
@media screen and (min-width: 960px) {

}

@media screen and (min-width: 769px) {
  nav{
    display: flex;
    flex-direction: row;
  }

  .navbar_toggle{
    display: none;
  }

  .menu{
    width: 100%;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  .menu ul{
    height: 70px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
  }

  .menu ul li{
    padding: 0 1em;
    border-bottom: none;
  }


}

@media screen and (max-width: 912px) {

}

@media screen and (max-width: 768px) {
  .aboutwana {
    display: none;
  }

  .nav_fujiki,
  .nav_staff {
    display: block;
  }
}

@media screen and (max-width: 414px) {
  .logo {
    margin-left: 0;
  }
}






