@charset "UTF-8";
@import url("http://fonts.googleapis.com/css?family=Old+Standard+TT");
/* レスポンシブ化 */
/* vp:480px */
/* vp:896px */
/* vp:1024px */
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

a {
  word-break: break-all;
  border-bottom: none;
  text-decoration: none;
}
a img {
  border-bottom: none;
}
a:hover {
  text-decoration: none;
}
a:hover img {
  border-bottom: none;
}

ul, li {
  list-style: none;
}

/* FORM */
input,
button,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

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

caption, th {
  text-align: left;
}

q:before, q:after {
  content: "";
}

object, embed {
  vertical-align: top;
}

hr, legend {
  display: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

img, abbr, acronym, fieldset {
  border: 0;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

li.noList {
  list-style-type: none;
  margin-left: -20px;
}

html {
  font-size: 62.5%;
  /*16px x 0.625 = 10px(=1rem) */
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: "Noto Serif JP", serif;
  letter-spacing: calc($tracking / 1000)em;
  font-size: 1.3rem;
  color: #3d2f32;
  line-height: 180%;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  body {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  body {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  body {
    font-size: calc($rate * $size * 1vw);
  }
}

img {
  max-width: 100%;
}

a {
  color: #3d2f32;
  text-decoration: none;
  transition: 0.5s;
  opacity: 1;
}
a:hover {
  transition: 0.5s;
  color: #693540;
  text-decoration: none;
  opacity: 0.5;
}
a:hover .txtBtn {
  background: #e0e0e0;
}

.header {
  position: relative;
  text-align: center;
  max-height: 160px;
}
.header__title {
  margin: 51px 0px;
}
@media screen and (max-width: 896px) {
  .header__title {
    max-width: 469px;
    width: 90%;
    margin: 6rem auto 8vw;
  }
}

.nav__sns {
  position: absolute;
  top: 15px;
  right: 0px;
  z-index: 3;
  display: flex;
}
.nav__sns--item {
  text-align: center;
  background: #fff;
  border: #EDEDED solid 1px;
  margin: 2px;
  width: 30px;
  height: 30px;
}
.nav__sns--item a {
  display: block;
}
.nav__sns--item.box3 {
  width: 120px;
}
.nav__sns.fixed {
  position: fixed;
}
.nav__menu {
  transition: all 0.3s;
  letter-spacing: calc($tracking / 1000)em;
  text-align: center;
  font-size: 1.8rem;
  height: 80px;
  z-index: 9999;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .nav__menu {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .nav__menu {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .nav__menu {
    font-size: calc($rate * $size * 1vw);
  }
}
.nav__menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.nav__menu--item {
  text-align: center;
}
.nav__menu--item a {
  color: #3d2f32;
  display: block;
  padding: 0px 20px;
}
.nav__menu--item a:hover {
  color: #693540;
  text-decoration: none;
}
.nav__menu.fixed {
  position: fixed;
  top: 0;
  background: #fff;
  border-bottom: #F1F1F1 solid 1px;
  width: 100%;
}
@media screen and (max-width: 896px) {
  .nav__sns {
    right: auto;
    left: 5px;
    top: 5px;
  }
  .nav__sns--item.box3 {
    order: 2;
  }
  .nav__sns.active {
    position: fixed;
    -webkit-animation: fadeIn 1s forwards;
            animation: fadeIn 1s forwards;
    z-index: 10005;
  }
  .nav__menu {
    letter-spacing: calc($tracking / 1000)em;
    transition: all 0.7s ease;
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    opacity: 0;
  }
  .nav__menu ul {
    flex-direction: column;
    align-items: normal;
  }
  .nav__menu--item {
    line-height: 1;
    margin-bottom: 2rem;
  }
  .nav__menu.active {
    transition: all 0.7s ease;
    pointer-events: all;
    z-index: 10000;
    overflow-x: hidden;
    overflow-y: scroll;
    opacity: 1;
  }
  .nav__menu.active li {
    transform: translateX(-150%);
    will-change: animation;
    -webkit-animation: fadeIn 1s forwards;
            animation: fadeIn 1s forwards;
  }
  .nav__menu.active li:nth-child(1) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(2) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(3) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(4) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(5) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(6) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  .nav__menu.active li:nth-child(7) {
    -webkit-animation-delay: calc(0 + (0.15 * $i))s;
            animation-delay: calc(0 + (0.15 * $i))s;
  }
  @-webkit-keyframes fadeIn {
    0% {
      transform: translateX(-10%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
  @keyframes fadeIn {
    0% {
      transform: translateX(-10%);
      opacity: 0;
    }
    100% {
      transform: translateX(0);
      opacity: 1;
    }
  }
}

.menu-icon {
  display: none;
}
@media screen and (max-width: 896px) {
  .menu-icon {
    position: fixed;
    width: 30px;
    height: 15px;
    top: 10px;
    right: 10px;
    display: block;
    z-index: 10001;
  }
  .menu-icon span {
    transition: all 0.3s;
    position: absolute;
    width: 100%;
    height: 1px;
    background-color: #3d2f32;
  }
  .menu-icon span:nth-child(1) {
    top: 0;
  }
  .menu-icon span:nth-child(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .menu-icon span:nth-child(3) {
    bottom: 0;
  }
  .menu-icon.active {
    transition: all 0.3s;
  }
  .menu-icon.active span {
    transition: all 0.3s;
  }
  .menu-icon.active span:nth-child(1) {
    transform: rotate(27deg);
    transform-origin: left;
  }
  .menu-icon.active span:nth-child(2) {
    width: 0;
  }
  .menu-icon.active span:nth-child(3) {
    transform: rotate(-27deg);
    transform-origin: left;
  }
}

.conBox {
  margin: auto;
  padding: 100px 0px;
  overflow: hidden;
}
@media screen and (max-width: 896px) {
  .conBox {
    padding: 40px 0px;
  }
}

.inBox {
  width: 90%;
  max-width: 960px;
  margin: auto;
}

p + p {
  margin-top: 1.6rem;
}

#conall {
  background: url(../img/conallbg.png);
}

#mainImg {
  position: relative;
  text-align: center;
  width: 100%;
}
#mainImg .banner {
  transition: all 0.3s;
  position: absolute;
  max-width: 330px;
  top: 240px;
  left: 50%;
  margin-left: -500px;
  opacity: 1;
}
#mainImg .banner.fade {
  transition: all 0.3s;
  opacity: 0;
  pointer-events: none;
}
#mainImg.fixed {
  text-align: center;
  position: fixed !important;
  top: 0;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  #mainImg .banner {
    position: fixed;
    width: 40%;
    top: auto;
    right: 0;
    left: auto;
    bottom: 0;
    margin-left: 0;
    z-index: 9999;
  }
  #mainImg.fixed {
    top: 0;
  }
}

/*--NEWS--*/
#topNews .newsBox {
  padding: 25px 50px;
  border-bottom: #D9D9D9 dotted 1px;
}
#topNews .topidate {
  font-size: 12px;
  font-size: 1.2rem;
}
#topNews .topidate a {
  pointer-events: none;
}
#topNews .topiTxt {
  line-height: 120%;
}
#topNews .insert {
  background: #FFEBEC;
  padding: 20px;
  border: #F8ADAF dashed;
}
@media screen and (max-width: 896px) {
  #topNews .inBox {
    width: 100%;
  }
  #topNews .newsBox {
    width: 95%;
    margin: 0 auto;
    padding: 0px 25px 12.5px;
  }
}

/*--INTRO--*/
#intro {
  position: relative;
  background: url(../img/blogbg.png);
  border-top: 2px solid #fff;
}
#intro .introheader {
  font-size: 2rem;
  margin-bottom: 5rem;
  font-weight: 500;
}
#intro .introtitle {
  font-size: 2.8rem;
  margin-bottom: 5rem;
  font-weight: 500;
}
#intro .introtitle > span {
  border-bottom: solid 3px;
}
#intro .introtxt {
  width: 90%;
  max-width: 720px;
  margin: 0 auto 3rem auto;
  font-size: 1.6rem;
  line-height: 2.5;
  letter-spacing: 1px;
}
#intro .lessonsec a {
  display: block;
  text-decoration: none;
  padding: 1rem 1.5rem;
  border: solid 1px #AF9A31;
  position: relative;
  background: none;
  transition: all 0.4s 0s ease-in;
}
#intro .lessonsec a:after {
  font: normal normal normal 20px/1 FontAwesome;
  content: "";
  color: #AF9A31;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(0, -50%);
  transition: all 0.1s 0s ease-in;
}
#intro .lessonsec a:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.8);
}
#intro .lessonsec a:hover:after {
  right: 10px;
}
#intro .lessonsec a p {
  margin-bottom: 15px;
  letter-spacing: 1px;
  font-size: 1.4rem;
}
#intro .lessonsec + .lessonsec {
  margin-top: 3rem;
}
#intro .lessontxt {
  padding-right: 30px;
}

/*--LESSON--*/
@media screen and (max-width: 896px) {
  #topLesson .inBox {
    width: 100%;
  }
}

/*--PHOTO--*/
#topPhoto {
  background: url(../img/bgtopbar.png) top repeat-x;
}
#topPhoto .instagram-placeholder {
  float: left;
  margin: 0 !important;
  padding: 5px !important;
  width: 20%;
  box-sizing: border-box;
}
#topPhoto .instagram-placeholder a {
  box-sizing: border-box;
  display: block;
  overflow: hidden;
  position: relative;
  min-height: 100px;
}
#topPhoto .instagram-placeholder a:hover img {
  opacity: 0.6;
  filter: alpha(opacity=60);
}
#topPhoto .instagram-placeholder img {
  width: auto;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease-in-out;
  max-width: inherit;
}

/*--PROFILE--*/
#topProfile {
  position: relative;
  background: url(../img/blogbg.png);
  border-top: 2px solid #fff;
}
#topProfile .profile {
  display: flex;
}
#topProfile .profile--img, #topProfile .profile--text {
  width: 50%;
}
#topProfile .profile--img img {
  padding: 30px;
  background: #fff;
}
#topProfile .profile--text {
  padding: 15px;
}
#topProfile #acMenu dt {
  display: block;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: #666 1px solid;
  cursor: pointer;
}
#topProfile #acMenu dd {
  background: #f2f2f2;
  width: 200px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: #666 1px solid;
  display: none;
}
#topProfile #tabMenu {
  display: flex;
  flex-wrap: wrap;
  border: solid #fff;
  border-width: 1px 0 0 1px;
}
#topProfile #tabMenu li {
  display: block;
  width: calc(100% / 5);
  margin: 0;
  padding: 1.25rem 0 1.5rem;
  text-align: center;
  border: solid #fff;
  border-width: 0 1px 1px 0;
  cursor: pointer;
}
#topProfile #tabMenu .active {
  background: #edeff4;
}
#topProfile #tabBoxes {
  width: 100%;
  padding: 20px;
  line-height: 250% #topProfile #tabBoxes 2, #topProfile #tabBoxes 3, #topProfile #tabBoxes 4, #topProfile #tabBoxes 5, #topProfile #tabBoxes 6, #topProfile #tabBoxes 7;
  line-height-width: 100%;
  line-height-display: none;
}
#topProfile #tabBoxes .biovisnon {
  display: none;
}
@media screen and (max-width: 896px) {
  #topProfile .profile {
    flex-direction: column;
  }
  #topProfile .profile--img, #topProfile .profile--text {
    width: 100%;
  }
  #topProfile .profile--img {
    text-align: center;
  }
  #topProfile .profile--img img {
    padding: 15px;
  }
  #topProfile #tabMenu {
    flex-wrap: nowrap;
    overflow-x: scroll;
  }
  #topProfile #tabMenu li {
    width: auto;
    white-space: nowrap;
    padding: 1.25rem 1rem 1.5rem;
  }
}

/*--BLOG--*/
#topBlog {
  position: relative;
  background: url(../img/blogbg.png);
  border-top: 2px solid #fff;
}
#topBlog .blog {
  display: flex;
}
#topBlog .blogBox {
  width: 50%;
  padding: 0px 20px 0px 20px;
}
#topBlog .blogTitle {
  font-family: "Old Standard TT", serif;
  font-size: 3rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  background: #efebeb;
  padding: 100px 50px;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #topBlog .blogTitle {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #topBlog .blogTitle {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #topBlog .blogTitle {
    font-size: calc($rate * $size * 1vw);
  }
}
#topBlog .rss-list {
  padding: 30px 0px;
}
@media screen and (max-width: 896px) {
  #topBlog .blog {
    flex-direction: column;
  }
  #topBlog .blogBox {
    width: 100%;
    padding: 0px 20px 0px 20px;
  }
  #topBlog .blogTitle {
    padding: 50px;
  }
}

/*--CONTACT--*/
#topContact {
  position: relative;
  border-top: 2px solid #fff;
}
#topContact .form__list {
  display: flex;
  padding: 10px 0px;
  border-bottom: #D8D8D8 dotted 1px;
}
#topContact .form__list:last-child {
  border-bottom: none;
}
#topContact .form dt {
  width: 20%;
}
#topContact .form dt span {
  display: inline-block;
}
#topContact .form dd {
  width: 80%;
}
#topContact .form .formtxt {
  width: 100%;
  padding: 4px;
  border: #D8D8D8 solid 1px;
  background-color: #fff;
}
#topContact .form .formtxtarea {
  height: 180px;
}
#topContact .btn {
  text-align: center;
  margin: auto;
  width: 100%;
  max-width: 300px;
  font-size: larger;
  background: #D8D8D8;
  padding: 8px;
  display: block;
  color: #000;
  border: none;
}
#topContact .btn:hover {
  text-align: center;
  margin: auto;
  width: 300px;
  font-size: larger;
  background: #000;
  padding: 8px;
  display: block;
  color: #FFFFFF;
}
@media screen and (max-width: 896px) {
  #topContact .form__list {
    flex-direction: column;
  }
  #topContact .form dt {
    width: 100%;
  }
  #topContact .form dt span {
    display: none;
  }
  #topContact .form dd {
    width: 100%;
  }
}

footer {
  height: 80px;
  line-height: 80px;
  text-align: center;
  margin-top: 10rem;
  background: url(../img/bgtopbar.png) top repeat-x;
}
@media screen and (max-width: 896px) {
  footer {
    margin-top: 5rem;
  }
}

.lesson {
  /*COMMON------------------------------------------------------*/
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  padding: 0;
  margin: 0;
  color: #4A4A4A;
  line-height: 2;
  /*--RECORD--*/
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson #wrapper {
  display: grid;
  grid-template-rows: auto 1fr auto;
  grid-template-columns: 100%;
  min-height: 100vh;
}
.lesson .contents {
  width: 90%;
  max-width: 960px;
  margin: auto;
}
.lesson .section {
  margin: 100px 0;
  width: 100%;
}
.lesson .section--main .flex {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
}
.lesson .section--main .flex:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: inline-block;
  background-color: rgba(113, 210, 227, 0.05);
  z-index: -1;
}
.lesson .section__inner {
  padding: 0px 40px 40px 40px;
  position: relative;
}
.lesson .section__innerIn {
  box-sizing: border-box;
  background: #fff;
  padding: 30px;
  position: relative;
  margin-bottom: 100px;
}
.lesson .section__innerIn2 {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  margin-bottom: 30px;
  line-height: 225% !important;
}
.lesson .section__innerIn3 {
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 30px 50px;
  position: relative;
  margin-bottom: 3rem;
  border: 2px #727272 solid;
}
.lesson .section__inner02 {
  letter-spacing: calc($tracking / 1000)em;
  margin: 0 auto;
  padding: 50px 130px;
  font-size: 1.8rem;
  line-height: 2;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .section__inner02 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .section__inner02 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .section__inner02 {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson__main-image {
  background: #f4f4f4;
  text-align: center;
}
.lesson .nav__sns {
  top: 5px;
  z-index: 12000;
}
.lesson .nav__menu {
  height: 50px;
  opacity: 0;
  pointer-events: none;
}
.lesson .nav__menu.fade {
  opacity: 1;
  pointer-events: all;
}
.lesson .header {
  padding: 7rem 0;
  max-height: none;
  background: url(../img/headerbg.gif);
}
.lesson .intro {
  font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: calc($tracking / 1000)em;
  text-align: center;
  font-size: 1.6rem;
}
.lesson .intro > * {
  margin-bottom: 2rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .intro {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .intro {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .intro {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson .footer {
  background: #F0F0F0;
  padding: 100px 0px;
  text-align: center;
}
.lesson #page-top {
  transition: all 0.3s;
  position: fixed;
  bottom: -100px;
  right: 20px;
  font-size: 50%;
  z-index: 100;
}
.lesson #page-top a {
  background: #e3e3e3;
  text-decoration: none;
  color: #fff;
  width: 80px;
  padding: 20px 0;
  text-align: center;
  display: block;
  border-radius: 5px;
}
.lesson #page-top a img {
  vertical-align: text-top;
}
.lesson #page-top a:hover {
  text-decoration: none;
  background: #e3e3e3;
}
.lesson #page-top.show {
  bottom: 20px;
}
.lesson h4 {
  letter-spacing: calc($tracking / 1000)em;
  font-size: 1.6rem;
  line-height: 2.5;
  margin-top: 0px;
  font-weight: bold;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson h4 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson h4 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson h4 {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson .price {
  border: 1px solid #a60000;
  background-color: #fff;
  color: #000;
  font-weight: bold;
  padding: 1rem 4rem;
  display: flex;
  align-items: center;
}
.lesson .tokuten {
  width: 60%;
  margin: 2rem auto;
}
.lesson .tokuten dl {
  display: flex;
  align-items: center;
}
.lesson .tokuten dl dt {
  letter-spacing: calc($tracking / 1000)em;
  margin-bottom: 0px;
  font-size: 1.5rem;
  display: inline-block;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .tokuten dl dt {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .tokuten dl dt {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .tokuten dl dt {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson .tokuten dl dt span {
  color: #fff;
  text-align: center;
  font-weight: normal;
  padding: 10px;
  background: #a60000;
  word-break: keep-all;
}
.lesson .tokuten dl dd {
  width: 100%;
  font-size: larger;
  font-weight: bold;
  text-align: right;
}
@media screen and (max-width:480px) {
  .lesson .tokuten dl dd {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson .tokuten img {
  vertical-align: middle;
}
.lesson .tnone {
  border: none;
  height: 16px;
  width: 100%;
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}
.lesson .bg1 {
  background: #f9f9f9;
}
.lesson .bg4 {
  background: url(../img/lesson/model/border1.png) no-repeat;
  background-size: contain;
  background-position: center;
  padding: 10px;
}
.lesson .detailLeft {
  width: 20%;
  margin-right: 5%;
  float: left;
}
.lesson .detailLeft img {
  width: 100%;
}
.lesson .detailRight {
  width: 75%;
  float: left;
}
.lesson .half {
  width: 50%;
  float: left;
}
.lesson .dotline {
  border-bottom: dotted 1px;
  margin: 16px 0px;
}
.lesson dl.lessonIn {
  margin-top: 1rem;
}
.lesson dl.lessonIn dt {
  padding: 4px 8px;
  background: #C9C9C9;
  color: #000;
  width: 12%;
  float: left;
  clear: left;
  margin-bottom: 0px;
  box-sizing: border-box;
  text-align: center;
  font-weight: normal;
}
.lesson dl.lessonIn dd {
  padding: 4px 8px 10px 14%;
  margin: 0px 0px 10px 0px;
  width: 100%;
  box-sizing: border-box;
}
.lesson table {
  border-collapse: collapse;
}
.lesson table tr:nth-child(odd) td {
  background-color: #efefef;
}
.lesson table tr:nth-child(even) td {
  background-color: #fff;
}
.lesson table td, .lesson table th {
  border: 1px #a79f97 solid;
  padding: 8px;
  line-height: 100%;
}
.lesson table.sche {
  width: 100%;
}
.lesson table.sche td {
  font-size: 1.2rem;
}
.lesson .box {
  box-sizing: border-box;
  border: #DB0003 solid 1px;
  padding: 10px 20px;
  margin: 20px 0px;
  font-size: larger;
}
.lesson .record .title--section {
  margin-bottom: 5rem;
}
.lesson .record .profile {
  display: flex;
  padding: 2rem 0;
}
.lesson .record .img {
  width: 35%;
}
.lesson .record .text {
  font-size: 1.4rem;
  margin-left: 5%;
  width: 60%;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .record .text {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .record .text {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .record .text {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .lesson .nav__menu {
    height: 100vh;
  }
  .lesson .nav__menu.active {
    pointer-events: all;
    opacity: 1;
  }
  .lesson .menu-icon span {
    right: 0;
  }
  .lesson .header {
    padding-bottom: 35px;
  }
  .lesson .section {
    margin: 25px 0;
  }
  .lesson .section--main .flex {
    flex-direction: column;
  }
  .lesson .section__inner {
    padding: 0;
  }
  .lesson .section__innerIn {
    margin: 10px;
    padding: 5px;
    margin-bottom: 2rem;
  }
  .lesson .section__innerIn3 {
    padding: 25px 25px 15px;
    margin-bottom: 1rem;
  }
  .lesson .section__inner02 {
    padding: 5%;
    line-height: 1.8;
  }
  .lesson .footer {
    padding: 0px;
  }
  .lesson .button {
    padding: 5px;
  }
  .lesson #page-top {
    bottom: 5px;
    right: 5px;
  }
  .lesson #page-top a {
    width: 50px;
    height: 50px;
    padding: 10px 0;
    border-radius: 5px;
  }
  .lesson .tokuten {
    width: 100%;
    margin: 0;
    padding: 2rem;
  }
  .lesson .secSubTitleCou {
    padding: 2px;
  }
  .lesson dl.lessonIn dt {
    width: 100%;
  }
  .lesson dl.lessonIn dd {
    padding: 1rem;
  }
  .lesson .record .title--section {
    margin-bottom: 3rem;
  }
  .lesson .record .profile {
    flex-direction: column;
    padding: 1rem 0;
  }
  .lesson .record .img, .lesson .record .text {
    width: 100%;
    margin: 0;
  }
  .lesson .record .img {
    text-align: center;
    margin-bottom: 1rem;
  }
}

#analysis .section--main .flex img {
  margin-right: -80px;
}
#analysis .section--main .flex:nth-of-type(odd) img {
  margin-left: -80px;
}
#analysis .section--main .img {
  width: calc(30% + 60px);
  margin: 0;
  height: auto;
  border-radius: 5px;
}
#analysis .section--main .text {
  width: 68%;
}
#analysis .menu--title {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  background-color: #a60000;
  color: #fff;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #analysis .menu--title {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #analysis .menu--title {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #analysis .menu--title {
    font-size: calc($rate * $size * 1vw);
  }
}
#analysis .menu--title__name {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: auto;
  padding: 1.2rem 1.5rem 1rem;
}
#analysis .menu--content {
  margin: 2rem;
}
#analysis .menu--content__title {
  font-weight: bold;
  line-height: 250%;
}
#analysis .menu .small {
  padding-left: 0.5rem;
}
@media screen and (max-width: 896px) {
  #analysis .section--main .flex img {
    margin-right: 0;
  }
  #analysis .section--main .flex:nth-of-type(odd) img {
    margin-left: 0;
  }
  #analysis .section--main .img, #analysis .section--main .text {
    width: 100%;
  }
  #analysis .section--main .img {
    order: 1;
  }
  #analysis .section--main .text {
    order: 2;
  }
  #analysis .menu--title {
    flex-direction: column;
  }
  #analysis .menu--title__name, #analysis .menu--title .price {
    padding: 0.5rem 0.75rem;
  }
  #analysis .menu--content {
    margin: 0.5rem 1rem 2rem 1rem;
  }
}

#walking .banner-top {
  position: absolute;
  top: 20px;
  left: 50%;
  margin-left: 350px;
}
@media screen and (max-width: 896px) {
  #walking .header {
    padding: 15.2vw 0px;
  }
  #walking .banner-top {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
    margin-left: 0;
    width: 18vw;
    padding-bottom: 0.5vw;
  }
}

#tubetraining .intro {
  margin-top: 3rem;
}
#tubetraining .button {
  display: block;
  text-align: center;
  text-decoration: none;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #71d2e3;
  border: 2px solid #71d2e3;
  color: #FFF;
  padding: 10px;
  /*line-height: 50px;*/
  overflow: hidden;
}
#tubetraining .button::before, #tubetraining .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
#tubetraining .button, #tubetraining .button::before, #tubetraining .button::after {
  box-sizing: border-box;
  transition: all 0.3s;
}
#tubetraining .button:hover {
  color: #71d2e3;
}
#tubetraining .button:hover::after {
  background: #FFF;
  transform: scale(1);
}
#tubetraining .button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
}

#model .nedanBoxIn {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  display: flex;
  justify-content: space-evenly;
  width: 85%;
  margin: 3rem auto;
  vertical-align: middle;
}
#model .nedanBoxIn > * {
  width: 50%;
}
#model .nedanBoxIn > *:first-child dt, #model .nedanBoxIn > *:first-child dd {
  margin-right: auto;
}
#model .nedanBoxIn > *:last-child dt, #model .nedanBoxIn > *:last-child dd {
  margin-left: auto;
}
#model .nedanBoxIn dt, #model .nedanBoxIn dd {
  letter-spacing: calc($tracking / 1000)em;
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  width: 98%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #model .nedanBoxIn dt, #model .nedanBoxIn dd {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #model .nedanBoxIn dt, #model .nedanBoxIn dd {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #model .nedanBoxIn dt, #model .nedanBoxIn dd {
    font-size: calc($rate * $size * 1vw);
  }
}
#model .nedanBoxIn .gold {
  background-color: #bb990f;
  color: #fff;
}
#model .nedanBoxIn .gold + .gold {
  margin-top: 2rem;
}
#model .nedanBoxIn .white {
  background-color: #e5e5e5;
  color: #000;
}
#model .nedanBoxIn .gray {
  background-color: #fff;
  color: #000;
}
#model .lessonBoxIn {
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
  vertical-align: middle;
  width: 90%;
  margin: 0 auto;
}
#model .lessonBoxIn > * {
  position: relative;
  width: 48%;
  padding: 10px;
}
#model .lessonBoxIn > * .flow {
  background-color: #fff;
  padding: 20px;
  margin-bottom: 1rem;
}
#model .lessonBoxIn > * .flow__item {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.6rem;
  background-color: #f9f9f9;
  color: #000;
  border: none;
  line-height: 1.2;
  letter-spacing: 1px;
  text-align: center;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #model .lessonBoxIn > * .flow__item {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #model .lessonBoxIn > * .flow__item {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #model .lessonBoxIn > * .flow__item {
    font-size: calc($rate * $size * 1vw);
  }
}
#model #lesson .lessonBoxIn {
  margin-top: 5rem;
}
@media screen and (max-width: 896px) {
  #model .bg1 {
    padding-bottom: 2.5rem;
  }
  #model .bg4 {
    background-image: none;
  }
  #model .nedanBoxIn {
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
  }
  #model .nedanBoxIn > * {
    width: 100%;
  }
  #model .nedanBoxIn > *:first-child {
    margin-bottom: 2rem;
  }
  #model .nedanBoxIn > *:first-child dt, #model .nedanBoxIn > *:first-child dd {
    margin-right: 0;
  }
  #model .nedanBoxIn > *:last-child dt, #model .nedanBoxIn > *:last-child dd {
    margin-left: 0;
  }
  #model .lessonBoxIn {
    flex-direction: column;
  }
  #model .lessonBoxIn > * {
    width: 100%;
  }
  #model .lessonBoxIn > *:not(:last-of-type) {
    margin-bottom: 3rem;
  }
  #model #lesson .lessonBoxIn {
    margin-top: 2.5rem;
  }
  #model .tag {
    left: 0;
  }
}

#modelreport .intro {
  text-align: left;
}
#modelreport .section__chapter .flow {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
#modelreport p {
  margin: 1.12em 0px;
}
#modelreport .report {
  position: relative;
  margin: 0px 0px 100px 0px;
  display: flex;
}
#modelreport .report02 {
  position: relative;
  margin: 0px 10px 30px 0px;
}
#modelreport .photoL, #modelreport .photoLS, #modelreport .photoR, #modelreport .photoRS {
  line-height: 0;
}
#modelreport .photoL, #modelreport .photoLS {
  padding: 0 8px 8px 0;
  background: url(../img/lesson/modelreport/photobg.png) right bottom no-repeat;
}
#modelreport .photoR, #modelreport .photoRS {
  padding: 8px 8px 0px 0px;
  background: url(../img/lesson/modelreport/photobg.png) right top no-repeat;
  margin-left: auto;
}
#modelreport .photoL, #modelreport .photoR {
  width: 620px;
}
#modelreport .photoLS, #modelreport .photoRS {
  width: 430px;
}
#modelreport .photoLS img, #modelreport .photoRS img {
  width: 100%;
}
#modelreport .txtBoxR, #modelreport .txtBoxRW, #modelreport .txtBoxL, #modelreport .txtBoxRS, #modelreport .txtBoxLS {
  background: #fff;
  border: #E3E3E3 solid 1px;
}
#modelreport .txtBoxR {
  position: absolute;
  top: 100px;
  left: 530px;
  padding: 30px;
  width: 360px;
}
#modelreport .txtBoxRS {
  padding: 20px;
  width: 430px;
}
#modelreport .txtBoxRW {
  position: absolute;
  top: 20px;
  left: 480px;
  padding: 30px;
  width: 500px;
}
#modelreport .txtBoxL {
  position: absolute;
  top: 100px;
  left: 30px;
  padding: 30px;
  width: 360px;
}
#modelreport .txtBoxLS {
  padding: 20px;
  width: 430px;
}
#modelreport .point {
  display: flex;
  align-items: center;
  background: #F8F8F8;
  height: 200px;
  border-radius: 50vh;
  margin-bottom: 5rem;
}
#modelreport .point img {
  line-height: 200px;
}
#modelreport .point p {
  padding-left: 30px;
  font-size: larger;
  color: #12A6DB;
}
@media screen and (max-width: 896px) {
  #modelreport .section__chapter {
    margin-bottom: 5rem;
  }
  #modelreport .title--section-sub {
    text-align: center;
  }
  #modelreport .slide--modelreport {
    margin-top: 0;
  }
  #modelreport .report {
    flex-direction: column;
    margin-bottom: 2.5rem;
  }
  #modelreport .report02 {
    margin: 0;
  }
  #modelreport .photoL, #modelreport .photoR, #modelreport .photoLS, #modelreport .photoRS {
    width: 100%;
  }
  #modelreport .txtBoxR, #modelreport .txtBoxRW, #modelreport .txtBoxL, #modelreport .txtBoxRS, #modelreport .txtBoxLS {
    width: 100%;
    padding: 1rem !important;
  }
  #modelreport .txtBoxR, #modelreport .txtBoxRW, #modelreport .txtBoxL {
    position: static;
  }
  #modelreport .point {
    height: auto;
  }
  #modelreport .point img {
    width: 30%;
    line-height: auto;
  }
  #modelreport .point p {
    line-height: 1.5;
    padding: 0 10px;
    font-size: small;
  }
}

#form .contents {
  width: 90%;
  max-width: 700px;
  margin: 0 auto;
}
#form .form dt, #form .form dd {
  width: 100%;
  margin: 0;
  padding: 0;
}
#form .form dt {
  font-weight: bold;
}
#form .form dd {
  margin-bottom: 16px;
}
#form .form .formtxt {
  width: 100%;
  padding: 8px;
  border: #D8D8D8 solid 1px;
  font-size: 1.4rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #form .form .formtxt {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #form .form .formtxt {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #form .form .formtxt {
    font-size: calc($rate * $size * 1vw);
  }
}
#form .form .dotline {
  margin: 10px 0px;
  border-bottom: #D8D8D8 dotted 1px;
}
#form .form .formtxtarea {
  height: 100px;
  width: 100%;
  border: #D8D8D8 solid 1px;
  padding: 10px;
}
#form .form .yoko1 {
  width: 100% !important;
  display: block !important;
}
#form .form select.day {
  width: 50px;
  padding: 4px;
  border: #D8D8D8 solid 1px;
}
#form .form select.time {
  width: 150px;
  padding: 4px;
  border: #D8D8D8 solid 1px;
}
#form .confirm {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}
#form .confirm td, #form .confirm th {
  border: 1px solid #ccc;
  padding: 10px;
}
#form .confirm th {
  width: 30%;
  font-weight: normal;
  background: #efefef;
  text-align: left;
}
#form .confirm .error_messe {
  margin: 5px 0;
  color: red;
}
@media screen and (max-width: 896px) {
  #form .form select.time {
    margin-top: 0.5rem;
  }
  #form #footer {
    margin-top: 0;
  }
}

#news .conBox {
  padding: 15rem 0;
}
#news .newsBox h2 {
  letter-spacing: calc($tracking / 1000)em;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  #news .newsBox h2 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  #news .newsBox h2 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  #news .newsBox h2 {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  #news .conBox {
    padding: 10rem 0;
  }
  #news .tar {
    text-align: center;
  }
}

.col12, .col11, .col10, .col9, .col8, .col7, .col6, .col5, .col4, .col3, .col2, .col1, .col-half, .col-cos, .floatLBox {
  float: left;
  box-sizing: border-box;
}

.col12 {
  width: 100%;
}

.col11 {
  width: 91.66%;
}

.col10 {
  width: 83.33%;
}

.col9 {
  width: 75%;
}

.col8 {
  width: 66.66%;
}

.col7 {
  width: 58.33%;
}

.col6 {
  width: 50%;
}

.col5 {
  width: 41.66%;
}

.col4 {
  width: 33.33%;
}

.col3 {
  width: 25%;
}

.col2 {
  width: 16.66%;
}

.col1 {
  width: 8.33%;
}

.col-half {
  width: 4.16%;
}

.col-cos {
  width: 21.86%;
}

.title--section {
  font-family: "Old Standard TT", serif;
  letter-spacing: calc($tracking / 1000)em;
  font-size: 3rem;
  font-weight: normal;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .title--section {
    margin-bottom: 25px;
  }
}
.title--basic {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 2;
  letter-spacing: 0.5rem;
  margin: 50px 0 0;
  font-size: 3rem;
  color: #000;
  font-weight: bold;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--basic {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--basic {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--basic {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .title--basic {
    margin: 25px 0 0;
  }
}
.title--lead {
  font-size: 1.6rem;
  margin: 1rem 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--lead {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--lead {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--lead {
    font-size: calc($rate * $size * 1vw);
  }
}
.title--section-sub__wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 896px) {
  .title--section-sub__wrap {
    flex-direction: column;
    align-items: flex-end;
  }
  .title--section-sub__wrap .mens {
    max-width: 70px;
    margin-top: 3px;
  }
}
.title--section-sub {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.7rem;
  background: #71d2e3;
  border: 1px solid #71d2e3;
  color: #fff;
  display: inline-block;
  font-weight: normal !important;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--section-sub {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--section-sub {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--section-sub {
    font-size: calc($rate * $size * 1vw);
  }
}
.title--section-sub .secSubTitle {
  padding: 1px 1px 1px 1px;
  left: -20px;
}
.title--section-sub .secSubTitleCou {
  padding: 10px 20px;
  background: #A60000;
  color: #FFFFFF;
  display: inline-block;
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  margin-right: 8px;
}
.title--section-sub .secSubTitleIn {
  padding: 10px;
  background: #FFFFFF;
  color: #71d2e3;
  display: inline-block;
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
}
.title--section-sub2 {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding: 20px;
  padding-left: 60px;
  width: 220px;
  background: #727272;
  color: #fff;
  position: absolute;
  top: -50px;
  left: 20px;
  font-size: 2rem;
}
@media screen and (max-width: 896px) {
  .title--section-sub {
    position: relative;
    top: 0;
    bottom: auto;
    display: block;
    width: 100%;
  }
  .title--section-sub .secSubTitleCou {
    padding: 4px;
    margin-right: 5px;
  }
  .title--section-sub .secSubTitleIn {
    text-align: center;
    padding: 2px;
    display: block;
  }
}
.title--box {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: calc($tracking / 1000)em;
  font-size: 2.8rem;
  font-weight: bold;
  background: #000;
  color: #fff;
  width: 75%;
  margin: 50px auto 0;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--box {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--box {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--box {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .title--box {
    margin: 25px 0;
    width: 100%;
  }
}
.title--form {
  font-size: 1.8rem;
  text-align: center;
  margin: auto;
  background: #ABABAB;
  width: 80%;
  max-width: 400px;
  padding: 15px;
  background: #727272;
  color: #fff;
  margin: -6rem auto 5rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .title--form {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .title--form {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .title--form {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .title--form {
    margin-bottom: 2.5rem;
    padding: 5px;
    margin: -4.5rem auto 2.5rem;
  }
}
.title--news {
  font-size: 2rem;
}

.lesson .title--section {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  background: #fff;
  padding: 30px 20px;
  color: #a60000;
  font-size: 2.2rem;
  display: inline-block;
  margin: 0px 0px 0px 0px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .title--section {
    font-size: calc($rate * $size * 1vw);
  }
}
.lesson .title--section.large {
  font-size: 3rem;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .lesson .title--section.large {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .lesson .title--section.large {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .lesson .title--section.large {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width: 896px) {
  .lesson .title--section {
    padding: 10px;
  }
}
.lesson .title--lesson {
  width: 90%;
  margin: 0 auto;
}
.lesson .title--lesson img {
  max-width: 100%;
}

h3.rss-title {
  font-family: "Old Standard TT", serif;
  font-size: 2rem;
  font-weight: normal;
  letter-spacing: 0.2rem;
  margin-bottom: 50px;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  h3.rss-title {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  h3.rss-title {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  h3.rss-title {
    font-size: calc($rate * $size * 1vw);
  }
}

.bx-wrapper {
  box-shadow: none !important;
  border: none !important;
  background: transparent !important;
  margin: auto;
}
.bx-wrapper .slide[aria-hidden=false]:nth-of-type(2) {
  opacity: 0.5;
}
.bx-wrapper img {
  width: initial !important;
  margin: 0 auto;
}
.bx-wrapper .bx-prev, .bx-wrapper .bx-next {
  z-index: 0 !important;
}
.bx-wrapper .bx-prev {
  right: 100% !important;
  left: auto;
}
.bx-wrapper .bx-next {
  left: 100% !important;
  right: auto;
}
@media screen and (max-width: 896px) {
  .bx-wrapper {
    margin: 0 auto 30px !important;
  }
  .bx-wrapper .bx-pager {
    padding-top: 10px !important;
  }
  .bx-wrapper .bx-pager-item a {
    width: 5px !important;
    height: 5px !important;
  }
}

.slick-slide img {
  margin: 0 auto;
}

.slide--main {
  background-color: #bfd6e3;
}
.slide--main .gray {
  background-color: #7E8484;
}
.slide--lesson img {
  margin: 0 auto;
}
.slide--lesson .slick-slide {
  transition: all 0.5s ease;
}
.slide--lesson .slick-slide:not(.slick-current) {
  transition: all 0.5s ease;
  transform: scale(0.9);
  opacity: 0.5;
}
.slide--modelreport {
  margin-top: 5rem;
}

.slide-dots {
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  padding: 1.5rem 0;
  line-height: 1;
}
.slide-dots li {
  position: relative;
  display: inline-block;
  margin: 0 7px;
  max-width: 13px;
  padding: 0;
  border: 3.5px solid #3d2f32;
  width: 7px;
  height: 7px;
  border-radius: 100%;
  cursor: pointer;
}
.slide-dots li button {
  display: none;
}
.slide-dots li:not(.slick-active) {
  opacity: 0.2;
}

.slide-arrow {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  z-index: 10;
}
.slide-arrow.next-arrow {
  right: 0;
}
.slide-arrow.prev-arrow {
  left: 0;
}
.tag {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.7rem;
  padding: 5px 15px;
  background: #71d2e3;
  color: #fff;
  position: absolute;
  bottom: calc(100% - 25px);
  left: -10px;
  font-weight: normal !important;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .tag {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .tag {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .tag {
    font-size: calc($rate * $size * 1vw);
  }
}

.imgFit {
  width: 100%;
}

.flex {
  display: flex;
  gap: 2rem;
}
.flex.justify-content--center {
  justify-content: center;
}

.noWeight {
  font-weight: normal;
}

.larger {
  font-size: larger;
}

.small {
  font-size: medium;
}
@media screen and (max-width: 896px) {
  .small {
    font-size: smaller;
  }
}

.smaller {
  font-size: smaller;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.bold {
  font-weight: bold;
}

.mt0 {
  margin-top: 0px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb50 {
  margin-bottom: 50px;
}

.pb40 {
  padding-bottom: 40px;
}

.mtb30 {
  margin: 30px 0px;
}

.mtb50 {
  margin: 50px 0px;
}

.cl1 {
  color: #FF0004;
}

.cl2 {
  color: #AF9A31;
}

.cl3 {
  color: #dd6363;
}

.fLeft {
  float: left;
}

.fRight {
  float: right;
}

.clearfix {
  *zoom: 1;
}
.clearfix:before, .clearfix:after {
  display: table;
  line-height: 0;
  content: "";
}
.clearfix:after {
  clear: both;
}

#cf1 {
  background: #7d8484;
}

#cf2 {
  background: #bfd6e3;
}

#cf3 {
  background: #bfd6e3;
}

.list-style--disc li {
  list-style: disc;
  margin-left: 1.6rem;
}

.resev:before {
  font-family: "FontAwesome";
  content: "";
  padding-right: 8px;
}

.linkallow:before {
  font-family: "FontAwesome";
  content: "";
  padding-right: 8px;
}

.sp-non {
  display: block;
}
@media screen and (max-width: 896px) {
  .sp-non {
    display: none;
  }
}

.tabpc-non {
  display: block;
}
@media screen and (min-width:897px) {
  .tabpc-non {
    display: none;
  }
}

.pc-non {
  display: none;
}
@media screen and (max-width: 1024px) {
  .pc-non {
    display: block;
  }
}

@media screen and (max-width: 896px) {
  .sp_mb0 {
    margin-bottom: 0;
  }

  .sp_mtb0 {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.inview1 {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.8s;
  transition-delay: 0.3s;
}

.inview1.show {
  opacity: 1;
  transform: translateY(0px);
}

.btn .button {
  position: relative;
  z-index: 2;
  background: #b6dcff;
  background: linear-gradient(173deg, #b6dcff 0%, #b9b6e5 100%);
  color: #fff;
  padding: 10px;
  overflow: hidden;
  border-radius: 50vh;
  display: block;
  transition: all 0.3s;
}
.btn .button::before, .btn .button::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  transition: all 0.3s;
}
.btn .button::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
  border-radius: 50vh;
}
.btn .button:hover {
  color: #b6dcff;
  filter: drop-shadow(0 0 5px lightgray);
}
.btn .button:hover::after {
  font-weight: bold;
  background: #fff;
  transform: scale(1);
  border: 2px solid #b6dcff;
}
.btn--reserve {
  font-family: "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: calc($tracking / 1000)em;
  font-size: 1.6rem;
  display: block;
  padding: 5px;
  text-align: center;
  border-radius: 10px;
  position: relative;
  z-index: 2;
  background-color: #71d2e3;
  border: 2px solid #71d2e3;
  color: #fff;
  overflow: hidden;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .btn--reserve {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .btn--reserve {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .btn--reserve {
    font-size: calc($rate * $size * 1vw);
  }
}
.btn--reserve .linkallow:before {
  padding-left: 8px;
  padding-right: 0;
}
.btn--reserve::before, .btn--reserve::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
}
.btn--reserve, .btn--reserve::before, .btn--reserve::after {
  transition: all 0.3s;
}
.btn--reserve::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
}
.btn--reserve:hover {
  color: #71d2e3;
}
.btn--reserve:hover::after {
  background: #FFF;
  transform: scale(1);
}
@media screen and (max-width: 896px) {
  .btn--reserve {
    padding: 0;
  }
}
.btn--red {
  display: block;
  text-align: center;
  text-decoration: none;
  outline: none;
  border-radius: 10px;
  transition: all 0.3s;
  position: relative;
  z-index: 2;
  background-color: #a60000;
  border: 2px solid #a60000;
  color: #fff;
  padding: 10px;
  overflow: hidden;
}
.btn--red::before, .btn--red::after {
  position: absolute;
  z-index: -1;
  display: block;
  content: "";
  transition: all 0.3s;
}
.btn--red::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scale(0.5);
}
.btn--red:hover {
  color: #a60000;
}
.btn--red:hover::after {
  background: #fff;
  transform: scale(1);
}
@media screen and (max-width: 896px) {
  .btn--red {
    padding: 5px;
  }
}
.btn--submit {
  text-align: center;
  margin: auto;
  width: 80%;
  max-width: 300px;
  padding: 8px;
  margin: 5rem auto;
  color: #000;
  background: #D8D8D8;
  display: block;
}
.btn--submit:hover {
  background: #000;
  color: #fff;
}
@media screen and (max-width: 896px) {
  .btn--submit {
    margin: 2.5rem auto;
  }
}
.btn--back {
  border-radius: 3px;
  display: inline-block;
  background: #f2f2f2;
  padding: 4px 16px;
  text-decoration: none;
  color: #3d2f32;
  margin-top: 2rem;
}

.text--main {
  font-family: "Roboto Slab", Garamond, "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: calc($tracking / 1000)em;
  font-size: 3rem;
  line-height: 2;
  margin: 50px 0;
  color: #000;
  font-weight: bold;
}
@media screen and (min-width:897px) and (max-width: 1024px) {
  .text--main {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (min-width:481px) and (max-width: 896px) {
  .text--main {
    font-size: calc($rate * $size * 1vw);
  }
}
@media screen and (max-width:480px) {
  .text--main {
    font-size: calc($rate * $size * 1vw);
  }
}
.text--lead {
  line-height: 1.8;
  font-weight: 600;
}/*# sourceMappingURL=style.css.map */