body {
  color: #323232;
  /* font-family: "メイリオ", "Meiryo", verdana, Helvetica, "ヒラギノ角ゴ Pro W3",
    "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif; */
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  font-weight: 500;
  font-size: 2rem;
  font-weight: bolder;
  line-height: 1.8;
  background: url(../img/bg_body.jpg);
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.1em;
}

a {
  color: #029a45;
  text-decoration: none;
  transition: all 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
}

.bold {
  font-weight: bolder;
}

@keyframes view-zoomin {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }

  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes view-slideup {
  0% {
    opacity: 0;
    transform: translate(0, 35px);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.animation {
  opacity: 0;
}

.slideup.on {
  opacity: 1;
  animation: view-slideup 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.zoomin.on {
  opacity: 1;
  animation: view-zoomin 0.65s cubic-bezier(0.2, 1, 0.2, 1);
}

.loader {
  align-items: center;
  background: #fff;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999;
}

.loader::after {
  animation: loader 0.5s linear infinite;
  border: 1px solid #029a45;
  border-radius: 50%;
  border-right: 1px solid rgba(22, 36, 70, 0.2);
  border-top: 1px solid rgba(22, 36, 70, 0.2);
  content: "";
  height: 70px;
  width: 70px;
}

@keyframes loader {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes hd-scrolled {
  0% {
    opacity: 0;
    transform: translate(0, -100%);
  }

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

.seo {
  /* background: rgba(22, 36, 70, 0.8); */
  background: #029a45cc;
  color: #fff;
  font-size: 1.8rem;
  text-align: center;
  padding: 2px 0;
}

@media all and (max-width: 800px) {
  .seo {
    display: none;
  }
}

#header {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1000;
  display: block;
}

#header .inner {
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 0 10px;
  box-sizing: border-box;
}

#header .inner #logo {
  width: 320px;
  margin-top: 10px;
  padding-left: 10px;
}

#header .inner #head-right {
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 10px;
}

@media all and (max-width: 800px) {
  #header .inner #head-right {
    display: none;
  }
}

#header .inner .head-tel {
  margin-right: 10px;
  background: rgba(255, 255, 255, 0.8);
  box-sizing: border-box;
  height: 50px;
  padding: 0 10px;
}

#header .inner .head-tel a {
  font-weight: bold;
  font-size: 3rem;
  padding: 7px 0;
  text-align: center;
  color: #ff8900;
}

#header .inner .head-tel a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f2a0";
  margin-right: 5px;
  font-weight: bold;
  color: #3a200c;
}

#header .inner .head-mail a {
  display: block;
  background: -moz-linear-gradient(-45deg, #3a200c 50%, #ff8900 50%);
  background: -webkit-linear-gradient(-45deg, #3a200c 50%, #ff8900 50%);
  background: linear-gradient(135deg, #3a200c 50%, #ff8900 50%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='$base_color', endColorstr='lighten($base_color, 10%)', GradientType=1);
  color: #ffffff;
  font-family: "FontAwesome";
  font-size: 2rem;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
}

#navi {
  padding: 10px 0 3px;
  width: 100%;
  background: url(../img/wood02.png);
  box-sizing: border-box;
}

#navi.scrolled {
  animation: hd-scrolled 0.65s cubic-bezier(0.2, 1, 0.2, 1);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 2000;
}

#navi ul {
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  width: 1200px;
  justify-content: space-between;
}

#navi ul li {
  position: relative;
  text-align: center;
  flex: 1 0 auto;
}

#navi ul li a {
  display: block;
  letter-spacing: 0.1rem;
  position: relative;
  line-height: 1.4;
  font-size: 2rem;
  color: #fff;
  padding-bottom: 10px;
  font-weight: bold;
  text-align: center;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
}

#navi ul li a span {
  display: block;
  font-size: 1.8rem;
  color: lemonchiffon;
  font-weight: normal;
}

#navi ul li a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  content: "";
  transition: all 0.3s ease-in-out 0s;
}

#navi ul li a:hover:before {
  width: 100%;
}

#navi ul li:before {
  position: absolute;
  content: "/";
  left: 0;
  top: 50%;
  transform: translate3D(0, -50%, 0);
  color: #fff;
}

#navi ul li:first-child:before {
  display: none;
}

#page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

#page-top a {
  display: block;
  background: #ff8900;
  box-shadow: rgba(0, 0, 0, 0.2) 2px 2px 2px;
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  border-radius: 50%;
  font-family: "FontAwesome";
  font-size: 1.8rem;
  text-align: center;
}

#page-top a:hover {
  opacity: 0.6;
}

.foot_navi {
  padding: 20px 0;
  background: #ffffff;
  background: url(../img/bg_body.jpg);
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}

.foot_navi ul {
  margin: 0 auto;
  width: 1000px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.foot_navi ul li {
  flex: 1 0 auto;
  text-align: center;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
}

.foot_navi ul li a {
  color: #323232;
  position: relative;
  padding-left: 20px;
}

.foot_navi ul li a:before {
  content: "";
  background-color: #029a45;
  width: 10px;
  height: 4px;
  position: absolute;
  top: 0.45em;
  left: 0;
}

.foot_navi ul li a:hover {
  color: #ff8900;
}

#footer {
  background: url(../img/wood.jpg) repeat-x left bottom, #029a45;
  font-size: 1.8rem;
  color: #fff;
}

#footer .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 30px 0;
}

#footer .inner .flogo {
  width: 300px;
  float: right;
}

#footer .inner .address {
  margin-bottom: 10px;
}

.slideshow {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  display: block;
}

@media all and (max-width: 800px) {
  .slideshow {
    margin-top: 67px;
    overflow: hidden;
  }
}

#catch,
.catch {
  position: absolute;
  z-index: 999;
  width: 100%;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.swiper-slide {
  padding: 35rem 0;
}

@media all and (max-width: 639px) {
  .swiper-slide {
    padding: 200px 0;
  }
}

.slide01 {
  background: url(../img/bg_slide01.jpg) no-repeat center;
  background-size: cover;
}

.slide02 {
  background: url(../img/bg_slide02.jpg) no-repeat center 60%;
  background-size: cover;
}

.slide03 {
  background: url(../img/bg_slide03.jpg) no-repeat center 80%;
  background-size: cover;
}

.slide04 {
  background: url(../img/bg_slide04.jpg) no-repeat center;
  background-size: cover;
}

.slide05 {
  background: url(../img/bg_slide05.jpg) no-repeat center;
  background-size: cover;
}

.slide06 {
  background: url(../img/bg_slide06.jpg) no-repeat center;
  background-size: cover;
}

.top-scroll a {
  display: block;
  position: absolute;
  z-index: 400;
  left: 0;
  right: 0;
  top: auto;
  bottom: 5%;
  width: 60px;
  height: 60px;
  margin: 0 auto;
  padding-top: 18px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  text-align: center;
  font-size: 1rem;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.top-scroll a:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 10;
  left: 0;
  right: 0;
  top: auto;
  bottom: 12px;
  width: 8px;
  height: 8px;
  margin: 0 auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

@media all and (max-width: 800px) {
  .top-scroll a {
    display: none;
  }
}

.bg_contact {
  border-top: 1px solid rgba(255, 255, 255, 0.7);
  background: url(../img/bg_contact.jpg) no-repeat center bottom;
  background: url(../img/wood04.jpg);
}

.bg_contact .single {
  padding: 30px 0;
}

@media all and (max-width: 639px) {
  .bg_contact .single {
    padding: 20px 0;
  }
}

.contact-txt {
  text-align: center;
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.contact_bnr {
  text-align: center;
}

.contact_bnr li {
  display: inline-block;
  margin: 0 15px;
}

.contact_bnr li .bnr_tel {
  border: 1px solid #029a45;
  color: #ffffff;
  letter-spacing: 0.1em;
  background: #029a45;
}

.contact_bnr li .bnr_tel:before {
  content: "\f095";
}

.contact_bnr li .bnr_tel:hover {
  background: #015a27;
  color: #ffffff;
}

.contact_bnr li .bnr_fax {
  background: #ffffff;
  border: 1px solid #029a45;
  color: #029a45;
}

.contact_bnr li .bnr_fax:before {
  content: "\f1ac";
}

.contact_bnr li .bnr_mail {
  border: 1px solid #ff8900;
  background: #fff;
  color: #111;
}

.contact_bnr li .bnr_mail:before {
  content: "\f0e0";
}

.contact_bnr li .bnr_mail:hover {
  background: lemonchiffon;
}

.contact_bnr li a,
.contact_bnr li span {
  display: block;
  padding: 8px 5px;
  width: 280px;
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  border-radius: 25px;
}

.contact_bnr li a:before,
.contact_bnr li span:before {
  font-family: "FontAwesome";
  margin-right: 5px;
}

.single {
  width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
}

.single02 {
  margin: 0 auto;
  padding: 40px 0;
}

.margin-top {
  margin-top: -40px;
}

@media all and (max-width: 639px) {
  .margin-top {
    margin-top: -30px;
  }
}

.mbox {
  box-sizing: border-box;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
}

@media all and (max-width: 639px) {
  .mbox {
    padding: 10px;
  }
}

.mbox.transparent {
  background: rgba(0, 0, 0, 0);
  box-shadow: none;
}

.mbox2 {
  box-sizing: border-box;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2);
  border: 1px solid #3a200c;
  padding: 10px;
  background: #fff;
}

.bg01 {
  background: url(../img/bg_body2.jpg);
}

.bg02 {
  background: rgba(255, 255, 255, 0.5);
}

.bg-grid {
  background: rgba(255, 255, 255, 0.9);
  background-image: -webkit-linear-gradient(
      transparent 95%,
      rgba(136, 136, 136, 0.2) 50%,
      rgba(136, 136, 136, 0.2)
    ),
    -webkit-linear-gradient(0deg, transparent 95%, rgba(136, 136, 136, 0.2) 50%, rgba(136, 136, 136, 0.2));
  background-size: 20px 20px;
  background-repeat: repeat;
}

.bg-map {
  background: url(../img/map.png) no-repeat right bottom;
}

@media all and (max-width: 639px) {
  .bg-map {
    -webkit-background-size: auto 200px;
    background-size: auto 200px;
    background-position: right top;
  }
}

#main {
  float: left;
  width: 70%;
}

#side {
  float: right;
  width: 26%;
}

.mtitle {
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.1);
  /* color: #029a45; */
  color: #3a200c;
  line-height: 1.9;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  /* font-size: 1.8rem */
  font-size: 3.8rem;
}
.mtitle_dai {
  font-size: 3.8rem;
}

.mtitle span {
  display: block;
  /* font-size: 2.8rem; */
  font-size: 2.2rem;
  color: #ff8900;
  font-weight: bold;
  position: relative;
}

.mtitle span:after {
  content: "";
  width: 36px;
  height: 2px;
  border-radius: 10px;
  background: url(../img/wood.jpg);
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mtitle.white {
  color: #fff;
}

.mtitle.white span {
  color: #fff;
}

.mtitle.white span:after {
  background-color: #eee;
}

.mtitle.mtitle_left {
  text-align: left;
}

.mtitle.mtitle_left span:after {
  left: 0;
  transform: none;
}

.mtitle4 {
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.8;
  font-size: 2.3rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #614d3d;
  text-align: center;
}

@media all and (max-width: 896px) {
  .mtitle4 {
    font-size: 2.2rem;
    line-height: 1.6;
  }
}

@media all and (max-width: 639px) {
  .mtitle4 {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
  }
}

.mtitle4 span {
  position: relative;
  display: inline-block;
  min-width: 10%;
  padding: 0 15px;
}

.mtitle4 span:before,
.mtitle4 span:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -2px;
  margin: auto;
  width: 2px;
  height: 85%;
  background-color: #90725b;
}

.mtitle4 span:before {
  left: -8px;
  transform: rotate(-25deg);
}

.mtitle4 span:after {
  right: -8px;
  transform: rotate(25deg);
}

.mtitle4.white {
  color: #fff;
}

.mtitle4.white span:before,
.mtitle4.white span:after {
  background-color: #fff;
}

@media all and (max-width: 896px) {
  .mtitle4 {
    margin-bottom: 15px;
  }

  .mtitle4 span {
    padding: 0 10px;
  }
}

@media all and (max-width: 639px) {
  .mtitle4 span:before,
  .mtitle4 span:after {
    bottom: -5px;
  }
}

.mtitle_point {
  margin-bottom: 15px;
  font-size: 2rem;
  position: relative;
  text-align: center;
}

.mtitle_point:after {
  content: "";
  width: 30px;
  height: 2px;
  background-color: #029a45;
  display: block;
  margin: 10px auto 0;
}

.mtitle-bll {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 2px solid #eeeeee;
  position: relative;
  margin-bottom: 15px;
  text-indent: 1.8rem;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
}

.mtitle-bll:after {
  position: absolute;
  font-family: "FontAwesome";
  content: "\f105";
  display: block;
  border-bottom: 2px solid #029a45;
  bottom: -2px;
  width: 100px;
  text-indent: 2px;
  color: #aaaaaa;
}

.mtitle_box {
  background: #029a45;
  background: url(../img/wood02.png);
  -webkit-background-size: 100px auto;
  background-size: 100px auto;
  box-sizing: border-box;
  color: #fff;
  font-size: 2.2rem;
  position: relative;
  padding: 5px 10px;
  margin-bottom: 10px;
}

.mtitle_box span {
  font-weight: normal;
  font-size: 14px;
}

.mtitle_box:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f30a";
  display: block;
  right: -1px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}

.mtext1 {
  font-size: 2.5rem;
  font-weight: bolder;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
}

.mtext2 {
  font-size: 3.8rem;
  font-weight: bolder;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  text-align: center;
  letter-spacing: 0.1rem;
}

.mtext2 span {
  font-size: 2rem;
  display: block;
  line-height: 1.4;
}

.mtext2.type1 {
  text-align: unset;
}

.mtext2.type1.type_center {
  text-align: center;
}

.mtext2.type1 span {
  font-size: unset;
  display: unset;
  line-height: unset;
}

.school-txt {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  color: #3a200c;
}

@media all and (max-width: 639px) {
  .school-txt {
    font-size: 2.2rem;
  }
}

.mtitle_bnr {
  font-size: 2rem;
  font-weight: bolder;
  color: #029a45;
  text-align: center;
  margin-bottom: 10px;
}

.mtitle_bnr:before {
  font-family: "FontAwesome";
  font-weight: bold;
  margin-right: 5px;
}

.mtitle_bnr.mtitle_bnr_01:before {
  content: "\f015";
}

.mtitle_bnr.mtitle_bnr_02:before {
  content: "\f0ad";
}

.mtitle_category {
  margin-bottom: 15px;
  font-size: 2.2rem;
  font-weight: normal;
}

.mtitle_category:before {
  font-family: "FontAwesome";
  font-weight: normal;
  content: "\f0ca";
  margin-right: 5px;
  color: #029a45;
}

.mtitle_catch {
  color: #fff;
  background: #ff8900;
  padding: 5px 10px;
  font-size: 2rem;
  font-weight: normal;
  border-bottom: 1px dotted #fff;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  font-weight: bolder;
}

.mtitle_catch span {
  font-size: 1.8rem;
}

.btn01 a {
  background: #ffffff;
  text-align: center;
  max-width: 300px;
  margin: 0 auto;
  display: block;
  padding: 8px 5px;
  font-weight: bold;
  border: 1px solid #029a45;
  border-radius: 25px;
}

.btn01 a:hover {
  background: #029a45;
  color: #ffffff;
}

.news {
  overflow: hidden;
}

.news dt {
  float: left;
  width: 8em;
  padding-top: 10px;
  font-weight: normal;
}

.news dd {
  padding: 10px 0 10px 8em;
  border-bottom: 1px dotted #dddddd;
}

.news dd:last-child {
  border-bottom: none;
}

.news-bl {
  overflow: hidden;
  margin: 15px auto 30px;
}

.news-bl dt {
  float: left;
  width: 7em;
  padding: 3px 5px;
  line-height: 1.3;
  background: #029a45;
  color: #ffffff;
  text-align: center;
}

.news-bl dd {
  padding: 0 0 10px 9em;
  line-height: 1.6;
  border-bottom: 1px dotted #dddddd;
  margin: 0 0 10px;
}

.news-bl dd:last-child {
  margin: 0;
  border-bottom: none;
}

.bg-greet {
  background: url(../img/bg-greet.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  width: 100%;
  height: 280px;
  background-attachment: fixed;
}

.bg-greet.pageTitle {
  margin-top: 85px;
}

@media all and (max-width: 800px) {
  .bg-greet.pageTitle {
    margin-top: 67px;
  }
}

.bg-greet .inner {
  width: 1000px;
  margin: 0 auto;
  padding: 85px 0 30px;
}

.bg-01 {
  background: url(../img/bg-greet.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}

.bg-03 {
  background: url(../img/bg03.jpg) no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
}

.article {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.article .article_image {
  width: 60%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.article .article_detail {
  width: 40%;
  box-sizing: border-box;
  padding: 100px 0;
}

.article .article_detail .inner {
  margin: 0 auto;
  width: 80%;
}

@media all and (max-width: 800px) {
  .article .article_detail .inner {
    width: 90%;
  }
}

.article.article_01 {
  background: rgba(22, 36, 70, 0.8);
  color: #fff;
}

.article.article_01 .article_image {
  background-image: url(../img/article_image_01.jpg);
}

@media all and (max-width: 639px) {
  .article .article_image,
  .article .article_detail {
    width: 100%;
  }

  .article .article_image {
    display: none;
  }

  .article .article_detail {
    padding: 30px 0;
  }
}

.tbl {
  width: 100%;
}

.tbl th,
.tbl td {
  padding: 10px;
  vertical-align: middle;
  border: 1px solid #3a200c;
}

.tbl th {
  background: #ff8900;
  font-weight: 500;
  color: #fff;
}

.tbl th span {
  font-size: 1.4rem;
}

.tbl .cell01 {
  width: 25%;
}

.tbl td {
  background: #fff;
}

.tbl .tr-01 td {
  background: lemonchiffon;
  text-align: center;
  font-weight: 500;
}

.tbl.timetable th,
.tbl.timetable td {
  text-align: center;
}

.tbl.timetable td {
  color: #3a200c;
}

.tbl_new {
  width: 100%;
}

.tbl_new tr th,
.tbl_new tr td {
  vertical-align: middle;
  padding: 10px;
}

.tbl_new tr th {
  font-weight: 500;
  color: #3a200c;
}

.tbl_new tr th span {
  font-size: 1.4rem;
}

.tbl_new tr:nth-child(odd) th,
.tbl_new tr:nth-child(odd) td {
  background: rgba(228, 124, 4, 0.2);
}

.company {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 5px;
}

.company th,
.company td {
  padding: 10px;
  vertical-align: middle;
}

.company th {
  text-align: left;
  width: 25%;
  position: relative;
  background: #029a45;
  color: #ffffff;
  font-weight: normal;
}

.company th::after {
  left: 100%;
  top: 50%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: #f9f9f9;
  border-width: 10px;
  border-left-color: #029a45;
  margin-top: -10px;
}

.company td {
  background: #f9f9f9;
  padding-left: 20px;
}

.ggmap {
  position: relative;
  padding-bottom: 46.25%;
  height: 0;
  overflow: hidden;
}

.ggmap iframe,
.ggmap object,
.ggmap embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.list_common li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #cccccc;
}

.list_common li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_common.circle li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f303";
  margin-right: 5px;
  color: #ff8900;
  font-weight: bold;
}

.list_inline li {
  display: inline-block;
  padding: 5px;
}

.list_inline li:before {
  font-family: "FontAwesome";
  content: "\f14a";
  margin-right: 5px;
  color: #029a45;
}

.list_check li {
  padding-bottom: 10px;
  padding-left: 1rem;
  margin-bottom: 10px;
  border-bottom: 1px dotted #cccccc;
}

.list_check li:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.list_check li:before {
  font-family: "Font Awesome 5 Free";
  content: "\f14a";
  margin-right: 5px;
  color: #ff8900;
  font-weight: bold;
}

.list_disc.type1 li {
  padding: 0 !important;
}

.list_disc.type1 li:before {
  content: "・";
  color: #614d3d;
  font-size: inherit;
  margin-right: 0;
}

.list_disc.type1 li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #eae5e4;
  margin-bottom: 0px;
}

.list_disc.type1 li span {
  font-size: 90%;
}

.list_disc.sbc li:before {
  color: #e59b6e;
}

.list_disc.sbc li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #eae5e4;
}

.list_disc.type2 li:not(:last-of-type) {
  margin-bottom: 0px;
  border-bottom: 0px dashed #eae5e4;
}

.list_disc li {
  padding: 5px 0;
  letter-spacing: 0.1em;
}

.list_disc li.d_none::before {
  content: none;
}

.list_disc li:not(:last-of-type) {
  margin-bottom: 5px;
  border-bottom: 1px dashed #eae5e4;
}

.list_disc li:before {
  content: "●";
  margin-right: 5px;
  color: #e19274;
  font-size: 0.5em;
}

.ol-list {
  counter-reset: number;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ol-list li {
  line-height: 2;
  border-bottom: 1px dashed #ddd;
  margin-bottom: 10px;
  padding-bottom: 10px;
  font-weight: bold;
  position: relative;
}

.ol-list li:before {
  position: absolute;
  left: 0;
  counter-increment: number;
  content: counter(number);
  background: #ff8900;
  position: absolute;
  display: inline-block;
  width: 2em;
  height: 2em;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  margin-right: 0.3em;
}

.ol-list li span {
  padding-left: 2.5em;
  display: inline-block;
}

.point-wrap {
  border-bottom: 1px soldi #ccc;
  padding: 10px 0;
  margin-bottom: 5px;
}

.point-wrap dt {
  position: relative;
  overflow: hidden;
  padding-left: 90px;
  font-size: 2.2rem;
  color: #029a45;
  border-bottom: 1px dashed #029a45;
  margin-bottom: 5px;
}

.point-wrap dt span {
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: #0a101f;
  font-size: 4rem;
  color: #fff;
  left: 0;
  bottom: -30px;
  text-align: center;
}

.point-wrap dd {
  padding: 5px;
}

@media all and (max-width: 639px) {
  .point-wrap dt {
    font-size: 2.2rem;
    line-height: 1.6;
    overflow: visible;
    padding-left: 70px;
  }

  .point-wrap dt span {
    width: 60px;
    height: 40px;
    line-height: 40px;
    bottom: 0;
    font-size: 2rem;
  }
}

.blog_list {
  display: flex;
  justify-content: space-between;
}

.blog_list .blog_img {
  width: 35%;
  overflow: hidden;
}

.blog_list .blog_img img {
  transition: all 0.4s ease;
}

.blog_list .blog_detail {
  width: 60%;
}

.blog_list .blog_detail .blog_ttl {
  font-weight: 500;
  color: #029a45;
  margin-bottom: 5px;
}

.blog {
  display: block;
  padding: 15px;
  background: #ffffff;
  box-sizing: border-box;
  color: #323232;
}

.blog:hover .blog_img img {
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}

.date {
  display: block;
  font-size: 1.8rem;
  margin-bottom: 5px;
}

.date.date_02 {
  margin-bottom: 15px;
}

.date:before {
  font-family: "FontAwesome";
  content: "\f017";
  margin-right: 5px;
}

.pages {
  text-align: center;
  margin-top: 30px;
}

.pages .page_next,
.pages .page_prev {
  display: inline;
  margin: 0 20px;
}

.category_nav {
  border: 1px solid #dddddd;
}

.category_nav li a {
  display: block;
  padding: 15px;
  border-bottom: 1px dotted #dddddd;
  background-color: #ffffff;
}

.category_nav li a:before {
  font-family: "FontAwesome";
  content: "\f0a9";
  margin-right: 5px;
}

.category_nav li a:hover {
  background: #f1edee;
}

.category_nav li:last-child a {
  border-bottom: none;
}

.lsingle {
  width: 49%;
  float: left;
}

.lsingle img {
  max-width: 100%;
}

.rsingle {
  width: 49%;
  float: right;
}

.rsingle img {
  max-width: 100%;
}

.column2 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: -3%;
}

.column2.mb0 {
  margin-bottom: unset;
}

.column2.type_jc-center {
  justify-content: center;
  gap: 3%;
}

.column2 .child {
  width: 48.44%;
  margin: 0 3% 3% 0;
  position: relative;
}

.column2 .child01 {
  width: 35%;
}

.column2 .child02 {
  width: 50%;
}

.column2 .child03 {
  width: 25%;
}

.column2 .child04 {
  width: 70%;
}

.column2 .child:nth-child(2n) {
  margin: 0 0 3% 0;
}

@media all and (max-width: 639px) {
  .column2 .child,
  .column2 .child01,
  .column2 .child02,
  .column2 .child03,
  .column2 .child04 {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.column3 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
  margin-bottom: -3%;
}

.column3 .child {
  width: 31.3%;
  margin: 0 3% 3% 0;
  position: relative;
}

.column3 .child:nth-child(3n) {
  margin: 0 0 3% 0;
}

.column3.align-items {
  align-items: center;
}

@media all and (max-width: 639px) {
  .column3 .child {
    width: 100%;
    margin: 0 auto 10px;
  }
}

.column4 {
  display: flex;
  justify-content: start;
  flex-wrap: wrap;
}

.column4 .child {
  width: 23.5%;
  margin: 0 2% 2% 0;
  position: relative;
}

.column4 .child:nth-child(4n) {
  margin: 0 0 2% 0;
}

.flickSlider {
  margin: 0 auto;
  text-align: left;
  display: none;
}

.flickSlider .flickView {
  width: 100%;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.flickSlider .flickView ul {
  top: 0;
  left: 0;
  width: 100%;
  position: absolute;
  overflow: hidden;
}

.flickSlider .flickView ul li {
  width: 100%;
  float: left;
  display: inline;
  overflow: hidden;
}

.flickSlider .flickView ul li img {
  width: 100%;
}

.flickSlider .flickThumb {
  width: 100%;
  overflow: hidden;
}

.flickSlider .flickThumb ul {
  width: 110%;
}

.flickSlider .flickThumb ul li {
  float: left;
  cursor: pointer;
  display: inline;
}

.flickSlider .flickThumb ul li img {
  width: 100%;
}

.flickSlider .flickThumb ul li.active {
  filter: alpha(opacity=100) !important;
  -moz-opacity: 1 !important;
  opacity: 1 !important;
}

.flickSlider .btnPrev,
.flickSlider .btnNext {
  top: 0;
  width: 5%;
  height: 100%;
  position: absolute;
  cursor: pointer;
}

.flickSlider .btnPrev {
  left: 0;
  background: url(../img/btnPrev.png) no-repeat center center #000;
}

.flickSlider .btnNext {
  right: 0;
  background: url(../img/btnNext.png) no-repeat center center #000;
}

.cut {
  overflow: hidden;
  zoom: 1;
}

.w300 {
  width: 300px;
}

.spbr {
  display: none;
}

.num {
  color: #ff0000;
  font-weight: bold;
  margin-right: 5px;
}

.color1 {
  color: #ff8900;
}

.color2 {
  color: #3a200c;
}

.breadcrumb {
  margin-bottom: 30px;
  padding-left: 0;
  font-size: 1.8rem;
}

.breadcrumb li {
  display: inline;
}

.breadcrumb li + li:before {
  margin: 0 10px;
  content: ">";
}

.breadcrumb li .home {
  font-family: "FontAwesome";
}

.form {
  margin: 0 auto;
  width: 90%;
}

.form dl dt {
  float: left;
  width: 280px;
  padding-top: 20px;
}

.form dl dt span {
  color: #fff;
  background: #ff4f4f;
  padding: 0 5px 0;
  margin-right: 5px;
  font-size: 11px;
  border-radius: 2px;
  position: relative;
  top: -2px;
}

.form dl dd {
  padding-left: 280px;
  padding-bottom: 20px;
  padding-top: 23px;
  line-height: 1.5;
  border-bottom: 1px dotted #cccccc;
}

.form dl dd:last-child {
  border-bottom: none;
}

.form .textarea,
.form textarea {
  border: 1px solid #ddd;
  padding: 5px;
  width: 100%;
  border-radius: 0;
  -webkit-appearance: none;
  box-sizing: border-box;
}

.form .textarea {
  height: 30px;
}

.form .textarea02 {
  width: 48.5%;
  margin-right: 3%;
}

.form .textarea02:last-child {
  margin-right: 0;
}

.form .textarea03 {
  width: 20%;
  margin-right: 1%;
}

.form .form-contents dd:not(.pattern-exclusion) .textarea {
  border-radius: 0;
}

.form button,
.form .form-pattern-1 .submit-btn {
  cursor: pointer;
  display: block;
  color: #111;
  text-align: center;
  transition: all 0.2s ease-in-out 0s;
  font-family: "-apple-system", BlinkMacSystemFont, "Helvetica Neue", Roboto,
    "Droid Sans", Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", YuGothic,
    Meiryo, sans-serif;
  font-size: 1.5rem;
  font-weight: bold;
  padding: 8px 5px;
  margin: 0 auto;
  width: 250px;
  background: #ff8900;
  border: 1px solid #ff8900;
  border-radius: 25px;
  color: #fff;
}

.form button:hover,
.form .form-pattern-1 .submit-btn:hover {
  background: #3a200c;
  color: #fff;
}

.form .form-pattern-1 .submit-btn:hover::before {
  background: #fff;
}

.form button:before {
  font-family: "FontAwesome";
  font-weight: normal;
  content: "\f0e0";
  margin-right: 10px;
}

.form .select-wrap {
  position: relative;
  overflow: hidden;
  display: inline-block;
  min-width: 192px;
  min-width: 12em;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  color: #333;
}

.form .select-wrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  z-index: 2;
  display: block;
  width: 200%;
  width: -webkit-calc(100% + 5em);
  margin: 0;
  padding: 11px 35px 11px 11px;
  padding: 0.6875rem 2.1875rem 0.6875rem 0.6875rem;
  background: transparent;
  border: 0;
  outline: none;
  line-height: 1.5;
}

.form .entypo-down-open-mini:before {
  font-family: "FontAwesome";
  content: "\f0ab";
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 12px;
  right: 0.75rem;
  margin-top: -8px;
  margin-top: -0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  color: #029a45;
}

.form label.radio_text {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
}

.form label.radio_text:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #ccc;
  border-radius: 50%;
  left: 0px;
  top: 2px;
  content: "";
  z-index: 3;
}

.form label.radio_text:after {
  content: "";
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 100%;
  left: 3px;
  top: 5px;
  background-color: #029a45;
  z-index: 1;
}

.form label.radio_text input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 0px;
  margin: 0px;
  box-shadow: 20px -1px #f5f5f5;
}

.form label.radio_text input[type="radio"]:checked {
  box-shadow: none;
}

.form label.radio_text input[type="radio"]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #eeebda;
}

.form label.checkbox_text {
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  margin: 0 20px 5px 0;
  overflow: hidden;
  display: inline-block;
  box-sizing: border-box;
}

.form label.checkbox_text:before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 0px;
  top: 0;
  border: 1px solid #ccc;
  z-index: 3;
  padding: 1px;
  box-sizing: border-box;
}

.form label.checkbox_text:after {
  content: "";
  position: absolute;
  top: 40%;
  left: 5px;
  display: block;
  margin-top: -9px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #029a45;
  border-bottom: 3px solid #029a45;
  transform: rotate(45deg);
  z-index: 1;
}

.form label.checkbox_text input[type="checkbox"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  left: -40px;
  width: 20px;
  height: 20px;
  display: block;
  box-shadow: 41px 0px #fff;
  z-index: 2;
  margin: 0px;
  padding: 0px;
}

.form label.checkbox_text input[type="checkbox"]:checked {
  box-shadow: none;
}

.form label.checkbox_text input[type="checkbox"]:checked:focus {
  box-shadow: 40px 0px #666;
  opacity: 0.1;
}

.form label.checkbox_text input[type="checkbox"]:focus {
  box-shadow: 41px 0px #eee;
}

.bnr {
  display: flex;
  justify-content: space-between;
}

.bnr li {
  width: 33.3333333%;
}

@media all and (max-width: 639px) {
  .bnr {
    display: block;
  }

  .bnr li {
    float: none;
    width: 100%;
  }
}

.top_bnr {
  position: relative;
  overflow: hidden;
  min-width: 220px;
  width: 100%;
  background: #000000;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  color: #ffffff;
}

.top_bnr * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.45s ease-in-out;
  transition: all 0.45s ease-in-out;
}

.top_bnr img {
  max-width: 100%;
  position: relative;
  opacity: 0.9;
}

.top_bnr .snip-title {
  position: absolute;
  top: 45%;
  left: 7%;
  right: 7%;
  bottom: 45%;
  border: 1px solid white;
  border-width: 1px 1px 0;
}

.top_bnr .heading {
  overflow: hidden;
  -webkit-transform: translateY(50%);
  transform: translateY(50%);
  position: absolute;
  bottom: 0;
  width: 100%;
}

.top_bnr h2 {
  display: table;
  margin: 0 auto;
  padding: 0 10px;
  position: relative;
  text-align: center;
  width: auto;
  font-size: 2.2rem;
  text-transform: uppercase;
  text-shadow: -2px 1px 0 rgba(0, 0, 0, 0.6);
  font-weight: bold;
}

.top_bnr h2:before,
.top_bnr h2:after {
  position: absolute;
  display: block;
  width: 1000%;
  height: 1px;
  content: "";
  background: white;
  top: 50%;
}

.top_bnr h2:before {
  left: -1000%;
}

.top_bnr h2:after {
  right: -1000%;
}

.top_bnr p {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  width: 100%;
  padding: 0 20px;
  margin: 0;
  opacity: 0;
  line-height: 1.6em;
}

.top_bnr a {
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 1;
}

.top_bnr:hover img,
.top_bnr.hover img {
  opacity: 0.25;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.top_bnr:hover .snip-title,
.top_bnr.hover .snip-title {
  top: 7%;
  bottom: 7%;
}

.top_bnr:hover p,
.top_bnr.hover p {
  opacity: 1;
  -webkit-transition-delay: 0.35s;
  transition-delay: 0.35s;
}

.shadow {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
}

.gallery {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.gallery li {
  width: calc((100% - 30px) / 3);
  box-sizing: content-box;
  margin: 0 15px 20px 0;
}

.gallery li:nth-child(3n) {
  margin-right: 0;
}

.gallery li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 0px;
  height: 180px;
  vertical-align: middle;
}

.gallery li a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.gallery li p {
  font-size: 13px;
  margin: 3px 0 10px;
}

.gallery.gallery2 li {
  width: calc((100% - 32px) / 5);
  box-sizing: content-box;
  margin: 0 8px 20px 0;
}

.gallery.gallery2 li:nth-child(5n) {
  margin-right: 0;
}

@media all and (max-width: 639px) {
  .gallery.gallery2 li {
    width: calc((100% - 40px) / 3);
    box-sizing: content-box;
    margin: 0 6px 10px;
  }

  .gallery.gallery2 li:nth-child(3n) {
    margin-right: 0;
  }

  .gallery.gallery2 li:nth-child(5n) {
    margin-right: 6px;
  }
}

@media screen and (max-width: 800px) {
  .gallery li {
    width: 48%;
    box-sizing: border-box;
    margin: 0 1% 20px;
  }

  .gallery li:nth-child(2n) {
    margin-right: 0;
  }

  .gallery li:nth-child(3n) {
    margin: 0 1% 20px;
  }

  .gallery li a {
    height: 100px;
  }
}

.list2 {
  display: flex;
  flex-wrap: wrap;
}

.list2 li {
  box-sizing: border-box;
  width: 49%;
  margin: 0 0.5% 15px;
}

.list2 li a {
  background: #f2f2f2;
  display: block;
  text-align: center;
  padding: 0px;
  height: 250px;
  vertical-align: middle;
}

.list2 li a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  font-family: "object-fit: contain;";
}

@media all and (max-width: 639px) {
  .list2 li {
    width: 100%;
    margin: 0 auto 15px;
  }

  .list2 li a {
    height: 200px;
  }
}

.prv dt {
  color: #029a45;
  border-bottom: 1px solid #ccc;
  margin: 10px 0;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.flex li {
  width: 48%;
  padding: 15px;
  position: relative;
  box-sizing: border-box;
  background: #fff;
  border-radius: 10px;
  border: 4px solid #ffe2b3;
}

.flex li .border {
  position: absolute;
  background: none;
  transition: all 0.3s ease-in-out;
}

.flex li .border:nth-of-type(1) {
  top: 0;
  left: 0;
  border-left: 1px solid #ff8900;
  border-top: 1px solid #ff8900;
  width: 50px;
  height: 30px;
}

.flex li .border:nth-of-type(2) {
  bottom: 0;
  right: 0;
  border-right: 1px solid #ff8900;
  border-bottom: 1px solid #ff8900;
  width: 50px;
  height: 30px;
}

.flex li:hover .border {
  width: 102%;
  height: 105%;
}

.flex li:hover .linkbtn-more {
  background: #029a45;
  color: #fff;
  transition: all 0.55s ease;
}

.flex li a {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.flex li:hover .snip1445 img,
.flex li:hover .snip1445 .hover img {
  zoom: 1;
  filter: alpha(opacity=50);
  -webkit-opacity: 0.4;
  opacity: 0.4;
}

.flex li:hover .snip1445 .snip-title:before,
.flex li:hover .snip1445 .hover .snip-title:before,
.flex li:hover .snip1445 .snip-title:after,
.flex li:hover .snip1445 .hover .snip-title:after,
.flex li:hover .snip1445 .snip-title div:before,
.flex li:hover .snip1445 .hover .snip-title div:before,
.flex li:hover .snip1445 .snip-title div:after,
.flex li:hover .snip1445 .hover .snip-title div:after {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

.flex li:hover .snip1445 .snip-title:before,
.flex li:hover .snip1445 .hover .snip-title:before,
.flex li:hover .snip1445 .snip-title:after,
.flex li:hover .snip1445 .hover .snip-title:after {
  -webkit-transition-delay: 0.15s;
  transition-delay: 0.15s;
}

.snip1445 {
  position: relative;
  overflow: hidden;
  min-width: 230px;
  max-width: 100%;
  height: 200px;
  width: 100%;
  text-align: center;
  font-size: 13px;
  color: #fff;
  background-color: #111;
}

.snip1445 * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 *:before,
.snip1445 *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.55s ease;
  transition: all 0.55s ease;
}

.snip1445 img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  backface-visibility: hidden;
  vertical-align: top;
}

.snip1445 .snip-title {
  position: absolute;
  bottom: 20px;
  right: 20px;
  padding: 10px 10px 10px;
}

.snip1445 .snip-title:before,
.snip1445 .snip-title:after {
  height: 1px;
  width: 100%;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1445 .snip-title:before {
  top: 0;
  left: 0;
  -webkit-transform: translateX(200%);
  transform: translateX(200%);
}

.snip1445 .snip-title:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateX(-250%);
  transform: translateX(-250%);
}

.snip1445 .snip-title > div:before,
.snip1445 .snip-title > div:after {
  width: 1px;
  height: 300px;
  position: absolute;
  content: "";
  background-color: #ffffff;
}

.snip1445 .snip-title > div:before {
  top: 0;
  left: 0;
  -webkit-transform: translateY(200%);
  transform: translateY(200%);
}

.snip1445 .snip-title > div:after {
  bottom: 0;
  right: 0;
  -webkit-transform: translateY(-250%);
  transform: translateY(-250%);
}

.snip1445 h2,
.snip1445 h4 {
  margin: 0;
  width: 150px;
  background: rgba(255, 255, 255, 0.8);
  text-align: center;
  color: #029a45;
}

.snip1445 h2 {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.snip1445 .click {
  display: block;
  font-weight: bold;
  width: 150px;
  margin-left: auto;
  background-color: #ff8900;
  padding: 3px 10px;
  color: #111;
  text-shadow: #fff 0px 0px 0px;
}

.snip1445 img {
  opacity: 0.9;
}

.linkbtn-ttl {
  font-size: 2.5rem;
  color: #029a45;
  margin-bottom: 10px;
  letter-spacing: 0.1rem;
  font-weight: bolder;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  background: url(../img/line-thin.png) repeat-x left bottom;
}

@media all and (max-width: 639px) {
  .linkbtn-ttl {
    font-size: 2.2rem;
  }
}

.linkbtn-more {
  float: right;
  color: #029a45;
  padding: 3px;
  border: 1px solid #029a45;
}

@media all and (max-width: 639px) {
  .linkbtn-more {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 768px) {
  .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

  .flex li {
    width: 80%;
    margin-bottom: 30px;
  }

  .snip1445 {
    min-width: 230px;
    max-width: 100%;
    height: 200px;
  }

  .snip1445 img {
    opacity: 0.6;
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .flex li {
    width: 95%;
  }
}

.linkbtn-txt {
  color: #111;
  line-height: 1.5;
  margin-top: 10px;
}

#works:before {
  content: "";
  height: 80px;
  margin-top: -80px;
  display: block;
  visibility: hidden;
}

.box01 {
  background: rgba(255, 255, 255, 0.5);
  background: url(../img/wood04.jpg);
  border: 4px solid #029a45;
  border-radius: 15px;
  padding: 45px 20px 20px 20px;
  position: relative;
  font-weight: bold;
  font-size: 2.2rem;
  margin-top: -40px;
}

@media all and (max-width: 639px) {
  .box01 {
    font-size: 1.4rem;
    padding: 40px 15px 15px 15px;
  }
}

.mtitle_box01 {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.mtitle_box01 span {
  background: #029a45;
  color: #fff;
  font-size: 3rem;
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  padding: 5px 20px;
  border: 3px solid #fff;
  font-weight: bolder;
  letter-spacing: 0.1rem;
  text-shadow: 0 0 3px rgba(58, 32, 12, 0.3);
}

.dead-line {
  font-weight: bold;
  background: lemonchiffon;
  padding: 5px 10px;
  margin-top: 20px;
}

.voice > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 25px 0;
  background: url(../img/line-thin.png) repeat-x left bottom;
  margin-bottom: 20px;
  align-items: center;
}

.voice dt {
  width: 200px;
  box-sizing: border-box;
  text-align: center;
}

.voice .voice-img {
  overflow: hidden;
  border-radius: 100%;
  width: 150px;
  margin: 0 auto 0;
}

.voice .name {
  background: #ff8900;
  color: #fff;
  padding: 5px 10px;
  max-width: 150px;
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 4px rgba(58, 32, 12, 0.2);
}

.voice .name.name2 {
  background: #029a45;
}

.voice dd {
  width: calc(100% - 220px);
  background: rgba(228, 124, 4, 0.2);
  box-sizing: border-box;
  border-radius: 10px;
  padding: 15px;
}

@media all and (max-width: 639px) {
  .voice {
    flex-direction: column;
  }

  .voice dt {
    margin: 0 auto 20px;
  }

  .voice dd {
    width: 100%;
  }
}

/*# sourceMappingURL=basis.css.map */

.img-rotate {
  transform: scaleX(-1);
}

.small-box {
  max-width: 950px;
  margin-right: auto;
  margin-left: auto;
}

.small-box.type1 {
  max-width: 650px;
}

.small-box2 {
  max-width: 750px;
  margin-right: auto;
  margin-left: auto;
}
.small-box3 {
  max-width: 550px;
  margin-right: auto;
  margin-left: auto;
}

.arrow-anime {
  font-size: 5rem;
  color: #ff8900;
  margin-top: 40px;
}

.mtext-top {
  font-size: 2.3rem;
  text-align: center;
  margin-bottom: 25px;
  color: #3a200c;
  line-height: 1.6;
}

.mtext-top span {
  position: relative;
  display: inline-block;
  padding-top: 26px;
  padding-left: 3px;
  padding-right: 3px;
  font-size: 3.2rem;
  color: #ff8900;
}

.mtext-top span:before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  color: #fdfdfd;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/14939/point.png)
    no-repeat center/contain;
}

@media all and (max-width: 896px) {
  .mtext-top {
    font-size: 2.2rem;
  }
  .mtext-top span {
    font-size: 2rem;
  }
}

@media all and (max-width: 639px) {
  .mtext-top {
    font-size: 1.4rem;
    letter-spacing: 0.15em;
    margin-bottom: 20px;
  }

  .mtext-top span {
    padding-top: 18px;
    font-size: 2.2rem;
  }

  .mtext-top span:before {
    width: 52px;
    height: 16px;
  }
}

.note {
  padding: 20px;
  background: rgba(252, 163, 123, 0.1);
}

@media all and (max-width: 639px) {
  .note {
    padding: 12px;
  }
}

.pale-note {
  position: relative;
  background-image: linear-gradient(
      90deg,
      transparent 0%,
      transparent 50%,
      #fefefe 50%,
      #fefefe 100%
    ),
    linear-gradient(180deg, #fcd0b2 1px, transparent 1px);
  background-size: 8px 100%, 100% 3em;
  line-height: 3em;
  padding-bottom: 1px;
  max-width: 98vw;
  margin-inline: auto;
}

.sentence p + p {
  margin-top: 20px;
}

@media all and (max-width: 639px) {
  .sentence p + p {
    margin-top: 15px;
  }
}

.sentence2 p + p {
  margin-top: 12px;
}

@media all and (max-width: 639px) {
  .sentence2 p + p {
    margin-top: 8px;
  }
}

.faq dt {
  letter-spacing: 0.15em;
  margin-bottom: 20px;
  background: #f4f4f4;
  color: #614d3d;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 16px;
  padding-left: 42px;
  line-height: 1.6;
  position: relative;
  cursor: pointer;
  transition: all 1s ease;
  font-size: 2.2rem;
}

.faq dt:before {
  content: "Q";
  position: absolute;
  top: -6px;
  left: -6px;
  text-indent: 0px;
  line-height: 38px;
  color: #fff;
  background: #ff8900;
  width: 38px;
  height: 38px;
  text-align: center !important;
  border-radius: 100%;
  font-size: 2.2rem;
}

.faq dd {
  display: block;
  position: relative;
  margin-bottom: 24px;
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 16px;
  padding-left: 42px;
  line-height: 2;
  position: relative;
  background: #fff;
}

.faq dd:before {
  content: "A";
  position: absolute;
  top: 0px;
  left: 0px;
  text-indent: 0px;
  font-size: 20px;
  line-height: 35px;
  color: #ff8900;
  width: 35px;
  height: 35px;
  text-align: center !important;
  font-size: 2.2rem;
}

.faq dt:before,
.faq dd:before {
  font-weight: 500;
  letter-spacing: 0.1em;
}

@media all and (max-width: 639px) {
  .faq dt {
    font-size: 1.8rem;
  }

  .faq dt:before,
  .faq dd:before {
    font-size: 1.4rem;
  }
}

.rec-board {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  /* max-width: 1000px; */
  max-width: 100%;
  box-sizing: border-box;
}

.rec-board:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fefefe;
  border-radius: 10px;
  border: 30px solid #ff8900;
  z-index: -1;
  box-sizing: border-box;
}

.rec-board::after {
  position: absolute;
  content: "";
  width: 250px;
  height: 52px;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: url(https://ros-cdn.s3.ap-northeast-1.amazonaws.com/hp/img/ros_keiyaku/14939/binder.png)
    repeat-x center top/contain;
}

.rec-board .inner {
  padding: 100px 60px 60px;
  position: relative;
  box-sizing: border-box;
}

@media all and (max-width: 896px) {
  .rec-board:before {
    border-radius: 5px;
    border: 15px solid #eb9f4a;
  }

  .rec-board::after {
    width: 120px;
    height: 25px;
    top: 5px;
  }

  .rec-board .inner {
    padding: 50px 25px 25px;
  }
}
.course_p {
  font-weight: 500;
}
.strength .mtitle_box {
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  font-weight: bolder;
}
.strength p {
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  font-weight: 600;
}
.school_p {
  font-family: "黎ミン", "游明朝", YuMincho, "Noto Serif JP", "MS 明朝", serif;
  font-weight: 600;
  font-size: 110%;
  margin-bottom: 20px;
  background: rgba(228, 124, 4, 0.2);
  padding: 10px;
}
.dai_p {
  font-size: 2.5rem;
  color: #ff0000;
}
@media all and (max-width: 896px) {
  .dai_p {
    font-size: 2rem;
  }
}
