@charset "utf-8";

/* === @reset === */
* {
  margin: 0;
  padding: 0;
}

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

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  transition: 0.5s;
}

html {
  -webkit-text-size-adjust: 100%;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

/* === end@reset === */
/* === @common === */
body {
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.7;
  letter-spacing: 0.06em;
  color: #807E7D;
  background-image: url(../img/Watercolor-bg.jpg);
  background-repeat: repeat-y;
  background-size: cover;
  background-position: center;
  position: relative;
  font-size: 0.9375em;
}

/* newLine or Not */
.sp{ 
  display: none; 
}
.pc{ 
  display: block; 
}

@media screen and (max-width: 640px) {
  .sp{ 
    display: block; 
  }
  .pc{ 
    display: none; 
  }
}

/* === end @common === */
/* === @header === */

/* === 640px or less === */
@media screen and (max-width:800px) {
  .gnav {
    display: none;
  }

  .btn-open {
    display: block;
  }

  .panel-open {
    width: 100vw;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    /* right: 0; */
    /* width: 50%; */
    background-color: rgba(255, 255, 255, 0.8);
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: 0.5s;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .panel-open {
    display: block;
  }

  .panel-open ul {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 3em;
    margin-left: 2em;
  }

  .panel-open ul li {
    margin-bottom: 0.1em;
    border-bottom: 3px solid #f5deb3;
    border-radius: 2px;
  }

  .panel-open a {
    color: #888;
  }

  /* === btn-open icon=== */
  .btn-open {
    position: fixed;
    top: 10px;
    right: 10px;
    z-index: 10000;
    width: 50px;
    height: 50px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 5px;
    color: #888;
  }

  .btn-open span {
    display: inline-block;
    transition: 0.3s;
    position: absolute;
    left: 14px;
    border-radius: 2px;
    background-color: #888;
    width: 45%;
    /* width: 22px; */
    height: 1px;
  }

  .btn-open span:nth-of-type(1) {
    top: 16px;
  }

  .btn-open span:nth-of-type(2) {
    top: 24px;
  }

  .btn-open span:nth-of-type(3) {
    top: 32px;
  }

  .btn-open.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) translateX(-3px) rotate(-45deg);
    /* width: 30%; */
    /* width: 15px; */
  }

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

  .btn-open.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) translateX(-3px) rotate(45deg);
  }
}

/* ===  end btn-open icon=== */
/* === end 640px or less === */

/* === @nav === */
#nav {
  position: fixed;
  height: 40px;
  width: 100%;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #FDEBEB;
  text-align: center;
  padding: 0.7em;
}

.h1-logo img {
  width: 130px;
  margin-top: 60px;
  transition: 0.3s ease-out;
}

.h1-logo img:hover {
  opacity: 0.8;
  transform: rotate(10deg);
}

.gnav {
  width: 800px;
}

.gnav ul {
  display: flex;
  justify-content: space-around;
}

.gnav ul li a {
  display: block;
  color: #888;
  font-family: 'Railway', sans-serif;
  letter-spacing: 0.1em;
  padding: 1.6em;
  transition: all 0.3s;
}

.gnav ul a:hover {
  opacity: 0.6;
}

/* 640px or less */
@media screen and (max-width:640px) {
  .h1-logo img {
    width: 110px;
    margin-top: 40px;
  }

  #nav {
    height: 50px;
  }
}
/* === end 640px or less === */

/* === @UpMove === */
#nav.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/* === @DownMove === */

#nav.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === end @nav === */

.container {
  max-width: 1024px;
  height: auto;
  margin: 0 auto;
  position: relative;
  /* background-color: grey; */
}

.header-wrap {
  overflow: hidden;
}

.header-contents {
  /* max-width: 1024px; */
  width: 100%;
  margin: 0 auto;
  background-color: #FAB5B5;
  height: 500px;
  border-bottom-left-radius: 50%;
  border-bottom-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: yellow; */
}

.eyecatch {
  width: 350px;
  margin-top: 30px;
  margin-right: 20px;
  margin-left: 20px;
}

.header-text {
  margin-right: 20px;
}

.header-text h2 {
  width: 490px;
  margin-bottom: 20px;
}

.header-text p {
  font-size: 2em;
  color: #888;
  font-family: 'Railway', sans-serif;
  letter-spacing: 0.1em;
  text-align: right;
  font-weight: 100;
  line-height: 1.2em;
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  .header-contents {
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 77vh;
  }

  .eyecatch {
    margin-right: 0;
    margin-left: 0;
    margin-top: 80px;
    margin-bottom: 10px;
    width: 60vw;
  }

  .header-text {
    text-align: center;
    margin-right: 0;
  }

  .header-text h2 {
    width: 80vw;
    display: inline-block;
  }

  .header-text p {
    text-align: center;
    font-size: 1.4em;
    color: #fff;
  }
}
/* === end 640px or less === */

/* === 320px or less === */
@media screen and (max-width:320px) {
  .h1-logo img {
    width: 110px;
  }
  .header-contents {
    height: 95vh;
  }
  .eyecatch {
    margin-top: 60px;
  }
}
/* === end 320px or less === */

/* === end @header === */

/* === @intro === */

.intro-bg {
  position: relative;
}

/* animate rorate */

.animate__animated.animate__rotateIn {
  --animate-duration: 5s;
}

/* end animate rorate */

.moca {
  position: absolute;
  right: 45%;
  top: -20%;
  width: 100px;
}

.yogurt {
  position: absolute;
  right: 20%;
  top: -10%;
  width: 100px;
}

.strawberry {
  position: absolute;
  right: 30%;
  top: 10%;
  width: 100px;
}

.chocolate {
  position: absolute;
  left: 40%;
  top: 27%;
  width: 100px;
  opacity: 0.8;
}

.berry {
  position: absolute;
  left: 20%;
  top: 40%;
  width: 100px;
}

.caramel {
  position: absolute;
  right: 30%;
  bottom: 0%;
  width: 100px;
}

.intro-bg p {
  color: #888;
  letter-spacing: 0.1em;
  line-height: 2em;
}

.intro-01 {
  margin-top: 60px;
  margin-left: 10%;
  margin-bottom: 30px;
}

.intro-02 {
  margin-left: 50%;
  margin-bottom: 30px;
  padding-right: 30px;
}

.intro-03 {
  margin-left: 10%;
  margin-bottom: 60px;
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  .intro-bg p {
    font-size: 0.875em;
  }

  .moca {
    position: absolute;
    right: 20%;
    top: -16%;
    width: 100px;
  }

  .yogurt {
    position: absolute;
    right: -10%;
    top: 2%;
    width: 100px;
  }

  .strawberry {
    position: absolute;
    left: 10%;
    top: 45%;
    width: 110px;
  }

  .chocolate {
    position: absolute;
    left: 40%;
    top: 20%;
    width: 100px;
    opacity: 0.3;
  }

  .berry {
    display: none;
  }

  .caramel {
    position: absolute;
    right: 15%;
    bottom: -20%;
    width: 100px;
  }
}

/* === end 640px or less === */

/* === end @intro === */

/* ===@section common */
.section-00,
.section-01,
.section-02,
.section-03,
.section-04,
.section-05 {
  padding: 100px 0 80px;
}

.section-00 h2,
.section-01 h2,
.section-02 h2,
.section-03 h2,
.section-04 h2,
.section-05 h2 {
  font-family: 'Railway', sans-serif;
  font-size: 2.375em;
  text-align: center;
  width: 250px;
  padding: 0 5px;
  color: #6A3906;
  font-weight: 100;
  line-height: 1;
  margin: 0 auto 60px;
}
#section-01,
#section-02,
#section-03 {
  text-align: center;
}

/* ===end @section common */

/* === @news === */
.section00-bg {
  background-color: #fff;
  width: 100%;
  height: auto;
}
.news-date {
  text-align: left;
  margin-top: 10px;
  margin-bottom: 10px;
}
.news-date span {
  color:#FAB5B5;
  padding-left: 1em;
}
.news-title {
  margin-bottom: 12px;
  /* border-bottom: 1px solid #d3d3d3; */
  display: inline-block;
  color: #808080;
}
.news-title a{
  color: #807E7D;
}
.news-title a:hover {
  opacity: 0.7;
}
.news-topic p {
  font-size: 0.9em;
  text-align: left;
}

/* === end @news === */

/* === @about ===*/
.section01-bg {
  background-color: #F2EDE7;
  width: 100%;
  height: auto;
  /* border-top-left-radius: 30%;
  border-top-right-radius: 30%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px; */
}

.about-box {
  width: 70%;
  margin: 0 auto 60px;
  border-top-right-radius: 40px;
  border-bottom-left-radius: 40px;
  padding: 60px 40px;
  background-color: #fff;
}

.about-text {
  /* width: 80%; */
  text-align: justify;
  margin: 0 0 30px;
  font-size: 0.9em;
  display: inline-block;
  letter-spacing: 0.02em;
}
.signature {
  text-align: right;
  display: block;
  padding-top: 40px;
}

.about-box figure {
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
}

.about-box figure figcaption {
  font-size: 0.8em;
  text-align: left;
  padding: 0.5em 0 0.5em;
  background-color: #ffffe0;
}

.section-01 h3 {
  /* border-left: 5px solid #fffacd;
  border-right: 5px solid #fffacd; */
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 0 1em;
  margin-bottom: 55px;
  display: inline-block;
  position: relative;
}

/* side border */
.section-01 h3::before,
.section-01 h3::after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 55px;
  height: 4px;
  border-radius: 5px;
  background-color: #fffacd;
  content: "";
}

.section-01 h3::before {
  left: -30px;
  transform: rotate(55deg);
}

.section-01 h3::after {
  right: -30px;
  transform: rotate(-55deg);
}

/* end side border */

/* === 640px or less === */
@media screen and (max-width:640px) {
  .container {
    width: 90%;
  }

  .about-box figure {
    margin-bottom: 30px;
  }

  .about-box figcaption {
    font-size: 0.812em;
    /* text-align: justify; */
    padding-top: 0.5em;
  }

  .section-01 h3 {
    margin-bottom: 50px;
  }

}

/* === end 640px or less === */

/* box */

.point img {
  width: 100px;
  margin-bottom: 20px;
}

.box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 60px !important;
  background-color: #fff;
  margin: 0 auto;
  width: 84%;
  border-top-right-radius: 40px;
}

.box-img figure {
  width: 350px;
  margin: 20px;
}

.kodawari-text {
  margin-right: 30px;
}

.kodawari-text h4 {
  /* background-color: pink; */
  font-size: 1.2em;
  font-weight: 300;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  margin-left: 10px;
  text-align: left;
}

.kodawari-text p {
  /* background-color: yellow; */
  font-size: 0.8em;
  line-height: 1.7;
  margin-left: 10px;
  text-align: justify;
  margin-bottom: 20px;
}

.kodawari-text a {
  color: #807E7D;
}

.kodawari-text a:hover {
  opacity: 0.7;
}
/* FadeinUpTriggerOnce */

.fadeInUpTriggerOnce{
    opacity:0;
}
.count2{  
	animation-iteration-count: 2;
}
.delay-time{  
	animation-delay: 2s;
}
.change-time{  
	animation-duration: 4.5s;
}

/* end FadeinUpTriggerOnce */

/* === 640px or less === */
@media screen and (max-width:640px) {
  .box {
    width: 90%;
    flex-direction: column;
  }

  .box-img figure {
    width: 90%;
    margin: 50px auto 50px;
  }

  .kodawari-text {
    margin: 10px;
  }

  .kodawari-text h4 {
    margin-left: 0;
    margin-bottom: 30px;
    padding: 0 10px 0;
  }

  .kodawari-text p {
    margin-left: 0;
    text-align: justify;
    padding: 0 10px 0;
  }

  .buttonLine-01 {
    margin-bottom: 30px;
  }
}

/* === end 640px or less === */

/* buttonLine-01 */
.buttonLine-01 a {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-right: 0;
  margin-left: auto;
  max-width: 80px;
  padding: 0.4em 0.5em;
  transition: 0.3s ease-in-out;
  font-size: 0.8em;
  letter-spacing: 0.2em;
}

.buttonLine-01 a:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  top: 100%;
  left: 0;
  border-radius: 3px;
  background: #807E7D;
  transition: 0.3s;
}

.buttonLine-01 a:hover:before {
  top: calc(100% - 3px);
  opacity: 0.7;
}

/* end buttonLine-01 */

/* === end @about ===*/

/* === @our donuts ===*/
.sec2-logo img {
  width: 500px;
  margin-bottom: 60px;
}

.section-02 h3 {
  font-weight: 300;
  letter-spacing: 0.1em;
  padding: 0 1em;
  margin-bottom: 40px;
  display: inline-block;
  position: relative;
}

/* side border */
.section-02 h3::before,
.section-02 h3::after {
  display: inline-block;
  position: absolute;
  top: 45%;
  width: 55px;
  height: 3px;
  border-radius: 5px;
  background-color: #f5deb3;
  content: "";
}

.section-02 h3::before {
  left: -30px;
  transform: rotate(55deg);
}

.section-02 h3::after {
  right: -30px;
  transform: rotate(-55deg);
}

/* end side border */

/* @slick menu */
.slider-box {
  width: 80%;
  margin: 0 auto 60px;
}

.menu-box {
  width: 100%;
  padding: 2em;
  box-sizing: border-box;
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
}

.menu-box h4 {
  font-size: 1.5em;
  font-family: 'Railway', sans-serif;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 10px;
}

.menu-box h4 span {
  font-size: 0.5em;
}

.menu-box p {
  width: 80%;
  font-size: 0.8em;
  /* background-color: yellow; */
  display: inline-block;
  padding: 1em;
}

.menu-box h5 {
  font-size: 1.2em;
}

.menu-box h5 span {
  font-size: 0.8em;
  padding-left: 0.1em;
}

.slider img {
  width: 300px;
  margin: 0 auto 20px;
}

.caption {
  font-size: 0.8em;
  width: 80%;
  display: inline-block;
  margin-top: 40px;
}

/* end @slick menu */

/* === 640px or less === */
@media screen and (max-width:640px) {
  .section-02 h3 {
    margin-bottom: 0;
  }

  .caption {
    text-align: left;
    width: 90%;
  }
}

/* === end 640px or less === */
/* === end @our donuts ===*/

/* === @access ===*/
.section03-bg {
  background-color: #F2EDE7;
  width: 100%;
  height: auto;
}

.section-03 img {
  width: 90%;
  border-radius: 10%;
  padding: 20px;
}

.map {
  background-color: #fff;
  border-radius: 10%;
  margin-bottom: 60px;
}

.access-list {
  text-align: left;
  font-size: 0.9em;
  margin: 0 auto;
  display: inline-block;
  margin-bottom: 60px;
}

.access-list li {
  padding-bottom: 0.7em;
}

.button-01 a {
  max-width: 240px;
  margin: 0 auto;
  padding: 10px 25px;
  color: #fff;
  transition: 0.3s;
  background-color: #FAB5B5;
  filter: drop-shadow(0px 2px 4px #ccc);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.button-01 a:hover {
  opacity: 0.7;
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  .section-03 img {
    width: 100%;
  }

  .access-list {
    padding: 0 10px;
  }
}

/* === end 640px or less === */
/* === end @access ===*/

/* === @contact ===*/

.section-04 p {
  text-align: center;
  display: block;
  margin-bottom: 60px;
  line-height: 1.7em;
  letter-spacing: 0.1em;
}

.section-04 p a {
  color: #807E7D;
}

/* contact form */
.form {
  width: 80%;
  margin: 0 auto;
  max-width: 720px;
}

.form-item {
  width: 100%;
}

.form-item-label {
  display: flex;
  justify-content: space-between;
  letter-spacing: 0.05em;
  width: 100%;
  margin-bottom: 40px;
}

.form-item-label th {
  font-size: 0.9em;
  width: 250px;
  text-align: left;
  font-weight: 400;
}

.form-item-label-required {
  display: inline-block;
  text-align: center;
  color: #6A3906;
  font-size: 0.9em;
  padding-left: 0.3em;
}

.form-item-input {
  letter-spacing: 0.05em;
  padding: 0 10px;
  border: none;
  width: 550px;
  height: 48px;
  box-sizing: border-box;
  border-radius: 6px;
  background-color: #fff;
  /* border: 1px solid #c4c4c4; */
}

.form-item-label td {
  font-size: 0.9em;
  width: calc(100% - 250px);
}

input::placeholder {
  opacity: 0.4;
}

textarea {
  border: none;
  width: 550px;
  height: 200px;
  padding: 0;
  resize: vertical;
  border-radius: 6px;
}

.button-wrap {
  width: 60%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* background-color: green; */
  margin: 0 auto;
}

.form-btn {
  border-radius: 30px;
  border: 1px solid #ccc;
  background-color: #ccc;
  margin-left: auto;
  margin-right: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  width: 240px;
  display: block;
  letter-spacing: 0.2em;
  color: #fff;
  font-size: 1em;
  cursor: pointer;
}

.button-wrap input:first-child {
  background-color: #fff;
  color: #ccc;
  margin-right: 10px;
}

input[type="text"] {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  #section-04 p {
    text-align: left!;
  }

  .form-item {
    /* background-color: pink; */
    margin: 0 auto;
    display: block;
  }

  .form-item-label {
    flex-wrap: wrap;
    width: 100%;
    /* background-color: yellow; */
  }
  .form-item-label th {
    width: 200px;
    margin-bottom: 10px;
  }
  .form-item-label td {
    width: 100%;
  }
  .form-item-input {
    width: 100%;
    height: 48px;
    /* background-color: blue; */
  }

  textarea {
    width: 100%;
    height: 200px;
  }

  .form-btn {
    margin-top: 24px;
    padding: 8px;
    margin: 10px;
    width: 200px;
    font-size: 14px;
  }
}

/* end contact form */
/* === end @contact ===*/

/* === @footer ===*/
.footer {
  overflow: hidden;
}

.footer-bg {
  width: 100%;
  margin: 0 auto;
  background-color: #FAB5B5;
  height: auto;
  padding: 40px 0 40px;
  color: #fff;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;
}

.footer-flexWrap {
  margin: 70px auto;
  display: flex;
  justify-content: space-around;
  width: 100%;
  max-width: 1000px;
  color: #fff;
  /* background-color: green; */
}

.footer-flexWrap ul li a {
  line-height: 1.7em;
  color: #fff;
}

.footer .footer-logo {
  width: 120px;
}
.footer-logo img:hover {
  opacity: 0.8;
  transform: rotate(10deg);
}

.footer-right li:nth-of-type(4) {
  margin-bottom: 20px;
}

.footer-sns ul {
  width: 40%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  align-items: center;
  font-size: 1.7em;
  margin-bottom: 40px;
  /* background-color: pink; */
}

.footer-sns ul li a {
  color: #fff;
  display: block;
}

.footer-logo a:hover {
  opacity: 0.6;
}

.footer-center ul li a:hover {
  opacity: 0.5;
}

.footer-sns ul li a:hover {
  opacity: 0.5;
}

.footer small {
  font-size: 0.8em;
  display: block;
  text-align: center;
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  .footer-bg {
    border-top-left-radius: 0%;
    border-top-right-radius: 35%;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
  }
  .footer-flexWrap {
    margin: 0 auto;
    flex-direction: column;
    width: 80%;
    /* background-color: green; */
  }
  .footer-flexWrap ul li a {
    line-height: 1.7em;
    color: #fff;
  }
  
  .footer .footer-logo {
    width: 120px;
    margin-bottom: 0px;
    margin-left: auto;
  }
  .footer-center {
    margin-bottom: 20px;
  }
  
  .footer-sns ul {
    width: 60%;
    margin: 40px auto;
    /* background-color: pink; */
  }

  .footer small {
    font-size: 0.8em;
    display: block;
    text-align: center;
  }
}
/* === end 640px or less === */
/* === end @footer ===*/

/* === @topBack ===*/
#top-back a {
  display: block;
  position: absolute;
  bottom: 30px;
  right: 60px;
  font-size: 3em;
  color: #888;
  transition: 0.6s;
}
#top-back a:hover {
  opacity: 0.5;
  transform: translate(0, -4px);
}

/* === 640px or less === */
@media screen and (max-width:640px) {
  #top-back a {
    right: 30px;
}
}

/* === end @topBack ===*/

/* === particle js container === */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100vh;
}

/* === end particle js container === */