@charset "UTF-8";
/* ===================================================================
CSS information
 file name  :  common.css
 style info :  サイト全体共通css
=================================================================== */
/* fontsize YUI
10px = 77% 11px = 85% 12px = 93% 13px = 100%
14px = 108% 15px = 116% 16px = 123.1% 17px = 131%
18px = 138.5% 19px = 146.5% 20px = 153.9% 21px = 161.6%
22px = 167% 23px = 174% 24px = 182% 25px = 189% 26px = 197% */
/*----------------------------------------------------------------------------------
		 								body、リンク色etc
------------------------------------------------------------------------------------*/
/* pc sp */
@media only screen and (min-width: 770px) {
  .pc {
    display: block; }

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

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

  .sp {
    display: block; } }
@media only screen and (min-width: 770px) {
  .pc-inline {
    display: inline; }

  .sp-inline {
    display: none !important; } }
@media only screen and (min-width: 770px) and (max-width: 1119px) {
  .pc-inline {
    display: inline; }

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

  .sp-inline {
    display: inline; } }
/* pc sp txt*/
@media only screen and (min-width: 770px) {
  .pcTxt {
    display: block; }

  .spTxt {
    display: inline; } }
@media only screen and (max-width: 769px) {
  .pcTxt {
    display: inline; }

  .spTxt {
    display: block; } }
/* style */
.fw-b {
  font-weight: bold; }

.ta-c {
  text-align: center !important; }

.ta-l {
  text-align: left; }

.ta-r {
  text-align: right; }

/* 基本リンク色 */
a {
  text-decoration: none;
  cursor: pointer;
  color: #424242;
  transition: all 0.5s ease; }

a:hover {
  opacity: 0.65;
  transition: all 0.5s ease; }

body {
  -webkit-font-smoothing: antialiased;
  color: #424242;
  font-family: source-han-sans-japanese, sans-serif;
  font-size: 16px;
  overflow: hidden; }

main {
  /* padding-top: 58px; */
  padding-top: 145px;
  position: relative; }
  @media only screen and (max-width: 769px) {
    main {
      padding-top: 0; } }

/*----------------------------------------------------------------------------------
		 								header
------------------------------------------------------------------------------------*/
#topHeader {
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 98;
    box-shadow: 0px 4px 7px rgba(40, 40, 40, 0.3);
    font-family: fot-tsukuardgothic-std, sans-serif;
    font-weight: bold;
}
@media only screen and (max-width: 769px) {
    #topHeader {
      height: auto;
      position: fixed;
    }
}

#header__inner {
    display: flex;
    justify-content: space-between;
}
@media only screen and (min-width: 770px) and (max-width: 1119px) {
    #header__inner {
        width: 96%;
    }
}
@media only screen and (max-width: 769px) {
    #header__inner {
        width: 100%;
        display: block;
        height: 55px;
    }
}

#header__inner .elem-l {
    display: flex;
    flex-direction: column;
    padding: 22px 0 17px 40px;
    gap: 17px 0;
}
#header__inner .elem-l .header__logo {
    border: none;
    margin: 0;
}
#header__inner .elem-l .header__logo a {
    align-items: center;
    display: flex;
    gap: 0 11px;
}
#header__inner .elem-l .header__logo a img {
    width: 89px;
}
#header__inner .elem-l .header__logo a .ttl-txt {
    display: block;
}
#header__inner .elem-l .header__logo a .ttl-txt span {
    display: block;
    line-height: 1.6;
    color: #034f99;
    font-size: 18px;
}
#header__inner .elem-l .header__logo a .ttl-sub {
    pointer-events: none;
    color: #4e342e;
    font-size: 14px;
    letter-spacing: .02em;
    line-height: 1;
}

.globalNavi {
    display: flex;
    box-sizing: border-box;
}
.globalNavi li {
    padding: 0 20px;
    border-right: 1px solid #999999;
}
.globalNavi li:first-child {
    border-left: 1px solid #999999;
}
.globalNavi li a {
    color: #4e342e;
    font-size: 14px;
    letter-spacing: .04em;
    line-height: 1;
    white-space: nowrap;
}


#header__inner .elem-r {
    display: flex;
}
#header__inner .elem-r .nav-lp {
    display: flex;
    flex-direction: column;
}
#header__inner .elem-r .nav-lp li {
    height: 50%;
    margin: 0;
}
#header__inner .elem-r .nav-lp li.item-tr {
    background-color: #f2b707;
}
#header__inner .elem-r .nav-lp li.item-lp {
    background-color: #bfd989;
}
#header__inner .elem-r .nav-lp li a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    padding-right: 23px;
    font-size: 17px;
    letter-spacing: .1em;
    line-height: 1;
    padding: 0 35px 0 20px;
    position: relative;
}
#header__inner .elem-r .nav-lp li a::after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 41%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
}
#header__inner .elem-r .nav-lp li.item-tr a::after {
    border-left: 9px solid #e89b00;
}
#header__inner .elem-r .nav-lp li.item-lp a::after {
    border-left: 9px solid #a0bc5c;
}
#header__inner .elem-r .globalNavi__contact {
    background-color: #f29d52;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px 0;
    padding: 0 25px;
}
#header__inner .elem-r .globalNavi__contact span {
    line-height: 1;
}
#header__inner .elem-r .globalNavi__contact .txt-contact {
    font-size: 16px;
    padding-right: 13px;
    position: relative;
    letter-spacing: .04em;
}
#header__inner .elem-r .globalNavi__contact .txt-contact::after {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 1px;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 9px solid #db782e;
}
#header__inner .elem-r .globalNavi__contact .txt-tel {
    font-size: 30px;
    background: transparent url(../images/common/icon_tel.svg) left center / 20px 21px no-repeat;
    padding-left: 27px;
}
#header__inner .elem-r .globalNavi__contact .txt-time {
    font-size: 16px;
    letter-spacing: .04em;
}


.spHeader--cta {
  display: none;
}

@media only screen and (max-width: 769px) {
  .spHeader--cta {
    display: flex;
    justify-content: center;
    padding: 0;
    margin: 0;

  }
  .spHeader--cta li {
    width: 50%;
    text-align: center;
    padding: 1em 0.5em;
  }
  .spHeader--cta li:first-child {
    background-color: #f2b707;
  }
  .spHeader--cta li:last-child {
    background-color: #bfd989;
  }
  .spHeader--cta li a {
    display: flex;
    height: 100%;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-size: 17px;
    letter-spacing: .1em;
    line-height: 1;
    position: relative;
  }
  .spHeader--cta li a:after {
    content: "";
    display: block;
    position: absolute;
    right: 20px;
    top: 41%;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
  }
  .spHeader--cta li:first-child a:after {
    border-left: 9px solid #e89b00;
  }
  .spHeader--cta li:last-child a:after {
    border-left: 9px solid #a0bc5c;
  }
}






@media only screen and (max-width: 769px) {
    #header__inner .elem-l {
        padding: 10px 0 10px 10px;
        gap: 10px 0;
    }
    #header__inner .elem-l .header__logo a {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 0 10px;
    }
    #header__inner .elem-l .header__logo a img {
        width: 60px;
    }
    #header__inner .elem-l .header__logo a .ttl-txt span {
        line-height: 1.3;
        font-size: 12px;
    }
    #header__inner .elem-l .header__logo a .ttl-sub {
        display: none;
    }

    .globalNavi {
        display: none;
    }
    .globalNavi li {
        padding: 0 20px;
        border-right: 1px solid #999999;
    }
    .globalNavi li:first-child {
        border-left: 1px solid #999999;
    }
    .globalNavi li a {
        color: #4e342e;
        font-size: 14px;
        letter-spacing: .04em;
        line-height: 1;
        white-space: nowrap;
    }


    #header__inner .elem-r {
        display: none;
    }


    #overlay .box-link .nav-lp {
        display: flex;
        width: 100%;
        font-family: fot-tsukuardgothic-std, sans-serif;
    }
    #overlay .box-link .nav-lp li {
        height: 50%;
        margin: 0;
        width: 50%;
    }
    #overlay .box-link .nav-lp li.item-tr {
        background-color: #f2b707;
    }
    #overlay .box-link .nav-lp li.item-lp {
        background-color: #bfd989;
    }
    #overlay .box-link .nav-lp li a {
        display: flex;
        height: 100%;
        justify-content: center;
        align-items: center;
        color: #ffffff;
        font-size: 17px;
        letter-spacing: 0;
        line-height: 1;
        padding: 20px 20px 20px 10px;
        position: relative;
    }
    #overlay .box-link .nav-lp li a::after {
        content: "";
        display: block;
        position: absolute;
        right: 10px;
        top: 41%;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
    }
    #overlay .box-link .nav-lp li.item-tr a::after {
        border-left: 9px solid #e89b00;
    }
    #overlay .box-link .nav-lp li.item-lp a::after {
        border-left: 9px solid #a0bc5c;
    }
    #overlay .box-link .globalNavi__contact {
        background-color: #f29d52;
        color: #ffffff;
        font-family: fot-tsukuardgothic-std, sans-serif;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px 0;
        padding: 20px 25px;
    }
    #overlay .box-link .globalNavi__contact span {
        font-family: fot-tsukuardgothic-std, sans-serif;
        line-height: 1;
    }
    #overlay .box-link .globalNavi__contact .txt-contact {
        font-size: 16px;
        padding-right: 13px;
        position: relative;
        letter-spacing: .04em;
    }
    #overlay .box-link .globalNavi__contact .txt-contact::after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 1px;
        border-top: 8px solid transparent;
        border-bottom: 8px solid transparent;
        border-left: 9px solid #db782e;
    }
    #overlay .box-link .globalNavi__contact .txt-tel {
        font-size: 30px;
        background: transparent url(../images/common/icon_tel.svg) left center / 20px 21px no-repeat;
        padding-left: 27px;
    }
    #overlay .box-link .globalNavi__contact .txt-time {
        font-size: 16px;
        letter-spacing: .04em;
    }



}




























































































































/*----------------------------------------------------------------------------------
		 								footer
------------------------------------------------------------------------------------*/
/* #footer {
  background-color: #F7F5E9;
  padding-top: 32px;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  color: #8D6E63; }

.footer__menu {
  display: flex;
  width: 904px;
  margin: 0 auto; }
  @media only screen and (min-width: 770px) and (max-width: 1119px) {
    .footer__menu {
      width: 95%; } }
  @media only screen and (max-width: 769px) {
    .footer__menu {
      display: block;
      width: 95%; } }

.footer__menu__box {
  margin-right: 57px; }
  @media only screen and (min-width: 770px) and (max-width: 1119px) {
    .footer__menu__box {
      margin-right: 5%; } }
  @media only screen and (max-width: 769px) {
    .footer__menu__box {
      margin-right: 0;
      display: flex;
      flex-wrap: wrap;
      border-top: solid 1px #8D6E63;
      padding: 10px 0 5px; } }
  .footer__menu__box:last-child {
    margin-right: 0; }
    @media only screen and (max-width: 769px) {
      .footer__menu__box:last-child {
        margin-bottom: 25px; } }

.footer__ttl {
  font-size: 16px;
  border-bottom: solid 1px #8D6E63;
  padding-bottom: 3px;
  margin-bottom: 10px;
  width: 212px; }
  @media only screen and (min-width: 770px) and (max-width: 1119px) {
    .footer__ttl {
      width: 105%; } }
  @media only screen and (max-width: 769px) {
    .footer__ttl {
      width: 48%;
      border-bottom: none;
      margin-bottom: 0;
      box-sizing: border-box;
      padding-left: 7px; } }
  @media only screen and (max-width: 339px) {
    .footer__ttl {
      font-size: 13px; } }
  .footer__ttl br {
    display: none; }
    @media only screen and (max-width: 769px) {
      .footer__ttl br {
        display: block; } }

.footer__list {
  margin-left: 30px; }
  @media only screen and (max-width: 769px) {
    .footer__list {
      margin-left: 0;
      width: 52%; } }
  .footer__list a {
    font-size: 15px;
    margin-bottom: 3px;
    color: #8D6E63;
    display: block;
    position: relative; }
    @media only screen and (max-width: 769px) {
      .footer__list a {
        margin-bottom: 5px; } }
    @media only screen and (max-width: 339px) {
      .footer__list a {
        font-size: 12px; } }
    .footer__list a:before {
      content: url(../images/common/footer-arrow.svg);
      position: absolute;
      left: -10px;
      top: -2px; }

.footer__list--about {
  margin-bottom: 16px; }
  @media only screen and (max-width: 769px) {
    .footer__list--about {
      margin-bottom: 0; } }

.footer__list__last {
  margin: 30px 0; }
  @media only screen and (max-width: 769px) {
    .footer__list__last {
      margin: 0; } }
  .footer__list__last a {
    font-size: 15px;
    color: #8D6E63;
    display: block;
    position: relative; }
    @media only screen and (max-width: 339px) {
      .footer__list__last a {
        font-size: 12px; } }
    .footer__list__last a:before {
      content: url(../images/common/footer-arrow.svg);
      position: absolute;
      left: -12px;
      top: -2px; }

.footer__contact {
  border: solid 1px #8D6E63;
  border-radius: 34px;
  width: 348px;
  height: 56px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #8D6E63;
  font-size: 16px;
  margin-bottom: 25px; }
  .footer__contact img {
    margin-right: 18px; }

.footer__sns {
  display: flex; }
  @media only screen and (max-width: 769px) {
    .footer__sns {
      width: 135px;
      margin: 0 auto; } }
  .footer__sns a {
    margin-right: 25px; }

.copyRight {
  font-size: 12px;
  color: #fff;
  text-align: center;
  background-color: #8D6E63;
  padding: 16px 0;
  margin-top: 40px; }
  @media only screen and (max-width: 769px) {
    .copyRight {
      padding: 16px 0 61px; } }
 */
.go-session {
  display: block;
  background: rgba(75, 167, 67, 0.8);
  padding-top: 32px;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  font-size: 17px;
  width: 155px;
  height: 105px;
  color: #fff;
  text-align: center;
  padding-top: 16px;
  box-sizing: border-box;
  border-radius: 20px 0 0 20px;
  position: fixed;
  bottom: 20px;
  right: 0;
  line-height: 1.5; }
  @media only screen and (max-width: 769px) {
    .go-session {
      width: 100%;
      height: 35px;
      border-radius: 0;
      font-size: 15px;
      padding-top: 8px;
      bottom: 0;
      right: 0; }
      .go-session br {
        display: none; } }
  .go-session:after {
    content: url(../images/common/fix-arrow.svg);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 14px;
    bottom: 23px; }
    @media only screen and (max-width: 769px) {
      .go-session:after {
        position: absolute;
        top: 10px;
        bottom: auto;
        left: auto;
        right: 18vw;
        margin: auto; } }
.go-training {
  display: block;
  background: rgba(255, 184, 23, 0.8);
  padding-top: 32px;
  color: #fff;
  font-family: fot-tsukuardgothic-std, sans-serif;
  font-weight: bold;
  font-size: 17px;
  width: 155px;
  height: 105px;
  color: #fff;
  text-align: center;
  padding-top: 16px;
  box-sizing: border-box;
  border-radius: 20px 0 0 20px;
  position: fixed;
  bottom: 145px;
  right: 0;
  line-height: 1.5; }
  @media only screen and (max-width: 769px) {
    .go-training {
      width: 100%;
      height: 35px;
      border-radius: 0;
      font-size: 15px;
      padding-top: 8px;
      bottom: 35px;
      right: 0; }
      .go-training br {
        display: none; } }
  .go-training:after {
    content: url(../images/common/fix-arrow.svg);
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 8px;
    height: 14px;
    bottom: 23px; }
    @media only screen and (max-width: 769px) {
      .go-training:after {
        position: absolute;
        top: 10px;
        bottom: auto;
        left: auto;
        right: 18vw;
        margin: auto; } }

@media only screen and (min-width: 770px) {
    .go-training,
    .go-session {
        display: none;
    }

}




/* re */
.grecaptcha-badge {
    display: none;
}
.page-template-page-contact .grecaptcha-badge {
    display: block;
    bottom: 257px !important;
}
@media only screen and (max-width: 769px) {
    .page-template-page-contact .grecaptcha-badge {
        bottom: 80px !important;
    }
}



/* post suggest */
.aside {
    position: relative;
    width: 300px;
    display: flex;
    flex-direction: column;
    padding-top: 40px;
}
.aside .ttl-as {
    display: flex;
    flex-direction: column;
    gap: 13px 0;
    margin: 0 0 30px;
}
.aside .ttl-as span {
    line-height: 1;
}
.aside .ttl-as .en {
    font-size: 23px;
    letter-spacing: .1em;
    color: #4ba743;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-style: normal;
}
.aside .ttl-as .ja {
    font-size: 13px;
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
    letter-spacing: .26em;
    color: #4e342e;
}
.aside .list-sugg {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 12px;
    margin: 0 0 30px;
}
.aside .item-sugg {
    width: calc(50% - 5px);
    width: calc(50% - 13px);
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 8px;
    overflow: hidden;
    background-color: #F7F5E9;
}
.aside .item-sugg a {
    height: 100%;
    display: flex;
    flex-direction: column;
}
.aside .item-sugg figure {
    margin: 0 auto 7px;
    overflow: hidden;
    padding-top: 63%;
    width: 100%;
    position: relative;
}
.aside .item-sugg figure img {
    height: 100%;
    object-fit: cover;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transition: .3s ease-out;
}
.aside .item-sugg a:hover .elem-txt {
    opacity: .6;
}
.aside .item-sugg a:hover figure img {
    transform: scale(1.1);
}
.aside .item-sugg .elem-txt {
    padding: 0 10px 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 6px 0;
    transition: .3s ease-out;
}
.aside .item-sugg .elem-txt .ttl-post {
    font-size: 11px;
    line-height: 1.42;
    color: #4e342e;
    margin: 0;
    font-family: "Kiwi Maru", serif;
    font-weight: 500;
    font-style: normal;
}
.aside .item-sugg .elem-txt .txt-date-cat time {
    font-size: 10px;
    color: #9E9E9E;
    letter-spacing: .1em;
    line-height: 1;
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 900;
    font-style: normal;
}

.aside .list-cat {
    display: flex;
    flex-direction: column;
    margin: 0 auto 30px;
}
.aside .list-cat .item-cat {
    border-bottom: 1px solid #808080;
}
.aside .list-cat .item-cat:first-child {
    border-top: 1px solid #808080;
}
.aside .list-cat .item-cat a {
    display: block;
    color: #4e342e;
    font-size: 11px;
    letter-spacing: .1em;
    line-height: 1;
    padding: 12px 40px 12px 13px;
    position: relative;
    transition: .3s ease-out;
}
.aside .list-cat .item-cat a::after {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-right: 1px solid #031432;
    border-bottom: 1px solid #031432;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}
.aside .list-cat .item-cat a:hover {
    opacity: .6;
}


.sidebar .box-bnr {
    position: sticky;
    top: 200px;
}





@media only screen and (max-width: 769px) {
    .sidebar .box-bnr {
        display: none;
    }

    .aside {
        display: none;
    }
}
