@charset "utf-8";

/* ============================================== */
/* base setting
/* ============================================== */
body {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ---------------------- */
/* container & 12grid
/* ---------------------- */
.container {
  max-width: 1140px;
  margin-right: auto;
  margin-left: auto;
  padding-left: 15px;
  padding-right: 15px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

/* col系クラス共通 */
.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex: 1;
}

.col-1 {
  flex: 0 0 auto;
  width: calc(100% / 12);
}

.col-2 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 2);
}

.col-3 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 3);
}

.col-4 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 4);
}

.col-5 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 5);
}

.col-6 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 6);
}

.col-7 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 7);
}

.col-8 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 8);
}

.col-9 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 9);
}

.col-10 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 10);
}

.col-11 {
  flex: 0 0 auto;
  width: calc(100% / 12 * 11);
}

.col-12 {
  flex: 0 0 auto;
  width: calc(100%);
}

/* ---------------------- */
/* flexlayout 
/* ---------------------- */
.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-end {
  justify-content: flex-end;
}

/* ---------------------- */
/* text & color
/* ---------------------- */
h1{
  font-size: 42px;
  margin-top: 1rem;
}

h2 {
  font-size: 36px;
}

.fw-bold{
  font-weight: 600;
}

.fsize-12 {
  font-size: 12px;
}

.text-center {
  text-align: center;
}

.text-white{
  color: #FFFFFF;
}

.bg-dgreen{
  background: #445721;
}

/* ---------------------- */
/* spacing
/* ---------------------- */
.mt-3rem{
  margin-top: 3rem;
}

.mt-5rem{
  margin-top: 5rem;
}

/* ---------------------- */
/* others
/* ---------------------- */
.position-retative {
  position: relative;
}

.position-absolute {
  position: absolute;
}

.w-max100 {
  max-width: 100%;
  height: auto;
}

.b-radius30{
  border-radius: 30px;
}

.b-radius50{
  border-radius: 50px;
}

/* ============================================== */
/* header & footer
/* ============================================== */
header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header-logo{
  padding: 0 15px;
}

header nav li{
  margin-left: 1.5rem;
}

footer{
  padding-top: 5rem;
  padding-bottom: 3rem;
}

/* ============================================== */
/* main contents
/* ============================================== */
main > section{
  padding-top: 5rem;
  padding-bottom: 10rem;
}


/* ---------------------- */
/* first view
/* ---------------------- */
.fv {
  background-image: url('images/gorilla.jpg');
  background-size: cover;
  background-position: center top;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1200px;
  padding: 2rem 0;
}

.fv-inner{
  flex-direction: column;
  justify-content: space-around;
  height: 100%;
}

.topcopy{
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
}

.topcopy::before,
.topcopy::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #EEEEEE;
}

.topcopy::before{
  top: -6px;
}

.topcopy::after{
  bottom: -6px;
}

/* フォーム */
.fv-form {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.65);
}

.fv-form form{
  margin: 1.5em auto;
}

.fv-form input,
.fv-form button{
  font-size: 1rem;
  padding: 0.5em;
  border: 1px solid #445721;
}

.fv-form input{
  flex: 1;
  max-width: calc(100% - 3.25em);
  border-radius: 8px 0 0 8px;
}

.fv-form button{
  width: 3.25em;
  background: #445721;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
}
/* ---------------------- */
/* イベント・ニューオープン
/* ---------------------- */
.news .col-6 > img{
  min-height: 420px;
  object-fit: cover;
  object-position: right;
}

.news-text{
  bottom: 0;
  width: calc(100% - 4rem);
  margin: 1rem;
  padding: 0 1rem;
  background:rgba(0, 65, 165, 0.6);
  border-radius: 20px;
}

.news-label{
  border-radius: 50%;
  height: 4rem;
  width: 4rem;
  top: -2rem;
  left: -10px;
  transform: rotate(-15deg);
  background: #0042a5;
}

.news-text .material-icons-outlined{
  padding-right: 0.5em;
}

.news-text h3{
  margin:0 0 1rem 0;
  padding-top: 0.5rem;
  border-top: 1px solid #FFF;
}

.more{
  display: inline-block;
  padding: 5px;
  border-top: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}

/* --- NEWの時 --- */
.new .news-text{
  background:rgba(0, 165, 50, 0.6);
}

.new .news-label{
  background: #00a532;
}

/* ---------------------- */
/* 注目の動物
/* ---------------------- */
.animals{
  background: #f0ffd7;
  background: linear-gradient( 
    #FFFFFF 0%,
    #f0ffd7 4rem,
    #f0ffd7 100%
  );
}

.animal-photo{
  box-shadow: 7px 7px #445721;
}

.animal-ballon {
  border-radius: 15px;
  margin-top: 70px; /* ::beforeのtop値 */
  padding: 1rem 1.5rem;
}

.animal-ballon::before {
  content: "";
  position: absolute;
  top: -70px;
  right: 20px;
  width: 100px;
  height: 100px;
  background: url('images/animal-bg.png') center no-repeat;
  background-size:  100px auto;
}

.animal-ballon::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -20px;
  border-style: solid;
  border-width: 20px 20px 20px 0;
  border-color: transparent #445721 transparent transparent;
}

.animal-ballon h3{
  font-size: 28px;
  margin-top: 0;
}

/* --- 反転 --- */
.reversal .col-5{
  order: 2;
}

.reversal .animal-ballon::before {
  left: 20px;
  transform: scale(-1, 1);
}

.reversal .animal-ballon::after {
  left: auto;
  right: -20px;
  transform: scale(-1, 1);
}


/* ---------------------- */
/* ズーロッパについて
/* ---------------------- */
.message{
  background-color: #f0ffd7;
  background: url('images/bg.png') right bottom no-repeat,
              linear-gradient(
                #f0ffd7 0%,
                #f0ffd7 4rem,
                #e1a006 75%,
                #767909 95%,
                #445721 100%
              );
  padding-top: 7rem;
  padding-bottom: 15rem;
}

.message h2{
  margin-top: 0;
}

.message-text{
  background-color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
}

/* =================================================================================
/* =================================================================================
/*                   834px 以下（タブレット向け）の設定
/* =================================================================================
/* ============================================================================== */
@media(max-width: 834px) {
  /* ============================================== */
  /* base setting
  /* ============================================== */
  .col-tb-12{
    flex: 0 0 auto;
    width: 100%;
  }

  /* ============================================== */
  /* contents
  /* ============================================== */
  /* ---------------------- */
  /* first view
  /* ---------------------- */
  .fv {
    height: 70vh;
    padding: 2rem 1rem;
    background-position:left bottom;
  }

  .fv-inner {
    justify-content: space-between;
  }

  /* ---------------------- */
  /* ズーロッパについて
  /* ---------------------- */
  .message-text img{
    width: 400px;
    margin: 0 auto 2rem auto;
  }

} /* @media */
/* =================================================================================
/* =================================================================================
/*                   幅576px 以下（スマホ向け）の設定
/* =================================================================================
/* ============================================================================== */
@media(max-width: 576px){
  /* ============================================== */
  /* base setting
  /* ============================================== */
  .col-sp-12{
    flex: 0 0 auto;
    width: 100%;
  }

  .flex-sp-column{
    flex-direction: column;
  }


  h1 {
    font-size: 24px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 18px;
  }

  /* ============================================== */
  /* header & footer
  /* ============================================== */
  header nav li {
    margin:0.5rem 0 0;
    width: 50%;
    text-align: center;
  }

  /* ============================================== */
  /* contents
  /* ============================================== */
  /* ---------------------- */
  /* first view
  /* ---------------------- */
  .fv {
    background-position: 25% bottom;
  }

  .fv-form {
    padding: 0.5rem 1rem;
  }

  /* ---------------------- */
  /* イベント・ニューオープン
  /* ---------------------- */
  .news .col-6 > img {
    min-height: 360px;
  }

  /* ---------------------- */
  /* 注目の動物
  /* ---------------------- */
  .animals .col-5 {
    order: 1;
  }

  .animal-ballon::after {
    content: none;
  }

  .animal-photo,
  .animal-ballon {
    border: 6px solid #445721;
  }

  .animal-photo{
    box-shadow: none;
  }


} /* @media */