@charset "UTF-8";

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, 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;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
#wrap{
  overflow: hidden;
}
body {
line-height: 1;
font-family: "Noto Sans Japanese","ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
ol, ul {
list-style: none;
}
#contener-inner{
    margin: 0 auto;
}
.logo{
  z-index: 9999;
  position: absolute;
  top: 5%;
  right: 5%;
}
.logo img{
  width: 100px;
}
  /*----------ハンバーガーアイコン----------*/
  .hamburger {
    position: fixed;
    left: 5%;
    top:5%;
    display: block;
    width: 50px;
    height: 50px;
    z-index: 9999;
    box-sizing: border-box;
    cursor: pointer;
  }
  .hamburger  span {
    display: block;
    position: absolute;
    width: 30px;
    /* border-bottom: solid 3px rgb(247, 139, 189); */
    border-bottom: solid 3px #FF7E93;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }
  .hamburger  span:nth-of-type(1) {
    top: 9px;
  }
  .hamburger  span:nth-of-type(2) {
    top: 18px;
  }
  .hamburger  span:nth-of-type(3) {
    top: 27px;
  }
  .hamburger  span:nth-of-type(4) {
    border: none;
    color: #FF7E93;
    font-size: 9px;
    font-weight: bold;
    top: 34px;
  }
  /* 最初のspanをマイナス45度に */
  .hamburger.active span:nth-child(1) {
    top: 18px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
 
/* 2番目と3番目のspanを45度に */
.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    top: 18px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
  
  /*----------ナビゲーション----------*/
  #navigation{
    position: fixed;
    display: none;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #fff;
    opacity: 0.91;
    z-index: 9998;
    overflow: hidden;
  }
  /*----------追加１----------*/
  #navigation::before{
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    /* background-color: #FF7E93; */
    background-color: #fff;
    -webkit-animation: upper-right 0.4s 0.4s forwards;
    animation: upper-right 0.4s 0.4s forwards;
  }
  @-webkit-keyframes upper-right{
    0% {
      -webkit-clip-path: polygon(100% 100%, 100% 0, -35% 0, 0 100%);
      clip-path: polygon(100% 100%, 100% 0, -35% 0, 0 100%);
    }
    100% {
      -webkit-clip-path: polygon(100% 100%, 100% 0, 100% 0, 135% 100%);
      clip-path: polygon(100% 100%, 100% 0, 100% 0, 135% 100%);
    }
  }
  @keyframes upper-right{
    0% {
      -webkit-clip-path: polygon(100% 100%, 100% 0, -35% 0, 0 100%);
      clip-path: polygon(100% 100%, 100% 0, -35% 0, 0 100%);
    }
    100% {
      -webkit-clip-path: polygon(100% 100%, 100% 0, 100% 0, 135% 100%);
      clip-path: polygon(100% 100%, 100% 0, 100% 0, 135% 100%);
    }
  }
  /*----------追加１ここまで----------*/
  
  #navigation .navigation_inner{
    display: table;
    width: 100%;
    height: 100%;
  }
  #navigation .navigation_inner .navigation_menu{
    display: table-cell;
    /* vertical-align: middle; */
    position: relative;
    top: 22%;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item{
    width: 300px;
    height: 40px;
    margin: 16px auto 0 auto;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item:first-child{
    margin-top: 0;
  }
  #navigation .navigation_inner .navigation_menu .navigation_item a{
    display: block;
    position: relative;
    text-decoration: none;
    width: 100%;
    height: 40px;
    font-size: 1.5rem;
    color: #FF7E93;
    line-height: 40px;
    text-align: center;
    opacity: 1;
    cursor: pointer;
  }
  
  /*----------追加２----------*/
  /* #navigation .navigation_inner .navigation_menu .navigation_item a .navigation_text{
    display: block;
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    font-size: 2.4rem;
    line-height: 40px;
    -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    -webkit-animation: rota 1.2s 0.6s forwards;
    animation: rota 0.4s 0.7s forwards;
  }
  @-webkit-keyframes rota{
    0% {
     -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    }
    100% {
      -webkit-transform: rotateY(0);
    transform: rotateY(0);
    }
  }
  @keyframes rota{
    0% {
     -webkit-transform: rotateY(90deg);
    transform: rotateY(90deg);
    }
    100% {
     -webkit-transform: rotateY(0);
    transform: rotateY(0);
    }
  } */
  /*----------追加２ここまで----------*/

  #top_page{
    z-index: 10;
    position: fixed;
    bottom:10%;
    right: 3%;
    z-index: 99999;
    /* border: 1px solid rgb(247, 139, 189); */
    border-radius: 50%;
    box-shadow: 0px 0px 6px 0px #fff;
    width: 50px;
    height: 50px;
    text-align: center;
    font-weight: bold;
    line-height: 3;
    /* background-color: rgb(247, 139, 189); */
    background-color: #FF7E93;
}
#top_page a{
    text-decoration:none;
    color: #fff;
}
.topkyeImages{
  margin-top: 20px;
}
.topkyeImages .swiper-container .swiper-wrapper .swiper-slide .pc_100 {
  width: 92.5%;
  height: 680px;
  border-top: 3px solid #FF7E93;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px;
  box-shadow: 0px 3px 5px 0px #939393;
}
/* .swiper-wrapper img {
  object-fit: cover;
  border-radius: 0 0 5px 5px;
  font-family: 'object-fit: cover;'
} */

.contents {
  width: 90%;
  margin: 20px auto;
  text-align: center;
}

.contentBox {
  box-shadow: 0px 2px 15px 3px #ddd;
  border-radius: 5px;
  width: 16.5%;
  margin: 20px;
  background-color: #fff;
  display: inline-block;
}

.contentBox .contentBoxInner h1 {
  padding: 40px 0;
  text-align: center;
  background-color: beige;
  border-radius: 5px 5px 0 0;
}
.contentBox .contentBoxInner .conImg {
  margin: 0 auto;
  padding:10% 0;
  text-align: center;
}
.contentBox .contentBoxInner .conImg img{
  width: 80%;
  height: auto;
  transition-duration: 0.3s;
  border-radius: 5px;
  filter:brightness(50%);
  -webkit-filter:brightness(50%);
  -moz-filter:brightness(50%);
  -o-filter:brightness(50%);
  -ms-filter:brightness(50%);
}
.contentBox .contentBoxInner .conImg img:hover{
  transform: scale(1.1);
  transition-duration: 0.3s;
  filter:brightness(100%);
  -webkit-filter:brightness(100%);
  -moz-filter:brightness(100%);
  -o-filter:brightness(100%);
  -ms-filter:brightness(100%);
}

.contentBox .contentBoxInner p {
  padding: 0 0 0 20px;
  display: inline-table;
  vertical-align: top;
}

.contentBox-pf {
  box-shadow: 0px 2px 15px 3px #ddd;
  border-radius: 5px;
  width: 95%;
  margin: 0 auto 40px auto;
  background-color: #fff;
}
.contentBox-pf .contentBoxInner-pf {
  /* min-height: 400px; */
  padding:30px;
}
.contentBox-pf .contentBoxInner-pf h1{
  position: relative;
  color: #333333;
  text-shadow: 0 0 2px white;
  background: #CFBFBE;
  z-index: -4;
  border-radius: 0 10px 10px;
  font-size: 1.2em;
  font-weight: bold;
  text-align: left;
}
.contentBox-pf .contentBoxInner-pf h1:before{
  content: "";
  position: absolute;
  background: #F9DDDB;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  top: 50%;
  /* border: dashed 1px white; */
  left: -15px;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: -1;
}

.contentBox-pf .contentBoxInner-pf .conImg {
  margin: 20px 0 0 80px;
}
.contentBox-pf .contentBoxInner-pf p {
  padding: 20px;
  display: inline-table;
  vertical-align: top;
  line-height: 1.5em;
}
.contentBox-pf .contentBoxInner-pf ul{
  padding: 20px 0;
}
.contentBox-pf .contentBoxInner-pf ul li{
  list-style: none;
  border-bottom:1px dotted #ccc;
  margin: 0 0 20px 0;
  line-height: 1.4em;
  text-align: left;
  padding: 0 0 20px 30px;
}

footer {
  border-top: 1px solid #ccc;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
footer .fotternav {
  background: #ddd url("../images/footer_background_mizutama.png") repeat fixed center top;
  height: 220px;
  color: #fff;
}
footer .fotternav ul {
  width: 870px;
  margin: 0 auto;
}
footer .fotternav ul li {
  display: table-cell;
  padding: 0 10px;
  width: 200px;
  height: 60px;
  vertical-align: middle;
}
footer p {
  color: #666;
  background-color: #fff;
  margin: 0;
  padding: 0;
  line-height: 5em;
  font-size: 0.8em;
}

form{
  width: 300px;
  margin: 30px auto 0 auto;
  text-align: left;
  padding: 0 30px 20px 0;
}
label{
  display: inline-block;
  margin-bottom: 10px;
}
.form-control{
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
textarea{
  resize: vertical;
}
.btn,
.btn-default{
  margin: 30px 0 0 0;;
}
.cp{
  color: #FF7E93;
}
.sp_scroll{
  text-align: center;
}
.keyImg{
  width: 50%;
  height: 100%;
  position: relative;
  left: 25%;
  display: block;
}
.keyBg{
  background-color: darkcyan;
}
.contactBtn {
  text-align: center;
  font-size: 1em;
  font-weight: bold;
  margin: 20px auto 0 auto;
  width: 50%;
}
.contactBtn a {
  display: block;
  text-align: center;
  text-decoration: none;
  background-color: #FF7E93;
  /* background-color: rgb(247, 139, 189); */
  /* background-image: linear-gradient(-90deg, #CFB0CC, #FF7E93); */
  color: #fff;
  border-style: solid;
  padding: 20px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.top_h1 {
  position: relative;
  margin-bottom: 40px;
  text-align: left;
}
  
.top_h1:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 100%;
  height: 7px;
  background: -webkit-repeating-linear-gradient(-45deg, darkturquoise, darkturquoise 2px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, darkturquoise, darkturquoise 2px, #fff 2px, #fff 4px);
}
.tm{
  margin-top: 8%;
}


.ofi {
  object-fit: cover; /* 他のブラウザ用(＝通常の指定) */
  object-position: 50% 50%; /* 他のブラウザ用(＝通常の指定) */
  font-family: 'object-fit: cover; object-position: 50% 50%;' /* IE・Edge対応 */
}


@media screen and (max-width: 480px) and (min-width: 0px) {
  form{
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .contentBox {
    box-shadow: 0px 2px 15px 3px #ddd;
    border-radius: 5px;
    width: 40%;
    margin: 0 10px 40px;
    background-color: #fff;
    /* display: block; */
  }
  .contactBtn {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
    .contentBox {
      box-shadow: 0px 2px 15px 3px #ddd;
      border-radius: 5px;
      width: 25%;
      background-color: #fff;
    }
}
@media screen and (max-width: 979px) and (min-width: 0px) {
  .top_h1 {
    padding: 0 0 0 5%;
    width:90%;
    margin: 3% auto 40px auto;
  }
  .logo{
    z-index: 9999;
    position: absolute;
    top: 3%;
    right: 3%;
  }
  .logo img{
    width: 100px;
  }
  .hamburger{
    top:2%;
  }
  .topkyeImages{
    margin: 0;
  }
  .swiper-button-prev,
  .swiper-button-next{
    display: none;
  }
  .sp_scroll{
    text-align: center;
    display: block;
  }
  .topkyeImages .swiper-container .swiper-wrapper .swiper-slide .sp_100{
    width: 100%;
    height: auto;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    box-shadow: none;
  }
  .keyImg{
    width: 100%;
    height: 100%;
    position: relative;
    left: 0;
  }
  .contents {
    width: 100%;
    margin: 20px auto;
  }
  /* .contentBox .contentBoxInner {
    min-height: 400px;
  } */
  .contentBox .contentBoxInner h1 {
    padding: 20px 0;
    text-align: center;
    background-color: beige;
    border-radius: 5px 5px 0 0;
  }
  .contentBox .contentBoxInner .conImg {
    margin: 0 auto;
    text-align: center;
    width: 100%;
    /* min-width: 100px;
    max-width: 200px; */
  }
  .contentBox .contentBoxInner p {
    padding: 0;
    display: inline-table;
    vertical-align: top;
  }
  .contentBox-pf .contentBoxInner-pf ul li{
    font-size: 0.8em;
    padding: 0 0 20px 0;
  }
  footer {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  /* footer .fotternav {
    background: #ddd url("../images/footer_background_mizutama.png") repeat fixed center top;
    height: 220px;
    color: #fff;
  }
  footer .fotternav ul {
    width: 100%;
    margin: 0 auto;
  }
  footer .fotternav ul li {
    display: block;
    padding: 20px 0;
    width: 100%;
    height: 10px;
    vertical-align: middle;
    font-size: 10px;
  } */
  footer p {
    color: #666;
    background-color: #fff;
    margin: 0;
    padding: 0;
    line-height: 4em;
  }
}