@charset "utf-8";
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@font-face {
  font-family: 'A1Gothic';
  src: url('../font/AP-OTF-A1GothicStd-Light.otf') format('truetype');
  font-style: normal;
  font-weight: 300;
}

@font-face {
  font-family: 'A1Gothic';
  src: url('../font/AP-OTF-A1GothicStd-Regular.otf') format('truetype');
  font-style: normal;
  font-weight: 400;
}

@font-face {
  font-family: 'A1Gothic';
  src: url('../font/AP-OTF-A1GothicStd-Medium.otf') format('truetype');
  font-style: normal;
  font-weight: 500;
}

@font-face {
  font-family: 'A1Gothic';
  src: url('../font/AP-OTF-A1GothicStd-Bold.otf') format('truetype');
  font-style: normal;
  font-weight: 600;
}

body {
  font-family: 'Inter', 'A1Gothic', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6em;
  word-wrap: break-word;
  color: #333333;
}

.num {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

a {
  color: #3f3f3f;
}

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

/* contents
-------------------------------------------------------------------*/
#breadcrumb {
  padding: 5px 0;
  background: #f4f4f4;
}

#breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
  font-size: 13px;
}

#breadcrumb ul li {
  line-height: 1.6em;
}

#breadcrumb ul li:not(:first-child) {
  padding: 0 0 0 20px;
  position: relative;
}

#breadcrumb ul li:not(:first-child):after {
  content: '>';
  position: absolute;
  left: 8px;
  top: 0;
}

.r_btn.on,
.topbtn.on {
  opacity: 1;
  z-index: 99;
}

.page-id-60 .r_btn {
  display: none;
}

.r_btn {
  position: fixed;
  right: -2px;
  top: 170px;
  transition: all 0.3s;
  opacity: 1;
  display: block;
  z-index: 999;
}

.r_btn li {
  margin: 0 0 8px 0;
  position: relative;
}

.r_btn li:first-child:after {
  content: '';
  width: 48px;
  height: 47px;
  background: url(../img/common/r_btn_ico.png) no-repeat center top;
  position: absolute;
  top: -46px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.r_btn li a {
  background: #333333;
  color: #fff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 16px 0 0 16px;
  padding: 30px 22px;
  font-size: 17px;
  font-weight: 500;
  writing-mode: vertical-rl;
  letter-spacing: 0.1em;
}

.r_btn li:first-child a {
  background: #ea5716;
  color: #f5ff00;
}

.r_btn li a:hover {
  background: #f4f4f4;
  color: #3f3f3f;
}

.r_btn li:first-child a:hover {
  color: #ea5716;
}

.topbtn {
  position: fixed;
  right: 40px;
  bottom: 60px;
  transition: all 0.3s;
  z-index: -1;
  opacity: 0;
  display: block;
}

.r_btn.on.off {
  opacity: 1;
}

.wrap {
  min-width: 1024px;
  overflow: hidden;
  position: relative;
}

.wd {
  max-width: 980px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.wd02 {
  max-width: 1120px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

.contents {
  clear: both;
}

.scale {
  width: 100%;
  height: auto;
}

.sp {
  display: none !important;
}

.left {
  float: left;
}

.right {
  float: right;
}

img {
  max-width: 100%;
  height: auto;
}

.youtube .inner {
  padding-top: 56.25%;
  position: relative;
  height: 0;
  overflow: hidden;
}

.youtube .inner iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.coverimg {
  overflow: hidden;
  position: relative;
}

.coverimg:before {
  content: '';
  display: block;
  padding-top: 100%;
}

.coverimg img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  object-fit: cover;
  transition: 1s all;
}

@media screen and (max-width: 800px) {
  #breadcrumb ul {
    padding: 0 20px;
    font-size: 10px;
  }

  .wrap {
    padding: 60px 0 0 0;
  }

  .r_btn {
    right: 0;
    top: auto;
    bottom: 0;
    display: flex;
    width: 100%;
  }

  .r_btn li {
    margin: 0;
    width: 60%;
  }

  .r_btn li:nth-child(2) {
    margin: 0;
    width: 40%;
  }

  .r_btn li a {
    border-radius: 16px 16px 0 0;
    padding: 0;
    font-size: clamp(14px, 4vw, 18px);
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    writing-mode: inherit;
    letter-spacing: 0;
  }

  .r_btn {
    opacity: 0;
    z-index: -1;
  }

  .r_btn.on.off {
    opacity: 0;
    z-index: -1;
  }

  .topbtn {
    right: 20px;
    bottom: 100px;
    width: 50px;
  }

  .wrap {
    min-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
  }

  .spleft {
    float: left;
  }

  .spright {
    float: right;
  }

  .spscale {
    width: 100%;
    height: auto;
  }

  .contents {
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
  }

  .wd {
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }

  .spscale {
    width: 100%;
    height: auto;
  }

  img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .spleft {
    float: left;
  }

  .spright {
    float: right;
  }

  input {
    font-size: 16px;
  }
}

/* header
-------------------------------------------------------------------*/
.gnav .has-sub > span.tit,
.gnav ul.nav02 li a {
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  width: 120px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  border-radius: 0px 0px 16px 16px;
  background: #61a81d;
}

.gnav .has-sub > span.tit {
  display: block;
  transition: all 0.3s;
}

.gnav .sub {
  display: none;
  position: fixed;
  top: -30px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  width: 980px;
}

.home .gnav .sub {
  top: -30px;
}

.gnav .course_box {
  border-radius: 16px;
  background: #d0d200;
  border: 4px solid #edf5df;
  padding: 30px;
  padding-top: 25px;
}

.gnav .course_box ul {
  border-radius: 0;
  background: none;
  padding: 0;
}

.gnav .course_box ul li dl dt {
  font-size: 16px;
}

.gnav .course_box .tit {
  position: relative;
  font-size: 20px;
  width: fit-content;
  height: 53px;
  line-height: 53px;
  border-radius: 5px;
  border-radius: 5px;
  padding: 0 23px;
}

.gnav .course_box .tit::before,
.gnav .course_box .tit::after {
  content: '';
  position: absolute;
  bottom: 0;
  background: center/contain no-repeat;
}

.gnav .course_box .tit::before {
  left: -53px;
  width: 60px;
  height: 60px;
  background-image: url(../img/common/menu_ico04.png);
}

.gnav .course_box .tit::after {
  right: -54px;
  width: 74px;
  height: 61px;
  background-image: url(../img/common/menu_ico05.png);
}

header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  margin: 0 auto;
}

header .logo {
  position: absolute;
  left: -10px;
  top: -10px;
}

header .logo .topbnr,
.home header .logo .kasobnr,
.home .clone_gnav .logo .topbnr {
  display: none;
}

.home header .logo .topbnr,
.home .clone_gnav .logo .kasobnr {
  display: block;
}

.gnav {
  /* position: absolute;
  right: 30px;
  top: 0;
  display: flex; */
  width: min(1366px, 100%);
  margin: auto;
  display: flex;
  justify-content: flex-end;
  padding: 0 40px;
}

.gnav ul {
  display: flex;
  justify-content: center;
}

.gnav ul.nav > li {
  height: 60px;
}

.gnav ul.nav > li:not(:last-child) {
  padding: 0 1px 0 0;
}

.gnav ul.nav > li > a {
  background: #333333;
  color: #fff;
  padding: 5px 10px;
  display: block;
  position: relative;
  z-index: 999;
}

.gnav .nav02 {
  display: flex;
}

.gnav ul.nav02 li {
  padding: 0 0 0 2px;
}

.clone_gnav {
  position: fixed;
  min-width: 1024px;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 99;
  width: 100%;
  transition: 0.3s;
  transform: translateY(-250px);
  box-sizing: border-box;
}

.home .clone_gnav .gnav ul.nav {
  padding: 0;
}

.home .clone_gnav .gnav .sub {
  top: -30px;
}

.is-show,
.clone_gnav:hover {
  transform: translateY(0);
  top: 0;
}

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

  header {
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
  }

  header .logo {
    position: static;
    z-index: 999;
    padding: 6px 10px;
    height: 60px;
    box-sizing: border-box;
  }

  .spgnav {
    height: 60px;
  }

  .triger_wrap.movmobb1 {
    position: absolute;
    right: 0;
    top: 0;
    height: 60px;
    width: 60px;
  }

  .topmenu {
    display: block;
    height: 60px;
    width: 60px;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 0 0 0 10px;
  }

  .top-trigger,
  .top-trigger span {
    display: block;
    transition: all 0.4s;
    box-sizing: border-box;
    z-index: 99999;
  }
  .top-trigger {
    position: relative;
    width: 100%;
    height: 100%;
    cursor: pointer;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    background: #61a81d;
  }
  .top-trigger span {
    position: absolute;
    left: 50%;
    width: 32px;
    margin-left: -16px;
    height: 2px;
    background-color: #fff;
    z-index: 99999;
    top: 50%;
  }

  .mobilenav {
    top: 60px;
    bottom: 0;
    right: 0;
    z-index: 998;
    position: fixed;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 20px;
    overflow: auto;
    background: #61a81d;
    display: none;
    text-align: center;
  }

  .menubox {
    color: #fff;
    padding: 0 0 80px 0;
    display: inline-block;
    text-align: left;
  }

  .menubox .nav {
    padding: 20px 0 0 0;
  }

  .menubox .nav > li {
    font-size: 20px;
    margin: 0 0 20px 15px;
    line-height: 1.4em;
    font-weight: 500;
  }

  .menubox .nav > li a {
    color: #fff;
  }

  .menubox .nav > li ul {
    display: none;
    padding: 10px 0 0 0;
  }

  .menubox .nav > li .minnav {
    position: relative;
    display: inline-block;
  }

  .menubox .nav > li .minnav:before {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -2px;
    right: -36px;
    height: 2px;
    width: 12px;
    background: #61a81d;
    transform: rotate(90deg);
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
  .menubox .nav > li .minnav:after {
    position: absolute;
    content: '';
    top: 50%;
    margin-top: -2px;
    right: -36px;
    height: 2px;
    width: 12px;
    background: #61a81d;
    transition: all 0.3s ease-in-out;
    z-index: 2;
  }
  .menubox .nav > li .minnav.on:before {
    transform: rotate(180deg);
  }
  .menubox .nav > li .minnav.on:after {
    opacity: 0;
  }
  .menubox .nav > li .minnav > span {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #fff;
    display: inline-block;
    position: absolute;
    right: -42px;
    top: 1px;
  }

  .menubox .nav > li ul li {
    position: relative;
  }

  .menubox .nav > li ul li:not(:last-child) {
    margin: 0 0 20px 0;
  }

  .menubox .nav > li > ul .ico {
    max-width: 106px;
  }

  .menubox .nav > li > ul dl {
    position: absolute;
    left: 53px;
    top: 30px;
    margin-right: -20px;
    width: calc(100% - 53px);
  }

  .menubox .nav > li > ul dl dt {
    font-size: 20px;
    width: 160px;
    border-radius: 22px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    background: #a9c300;
    margin: 0 0 0 40px;
    color: #f5ff00;
  }

  .menubox .nav > li > ul li:nth-child(2) dl dt {
    background: #ea5716;
  }

  .menubox .nav > li > ul li:nth-child(3) dl dt {
    background: #fc878b;
  }

  .menubox .nav > li > ul dl dd {
    font-size: clamp(10px, 3.5vw, 17px);
    width: 100%;
    text-align: center;
    line-height: 40px;
    height: 40px;
    background: #61a81d;
    border: 1px solid #fff;
    margin: 5px 0 0 0;
    padding: 0 15px;
  }

  .menubox .nav > li > ul li:nth-child(2) dl dd {
    background: #61a81d;
  }

  .menubox .nav > li > ul dl dd span {
    color: #f5ff00;
  }

  .menubox .cms {
    display: flex;
    text-align: center;
    flex-wrap: wrap;
  }

  .menubox .cms li {
    margin: 0 10px 10px 0;
  }

  .menubox .cms li a {
    display: block;
    width: 160px;
    border-radius: 16px;
    background: linear-gradient(to right, #ff847b 0%, #db3e33 100%);
    font-size: clamp(16px, 4vw, 20px);
    color: #fff;
    height: 50px;
    line-height: 50px;
    font-weight: 500;
  }

  .menubox .btn {
    max-width: 400px;
  }

  .menubox .btn + .btn {
    margin-top: 10px;
  }

  .top-trigger span:nth-of-type(1) {
    margin-top: -8px;
    width: 20px;
  }

  .top-trigger span:nth-of-type(2) {
    margin-top: 0;
  }

  .top-trigger span:nth-of-type(3) {
    margin-top: 8px;
    width: 20px;
    margin-left: -4px;
  }

  .movmobb1 .active span:nth-of-type(1) {
    margin-top: -2px;
    -webkit-transform: translateY(1px) rotate(-45deg);
    transform: translateY(1px) rotate(-45deg);
    width: 32px;
  }
  .movmobb1 .active span:nth-of-type(2) {
    opacity: 0;
  }
  .movmobb1 .active span:nth-of-type(3) {
    -webkit-transform: translateY(-8px) rotate(45deg);
    transform: translateY(-8px) rotate(45deg);
    margin-top: 7px;
    margin-left: -16px;
    width: 32px;
  }

  .clone_gnav {
    display: none;
  }
}
/* footer
-------------------------------------------------------------------*/
footer {
  text-align: center;
}

footer > ul {
  padding: 55px 0 70px 0;
}

footer > ul > li {
  display: inline-block;
}

footer > ul > li:nth-child(2) {
  margin: 0 30px;
  position: relative;
  top: -15px;
}

footer .box {
  text-align: center;
  color: #fff;
  background: #61a81d;
  position: relative;
}

footer .box:after {
  content: '';
  position: absolute;
  text-align: center;
  top: -49px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: url(../img/common/f_bg.png) no-repeat center center;
  background-size: cover;
  width: 290px;
  height: 50px;
}

footer .box .btn {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  margin: 0 auto;
}

footer .box .btn a {
  font-size: 12px;
  color: #fff;
  position: relative;
  padding: 35px 0 0 0;
  z-index: 99;
  display: inline-block;
}

footer .box .btn a:after {
  content: '';
  width: 12px;
  height: 12px;
  display: block;
  border-top: solid 2px;
  border-right: solid 2px;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

footer .box_in {
  position: relative;
  height: 70px;
}

footer .box_in .copy {
  position: absolute;
  top: 25px;
  left: 0;
  font-size: 12px;
}

footer .box_in ul {
  display: flex;
  font-size: 12px;
  position: absolute;
  right: 0;
  top: 25px;
}

footer .box_in ul li {
  padding: 0 0 0 10px;
  height: 15px;
  line-height: 15px;
}

footer .box_in ul li:first-child {
  padding: 0 10px;
}

footer .box_in ul li a {
  color: #fff;
}

footer .box_in ul li:last-child {
  border-left: 1px solid #fff;
}
@media screen and (max-width: 800px) {
  footer > ul {
    padding: 55px 0 70px 0;
  }

  footer > ul > li {
    display: none;
    width: 160px;
  }

  footer > ul > li:nth-child(2) {
    margin: 0 atuo;
    top: 0;
    display: inline-block;
  }

  footer .box:after {
    top: -37px;
    width: 210px;
    height: 39px;
  }

  footer .box .btn {
    top: -40px;
  }

  footer .box_in {
    position: relative;
    height: auto;
  }

  footer .box_in .copy {
    position: static;
    padding: 20px 0;
    font-size: 10px;
  }

  footer .box_in ul {
    justify-content: center;
    padding: 40px 0 0 0;
    position: static;
  }
}
