/* IMPORT CSS */

@import url("grid.css");
img {
  max-width: 100%;
  height: auto;
}

a {
  display: contents;
  color: #222;
  text-decoration-line: none;
}

.sp-only {
  display: none!important;
}

.pc-only {
  display: block!important;
}

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

@media screen and (max-width: 768px) {
 .fb-wrap{
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
 }
.fb-page {
  width: 100% !important;
  text-align: center !important;
  margin: 0 auto !important;
 }
}



/*ヘッダー
-------------------------------------*/

h1 {
  font-size: 13px;
  padding: 5px 0;
  margin-bottom: 0;
  border-bottom: 1px solid #444444;
}

@media screen and (max-width: 768px) {
  h1 {
    padding: 5px;
    font-size: 12px;
  }
}

h1 span {
  max-width: 1000px;
  margin: auto;
  display: block;
}

.header-box {
  margin-left: auto;
  margin-top: 8px;
}

.contact-button {
  padding: 1rem;
  border: 2px solid #000;
}

.is-fixed .header-box {
  display: none;
}


/*ヘッダー
-------------------------------------*/

.header_c .logo {
  width: 213px;
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .header_c .logo {
    width: 40%;
    margin: 1rem;
  }
}

.header_c .logo img {
  width: 100%;
}

.header_c nav {
  width: 100%;
  height: 70px;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 768px) {
  .header_c nav {
    height: 95px;
  }
}

@media screen and (max-width: 650px) {
  .header_c nav {
    height: 75px;
  }
}

@media screen and (max-width: 520px) {
  .header_c nav {
    height: 65px;
  }
}

@media screen and (max-width: 400px) {
  .header_c nav {
    height: 55px;
  }
}

.header_c .drawer {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0;
}


/*ナビゲーション部分*/

.header_c .menu ul {
  list-style: none;
}

.header_c .menu ul li {
  margin: 0;
  text-align: left;
}

@media screen and (max-width: 768px) {
  .header_c .menu ul li {
    width: 88%;
  }
}

.header_c .menu ul.main_menus {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.header_c .menu ul.icons {
  display: flex;
  justify-content: flex-end;
  margin: 0;
  border-top: 1px solid #fff;
}

@media screen and (max-width: 768px) {
  .header_c .menu ul.main_menus {
    padding-top: 3rem;
  }
  .header_c .menu ul.icons {
    border-top: 1px solid #fff;
    flex-wrap: wrap;
    padding: 1.5rem 0 2rem;
  }
  .header_c .menu ul.icons li a {
    padding: 0;
    display: block ruby;
  }
  .header_c .menu ul.icons li img {
    width: 10%;
    vertical-align: middle;
    margin: 1rem 1rem 1rem -1rem;
  }
}

.header_c .menu ul li a {
  display: block;
  font-weight: 500;
  padding: 1em;
  text-decoration: none;
  margin: 0;
  color: #222;
}

.header_c .menu ul li a:hover, .header_c .menu ul li.current a {
  color: #1b6ac9;
}

@media screen and (max-width: 768px) {
  .header_c .menu ul li a, .header_c .menu ul li a:hover, .header_c .menu ul li.current a {
    color: #ffffff;
  }
}

.header_c .menu {
  text-align: center;
  background-color: #1b6ac9;
  transition: .5s ease;
  -webkit-transform: translateX(-105%);
  transform: translateX(-105%);
  /*左に隠しておく*/
  margin-top: -7em;
}

@media screen and (max-width: 768px) {
  .header_c .menu {
    margin-top: -8.5em;
  }
}

@media screen and (max-width: 500px) {
  .header_c .menu {
    margin-top: -7em;
  }
}

@media screen and (max-width: 400px) {
  .header_c .menu {
    margin-top: -6.5em;
  }
}


/*OPEN時の動き*/

.header_c .menu.open {
  -webkit-transform: translateX(0%);
  transform: translateX(0%);
  /*中身を表示（右へスライド）*/
  height: 10000%;
}


/*トグルボタンのスタイルを指定*/

.header_c .Toggle {
  display: block;
  position: relative;
  width: 42px;
  height: 42px;
  cursor: pointer;
  z-index: 3;
  right: 15px;
}

.header_c .Toggle span {
  display: block;
  position: absolute;
  width: 20px;
  border-bottom: solid 2px #333;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

@media screen and (max-width: 768px) {
  .header_c .Toggle {
    width: 20px;
    right: 20px;
    top: 5px;
  }
  .header_c .Toggle.active span {
    width: 25px;
    border-bottom: solid 2px #ffffff;
  }
}

.header_c .Toggle span:nth-child(1) {
  top: 5px;
}

.header_c .Toggle span:nth-child(2) {
  top: 14px;
}

.header_c .Toggle span:nth-child(3) {
  top: 30px;
}

@media screen and (max-width: 768px) {
  .header_c .Toggle span:nth-child(2) {
    top: 13px;
  }
  .header_c .Toggle span:nth-child(3) {
    top: 21.5px;
  }
}

.header_c .Toggle.active span:nth-child(1) {
  top: 20px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}


/* 2番目と3番目のspanを45度に */

.header_c .Toggle.active span:nth-child(2), .header_c .Toggle.active span:nth-child(3) {
  top: 20px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

@media screen and (min-width: 769px) {
  .header_c header::after {
    display: none;
  }
  .header_c nav {
    display: flex;
  }
  .header_c .Toggle {
    display: none;
  }
  .header_c .menu {
    width: 100%;
    background-color: transparent;
    margin-top: 0;
    -webkit-transform: translateX(0);
    transform: translateX(0);
    justify-content: space-around;
    display: flex;
  }
  .header_c .menu ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    list-style: none;
    margin-top: 0;
  }
  .header_c .menu ul li a {
    padding: 0 1em;
    border-bottom: none;
  }
  .header_c .menu ul li img {
    width: 30px;
  }
}


/*ナビ
-------------------------------------*/

@media screen and (min-width: 769px) {
  #navi {
    background: #fff;
  }
  nav ul {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    list-style: none;
    margin: 1rem 0 0 0;
  }
  nav li {
    flex: 1 0 auto;
    padding: 5px 0;
  }
  nav li span {
    width: 100%;
    display: block;
    flex: 1 0 auto;
    padding: 0;
    border-right: 1px solid #DDD;
  }
  nav li span+nav li span {
    border-left: 1px solid #DDD;
  }
  nav li:last-child span {
    flex: 1 0 auto;
    border-right: none;
  }
  nav li.active {
    flex: 1 0 auto;
    border-bottom: 2px solid #ff0000;
    margin-bottom: 5px;
  }
  nav li a {
    text-decoration: none;
    text-align: center;
    width: 100%;
    display: block;
  }
  /*ナビ固定
-------------------------------------*/
  .is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
  }
  nav.is-fixed ul {
    width: 100%;
    margin: 0;
  }
  nav.is-fixed ul li {
    margin: 1rem auto;
  }
  nav.is-fixed #navi {
    width: 100%;
  }
  nav.is-fixed #navi ul {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .global-nav {
    position: fixed;
    right: -320px;
    top: 0;
    width: 300px;
    height: 100vh;
    padding-top: 40px;
    background-color: #fff;
    transition: all .6s;
    z-index: 200;
    overflow-y: auto;
  }
  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
    z-index: 300;
  }
  .global-nav__list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .global-nav__item {
    text-align: center;
    padding: 0 14px;
  }
  .global-nav__item a {
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: #111;
  }
  .global-nav__item a:hover {
    background-color: #eee;
  }
  .hamburger__line {
    position: absolute;
    left: 11px;
    width: 18px;
    height: 1px;
    background-color: #111;
    transition: all .6s;
  }
  .hamburger__line--1 {
    top: 14px;
  }
  .hamburger__line--2 {
    top: 20px;
  }
  .hamburger__line--3 {
    top: 26px;
  }
  .black-bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    background-color: #000;
    opacity: 0;
    visibility: hidden;
    transition: all .6s;
    cursor: pointer;
  }
  /* 表示された時用のCSS */
  .nav-open .global-nav {
    right: 0;
  }
  .nav-open .black-bg {
    opacity: .8;
    visibility: visible;
  }
  .nav-open .hamburger__line--1 {
    transform: rotate(45deg);
    top: 20px;
  }
  .nav-open .hamburger__line--2 {
    width: 0;
    left: 50%;
  }
  .nav-open .hamburger__line--3 {
    transform: rotate(-45deg);
    top: 20px;
  }
  /*SPナビ固定
-------------------------------------*/
  .is-fixed {
    position: fixed;
    background: #fff;
  }
}


/*メイン画像
-------------------------------------*/

.slider {
  width: 100%;
  margin: auto;
}

.slick-dotted.slick-slider {
  margin-bottom: 20px!important;
}

.slider-list-item.slick-slide img {
  max-width: 1000px;
  margin: -22px auto 0;
  text-align: center
}

.slider-group {
  position: relative;
}

.slider-filter-right, .slider-filter-left {
  z-index: 1;
  background: #fff;
  filter: alpha(opacity=50);
  -ms-filter: "alpha(opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  zoom: 1;
  position: absolute;
  top: 0;
  height: 100%;
  width: calc((100vw - 1000px) / 2);
}

@media screen and (max-width: 1000px) {
  .slider-list-item.slick-slide img {
    max-width: 900px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 900px) / 2);
  }
}

@media screen and (max-width: 900px) {
  .slider-list-item.slick-slide img {
    max-width: 769px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 769px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .slider-list-item.slick-slide img {
    max-width: 700px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 700px) / 2);
  }
}

@media screen and (max-width: 699px) {
  .slider-list-item.slick-slide img {
    max-width: 600px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 600px) / 2);
  }
}

@media screen and (max-width: 599px) {
  .slider-list-item.slick-slide img {
    max-width: 550px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 550px) / 2);
  }
}

@media screen and (max-width: 499px) {
  .slider-list-item.slick-slide img {
    max-width: 450px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 450px) / 2);
  }
}

@media screen and (max-width: 449px) {
  .slider-list-item.slick-slide img {
    max-width: 420px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 420px) / 2);
  }
}

@media screen and (max-width: 375px) {
  .slider-list-item.slick-slide img {
    max-width: 360px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 100%;
    width: calc((100vw - 360px) / 2);
  }
}

.slider-filter-right {
  left: 0;
}

.slider-filter-left {
  right: 0;
}

.slick-dots {
  bottom: 10px !important;
}

@media screen and (max-width: 768px) {
  .slick-dots {
    bottom: 5px !important;
  }
}

.slick-dots li {
  margin: 0!important;
}

.slick-dots li button::before {
  font-size: 12px!important;
  color: #ccc!important;
}

.slick-dots li.slick-active button::before {
  color: #ffffff!important;
}


/*下層MV
-------------------------------------*/

.mainimg_ontext {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.mainimg_ontext img {
  width: 100%;
}

.mainimg_ontext p {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -45%);
  transform: translate(-50%, -45%);
  font-weight: bold;
  text-shadow: 1px 1px 10px black;
  font-size: 38px;
  color: #ffffff;
}

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

  .mainimg_ontext p {
    top: 45%;
    left: 47%;
    font-size: 20px;
  }
  .mainimg_ontext img {
    height: 75px;
  }
}


/*ぱんくず
-------------------------------------*/

.breadcrumb {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .breadcrumb {
    width: 96%;
    margin: auto;
	font-size: 12px;
  }
}

.breadcrumb p {
  max-width: 1000px;
  margin: auto;
}

.breadcrumb p span {
  margin: 0 10px;
}


/*メインコンテンツ
-------------------------------------*/

main {
  width: 100%;
  margin: 0 auto!important;
}

section {
  margin: 5rem 0;
  padding: 2.5rem 0;
}

@media screen and (max-width: 768px) {
  section {
    margin: 5rem 0;
    padding: 3rem 0;
  }
}

.gray-back {
  background-color: #f4f4f4;
}

.blue-back01 {
  background-color: #daf0fc;
}

.blue-back02 {
  background-color: #c4e1f1;
}

.left {
  text-align: left;
}


/*メインコンテンツ-画像並び
-------------------------------------*/

.column h2 {
  margin-bottom: 2.5rem!important;
}

@media screen and (max-width: 768px) {
  .column h2 {
    margin-bottom: 2rem!important;
  }
}

.column .center {
  margin-bottom: 0;
}

.column h3 {
  margin-bottom: 0;
}

.column p {
  margin-bottom: 1rem;
}


/*キャッチコピー
-------------------------------------*/

.catch {
  text-align: center;
}

.catch h2 {
  padding-bottom: 1rem;
}

.center {
  text-align: center;
  margin-bottom: 4rem;
}


/*テーブル組み
-------------------------------------*/


/*.type01
----------------------------------------------------*/

.type01 {
  width: 100%;
}

.type01 th {
  width: 30%;
  text-align: left;
  padding: 10px;
}

@media only screen and (max-width:680px) {
  .type01 {
    margin: 0 auto;
  }
  .type01 th, .type01 td {
    width: 100%;
    display: block;
    border-top: none;
  }
  .type01 tr:first-child th {
    border-top: 1px solid #ddd;
  }
}


/*.type02
----------------------------------------------------*/

.type02 table {
  width: 100%;
}

@media only screen and (max-width:768px) {
  .type02 {
    overflow: auto;
    white-space: nowrap;
  }
  .type02::-webkit-scrollbar {
    height: 5px;
  }
  .type02::-webkit-scrollbar-track {
    background: #F1F1F1;
  }
  .type02::-webkit-scrollbar-thumb {
    background: #BCBCBC;
  }
}


/*お問い合わせ
-------------------------------------*/

.contact-box {
  border: 1px solid #ccc;
  text-align: center;
  padding: 2rem 0;
}

.table {
  margin: 4rem 0;
}

.table th {
  width: 250px;
}


/* 幅768px以下の表示
-------------------------------------*/

@media screen and (max-width: 768px) {
  /*ヘッダー
-------------------------------------*/
  .header-box {
    display: none;
  }
  /*お問い合わせ
-------------------------------------*/
  .table th {
    width: 100%;
    display: block;
  }
  .table td {
    display: block;
  }
}


/*news
-------------------------------------*/

#news {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #news {
    padding: 0;
    width: 96%;
  }
}

#news .container {
  display: flex;
  border: 1px solid #666666;
  padding: 10px;
}

#news .container div:first-child {
  border-right: 1px solid #666666;
  padding: 0 20px 0 15px;
}

@media screen and (max-width: 768px) {
  #news .container div:first-child {
    padding: 0 15px 0 5px;
  }
}

#news .container div:last-child {
  width: 100%;
  overflow-y: scroll;
}

#news h2 {
  font-size: 12px;
  letter-spacing: 0.4rem;
  line-height: 180%;
  padding: 10px 0;
}

#news h2 img {
  width: 71.6px;
  display: block;
}

@media screen and (max-width: 768px) {
  #news h2 {
    letter-spacing: 0.37rem;
    font-size: 10px;
  }
}

#news .container div ul {
  padding: 5px 20px;
  margin-bottom: 0;
  height: 110px;
}

#news .container div ul li, #news .container div ul li a {
  display: block;
  color: #666666;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #news .container div ul {
    padding: 5px 10px;
  }
  #news .container div ul li {
    font-size: 12px;
  }
}

#news .container div ul li:last-child {
  margin-bottom: 0;
}

#news .container div ul li a, #news .container div ul li span {
  display: inline-block;
}

#news .container div ul li span {
  margin-right: 20px;
}

@media screen and (max-width: 768px) {
  #news .container div ul li span {
    margin-right: 5px;
  }
}


/*pickup
-------------------------------------*/

#pickup {
  max-width: 1000px;
  margin: auto;
}

#pickup h2 {
  font-size: 16px;
}

#pickup h2 img {
  width: 116px;
  margin: 0 10px -10px 0;
}

@media screen and (max-width: 768px) {
  #pickup {
    width: 96%;
    margin: auto;
    max-width: 100%;
  }
  #pickup h2 {
    font-size: 11px;
  }
  #pickup h2 img {
    width: 25%;
  }
}

#pickup .span-6 {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
  align-items: stretch;
}

#pickup .span-6:hover {
  opacity: 0.6;
}

#pickup .col:nth-child(even) {
  margin-left: 4%;
}

#pickup .col:nth-child(odd) {
  margin-left: 0;
}

@media screen and (max-width: 768px) {
  #pickup .col:nth-child(even) {
    margin-left: 0;
  }
}

#pickup .span-6 div:first-child {
  color: #ffffff;
  padding: 20px 20px 18px;
  width: 59%;
}

#pickup .span-6 div h3 {
  font-size: 28px;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 768px) {
  #pickup .span-6:first-child {
    align-items: inherit;
  }
  #pickup .span-6 div:first-child {
    padding: 15px;
  }
  #pickup .span-6 div h3 {
    font-size: 20px;
    text-align: left;
  }
}

#pickup .span-6 div:first-child p {
  text-align: left;
  margin-top: 20px;
}

#pickup .span-6 div img:first-child {
  max-width: 200px;
}

@media screen and (max-width: 768px) {
  #pickup .span-6 div:first-child p {
    margin-top: 10px;
    font-size: 12px;
  }
  #pickup .span-6 div img:first-child {
    max-width: 150px;
  }
}

#pickup .span-6 div:last-child {
  position: relative;
}

#pickup .span-6 div:last-child img:first-child {
  object-fit: cover;
  height: 100%;
}

::-webkit-full-page-media, :future, :root .span-6 div:last-child img:first-child{
  object-fit: cover;
  height: 100%;
  width: 100%;
}

#pickup .span-6 div:last-child p {
  width: 28px;
  height: 28px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
#pickup .span-6 div:last-child p {
  bottom: 0;
}	
}

#pickup .span-6 div:last-child p img {
  width: 28px;
}

#pickup .span-6.clr01 {
  background: #1b9ac9;
}

#pickup .span-6.clr02 {
  background: #1b6ac9;
}


/*lesson
-------------------------------------*/

#lesson {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #lesson {
    width: 96%;
    margin: auto;
    padding: 0;
  }
}

#lesson h2 {
  font-size: 16px;
}

#lesson h2 img {
  width: 112px;
  margin: 0 10px 0 0;
}

#lesson h2 a {
  display: inline-block;
  float: right;
  color: #1b6ac9;
  margin-top: 15px;
}

#lesson .span-4 {
  color: #ffffff;
  display: flex;
  justify-content: flex-end;
  align-items: self-end;
  flex-wrap: wrap;
}

#lesson h2 a:hover, #lesson .span-4:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #lesson h2 {
    font-size: 11px;
  }
  #lesson h2 a {
    margin-top: 10px;
    margin-bottom: 0px;
  }
  #lesson h2 img {
    width: 25%;
  }
  #lesson .row {
    flex-direction: inherit;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #lesson .span-4 {
    max-width: inherit;
    flex: 0 0 48%;
    margin-bottom: 30px;
  }
}

#lesson .span-4 div:first-child {
  color: #ffffff;
  padding: 15px 0;
  margin: auto;
  width: 90%;
}

@media screen and (max-width: 768px) {
  #lesson .span-4 div:first-child {
    padding: 6px;
    margin: auto;
  }
}

#lesson .span-4 div:last-child {
  padding: 0;
  margin-bottom: -15px;
  position: relative;
}

#lesson .span-4 div h3 {
  font-size: 26px;
  font-weight: bold;
  text-align: left;
}

#lesson .span-4 div h3 span {
  font-size: 22px;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  #lesson .span-4 div h3 {
    font-size: 17px;
  }
  #lesson .span-4 div h3 span {
    font-size: 12px;
  }
}

#lesson .span-4 div:first-child p {
  text-align: left;
  margin-top: 5px;
}

#lesson .span-4 div:last-child p {
  width: 28px;
  position: absolute;
  bottom: 0;
  right: 0;
  margin: 0;
}

@media screen and (max-width: 768px) {
  #lesson .span-4 div:first-child p {
    font-size: 10px;
  }
  #lesson .span-4 div:last-child p {
    width: 20px;
  }
}

#lesson .span-4 img {
  width: 100%;
}

#lesson .span-4.clr01 {
  background: #1b9ac9;
}

#lesson .span-4.clr02 {
  background: #1b6ac9;
}


/*enjoy
-------------------------------------*/

#enjoy {
  max-width: 1000px;
  margin: 4rem auto 0;
}

#enjoy h2 {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #enjoy {
    width: 96%;
    margin: 3.5rem auto 0;
    padding: 0;
  }
}

#enjoy h2 img {
  width: 200px;
  margin: 0 10px -10px 0;
}

#enjoy .span-4 {
  position: relative;
}

#enjoy .span-4:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #enjoy .row {
    flex-direction: inherit;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #enjoy h2 {
    font-size: 11px;
  }
  #enjoy h2 img {
    width: 40%;
    margin: 0 10px -5px 0;
  }
  #enjoy .span-4 {
    max-width: inherit;
    flex: 0 0 48%;
    margin-bottom: 15px;
  }
}

#enjoy .span-4 .tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 2px 5px;
  background: #eb6f98;
  color: #ffffff;
  font-size: 14px;
}

#enjoy .span-4 .arrow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  margin: 0;
  padding: 0;
}

#enjoy .span-4 h3 {
  font-size: 26px;
  color: #ffffff;
  position: absolute;
  top: 10%;
  width: 100%;
  text-align: left;
  padding: 20px;
  font-weight: bold;
  text-shadow: 1px 1px 10px black;
}

#enjoy .span-4 h3 span {
  font-size: 22px;
  display: block;
  width: 100%;
}

@media screen and (max-width: 768px) {
  #enjoy .span-4 .tag {
    font-size: 11px;
  }
  #enjoy .span-4 .arrow {
    width: 22px;
  }
  #enjoy .span-4 h3 {
    font-size: 17px;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    padding: 20px 10px;
  }
  #enjoy .span-4 h3 span {
    font-size: 12.5px;
  }
}


/*calender
-------------------------------------*/

#calender {
  margin: 5rem auto 0;
  padding: 5rem 0;
}

@media screen and (max-width: 768px) {
  #calender .container {
    width: 96%;
    margin: 0 auto;
    padding: 0;
  }
}

#calender h2 {
  font-size: 16px;
}

#calender h2 img {
  width: 135px;
  margin: 0 10px 0 0;
}

@media screen and (max-width: 768px) {
  #calender h2 {
    font-size: 11px;
  }
  #calender .span-6:first-child h2 img {
    width: 25%;
  }
  #calender .span-6:last-child h2 img {
    width: 27%;
  }
  #calender .span-6:last-child h2 {
    margin-top: 20px;
  }
}


/*about
-------------------------------------*/

#about {
  margin: auto;
  padding: 5rem 0;
}

@media screen and (max-width: 768px) {
  #about .container {
    width: 96%;
    margin: auto;
    padding: 0;
  }
}

#about h2 {
  font-size: 16px;
}

#about h2 img {
  width: 135px;
}

#about .span-6 {
  background: #062851;
  color: #ffffff;
  display: flex;
}

#about .span-6:hover {
  opacity: 0.6;
}

#about .span-6 div {
  padding: 15px 0 0 30px;
  width: 100%;
  color: #fff;
}

#about .span-6 div h2 {
  font-size: 42px;
}

#about .span-6 div h2 span {
  font-size: 14px;
  display: block;
}

#about .span-6 div p {
  margin-top: 20px;
}

#about .span-6 img {
  max-width: 185px;
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #about .span-6 {
    align-items: center;
    margin-bottom: 10px;
  }
  #about .span-6 div {
    width: 100%;
    padding: 20px;
  }
  #about .span-6 div h2 {
    font-size: 25px;
    margin-bottom: 1rem;
  }
  #about .span-6 div p {
    margin-top: 0;
    font-size: 12px;
  }
  #about .span-6 img {
    width: 90%;
  }
}


/*blog
-------------------------------------*/

#blog {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #blog {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
  }
}

#blog .span-4 {
  margin-bottom: 20px;
}

#blog .span-4 img {
  margin-bottom: 15px;
  width: 100%;
  position: relative;
}

#blog .span-4 img:hover {
  opacity: 0.6;
}

#blog .span-4 p {
  font-size: 16px;
  margin-bottom: 5px;
}

#blog .span-4 h2 {
  font-size: 16px;
}

#blog .span-4 a:hover p {
  color: #1b6ac9;
}

#blog .span-4 a:hover h2 {
  color: #1b6ac9;
}

#blog .col:nth-child(3n+1) {
  margin-left: 0;
}

#blog .span-4 .tag {
  color: #ffffff;
  font-size: 14px;
  font-weight: bold;
  background: #eb6f98;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9;
  padding: 0 10px;
}

#blog .span-4 a:hover .tag {
  color: #ffffff;
}


/*member
-------------------------------------*/

#member {
  max-width: 1000px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #member {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
  }
}

#member h2 {
  font-size: 18px;
}

#member h2 a{
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  #member ul.local_nav li {
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
    position: relative;
    padding-top: 10px;
    line-height: 25px;
  }
  #member ul.local_nav li::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 2%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: 8px solid #000;
    border-bottom-width: 0;
  }
  #member ul.local_nav li:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  #member ul.local_nav li a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

#member h3 {
  font-size: 34px;
  margin: 80px auto 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #member h3 {
    font-size: 19px;
    margin: 40px auto 30px;
  }
}

#member h3:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #eb6f98;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  #member h3:before {
    bottom: -5px;
    width: 40px;
  }
}

#member h4 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 130%;
}

#member p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #member h4 {
    font-size: 15px;
    margin: 5px auto 15px;
    text-align: center;
  }
  #member p {
    font-size: 12px;
  }
}

#member .base_price {
  border: 1px solid #444444;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
}

#member .base_price p {
  font-size: 18px;
}

#member p.caps {
  font-size: 14px;
}

#member p.caps a {
  display: inline-block;
  color: #0851a9;
  text-decoration: underline;
}

#member p.caps a:hover {
  text-decoration: none;
}

#member h5 {
  font-size: 20px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  #member h5 {
    font-size: 14px;
    margin: 2rem auto 1rem;
  }
}

#member p.caps02 {
  font-size: 18px;
  text-align: right;
}

@media screen and (max-width: 768px) {
  #member p.caps02 {
    font-size: 12px;
  }
}

#member p.caps02 a {
  display: inline-block;
  color: #1b6ac9;
  text-decoration: underline;
}

#member p.caps02 a:hover {
  text-decoration: none;
}

#member .caps03 {
  font-size: 14px;
  line-height: 100%;
  margin-top: 20px;
}

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

  #member .caps03 {
    font-size: 12px;
    line-height: 100%;
    margin-top: 10px;
  }
}

#member .caps03 li {
  list-style: none;
  line-height: initial;
}

#member .caps03 a {
  display: inline-block;
  color: #1b6ac9;
  text-decoration: underline;
}

#member .caps03 a:hover {
  text-decoration: none;
}

#member table {
  width: 100%;
  border: 1px solid #444444;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #member table {
    font-size: 12px;
  }
}

#member th {
  background: #daf0fc;
  border: 1px solid #444444;
  width: 60%;
  text-align: center;
  font-weight: normal;
}

#member td {
  border: 1px solid #444444;
  padding: 12px 50px;
}

#member td:last-child {
  border: 1px solid #444444;
  padding: 12px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #member td {
    border: 1px solid #444444;
    padding: 12px;
    text-align: center;
  }
}


/*about_sec
-------------------------------------*/

#about_sec {
  max-width: 1000px;
  margin: auto auto 3rem;
}

@media screen and (max-width: 768px) {
  #about_sec {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
  }
  #about_sec .col.span-6 img{
    width: 100%!important;
  }
  #about_sec #sec01 {
    margin-top: -0px;
    padding-top: 0px
  }
}

#about_sec h2 {
  font-size: 18px;
}

#about_sec h2 span {
  display: inline-block;
}

#about_sec h2 a {
  color: #222;
  text-decoration: none;
  font-weight: 400;
}

#about_sec h2 a:hover {
  color: #1b6ac9;
}

@media screen and (max-width: 768px) {
  #about_sec ul.local_nav {
    margin-bottom: 3rem;
  }
  #about_sec ul.local_nav li {
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
    position: relative;
    padding-top: 10px;
    line-height: 25px;
  }
  #about_sec ul.local_nav li::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 2%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: 8px solid #000;
    border-bottom-width: 0;
  }
  #about_sec ul.local_nav li:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  #about_sec ul.local_nav li a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

#about_sec h3 {
  font-size: 34px;
  margin: 80px auto 60px;
  position: relative;
}

@media screen and (max-width: 768px) {
  #about_sec h3 {
    font-size: 19px;
    margin: 40px auto 30px;
  }
}

#about_sec h3:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #eb6f98;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  #about_sec h3:before {
    bottom: -5px;
    width: 40px;
  }
}

#about_sec h4 {
  font-size: 30px;
  margin-bottom: 30px;
  line-height: 130%;
}

@media screen and (max-width: 768px) {
  #about_sec h4 {
    font-size: 15px;
    margin: 5px auto 15px;
    text-align: center;
  }
}

#about_sec h4.fzS {
  font-size: 18px;
  margin-bottom: 0;
}

#about_sec p.fzS {
  font-size: 16px;
}

#about_sec p {
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #about_sec p {
    font-size: 12px;
  }
}

#about_sec .base_price {
  border: 1px solid #444444;
  padding: 20px;
  text-align: center;
  margin-bottom: 10px;
}

#about_sec .base_price p {
  font-size: 18px;
}

#about_sec p.caps {
  font-size: 14px;
}

#about_sec p.caps a {
  display: inline-block;
  color: #0851a9;
  text-decoration: underline;
}

#about_sec p.caps a:hover {
  text-decoration: none;
}

#about_sec p.caps02 {
  font-size: 18px;
  text-align: right;
  margin-bottom: 5rem;
}

@media screen and (max-width: 768px) {
  #about_sec p.caps02 {
    font-size: 12px;
    margin-bottom: 2.5rem;
  }
}

#about_sec p.caps02 a {
  display: inline-block;
  color: #1b6ac9;
  text-decoration: underline;
}

#about_sec p.caps02 a:hover {
  text-decoration: none;
}

#about_sec p a {
  display: inline-block;
  color: #0851a9;
  text-decoration: underline;
}

#about_sec p a:hover {
  text-decoration: none;
}

#about_sec .about01 .container {
  margin-bottom: 50px;
}

#about_sec h5 {
  font-size: 20px;
  margin: 3rem auto 2rem;
}

@media screen and (max-width: 768px) {
  #about_sec .about01 .container {
    margin-bottom: 20px;
  }
  #about_sec h5 {
    font-size: 14px;
    margin: 2rem auto 1rem;
  }
}

#about_sec table {
  width: 100%;
  border: 1px solid #444444;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  #about_sec table {
    font-size: 12px;
  }
}

#about_sec th {
  background: #daf0fc;
  border: 1px solid #444444;
  width: 60%;
  text-align: center;
  font-weight: normal;
}

#about_sec th:first-child {
  width: 25%;
}

#about_sec th:nth-child(2) {
  width: 37.5%;
}

#about_sec th:last-child {
  width: 37.5%;
}

#about_sec td {
  border: 1px solid #444444;
  text-align: center;
  padding: 15px;
}

#about_sec td:last-child {
  border: 1px solid #444444;
  padding: 15px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  #about_sec th {
    padding: 5px;
  }
  #about_sec td {
    border: 1px solid #444444;
    padding: 8px 0;
	line-height: 120%;
  }	
  #about_sec td:last-child {
    padding: 8px 0;
  }
  #about_sec th:first-child {
    width: 27%;
  }
  #about_sec th:nth-child(2) {
    width: 36.5%;
  }
  #about_sec th:last-child {
    width: 36.5%;
  }
}

#about_sec .lesson_detail {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
}

#about_sec .lesson_detail .lesson_inbox {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}

#about_sec .lesson_detail .lesson_inbox div {
  font-weight: bold;
}

#about_sec .lesson_detail .lesson_inbox div.detail_box p {
  font-weight: normal;
  font-size: 14px;
}

#about_sec .lesson_detail .lesson_inbox div.detail_box {
  width: 33%;
  padding: 20px 0 0;
  color: #ffffff;
  margin-bottom: -0.5rem;
}

#about_sec .lesson_detail .lesson_inbox div.detail_box img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  #about_sec .lesson_detail .lesson_inbox div.detail_box {
    width: 100%;
    padding: 0;
  }
  #about_sec .lesson_detail .lesson_inbox div.detail_box div {
    width: 50%;
    float: left;
    padding: 10px 0 0;
  }
  #about_sec .lesson_detail .lesson_inbox div.detail_box img {
    width: 50%;
    float: right;
  }
}

#about_sec .lesson_detail .lesson_inbox.clr01 {
  background: #1b9ac9;
}

#about_sec .lesson_detail .lesson_inbox.clr02 {
  background: #1b6ac9;
}

#about_sec .lesson_detail .lesson_inbox div:last-child {
  width: 67%;
  background: #f1f3f4;
  padding: 20px;
}

@media screen and (max-width: 768px) {
  #about_sec .lesson_detail .lesson_inbox div:last-child {
    width: 100%;
	padding: 10px;
  }
}

#about_sec .lesson_detail .lesson_inbox div p {
  margin-bottom: 5rem;
}

#about_sec .lesson_detail .lesson_inbox div:last-child a {
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 768px) {
  #about_sec .lesson_detail .lesson_inbox div:last-child a {
    font-size: 13px;
	font-weight: 400;
  }
}

#about_sec .lesson_detail .lesson_inbox h3 {
  font-size: 26px;
  line-height: 60%;
  margin: 0 auto;
  width: 88%;
  font-weight: bold;
}

#about_sec .lesson_detail .lesson_inbox div:last-child p {
  font-weight: normal;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
#about_sec .lesson_detail .lesson_inbox div:last-child p {
  font-weight: normal;
  font-size: 12px;
}	
}

#about_sec .lesson_detail .lesson_inbox h3:before {
  display: none;
}

#about_sec .lesson_detail .lesson_inbox h3 span {
  font-size: 22px;
  display: block;
}

#about_sec .lesson_detail .lesson_inbox div.detail_box p {
  margin: 15px auto;
  width: 88%;
}

#about_sec .lesson_detail .lesson_inbox img {
  width: 185px;
}

@media screen and (max-width: 768px) {
  #about_sec .lesson_detail .lesson_inbox {
    align-items: center;
    margin-bottom: 3rem;
  }
  #about_sec .lesson_detail .lesson_inbox div {
    padding: 0 0 0 15px;
  }
  #about_sec .lesson_detail .lesson_inbox div h3 {
    font-size: 17px;
    line-height: 110%;
	font-weight: 500;
  }
  #about_sec .lesson_detail .lesson_inbox div h3 span {
    font-size: 12px;
    margin: 0 auto -18px;
  }
  #about_sec .lesson_detail .lesson_inbox div.detail_box p {
    margin-top: 5px;
    font-size: 10px;
  }
  #about_sec .lesson_detail .lesson_inbox img {
    width: 50%;
  }
  .court .row {
    flex-direction: unset;
    margin-bottom: 3rem;
  }
  .court .span-6:first-child {
    width: 45%;
    float: left;
  }
  .court .span-6:last-child {
    width: 45%;
    float: right;
    margin-left: 4%;
  }
  #about_sec .court .span-6 h4 {
    font-size: 13px;
    margin: 0 auto;
    text-align: left;
  }
  #about_sec .court .span-6 p.fzS {
    font-size: 12px;
  }
}


/*contact
-------------------------------------*/

#contact {
  max-width: 1000px;
  margin: auto auto 3rem;
}

@media screen and (max-width: 768px) {
  #contact {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
  }
}

#contact .step {
  width: 730px;
  margin: 20px auto 0;
}

@media screen and (max-width: 768px) {
  #contact .step {
    width: 100%!important;
    margin: 20px auto 0;
  }
}

#contact .step img {
  width: 100%;
}

#contact h2 {
  font-size: 34px;
  margin: 50px auto 60px!important;
  position: relative;
}

@media screen and (max-width: 768px) {
  #contact h2 {
    font-size: 19px;
    margin: 20px auto !important;
    position: relative;
  }
}

#contact h2::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #eb6f98;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  #contact h2::before {
    bottom: -5px;
    width: 40px;
  }
}

#contact .note span {
  color: #ec1006;
  font-size: 12px;
}

#contact .note02 {
  font-size: 16px;
}

#contact .note02 a {
  color: #1b6ac9;
  text-decoration: underline;
  display: block;
}

#contact .note02 a:hover {
  color: #1b6ac9;
  text-decoration: none;
  display: block;
}

@media screen and (max-width: 768px) {
  #contact .note {
    width: 94%;
    margin: auto;
  }
  #contact .note02 {
    margin-bottom: 3rem;
    font-size: 12px;
  }
}

#contact table {
  width: 860px;
  margin: 30px auto;
}

@media screen and (max-width: 768px) {
  #contact table {
    width: 94%;
    margin: 20px auto;
  }
  #contact table label {
    margin-bottom: 0;
  }
}

#contact table td select, #contact table td textarea, #contact table td input[type="email"] {
  width: 97%;
  padding: 10px;
  /*float: right;*/
}

#contact table td select{
  background-image: url(../img/contact/arrow.png);
  background-position: right 10px center;
  background-repeat: no-repeat;
  background-size: 13px 10px;	
}

@media screen and (max-width: 768px) {
  #contact table td select {
    width: 100%;
    float: none;
    margin: 5px auto 0;
  }
  #contact table td input[type="email"] {
    width: 100%;
    float: none;
    margin: 5px auto 0;
  }
  #contact table td textarea {
    width: 100%;
    height: 250px;
    float: none;
    margin: 5px auto 0;
  }
  #contact p.center {
    width: 94%;
    margin: auto auto 10px;
    text-align: left;
    font-size: 12px;
  }
}

#contact p.center a {
  color: #0851a9;
  text-decoration: underline;
  display: inline-block;
}

#contact p.center a:hover {
  text-decoration: none;
}

#contact table td .span-6 {
  width: 280px;
  padding: 10px;
  margin: 0 5px;
}

#contact table td .span-6-1 {
  width: 280px;
  padding: 10px;
  margin: 0 0 0 8px;
}

#contact table td .span-6-2 {
  width: 280px;
  padding: 10px;
  margin: 0 25px 0 15px;
}

#contact table td .span-6-2:last-child {
  width: 280px;
  padding: 10px;
  margin: 0 0 0 5px;
}

@media screen and (min-width: 769px) {
  #contact table td {
    white-space: nowrap;
  }
}

@media screen and (max-width: 768px) {
  #contact table td span {
    width: 3%;
    margin: 15px 3px 10px 0;
  }
  #contact table td .span-6 {
    width: 44%;
    padding: 10px;
    margin: 5px 2px;
    display: inline-block;
  }
  #contact table td .span-6-1 {
    width: 44%;
    padding: 10px;
    margin: 5px 2px;
  }
  #contact table td .span-6-1:last-child {
    width: 44%;
    padding: 10px;
    margin: 5px 2px;
    display: inline-block;
  }
  #contact table td .span-6-2 {
    width: 44%;
    padding: 10px;
    margin: 5px 2px;
    display: inline-block;
  }
  #contact table td .span-6-2:last-child {
    width: 44%;
    padding: 10px;
    margin: 5px 2px;
    display: inline-block;
  }
}

#contact table th {
  width: 220px;
  vertical-align: baseline;
  padding-top: 20px;
}

@media screen and (max-width: 768px) {
  #contact table th {
    padding-left: 0;
    padding-bottom: 0;
  }
  #contact table tr:first-child th {
    padding-left: 0;
    padding-bottom: 0;
    padding-top: 0;
  }
  #contact table td {
    padding: 0;
    display: flex;
	flex-wrap: wrap;
  }
  #contact span.error{
	width: 100%;
  }
  #contactp.er_msg{
	width: 100%;
	font-size: 93%;
  }
}

#contact table th.th_top {
  margin-top: -10px;
  display: block;
}

@media screen and (max-width: 768px) {
  #contact table th.th_top {
    margin-top: 10px;
  }
}

#contact table th span {
  color: #ec1006;
  font-size: 12px;
  margin-left: 10px;
}

#contact .btn_wrap {
  background-color: #ffffff;
  color: #1b6ac9;
  border: 3px solid #1b6ac9;
  display: block;
  padding: 15px 0 6px;
  position: relative;
  text-align: center;
  text-decoration: none!important;
  font-size: 22.4px;
  max-width: 500px;
  margin: 3rem auto 4rem;
  font-weight: bold;
  cursor: pointer;
}

#contact .btn_wrap::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #1b6ac9;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #contact .btn_wrap {
    padding: 7px 0;
    font-size: 16px;
    margin: 2rem auto 4rem;
  }
  #contact .btn_wrap input {
    margin-bottom: 0;
  }
  #contact .btn_wrap::after {
    border-width: 6px 0 6px 8px;
    right: 15px;
  }
}

#contact .btn_wrap:hover {
  background-color: #1b6ac9;
  color: #ffffff!important;
  border: 3px solid #1b6ac9;
}

#contact .btn_wrap:hover::after {
  border-color: transparent transparent transparent #ffffff;
}

#contact .btn_wrap label {
  margin-bottom: 0;
  cursor: pointer;
}

#contact .btn_box {
  width: 650px;
  margin: auto;
}

@media screen and (max-width: 768px) {
  #contact .btn_box {
    width: 98%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
  #contact .btn_wrap label {
    font-size: 16px;
    text-align: center;
  }
}

#contact .btn_wrap02 {
  background-color: #ffffff;
  color: #666666;
  border: 3px solid #666666;
  display: block;
  padding: 10px 0 6px;
  position: relative;
  text-align: center;
  text-decoration: none!important;
  font-size: 18px;
  width: 225px;
  margin: 5rem auto 0;
  font-weight: bold;
  cursor: pointer;
  float: left;
}

#contact .btn_wrap02::before {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 10px 8px 0;
  border-color: transparent #666666 transparent transparent;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

#contact .btn_wrap02:hover {
  background-color: #666666;
  color: #ffffff!important;
  border: 3px solid #666666;
}

#contact .btn_wrap02:hover::before {
  border-color: transparent #ffffff transparent transparent;
}

#contact .btn_wrap02 label {
  margin-bottom: 0;
  cursor: pointer;
}

#contact .btn_wrap02 input.send-btn {
  margin-bottom: 6px;
}

#contact .btn_wrap03 {
  background-color: #ffffff;
  color: #1b6ac9;
  border: 3px solid #1b6ac9;
  display: block;
  padding: 15px 0 6px;
  position: relative;
  text-align: center;
  text-decoration: none!important;
  font-size: 22.4px;
  width: 380px;
  margin: 3rem auto 4rem;
  font-weight: bold;
  cursor: pointer;
  float: right;
}

#contact .btn_wrap03::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #1b6ac9;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#contact .btn_wrap03:hover {
  background-color: #1b6ac9;
  color: #ffffff!important;
  border: 3px solid #1b6ac9;
}

#contact .btn_wrap03:hover::after {
  border-color: transparent transparent transparent #ffffff;
}

#contact .btn_wrap03 label {
  margin-bottom: 0;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  #contact .btn_wrap02, #contact .btn_wrap03 {
    float: none;
    text-align: center!important;
    border-width: 2px;
  }
  #contact .btn_wrap02 input, #contact .btn_wrap03 input {
    margin-bottom: 0;
  }
  #contact .btn_wrap02 {
    font-size: 13px!important;
    width: 60%!important;
    padding: 8px 0 4px;
    margin: 15px auto 30px!important;
  }
  #contact .btn_wrap03 {
    font-size: 16px!important;
    padding: 10px;
    margin-top: 20px!important;
  }
}

.triangle-button02 {
  background-color: #1b6ac9;
  display: block;
  padding: 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 270px;
  font-size: 18px;
  margin: auto;
  color: #ffffff!important;
  text-decoration: none!important;
}

@media screen and (max-width: 768px) {
  .triangle-button02 {
    padding: 6px 20px;
    width: 50%;
  }
}

.triangle-button02::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #ffffff;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  .triangle-button02::after {
    border-width: 5px 0 5px 7px;
    right: 10px;
  }
}

.triangle-button02:hover {
  background-color: #ffffff;
  color: #1b6ac9!important;
  border: 1px solid #1b6ac9!important;
}

.triangle-button02:hover::after {
  border-color: transparent transparent transparent #1b6ac9!important;
}


/*bnr
-------------------------------------*/

#bnr {
  margin: 2.5rem auto;
  padding-bottom: 5rem;
}

#bnr .span-4:hover {
  opacity: 0.6;
}

@media screen and (max-width: 768px) {
  #bnr {
    width: 96%;
    margin: 0 auto;
    padding: 2.5rem 0;
  }
  #bnr .row {
    flex-direction: inherit;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #bnr .span-4 {
    max-width: inherit;
    flex: 0 0 48%;
    margin-bottom: 15px;
  }
}

.triangle-button {
  background-color: #ffffff;
  color: #1b6ac9;
  border: 3px solid #1b6ac9;
  display: block;
  padding: 15px 80px;
  position: relative;
  text-align: center;
  text-decoration: none!important;
  width: 100%;
  font-size: 28px;
  max-width: 643px;
  margin: auto auto 8rem;
  font-weight: bold;
}

.triangle-button::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #1b6ac9;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

.triangle-button:hover {
  background-color: #1b6ac9;
  color: #ffffff!important;
  border: 3px solid #1b6ac9;
}

.triangle-button:hover::after {
  border-color: transparent transparent transparent #ffffff;
}


/*フッター
-------------------------------------*/

footer {
  margin: auto;
  background-color: #1b6ac9;
  padding: 5rem 0;
  color: #ffffff;
  display: flex;
  justify-content: space-around;
  position: relative;
}

footer .container .row {
  min-width: 1000px;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  footer {
    padding: 2.5rem 0;
  }
  footer .container {
    width: 80%;
	padding-bottom: 3rem;
  }
  footer .container .row {
    width: 100%;
    min-width: inherit;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: inherit;
  }
  footer div.sns_ico ul {
    position: absolute;
    right: 0;
    top: 20px;
  }
}

footer div.sns_ico ul {
  display: inline-flex;
  gap: 10px;
}

footer div:last-child ul li img {
  width: 30px;
}

footer .container .row div:first-child {
  border-right: 1px solid #ffffff;
  padding-right: 50px;
}

@media screen and (max-width: 768px) {
  footer .container .row div:first-child {
    border-right: none;
    border-bottom: 1px solid #ffffff;
    padding-right: 0;
    padding-bottom: 15px;
    margin-bottom: 15px;
    width: 100%;
  }
  footer .container .row .sp-only {
    width: 48%;
  }
}

footer a {
  color: #ffffff;
}

footer ul li {
  list-style: none;
  text-align: left;
}

footer h3 {
  font-size: 14px;
  font-weight: 300;
}

footer .logo {
  width: 210px;
}

@media screen and (max-width: 768px) {
  footer .logo {
    width: 60%;
  }
}

footer .ftr_button {
  background-color: #ffffff;
  color: #1b6ac9;
  display: block;
  padding: 8px 0;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 100%;
  font-size: 14px;
  max-width: 210px;
  margin: 20px auto;
  font-weight: bold;
  border: 2px solid #1b6ac9;
}

footer .ftr_button::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #1b6ac9;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

footer .ftr_button:hover {
  background-color: #1b6ac9;
  color: #ffffff;
  border: 2px solid #ffffff;
}

footer .ftr_button:hover::after {
  border-color: transparent transparent transparent #ffffff;
}


/*SPナビ下部固定
-------------------------------------*/

@media screen and (max-width: 768px) {
  .triangle-button {
    padding: 7px 5px;
    width: 100%;
    font-size: 16px;
    max-width: inherit;
    margin: auto;
    font-weight: bold;
    border: 2px solid #1b6ac9;
  }
}

.fixed_btn {
  width: 100%;
  position: fixed;
  bottom: 0;
  right: 0;
  padding: 5px;
  background: #0851a9;
  border-top: 1px solid #ffffff;
}


/*copyright
-------------------------------------*/

.copyright {
  width: 100%;
  padding: 0.5rem;
  background-color: #0851a9;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.copyright p {
  width: 100%;
  max-width: 1000px;
  text-align: right;
  margin: auto;
}

@media screen and (max-width: 768px) {
  .copyright {
    font-size: 10px;
    margin-bottom: 2.3rem;
  }
  .copyright p {
    width: 100%;
    text-align: center;
  }
}



/*ryo-takagi
-------------------------------------*/

#takagi {
  width: 100%;
  margin: auto;
  border-bottom: 1px solid #fff;
  padding: 0;
}

.pcW-only {
  display: none!important;
}

@media screen and (min-width: 1598px) {
  .pcW-only {
    display: block!important;
  }
}

#takagi .mv {
  width: 100%;
  margin: auto;
  background: #363636 url("../img/ryo-takagi/mv.jpg") no-repeat center top;
  height: 0;
  background-size: contain;
  padding-top: 40%;
  position: relative;
}

#takagi .mv02 {
  width: 100%;
  margin: 0 auto 70px;
  background: #363636 url("../img/ryo-takagi/mv02.jpg") no-repeat center top;
  height: 0;
  background-size: contain;
  padding-top: 40%;
  position: relative;
}

@media screen and (min-width: 1600px) {
  #takagi .mv, #takagi .mv02 {
    width: 100%;
    background-image: none;
    background-color: #363636;
    padding-top: 0;
    height: 650px;
  }
  #takagi .mv img.pcW-only, #takagi .mv02 img.pcW-only {
    width: 100%;
    max-width: 1600px;
    margin: auto;
    height: 650px;
  }
}

@media screen and (max-width: 768px) {
  #takagi .mv, #takagi .mv02 {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height: auto
  }
}

#takagi .mv div {
  max-width: 1000px;
  margin: auto;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 20%;
}

@media screen and (max-width: 1300px) {
  #takagi .mv div {
    left: 17%;
  }
}

@media screen and (max-width: 1100px) {
  #takagi .mv div {
    left: 17%;
  }
}

@media screen and (max-width: 1000px) {
  #takagi .mv div {
    width: 65%;
    left: 15%;
  }
}

@media screen and (max-width: 800px) {
  #takagi .mv div {
    width: 50%;
    margin: auto;
  }
}

@media screen and (max-width: 768px) {
  #takagi .mv div {
    left: 5%;
    top: 50%;
  }
}

#takagi .mv h1 {
  margin: 15px 0;
  width: 45px;
}

#takagi .mv h1 img {
  width: 100%;
}

#takagi .mv h2 {
  margin: 15px 0 50px!important;
  width: 490px;
}

@media screen and (max-width: 1200px) {
  #takagi .mv h2 {
    width: 40%;
    margin: 15px 0 30px!important;
  }
}

@media screen and (max-width: 900px) {
  #takagi .mv h2 {
    margin: 15px 0 !important;
  }
}

#takagi .mv h2 img {
  width: 100%;
}

#takagi .mv div ul.about_nav {
  width: 80px;
  position: relative;
}

#takagi .mv div ul.about_nav li {
  list-style: none;
}

#takagi .mv div ul.about_nav li a {
  color: #ffffff;
  font-size: 13px;
  display: block
}

#takagi .mv div ul.about_nav li a:hover {
  color: #1b6ac9;
}

#takagi .mv div ul.about_nav li a::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 5px 0 5px 7px;
  border-color: transparent transparent transparent #ffffff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  right: 0;
  margin-top: 7px;
}

#takagi .mv div ul.about_nav li:hover a::after {
  border-color: transparent transparent transparent #1b6ac9!important;
}

#takagi .mv02 div {
  max-width: 1000px;
  margin: auto;
}

#takagi .mv02 div .text {
  width: 225px;
  margin: auto;
  display: inline-block;
  position: absolute;
  top: 15%;
  right: 17%;
  color: #fff;
}

#takagi .mv02 div .text h2 img {
  width: 100%;
  margin-bottom: 25px;
}

#takagi #sec02 h3 {
  width: 250px;
  margin-bottom: 30px;
}

@media screen and (max-width: 768px) {
  #takagi #sec02 h3 {
    width: 48%;
    margin-bottom: 15px;
  }
}

#takagi #sec02 h3 img {
  width: 100%;
}

#takagi #sec02 p {
  font-size: 16px;
}

#takagi #sec02 .container {
  margin-bottom: 50px;
}

#takagi #sec02 .container:last-child {
  margin-bottom: 150px;
}

#takagi .video video {
  width: 100%;
  margin-bottom: 10px;
}

@media screen and (max-width: 768px) {
  #takagi #sec02 p {
    width: 92%;
    margin: 0 auto 20px;
    font-size: 12px;
  }
  #takagi #sec02 .col img {
    width: 70%;
    margin: auto;
  }
  #takagi #sec02 .container {
    margin: 0 auto 15px;
  }
  #takagi #sec02 .container:last-child {
    width: 90%;
    margin: 0 auto 15px;
  }
  #takagi #sec02 .container:last-child p {
    width: 100%;
    margin-bottom: 25px;
  }
  #takagi .video video {
    margin: 20px auto 0;
  }
}

#takagi #sec03 {
  width: 100%;
  background: #363636;
  padding: 50px 0;
  margin-top: -100px;
}

#takagi #sec03 div.row .col.span-12 {
  max-width: 1000px;
  margin: auto;
}

#takagi #sec03 div.slide_box {
  max-width: 1000px;
  margin: 0 auto;
  background: #000;
}

@media screen and (max-width: 768px) {
  #takagi #sec03 {
    padding: 15px 0 35px;
  }
  #takagi #sec03 div.row .col.span-12 {
    width: 100%;
    background: #000;
  }
  #takagi #sec03 div.row .col img {
    width: 100%;
  }
  #takagi #sec03 div.slide_box {
    width: 95%;
  }
}

#takagi #sec03 .slider-list_sec {
  width: 94%;
  margin: 0 auto;
}

#takagi #sec03 h3 {
  max-width: 240px;
  margin: 20px 0;
}

@media screen and (max-width: 768px) {
  #takagi #sec03 {
    margin-top: 0px;
  }
  #takagi #sec03 h3 {
    width: 28%;
    margin: 20px 20px 25px;
  }
}

#takagi #sec03 h3 img {
  width: 100%;
}

#takagi #sec03 ul {
  padding: 0 2.5px;
  margin: 0 auto;
}

#takagi #sec03 ul li {
  padding: 0 2.5px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  #takagi #sec03 ul li {
    padding: 0 1.5px;
    margin: 0 auto;
  }
}

#takagi #sec03 .slick-arrow:before {
  content: ""!important;
  width: 100%!important;
  height: 100%!important;
  position: absolute;
  top: 0;
  left: 0;
}

#takagi #sec03 .slick-next:before {
  background: url("../img/ryo-takagi/arrow_r.png") no-repeat!important;
  background-size: contain!important;
  top: 47%;
}

#takagi #sec03 .slick-prev:before {
  background: url("../img/ryo-takagi/arrow_l.png") no-repeat!important;
  background-size: contain!important;
  top: 47%;
}

#takagi #sec03 .slick-prev {
  left: -22px;
  height: 100%;
}

#takagi #sec03 .slick-next {
  right: -25px;
  height: 100%;
}

@media screen and (max-width: 768px) {
  #takagi #sec03 .slick-arrow:before {
    width: 50%!important;
    left: 5px;
  }
  #takagi #sec03 .slick-next:before {
    top: 45%;
  }
  #takagi #sec03 .slick-prev:before {
    top: 45%;
  }
  #takagi #sec03 .slick-prev {
    left: -18px;
  }
  #takagi #sec03 .slick-next {
    left: 100%;
  }
}

#takagi #sec04 {
  width: 100%;
  background: #212121;
  padding: 0;
  color: #ffffff;
}

#takagi #sec04 div {
  max-width: 1000px;
  margin: auto;
}

#takagi #sec04 h3 {
  max-width: 415px;
  margin: 20px 0 10px;
  text-align: left;
  font-size: 24px;
	  color: #fff;
}

@media screen and (max-width: 768px) {
  #takagi #sec04 div {
    width: 100%;
    margin-right: 0;
  }
  #takagi #sec04 h3 {
    width: 95%;
    margin: 20px 0 5px 10px;
    font-size: 13px;
	  color: #fff;
  }
}

#takagi #sec04 h3 img {
  width: 100%;
}

#takagi #sec04 p {
  color: #ffffff;
  display: block;
  position: relative;
  width: 90%;
  font-size: 14px;
  margin: 20px 0;
}

#takagi #sec04 p::after {
  content: '';
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 14px;
  border-color: transparent transparent transparent #ffffff;
  display: inline-block;
  width: 0;
  height: 0;
  position: absolute;
  top: 50%;
  right: -25px;
  transform: translateY(-50%);
}

@media screen and (max-width: 768px) {
  #takagi #sec04 p {
    width: 90%;
    margin: 0 auto 20px;
    font-size: 12px;
  }
  #takagi #sec04 p::after {
    border-width: 5px 0 5px 7px;
    right: -15px;
  }
  #takagi #sec04 .span-6:last-child img {
    margin-bottom: 0;
  }
}

#ryo-takagi-spNavi .header_c {
  background: #1b6ac9;
}

#ryo-takagi-spNavi .header_c .Toggle span {
  border-bottom: solid 2px #fff;
}

@media screen and (max-width: 768px) {
  #ryo-takagi-spNavi .header_c .menu ul.main_menus {
    padding-top: 5rem;
  }
  #ryo-takagi-spNavi .header_c .logo {
    width: 9%;
    margin: 1rem;
  }
  #takagi .mv02 {
    position: inherit;
  }
  #takagi .mv02 div {}
  #takagi .mv02 div .text {
    width: 98%;
    margin: auto;
    display: inline-block;
    position: inherit;
    top: 0;
    right: 0;
    color: #fff;
    display: flex;
    flex-wrap: nowrap;
    padding: 30px 20px;
    gap: 20px;
  }
  #takagi .mv02 div .text p {
    margin: -5px auto 0;
  }
}

/*terms
-------------------------------------*/
#terms {
  max-width: 1000px;
  margin: auto auto 3rem;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #terms {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
	font-size: 12px;
  }
}

#terms h2 {
  font-size: 18px;
  font-weight: 400;
}

#terms h3 {
  font-size: 34px;
  margin: 50px auto 60px!important;
  position: relative;
}

@media screen and (max-width: 768px) {
  #terms h3 {
    font-size: 19px;
    margin: 40px auto 20px!important;
    position: relative;
  }
}

#terms h3::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #eb6f98;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  #terms h3::before {
    bottom: -5px;
    width: 40px;
  }
}

#terms .note span {
  font-size: 18px;
}

#terms #sec02 .note{
  margin-bottom: 3rem;
}

@media screen and (max-width: 768px) {
  #terms .note {
    width: 94%;
    margin: auto;
  }
  #terms .note span {
    font-size: 13px;
  }
  #terms ul.local_nav li {
    display: block;
    width: 100%;
    text-align: center;
    border-top: 1px solid #ccc;
    position: relative;
    padding-top: 10px;
    line-height: 25px;
  }
  #terms ul.local_nav li::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 2%;
    width: 0;
    height: 0;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top: 8px solid #000;
    border-bottom-width: 0;
  }
  #terms ul.local_nav li:last-child {
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
  }
  #terms ul.local_nav li a {
    display: block;
    width: 100%;
    height: 100%;
  }
}

.mainimg_ontext_terms {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

.mainimg_ontext_terms img {
  width: 100%;
}

.mainimg_ontext_terms p {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-weight: bold;
  text-shadow: 1px 1px 10px black;
  font-size: 38px;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  .mainimg_ontext_terms p {
    top: 45%;
    font-size: 20px;
	width: 100%;
	text-align: center;
  }
  .mainimg_ontext_terms img {
    height: 75px;
  }
}

/*blog_detail
-------------------------------------*/
#blog_detail {
  max-width: 1000px;
  margin: auto auto 3rem;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  #blog_detail {
    width: 96%;
    margin: 2.5rem auto 0;
    padding: 0;
	font-size: 12px;
  }
}

#blog_detail h2 {
  font-size: 34px;
  margin: 50px auto 60px!important;
  position: relative;
}

@media screen and (max-width: 768px) {
  #blog_detail h2 {
    font-size: 19px;
    margin: 40px auto 20px!important;
    position: relative;
  }
}

#blog_detail h2::before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 3px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #eb6f98;
  border-radius: 2px;
}

@media screen and (max-width: 768px) {
  #blog_detail h2::before {
    bottom: -5px;
    width: 40px;
  }
}

#blog_detail p {
	padding-bottom: 2rem;	
  text-align: left;
}

/*追加調整
-------------------------------------*/
#lesson .span-4 div h3 {
  line-height: 115%;
}

#lesson .span-4 div:first-child {
  padding: 10px 5px 0;
}

#enjoy .span-4 h3{
  line-height: 115%;
  display: block;
  width: 100%;
}

@media screen and (max-width: 390px) {
  .slider-list-item.slick-slide img {
    max-width: 400px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 600px;
    width: calc((100vw - 390px) / 2);
  }
}

@media screen and (max-width: 375px) {
  .slider-list-item.slick-slide img {
    max-width: 375px;
  }
  .slider-filter-right, .slider-filter-left {
    height: 600px;
    width: calc((100vw - 375px) / 2);
  }
}

@media screen and (max-width: 768px) {
  .header_c .Toggle.active {
    top: -10px;
  }
  .header_c .menu ul.icons li a {
    display: inline-flex;
    line-height: 370%;
  }
  .header_c .menu ul.icons li img {
    width: 15%;
  }
  #news .container div ul li {
    display: inline-flex;
    margin-bottom: 0;
	width: 100%;
  }
  #news .container div ul li span {
    margin-right: 10px;
  }
  #news .container div ul li a, #news .container div ul li span {
    font-size: 12px;
  }
  #pickup .span-6 {
    margin-bottom: 20px;
  }
  #pickup .span-6 div:first-child {
    width: 60%;
  }
  #pickup .span-6 div:last-child {
    width: 40%;
  }
  #pickup .span-6 div:last-child img:first-child {
    object-fit: cover;
    width: 100%;
	float: right;
  }
  #lesson .span-4 div:first-child {
    padding: 0;
  }
  #lesson .span-4 div h3 {
    line-height: 120%;
  }
  #about {
    padding: 3rem 0 3.5rem;
  }
  #about .span-6 div {
    padding: 0 30px;
  }
  #about .span-6 {
    margin-bottom: 20px;
  }
  #about .span-6:last-child {
    margin-bottom: 0;
  }
  #enjoy .col img {
    width: 100%;
  }
  #bnr {
    padding: 3rem 0 1.5rem;
  }
  #bnr .col img {
    width: 100%;
  }
  #blog .row {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 3rem;
  }

  #blog .span-4 {
    width: 46%;
    margin-bottom: 10px;
  }

  #blog .span-4 img {
    margin-bottom: 5px;
  }

  #blog .span-4 p {
    margin-bottom: 0;
    font-size: 12px;
  }

  #blog .span-4 h2 {
    margin-bottom: 0!important;
    font-size: 12px;
  }

  #blog .span-4 .tag {
    font-size: 12px;
    z-index: 1;
  }
}

/*ページトップへ戻るボタン
-------------------------------------*/
@media screen and (min-width: 769px) {
#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  display: block;
  opacity: 1!important;
}

#pagetop a {
  display: block;
  background: #1B6AC9;
  color: #fff;
  width: 45px;
  padding: 7px 0 0 ;
  text-align: center;
  border-radius: 100%;
  height: 45px;
  font-size: 16px;
}

#pagetop a:hover {
  opacity: 0.7;
}
}	
	
	
	