@charset "UTF-8";
/*=================================================================*/
/*	webフォント
/*=================================================================*/
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 100;
  src: url("../font/NotoSansJP-Thin.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 300;
  src: url("../font/NotoSansJP-Light.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("../font/NotoSansJP-SemiBold.woff") format("woff");
}
@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "Kiwi Maru";
  font-weight: 400;
  src: url("../font/KiwiMaru-Regular.woff") format("woff");
}
@font-face {
  font-family: "Baloo2";
  font-weight: 800;
  src: url("../font/Baloo2-VariableFont_wght.woff") format("woff");
}
/*=================================================================*/
/* ローディング画面
/*=================================================================*/
#fade {
  display: none;
  width: 100vw;
  height: 100vh;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1000;
}

.loaded #fade {
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s;
}

.loader,
.loader:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}

.loader {
  margin: auto;
  font-size: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-indent: -9999em;
  border-top: 0.7em solid rgba(186, 186, 186, 0.2);
  border-right: 0.7em solid rgba(186, 186, 186, 0.2);
  border-bottom: 0.7em solid rgba(186, 186, 186, 0.2);
  border-left: 0.7em solid #2f75bd;
  transform: translateZ(0);
  animation: load8 1.1s infinite linear;
}
@keyframes load8 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/*=================================================================*/
/* 全デバイス共通 */
/*=================================================================*/
/*	reset
---------------------------------------------------------------*/
* {
  padding: 0px;
  margin: 0px;
}

/*	img
---------------------------------------------------------------*/
.img {
  width: 100%;
}

img {
  border: none;
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

/*	table
----------------------------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 100%;
  background-color: #FFF;
}
table th, table td {
  border: solid 1px #DDD;
  padding: 15px;
}
table th {
  background-color: #fbfbfb;
  font-weight: 700;
}
/*	clearfix
---------------------------------------------------------------*/
.cf:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE-mac \*/
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End hide from IE-mac */
/*	link
---------------------------------------------------------------*/
a {
  transition: all 0.3s;
}

a,
a:visited,
a:active {
  text-decoration: none;
}

@media print, screen and (min-width: 769px) {
  a:hover {
    opacity: 0.8;
  }
}

/*	color
---------------------------------------------------------------*/
#main .red {
  color: #E80B74;
}

/*	space
---------------------------------------------------------------*/
#main .mb0 {
  margin-bottom: 0 !important;
}

#main .mb10 {
  margin-bottom: 10px;
}

#main .mb15 {
  margin-bottom: 15px;
}

#main .mb30 {
  margin-bottom: 30px;
}

#main .mb50 {
  margin-bottom: 50px;
}

#main .mb60 {
  margin-bottom: 50px;
}

/*	ul
---------------------------------------------------------------*/
li {
  list-style-type: none;
}

/*	inputreset
---------------------------------------------------------------*/
input, select, textarea {
  background: #F5F5F5;
  border: #D5D5D5 1px solid;
  font: inherit;
  outline: #D5D5D5;
  border-radius: 8px;
  padding: 5px 20px;
}

html {
  height: 100%;
  font-size: 62.5%;
} /*10px相当にreset*/
body {
  line-height: 1.6;
  margin: 0 auto;
  text-align: start;
  word-break: break-all;
  font-family: "Noto Sans JP";
  color: #333;
  background: #F4F0E4;
}
body.noScroll {
  overflow: hidden;
}

/*=================================================================*/
/* body */
/*=================================================================*/
body, a {
  color: #333;
}

body {
  position: relative;
}

body.noScroll {
  overflow: hidden;
}

/*=================================================================*/
/*	header */
/*=================================================================*/
header {
  width: 100%;
  box-sizing: border-box;
  z-index: 10;
  top: 0;
  position: fixed;
}

/*=================================================================*/
/*	ハンバーガーメニュー */
/*=================================================================*/
.menuBox {
  background-color: #57A644;
  color: #FFF;
  z-index: 20;
  cursor: pointer;
  transition: 0.2s;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  position: fixed;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  top: 30px;
  right: 40px;
}
.menuBox > span {
  display: block;
  text-align: center;
  font-size: 11px;
  padding: 2px 0 0;
}
.menuBox .menuButton, .menuBox .menuButton span {
  display: inline-block;
  transition: all 0.4s;
  box-sizing: border-box;
}
.menuBox .menuButton {
  position: relative;
  top: 0;
  width: 36px;
  height: 23px;
}
.menuBox .menuButton span {
  position: absolute;
  left: 50%;
  width: 100%;
  margin-left: -18px;
  height: 3px;
  background-color: #FFF;
  border-radius: 10px;
}
.menuBox .menuButton span:nth-of-type(1) {
  top: 0;
}
.menuBox .menuButton span:nth-of-type(2) {
  top: 10px;
}
.menuBox .menuButton span:nth-of-type(3) {
  bottom: 0;
}

.menuList {
  position: fixed;
  top: 0;
  right: 0;
  width: 0;
  transition: width 0.3s ease;
  z-index: 10;
}
.menuList ul {
  padding-top: 80px;
  padding-left: 40px;
  background-color: #57A644;
  height: 100vh;
}
.menuList ul li {
  font-family: "Kiwi Maru";
  font-size: 2rem;
  margin-bottom: 20px;
  transition: width 0.3s ease;
  width: 400px;
}
.menuList ul li a {
  color: #fff;
}
.menuList ul li a span {
  display: block;
  font-family: "Baloo2";
  line-height: 0.2rem;
  font-size: 1.2rem;
}

.menuBox.active .menuButton span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 11px;
}
.menuBox.active .menuButton span:nth-of-type(2) {
  opacity: 0;
}
.menuBox.active .menuButton span:nth-of-type(3) {
  transform: rotate(45deg);
  top: 11px;
}

.menuList.active {
  width: 400px;
}

/*=================================================================*/
/*	footer
/*=================================================================*/
.footer {
  position: relative;
}
.footer::before {
  position: absolute;
  content: "";
  background: url(../img/footer_top02.png) repeat-x bottom;
  width: 100%;
  height: 100px;
  top: -100px;
}
.footer .point05 {
  position: absolute;
  z-index: 1;
  top: -165px;
  left: 10%;
}
.footer .point06 {
  position: absolute;
  z-index: 1;
  top: -200px;
  right: 10%;
}
.footer .img {
  width: 100%;
  height: auto;
}
.footer .img img {
  max-width: 100%;
}
.footer .footer_box {
  background: url(../img/footer_bg.jpg);
  padding: 10px;
  position: relative;
  text-align: center;
  color: #fff;
}
.footer .footer_box .img {
  margin-bottom: 20px;
}
.footer .footer_box p.telBox {
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}
.footer .footer_box p.telBox img {
  position: absolute;
  top: 9px;
}
.footer .footer_box p.telBox a {
  font-size: 2.4rem;
  padding-left: 30px;
  color: #fff;
  pointer-events: none;
  cursor: default;
}
.footer .footer_box address {
  font-style: normal;
  font-size: 1.2rem;
}

/*=================================================================*/
/*	topへ戻る
/*=================================================================*/
footer .pagetop {
  position: fixed;
  display: block;
  cursor: pointer;
  transition-duration: 0.2s;
  opacity: 0;
  visibility: hidden;
  z-index: 100;
  bottom: 30px;
  right: 40px;
  background-color: #fff;
  width: 90px;
  height: 90px;
  border-radius: 50px;
  border: #57A644 2px solid;
}
footer .pagetop::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border-top: solid 3px;
  border-right: solid 3px;
  top: 50%;
  margin-top: -6px;
  left: 50%;
  margin-left: -9px;
  color: #57A644;
  transform: rotate(-45deg);
}

footer .pagetop.active {
  opacity: 1;
  visibility: visible;
  transition: 0.4s;
  transition-delay: 0.2s;
}

/*=================================================================*/
/*	見出し
/*=================================================================*/
h2 {
  font-size: 3.2rem;
  margin-bottom: 30px;
  font-family: "Kiwi Maru";
  line-height: 1;
}
h2 span {
  display: block;
  font-size: 2.4rem;
  color: #57a644;
  font-family: "Baloo2";
}

/*=================================================================*/
/*	ボタン
/*=================================================================*/
.btnWrap {
  margin: 30px 0;
  text-align: center;
}
.btnWrap a {
  background: #fff;
  border: #57a644 2px solid;
  border-radius: 50px;
  font-weight: bold;
  padding: 8px 70px 8px 50px;
  color: #57a644;
  position: relative;
  display: inline-block;
}
.btnWrap a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_s.svg) no-repeat;
  width: 17px;
  height: 17px;
  top: 12px;
  right: 15px;
  transition: 0.3s;
}
.btnWrap a:hover {
  color: #fff;
  background: #57a644;
  opacity: 1;
}
.btnWrap a:hover::after {
  transform: translateX(5px);
  background: url(../img/arrow_s_white.svg) no-repeat;
  transition: 0.3s;
}

.btnWrap_B {
  margin: 30px 0;
  text-align: center;
}
.btnWrap_B a {
  background: #fff;
  border: #57a644 2px solid;
  border-radius: 50px;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  padding: 13px 70px 13px 50px;
  color: #57a644;
  position: relative;
  display: inline-block;
}
.btnWrap_B a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  width: 23px;
  height: 23px;
  top: 17px;
  right: 20px;
  transition: 0.3s;
}
.btnWrap_B a:hover {
  color: #fff;
  background: #57a644;
  opacity: 1;
}
.btnWrap_B a:hover::after {
  transform: translateX(5px);
  background: url(../img/arrow_white.svg) no-repeat;
  transition: 0.3s;
}

.btnWrap_R {
  margin: 30px 0;
  text-align: center;
}
.btnWrap_R a {
  background: #fff;
  border: #57a644 2px solid;
  border-radius: 50px;
  font-weight: bold;
  padding: 8px 50px 8px 70px;
  color: #57a644;
  position: relative;
  display: inline-block;
}
.btnWrap_R a::after {
  position: absolute;
  content: "";
  background: url(../img/arrow_r.svg) no-repeat;
  width: 17px;
  height: 17px;
  top: 12px;
  left: 20px;
  transition: 0.3s;
}
.btnWrap_R a:hover {
  color: #fff;
  background: #57a644;
  opacity: 1;
}
.btnWrap_R a:hover::after {
  transform: translateX(-5px);
  background: url(../img/arrow_r_white.svg) no-repeat;
  transition: 0.3s;
}

/*******************************************************************/
/* PC
/*******************************************************************/
@media print, screen and (min-width: 769px) {
  /*<start>==========================================================*/
  body {
    height: 100%;
    margin: 0;
    font-size: 16px;
    font-size: 1.6rem;
    font-weight: 400;
  }
  #main {
    position: relative;
    overflow: hidden;
  }
  .sp {
    display: none !important;
  }
  /*=================================================================*/
  /*	footer
  /*=================================================================*/
  footer .copy {
    text-align: center;
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* TB
/*******************************************************************/
@media screen and ( max-width:1200px) {
  /*<start>==========================================================*/
  /*=================================================================*/
  /*	header
  /*=================================================================*/
  /*<end>============================================================*/
}
/*******************************************************************/
/* SP
/*******************************************************************/
@media screen and (max-width: 768px) {
  /*<start>==========================================================*/
  .pc {
    display: none !important;
  }
  body {
    min-width: unset;
  }
  body {
    height: 100%;
    margin: 0;
    font-size: 15 px;
    font-size: 1.5rem;
    font-weight: 400;
  }
  /*=================================================================*/
  /*	header */
  /*=================================================================*/
  .menuBox {
    width: 50px;
    height: 50px;
    right: 20px;
    top: 10px;
  }
  .menuBox .menuButton {
    width: 22px;
    height: 18px;
  }
  .menuBox .menuButton span {
    width: 100%;
    margin-left: -11px;
    height: 2px;
    border-radius: 10px;
  }
  .menuBox .menuButton span:nth-of-type(1) {
    top: 0;
  }
  .menuBox .menuButton span:nth-of-type(2) {
    top: 8px;
  }
  .menuBox .menuButton span:nth-of-type(3) {
    bottom: 0;
  }
  .menuList ul li {
    font-size: 1.6rem;
    width: 330px;
  }
  .menuBox.active .span:nth-child(1) {
    transform: rotate(-45deg);
    top: 7px;
  }
  .menuBox.active .span:nth-child(2) {
    opacity: 0;
  }
  .menuBox.active .span:nth-child(3) {
    transform: rotate(45deg);
    top: 7px;
  }
  .menuList.active {
    width: 330px;
  }
  .menuList.active ul li {
    font-size: 1.6rem;
  }
  /*=================================================================*/
  /*	footer */
  /*=================================================================*/
  .footer {
    position: relative;
  }
  .footer::before {
    position: absolute;
    content: "";
    background: url(../img/footer_top02.png) repeat-x bottom;
    width: 100%;
    height: 100px;
    top: -100px;
  }
  .footer .point05 {
    width: 35%;
    top: -120px;
  }
  .footer .point06 {
    width: 35%;
    top: -125px;
  }
  .footer .footer_box p.telBox img {
    top: 7px;
    width: 18px;
  }
  .footer .footer_box p.telBox a {
    font-size: 2rem;
    padding-left: 25px;
    pointer-events: unset;
    cursor: pointer;
  }
  .footer .footer_box address {
    font-style: normal;
    font-size: 1.2rem;
  }
  /*=================================================================*/
  /*	topへ戻る */
  /*=================================================================*/
  footer .pagetop {
    width: 50px;
    height: 50px;
    bottom: 30px;
    right: 20px;
  }
  footer .pagetop::before {
    width: 12px;
    height: 12px;
    border-top: solid 2px;
    border-right: solid 2px;
    margin-top: -4px;
    margin-left: -6px;
  }
  footer .pagetop.active {
    opacity: 1;
    visibility: visible;
    transition: 0.4s;
    transition-delay: 0.2s;
  }
  /*=================================================================*/
  /*	ボタン */
  /*=================================================================*/
  .btnWrap {
    margin: 20px 0;
  }
  .btnWrap a {
    font-size: 1.6rem;
  }
  .btnWrap a::after {
    position: absolute;
    content: "";
    top: 12px;
  }
  .btnWrap_B {
    margin: 20px 0;
  }
  .btnWrap_B a {
    font-size: 1.8rem;
    padding: 7px 50px 7px 40px;
  }
  .btnWrap_B a::after {
    top: 13px;
    right: 15px;
    background: url(../img/arrow_s.svg) no-repeat;
  }
  .btnWrap_B a:hover::after {
    background: url(../img/arrow_s_white.svg) no-repeat;
  }
  /*=================================================================*/
  /*	h2見出し */
  /*=================================================================*/
  h2 {
    font-size: 2.4rem;
    margin-bottom: 30px;
    line-height: 1;
  }
  h2 span {
    font-size: 1.8rem;
  }
  /*<end>============================================================*/
}
/*******************************************************************/
/* PC
/*******************************************************************/
@media screen and (max-width: 1380px) {
  /*<start>==========================================================*/
  body .horse_therapy_main section.mainImg {
    padding: 0 2%;
  }
  body .horse_therapy_main section.news .sp_pd {
    padding: 0 2%;
  }
  body .horse_therapy_main section.about .sp_pd {
    padding: 0 2%;
  }
  body .horse_therapy_main section.form .sp_pd {
    padding: 0 2%;
  }
  body .horse_therapy_main section.Notf_thanks .sp_pd {
    padding: 0 2%;
  }
  /*<end>============================================================*/
}/*# sourceMappingURL=theme.css.map */