@charset "utf-8";
/* CSS Document */
* {
  box-sizing: border-box;
  line-height: 1.6;
  /*text-align: center;*/
  color: #5D5D5D;
  font-size: 10px;
  list-style: none;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-break: strict; /*句読点や記号を用いた場合の改行規則 strict最も厳格な改行規則を使用してテキストを改行*/
}
/*----------背景の水玉----------*/
body {
  background-image: url("../img/body.jpg");
  background-size: cover;
}
/*----------header logoとnav----------*/
.header {
  width: 100%;
  height: auto;
}
.header .logo {
	width: 30%;
  
  text-align: center;
  margin: 0 auto;
}
/*----------drawermenu----------*/
ul {
  list-style: none;
}
.contents {
  transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
#navTgl {
  display: none;
}
/*label {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}*/
.open {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  width: 60px;
  height: 48px;
  transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.open::before, .open::after {
  content: "";
}
.open span {
  content: "";
  position: absolute;
  top: 35px;
  right: 20px;
  width: 29px;
  border-bottom: 4px solid #F9C1CF; /*★★線の太さや色★★*/
  transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  /*padding-bottom:5px;*/
}
.open::before {
  content: "";
  position: absolute;
  top: 30px;
  right: 20px;
  width: 29px;
  border-bottom: 4px solid #F9C1CF; /*★★線の太さや色★★*/
  transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  /*padding-bottom:5px;*/
}
.open::after {
  content: "";
  position: absolute;
  top: 31px;
  right: 29px;
  width: 20px;
  border-bottom: 4px solid #F9C1CF; /*★★線の太さや色★★*/
  transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  margin-top: 10px;
}
.open::before {
  transform: translateY(-8px);
}
.open::after {
  transform: translateY(8px);
}
.close {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .5s;
}
#navTgl:checked + .open span {
  transform: scaleX(0);
}
#navTgl:checked + .open::before {
  transform: rotate(45deg) scalex(2.0) translateX(1.8px);
}
#navTgl:checked + .open::after {
  transform: rotate(-45deg) scalex(3.0) translateX(3.2px);
}
#navTgl:checked ~ .close {
  /*  background: rgba(0, 0, 0, .7);*/
  background-image: url("../img/body.jpg");
  background-size: cover;
}
.menu {
  z-index: 1;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 6%;
  margin: 0;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}
.menu h2, .menu a {
  color: #707070;
  font-size: 15px;
  list-style: none;
  font-family: "fot-udmarugo-large-pr6n", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.menu h2 {
  text-align: center;
}
.menu ul {
  padding: 0;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.menu li {
  /* font-size: .9em;*/
  line-height: 1.4;
  border-bottom: solid 1px #707070;
}
.menu li:nth-child(4) {
  border-bottom: none;
}
.menu li:nth-child(5) {
  border-bottom: none;
}
.menu a {
  display: block;
  padding: 1.4em 2em;
  text-decoration: inherit;
  transition: background .5s;
}
.menu li :hover {
  /* font-size: .9em;*/
  cursor: pointer;
  opacity: 0.8;
}
#navTgl:checked ~ .menu {
  transform: none;
}
.inner {
  width: 100%;
}



/*main領域 innerの直下にmain*/
.main {
  width: 87.27%;
  background-color: #F8F3E7;
  margin-top: 20px;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  text-align: center;
  font-size: 14px;
  position: relative;
}



.main section {
 
	width: 90%;
  margin: 0 auto;
}

.main h2 {
  font-size: 16px;
  background-color: #F9C1CF;
  padding: 5px 0 5px 0;
  margin-top: 90px;
  margin-bottom: 30px;
  border-radius: 5px;
}

.hoikujikan h2{
	 margin-top: 30px;
}

.hoikujikan p {
  padding-bottom: 30px;
 
}
.main p:nth-child(1) {
  padding-bottom: 0px;
}
.main:last-child {
  padding-bottom: 50px;
}

/*titleの領域*/
.title {
  margin: 0 auto;
  /*padding-top: 40px;*/
  text-align: center;
	position:relative;
	
}
.ensya {
  width: 80%;
	text-align: center;
  margin-bottom: 40px;
	
}

.pop img{
	width: 38%;
	height:auto;
	margin-top:30px;
	animation: fuwafuwa 5s ease infinite;
}

@keyframes fuwafuwa {
	0% {transform:translate(0, 0);}
	50% {transform:translate(0, -20px);}
	100% {transform:translate(0, 0);}
}

.title-flower1{
	width:15%;
	max-width: 95px;
	height:auto;
	position:absolute;
    top:80%;
	left:20%;
	 animation: flower-anime 5s linear infinite;
}

.title-flower2{
width:20%;	
	max-width: 125px;
	height:auto;
	position:absolute;
    top:80%;
	right:20%;
	 animation: flower-anime 5s linear infinite;
}

@keyframes flower-anime {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(0deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}



.main ul li {
  text-align: left;
  padding: 5px 0 0 5px;
}
.main ul li a {
  text-decoration: none;
}

/*table*/


.table_green {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-bottom: 1px solid rgba(94, 183, 79, .5);
}
.table_green th, .table_green td {
  padding: 1rem 1.5rem;
  vertical-align: middle;
  text-align: left;
  border-top: 1px solid rgba(94, 183, 79, .5);
}
.table_green th {
  padding: 1rem .8rem;
  white-space: nowrap;
  background: rgba(94, 183, 79, .15);
}
.table_narrow th, .table_narrow td {
  padding: .6rem .6rem;
  line-height: 1.5
}
.pc-tr th {
  padding: 1rem 1rem 1rem 1rem;
}
.bg_y, .bg_dg {
  background-color: #FFEEF3;
}
.pc td {
  background-color: #FFEEF3;
}
.table_nintei {
  width: 100%;
	max-width:600px;
	margin-right:auto;
	margin-left:auto;
  font-size: .9rem;
  line-height: 1.4;
  border-collapse: separate;
  border-spacing: 0;
}
.table_nintei td {
  padding: 1rem 0;
  vertical-align: middle;
  text-align: center;
  /*background: rgba(0,0,0,.15);*/
  border: 1px solid #fff;
  border-width: 0 1px 1px 0;
}
.pc {
  display: none;
}

.sukeju-ru {
  position: relative;
}
.time-sukeju-ru {
  width: 100%;
}
.takeuma {
  width: 24%;
  height: auto;
  position: absolute;
  top: -5%;
  right: 2%;
}
.touen {
  width: 38%;
  height: auto;
  position: absolute;
  bottom: -4%;
  left: 1%;
}
.lunch {
  width: 20.66%;
  height: auto;
  position: absolute;
  top: 6%;
  left: 43%;
}
.doriru {
  width: 20.33%;
  height: auto;
  position: absolute;
  top: 12%;
  left: 8%;
}
.apple {
  width: 7%;
  height: auto;
  position: absolute;
  bottom: 34%;
  right: 26%;
}
.block {
  width: 20%;
  height: auto;
  position: absolute;
  bottom: 10%;
  right: 34%;
}

.time-logo{
	width: 25%;
  height: auto;
  position: absolute;
  top: 37%;
  right: 34%;
}

.fadeIn_left {
  opacity: 0;
  transform: translate(-50%, 0);
  transition: 2s;
}
.fadeIn_left.is-show {
  transform: translate(0, 0);
  opacity: 1;
}

/*==================================================
アコーディオンのためのcss
===================================*/


.s_02 {
  width: 100%;
  
  margin-right:auto;
	margin-left:auto;
	margin-top:40px;
	max-width:600px;
}

.s_02 .accordion_one {
  max-width: 1000px;
  margin: 0 auto;
}
.s_02 .accordion_one .accordion_header {
  background-color: rgba(94, 183, 79, .15);;
  color: #5d5d5d;
  font-size: 26px;
  font-weight: normal;
  padding: 10px 11%;
  text-align: center;
  position: relative;
 /* z-index: +1;*/
  cursor: pointer;
  transition-duration: 0.2s;
	border-top:dotted 1px rgba(94, 183, 79, .5); 
}
.s_02 .accordion_one:nth-of-type(2) .accordion_header {
  background-color: rgba(94, 183, 79, .15);
}
.s_02 .accordion_one:nth-of-type(3) .accordion_header {
  background-color:rgba(94, 183, 79, .15);
}
.s_02 .accordion_one:nth-of-type(4) .accordion_header {
  background-color:  rgba(94, 183, 79, .15);
}
.s_02 .accordion_one:nth-of-type(5) .accordion_header {
  background-color: rgba(94, 183, 79, .15);
}
.s_02 .accordion_one:nth-of-type(6) .accordion_header {
  background-color: rgba(94, 183, 79, .15);
	border-bottom:dotted 1px rgba(94, 183, 79, .5);
}
.s_02 .accordion_one .accordion_header:hover {
  opacity: .8;
}
.s_02 .accordion_one .accordion_header .i_box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 65%;
  right: 5%;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
  margin-top: -20px;
  box-sizing: border-box;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
}
.s_02 .accordion_one .accordion_header .i_box .one_i {
  display: block;
  width: 18px;
  height: 18px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transform-origin: center center;
  transition-duration: 0.2s;
  position: relative;
}
.s_02 .accordion_one .accordion_header.open .i_box {
  -webkit-transform: rotate(-360deg);
  transform: rotate(-360deg);
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before, .s_02 .accordion_one .accordion_header .i_box .one_i:after {
  display: flex;
  content: '';
  background-color: #fff;
  border-radius: 10px;
  width: 18px;
  height: 4px;
  position: absolute;
  top: 7px;
  left: 0;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  transform-origin: center center;
}
.s_02 .accordion_one .accordion_header .i_box .one_i:before {
  width: 4px;
  height: 18px;
  top: 0;
  left: 7px;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:before {
  content: none;
}
.s_02 .accordion_one .accordion_header.open .i_box .one_i:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.s_02 .accordion_one .accordion_inner {
  display: none;
  padding: 30px 30px;
  border-left: 2px dotted rgba(94, 183, 79, .5);
  border-right: 2px dotted rgba(94, 183, 79, .5);
 
  box-sizing: border-box;
}
.s_02 .accordion_one:nth-of-type(2) .accordion_inner {
  border-left: 2px dotted rgba(94, 183, 79, .5);
  border-right: 2px dotted rgba(94, 183, 79, .5);
 
	box-sizing: border-box;
}
.s_02 .accordion_one:nth-of-type(3) .accordion_inner {
  border-left: 2px dotted rgba(94, 183, 79, .5);
  border-right: 2px dotted rgba(94, 183, 79, .5);
  
	box-sizing: border-box;
}

.s_02 .accordion_one:last-of-type .accordion_inner {
  border-left: 2px dotted rgba(94, 183, 79, .5);
  border-right: 2px dotted rgba(94, 183, 79, .5);
  border-bottom: 2px dotted rgba(94, 183, 79, .5);
	box-sizing: border-box;
}

.s_02 .accordion_one .accordion_inner .box_one {
  height: auto;
}
.s_02 .accordion_one .accordion_inner div.txt_a_ac {
  margin: 0;
}
.box_one img {
  width: 100%;
  height: auto;
  margin-top: 15%;
}
@media screen and (max-width: 1024px) {
  .s_02 .accordion_one .accordion_header {
    font-size: 14px;
  }
  .s_02 .accordion_one .accordion_header .i_box {
    width: 25px;
    height: 25px;
    /*margin-top: -15px;*/
  }
}
@media screen and (max-width: 767px) {
  .s_02 .accordion_one .accordion_header {
   
    
    padding: 10px 60px 10px 15px;
  }
}
/*====================================================================
以下は不要です。
====================================================================*/
/*@media screen and (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}*/
/*.section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0px 0px 0px;
}*/
.section p._a {
  font-size: 12px;
  font-weight: bold;
  margin: 30px 0 0;
}
.section p._a .link {
  display: inline-block;
  color: #607D8B;
  padding-left: 1.3em;
  text-indent: -1.3em;
}
.section p._a .link:before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-top: 2px solid #607D8B;
  border-right: 2px solid #607D8B;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 10px;
}
.oneBox {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 250px;
  margin: 0 auto 50px;
  overflow: hidden;
}
/*----------わからないことがありましたらお気軽に----------*/
#denwa {
  margin: 74px auto 0 auto;
  padding-bottom: 80px;
  width: 340px;
  height: auto;
  text-align: center;
  position: relative;
}
.denwa-img img {
  width: 280px;
  height: 150px;
}
.denwa-flower1 img {
  width: 82.5px;
  height: auto;
  position: absolute;
  top: 100px;
  left: 0px;
  animation: flower-anime 5s linear infinite;
}
.denwa-flower2 img {
  width: 82.5px;
  height: auto;
  position: absolute;
  top: 100px;
  right: 0px;
  animation: flower-anime 5s linear infinite;
}
/*----------footer----------*/
.footer {
  width: 100%;
  background-image: url("../img/footer-bg.png");
  text-align: center;
}
.footer-logo {
  width: 50%;
  padding-top: 44px;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.address {
  margin-top: 12px;
  font-size: 12.5px;
}
.main-ad {
  font-size: 15px;
}
.address img {
  max-width: 50.66%;
  height: auto;
  text-align: center;
  margin: 0 auto;
}
.footer .copy {
  padding-bottom: 10px;
  font-size: 10px;
}
/*----------インスタアイコン----------*/
.icon {
  margin-top: 20px;
  margin-bottom: 70px;
}
.icon a {
  text-decoration: none;
}
.icon-instagram:before {
  content: "\ea92";
  color: #F9C1CF;
  font-size: 55px;
  text-decoration: none;
}
/*----------最初のロゴ画像表示----------*/
.start {
  background: #FFF;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}
.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 25vw;
}
/*----------pagetop----------*/
.page-top {
  position: fixed;
  bottom: 10px;
  right: -2px;
}
.page-top a {
  display: block;
  /*width: 50px;*/
  /*padding: 30px 0;
    border-radius: 5px;
    background: #ef7b7b;
    color: #fff;*/
  text-decoration: none;
}
.page-top a img {
  width: 70px;
}
.page-top a:hover {
  opacity: 0.7;
}

.flex-item{
		width:100%;
		background-color:white;
	margin-bottom:20px;
	margin-top:20px;
	margin-right:auto;
	margin-left:auto;
	border-radius: 5px;
	}
/*-----------------------------------------------------
ここからメディアクエリ601px~1100px
------------------------------------------------------*/
@media screen and (min-width:601px) {
  .inner {
    max-width: 1100px;
    margin-right: auto;
    margin-left: auto;
  }
  /*innerの直下にmain*/
  .main {
    width: 87.27%;
    /* margin-top: -29%;*/
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
	
	.bread {
	padding:20px;
}
	
	.s_02 .accordion_one .accordion_header {
    font-size: 14px;
    
  }
	
	/*.main section {
 
	width: 80%;
   margin-right:auto;
		margin-left:auto;
}
	*/
	
	/*.section p {
  padding-bottom: 60px;
}*/
	
  .illust {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
  }
  .header .logo {
    width: 28%;
    margin-top: 12px;
  }
	
 .main section {
  margin: 0 auto 120px auto;
	width: 80%;
 
}
	.sukeju-ru{
		max-width:450px;
		margin: 0 auto;
	}
	
	
  /*ここからfooter*/
  .footer {
    width: 100%;
    height: auto;
  }
  .flex {
    display: flex;
  }
  .footer-logo {
    width: 43%;
    padding-top: 44px;
    height: auto;
    text-align: center;
 margin-left:8%;
  }
  .footer-logo img {
    max-width: 400px;
    margin-top: 110px;
  }
  .address {
    width: 48.63%;
    margin-top: 160px;
    margin-left: -15%;
    margin-right: 5%;
    font-size: 20px;
  }
  .main-ad {
    font-size: 25px;
  }
  .icon {
    margin: 120px auto 110px auto;
  }
  .icon-instagram::before {
    font-size: 110px;
  }
}
@media screen and (min-width:700px) {
	.ensya{
		width:100%;
		max-width:550px;
		height:auto;
	}
	
	.pop img{
		width:100%;
		max-width:300px;
		height:auto;
	}
	.title{
		max-width: 550px;
	}
	
	
	.main h2 {
  font-size: 16px;
  background-color: #F9C1CF;
  padding: 5px 0 5px 0;
  margin-top: 150px;
  margin-bottom: 60px;
  border-radius: 5px;
		max-width:600px;
		height:auto;
		margin-right:auto;
		margin-left:auto;
}

.hoikujikan h2{
	 margin-top: 50px;
	margin-bottom: 50px;
}

.hoikujikan p {
  padding-bottom: 50px;
 
}
	
	
	
  #denwa {
    margin: 208px auto 158px auto;
    padding-bottom: 80px;
    width: 500px;
    height: auto;
    position: relative;
  }
  .denwa-img img {
    width: 400px;
    height: auto;
    margin: 0 auto;
  }
  .denwa-flower1 img {
    width: 120px;
    height: auto;
    position: absolute;
    top: 160px;
    left: 12px;
  }
  .denwa-flower2 img {
    width: 120px;
    height: auto;
    position: absolute;
    top: 158px;
    right: 0px;
  }
  
  .page-top a img {
    width: 100px;
  }
}
@media screen and (min-width:1100px) {
	
	.pc {
    display: block;
		
  }
  .sp {
    display: none;
	 
  }
  
  /*-----denwa1100px~-----*/
  #denwa {
    margin: 208px auto 158px auto;
    padding-bottom: 80px;
    width: 677px;
    height: auto;
    position: relative;
  }
  .denwa-img img {
    width: 496px;
    height: auto;
    margin: 0 auto;
  }
  .denwa-flower1 img {
    width: 165px;
    height: auto;
    position: absolute;
    top: 175px;
    left: 12px;
  }
  .denwa-flower2 img {
    width: 165px;
    height: auto;
    position: absolute;
    top: 185px;
    right: 14px;
  }
  /*-----.book-wrap----*/
  .book-wrap {
    margin-top: 336px;
    width: 100%;
    height: auto;
  }
  .book {
    width: 527px;
    height: 666px;
  }
  .address {
    font-size: 25px;
  }
  .main-ad {
    font-size: 30px;
  }
  .footer .copy {
    padding-bottom: 10px;
    font-size: 20px;
  }
  .page-top a img {
    width: 160px;
  }
}