@charset "UTF-8";

/* ----------------------------------------------------------------------
 reset css
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table:not(.tinymce-table), caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

html * {
        box-sizing: border-box;
    }
ul, ol {
  list-style: none;
}

body {
        -webkit-text-size-adjust: 100%;
        font-size: 1.6rem;
         font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
        color: #222;
        line-height: 1.7;
        letter-spacing: 1px;
    }
img {
        display: block;
        height: auto;
        max-width: 100%;
    }

a,
a:before,
a:after,
input {
  -webkit-transition-property: background-color, color;
  -webkit-transition-duration: 0.2s;
  -webkit-transition-timing-function: ease;
  -moz-transition-property: background-color, color;
  -moz-transition-duration: 0.2s;
  -moz-transition-timing-function: ease;
  -o-transition-property: background-color, color;
  -o-transition-duration: 0.2s;
  -o-transition-timing-function: ease;
  transition-property: background-color, color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
a {
  color: #000;
}
a:hover {
  text-decoration: none;
  color: #ccc;
}
h1 {
  font-size: 3.6rem;
  font-weight: 700;
}

h2 {
  font-size: 4rem;
  font-weight: 700;
}

h3 {
   font-size: 2.4rem;
  font-weight: 600;
}

h4 {
  font-size: 1.8rem;
  font-weight: 700;
}
.wrapper {
  overflow: hidden;
}

footer {
    background-color: #F7F7F7;
    margin-top: 70px;
    margin: 0 auto;
    position: relative;
    bottom: 0;
    width: 100%;
    margin-top: 50px;
}
.footer-main {
    padding: 30px 4% 10px;
}
footer ul li {
  display: inline-block;
  margin-right: 40px;
  vertical-align: middle;
}
footer ul li a {
  color: #000;
  font-size: 1.4rem;
}
footer a:hover {
  color: #1AAA00;
  transition: all .4s;
}
.f-logo img {
  width: 100px;
}
.company img {
  width: 120px;
}
.f-company {
  margin-bottom: 40px;
}
.f-right {
  margin-left: 0;
}
.copy {
  background-color: #E2E2E2;
  font-size: 1.2rem;
  padding: 5px;
  text-align: center;
}
a.anchor{
    display: block;
    padding-top: 10px;
    margin-top: -10px;
}

.animate__delay-03s {
 animation-delay: calc(var(--animate-delay) * 0.3);
}
.animate__delay-05s {
 animation-delay: calc(var(--animate-delay) * 0.5);
}
.animate__delay-08s {
 animation-delay: calc(var(--animate-delay) * 0.8);
}
.animate__delay-13s {
 animation-delay: calc(var(--animate-delay) * 1.3);
}
.animate__delay-16s {
 animation-delay: calc(var(--animate-delay) * 1.6);
}
.animate__delay-30s {
 animation-delay: calc(var(--animate-delay) * 3);
}
/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
.tb { display: none !important; }
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 590px) {
.pc { display: none !important; }
.tb { display: none !important; }
.sp { display: block !important; }
}
@media screen and (min-width:591px) and (max-width:960px){
.pc { display: none !important; }
.tb { display: block !important; }
.sp { display: none !important; }
}

.header-Logo img {
  width: 130px;
}
header img {
  width: 700px;
  margin: 70px auto;
}
.cont01 h2 {
  font-size: 2rem;
  margin-bottom: 50px;
}
/* ボタン共通設定 */
.btn-bl{
  position: relative;
  text-decoration: none;
  display: inline-block;
  background:#F28599;
  color:#fff;
  padding: 10px 40px 10px 30px;
  border-radius:25px;
  text-align: center;
  outline: none;
  transition: ease .2s;
  font-size: 1.3rem;
  line-height:1.5;
}

.btn-bl:hover{
  background:#F25471;
}

/* 矢印が回転 */

.btnarrow3::after{
    content: '';
  position: absolute;
    top: 42%;
    right: 13px;
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    transition: all .3s;
}

/*hoverした際のアニメーション*/
.btnarrow3:hover::after{
  animation: arrowrotate .3s;
}

@keyframes arrowrotate {
100% {
    transform: rotate(360deg);
  }
}
.navbar-nav .btn-bl {
      padding: 5px 30px 5px 15px;
}
.navbar-nav {
  align-items: center;
}
.cont01 {
  text-align: center;
  padding-bottom: 200px;
}
.cont01-main {
  margin-bottom: 30px;
}
.navbar {
  background-color: #efefef;
}



















/* タブレット */
@media only screen and (min-width: 767px) and (max-width: 960px) {

/*==================================================
　5-2-4 MENUがCLOSEに
===================================*/

.openbtn{
  position: relative;
  background:#679E32;
  cursor: pointer;
    width: 50px;
    height:50px;
  border-radius: 5px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 5px;
  background: #fff;
    width: 45%;
  }


.openbtn span:nth-of-type(1) {
  top:13px; 
}

.openbtn span:nth-of-type(2) {
  top:19px;
}

.openbtn span:nth-of-type(3) {
  top:25px;
}

.openbtn span:nth-of-type(3)::after {
  content:"Menu";/*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top:10px;
  left:3px;
  color: #fff;
  font-size: 0.6rem;
  text-transform: uppercase;
}

/*activeクラスが付与されると線が回転して×になり、Menu⇒Closeに変更*/

.openbtn.active span:nth-of-type(1) {
    top: 14px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 26px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}

.openbtn.active span:nth-of-type(3)::after {
  content:"Close";/*3つ目の要素のafterにClose表示を指定*/
    transform: translateY(0) rotate(-45deg);
  top:10px;
  left:8px;
}
/*========= ボタンのためのCSS ===============*/
.openbtn{
  position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
  top:10px;
  right: 10px;
  cursor: pointer;
    width: 50px;
    height:50px;
} 
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
  background-color: #fff;
    width: 45%;
  }
.openbtn span:nth-of-type(1) {
  top:15px; 
}
.openbtn span:nth-of-type(2) {
  top:23px;
}
.openbtn span:nth-of-type(3) {
  top:31px;
}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
}
.navbar-collapse {
  background-color: #fff;
}
#header {
  padding: 0;
}
.navbar {
  padding: 0;
}
    .navbar-collapse {
        background-color: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
    }
.navbar-toggler {
    padding: 0;
    font-size: 0;
    line-height: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.nav-justified li {
  border-bottom: 1px solid #ccc;
}
.navbar-nav li {
    margin-right: 0;
    position: relative;
    padding: 10px 20px;
}
.nav-link {
    display: block;
    padding: 0 0 3px 1rem;
}
.navbar-nav {
    align-items: unset;
}
.nav-justified .nav-item {
  text-align: left;
}

.navbar-collapse > ul > li {
        display: block;
        width: 100%;
    }
.navbar-collapse .child_menu_button {
        display: block;
        position: absolute;
        text-align: center;
        width: 60px;
        height: 39px;
        right: 0px;
        top: 1px;
        z-index: 5;
        cursor: pointer;
    }
.navbar-collapse .child_menu_button .icon:before {
        content: '';
        background: url("../img/arrow.png");
        background-size: contain;
        text-align: center;
        display: block;
        width: 20px;
        height: 20px;
        line-height: 20px;
        position: absolute;
        left: 20px;
        top: 10px;
        -webkit-transition: transform 0.5s ease;
        -moz-transition: transform 0.5s ease;
        -ms-transition: transform 0.5s ease;
        -o-transition: transform 0.5s ease;
        transition: transform 0.5s ease;
    }
.navbar-brand {
  padding: 5px 10px;
}
.nav-justified .nav-item.kengaku {
  text-align: center;
}
.fv-cate-l,
.fv-cate-r {
  padding: 10px;
  color: #1AAA00;
}
.fv-cate-sub {
  color: #000;
}
.katsuyo-tit {
    font-size: 4.5rem;
    line-height: 1.6;
}
.katsuyo02 {
    padding: 20px 5px;
  }
.cont01-inner h3 {
    font-size: 2.8rem;
  }
.map-tb img {
margin: 0 auto;
width: 560px;
}
.cont02 {
    padding-bottom: 100px;
  }
.souji {
    width: 100%;
  }

.training03-ph img {
    height: 280px;
}
.qr img {
    width: 100%;
    height: 100%;
    max-width: 80px;
}
.cat06 {
        width: 250px;
        margin: 20px auto 0;
}
.cat07 {
    width: 150px;
}
.cont09-inner h3 {
    font-size: 2.5rem;
}
.ganban-kouka ul {
    flex-direction: column;
}
.ganban-kouka li {
  margin-bottom: 10px;
}
.ganban-kouka ul {
    margin-bottom: 0;
  }
.anma-txt p{
  margin-bottom: 20px;
}
.anma-price {
  margin: 0 auto;
}
.ganban img {
  margin-top: 20px;
}
.diet-tb{
  width: 80%;
  margin: 0 auto;
}
.osya-tb {
  width: 90%;
  margin: 0 auto;
}





















}



/* スマホ */
@media screen and (max-width: 590px) {

#header {
  padding: 0;
}
.navbar {
  padding: 0;
}
    .navbar-collapse {
        background-color: #fff;
        padding-top: 20px;
        padding-bottom: 20px;
    }
.navbar-toggler {
    padding: 0;
    font-size: 0;
    line-height: 0;
    background-color: transparent;
    border: none;
    border-radius: 0;
}
.nav-justified li {
  border-bottom: 1px solid #ccc;
}
.navbar-nav li {
    margin-right: 0;
    position: relative;
    padding: 10px 20px;
}
.nav-link {
    display: block;
    padding: 0 0 3px 1rem;
}
.navbar-nav {
    align-items: unset;
}
.nav-justified .nav-item {
  text-align: left;
}


.navbar-brand {
  padding: 5px 10px;
}
.nav-justified .nav-item.kengaku {
  text-align: center;
}

.bloom-bt {
    width: 90%;
    margin: 70px 20px;
    text-align: center;
}
.bloom-bt .btn-bl {
  font-size: 1.8rem;
}
footer ul li {
    display: block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 20px;
    margin-bottom: 20px;
    margin-right: 0;
    }

footer ul li:last-child {
  border-bottom: unset;
}

footer .align-items-center {
    align-items: unset!important;
}
.f-logo {
  text-align: center;
}
.f-logo img {
    width: 100px;
    margin: 20px auto;
}
.company img {
  margin: 0 auto;
}











  }


  