* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
}
a {
  text-decoration: none;
  color: inherit;
  letter-spacing: 3px;
}
li {
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
p {
  letter-spacing: 3px;
}
.satisfy {
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
}
.inline {
  display: inline-block;
}
/*header*/
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
}
.header-inner {
  width: 90%;
  margin: 0 auto;
  height: 100px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-nav {
  display: flex;
  justify-content: center;
  width: fit-content;
  border-radius: 999rem;
  padding: 0.75rem 0.5rem;
  width: 100%;
  max-width: 1100px;
  transition: 0.3s ease;
}
header.active .header-nav {
  background-color: #fff;
  box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
}
.header-nav ul {
  display: flex;
  align-items: center;
  text-transform: uppercase;
  font-weight: bold;
  width: fit-content;
}
.header-logo {
  margin: 0 7%;
  display: flex;
  align-items: center;
}
.header-logo img {
  width: 80px;
}
.header-nav li {
  margin: 0 1rem;
}
/*fv*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
}
.fv::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #fbf7ee;
  clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 86%, 40% 0);
  z-index: 1;
}
.fv-img {
  position: absolute;
  left: 10%;
  top: 20%;
  z-index: 2;
  height: 550px;
  width: 90%;
  max-width: 800px;
  border-radius: 1rem;
}
.fv-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.fv-title {
  position: absolute;
  top: 50%;
  right: 10%;
  z-index: 3;
}
.fv-title img {
  width: 600px;
}
.fv-subtitle span {
  display: block;
  width: fit-content;
}
.fv-subtitle span + span {
  margin-left: 4rem;
}

.fv-make-item01 {
  position: absolute;
  z-index: 4;
  right: 10%;
  bottom: -10%;
  width: 150px;
  transform: rotateZ(5deg);
}

.fv-make-item02 {
  position: absolute;
  z-index: 4;
  right: 15%;
  top: 10%;
  width: 150px;
  transform: rotateZ(15deg);
}
.fv-make-item03 {
  position: absolute;
  z-index: 4;
  left: 2%;
  bottom: -5%;
  width: 270px;
}
.fv-make-item01.trigger-ready {
  transition-delay: 1.6s; /* 動きを滑らかに */
}
.fv-make-item02.trigger-ready {
  transition-delay: 1.5s; /* 動きを滑らかに */
}
.fv-make-item03.trigger-ready {
  transition-delay: 1.4s; /* 動きを滑らかに */
}
/*section*/
section {
  padding: 4rem 0;
}
.section-titlewrap {
  text-align: center;
}
.section-title {
  font-size: 1.8rem;
  line-height: 1.7;
}
.section-title span {
  color: #e94c43;
  font-style: italic;
  font-weight: normal;
  font-size: 1.5rem;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin: 0 auto;
  font-weight: bold;
}
.section-title span::before {
  content: "";
  width: 35px;
  height: 1px;
  background-color: #e94c43;
  margin-right: 1rem;
  display: block;
}
.section-title span::after {
  content: "";
  width: 35px;
  height: 1px;
  background-color: #e94c43;
  margin-left: 1rem;
  display: block;
}
.section-titlewrap p {
  margin-top: 1.5rem;
  font-weight: 500;
  line-height: 1.7;
}

/*main*/
/*アニメーション*/
.trigger {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transform: translateY(10px);
}
.trigger-ready {
  opacity: 0; /* 最初は非表示にしておく */
  transition: all 1s; /* 動きを滑らかに */
  transition-delay: 0.5s; /* 動きを滑らかに */
  transform: translateY(10px);
}
/* フェードイン用のクラス */
.fadein {
  opacity: 1;
  transform: translateY(0);
}
.fv-item-anime {
  animation: floating-y 1.8s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-4%);
  }
  100% {
    transform: translateY(4%);
  }
}

/*main-top*/
.main-top {
  padding-top: 10rem;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 900;
  background-color: #fbf7ee;
  position: relative;
}
.main-top-contents {
  position: relative;
  z-index: 2;
}
.main-top-contents h2 {
  font-size: 2.5rem;
  line-height: 1.7;
}
.main-top-contents h3 {
  font-size: 1.75rem;
  margin-top: 0.5rem;
  line-height: 1.7;
}
.main-top-contents p {
  font-size: 1.3rem;
  margin: 2rem auto 0;
  line-height: 1.7;
  width: 95%;
}
.business-top-bg {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.main-top-bgtext {
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.main-top-bgtext p {
  font-size: 10vw;
  opacity: 0.1;
  transform: rotate(-5deg);
  color: #e94c43;
}
/*business*/
.business {
  background-color: #f9f1e6;
  position: relative;
}
.business-inner {
  width: 90%;
  background-color: #fff;
  border-radius: 1rem 0 0 1rem;
  margin-left: auto;
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}
.business-contents {
  margin-top: 4rem;
  display: flex;
}
.business-item {
  width: calc((100% - 3rem) / 3);
  margin: 0.5rem;
}

.business-img {
  width: 100%;
  aspect-ratio: 1.2/1;
  border-radius: 0.75rem;
  position: relative;
}
.business-img:before {
  content: attr(data-num);
  position: absolute;
  right: 1rem;
  bottom: 0;
  font-size: 5rem;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.business-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.75rem;
  object-position: top;
}
.business-textwrap {
  margin-top: 1rem;
}
.business-textwrap h3 {
  font-weight: 900;
  text-align: center;
}
.business-textwrap p {
  margin-top: 0.5rem;
}
.more-btn {
  margin-top: 5rem;
  text-align: center;
}
.more-btn a {
  display: block;
  width: fit-content;
  border: 1px solid #e94c43;
  border-radius: 999rem;
  color: #e94c43;
  padding: 1rem 4rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 auto;
  transition: 0.3s ease;
}
.more-btn a:hover {
  color: #fff;
  background-color: #e94c43;
}

/*soon*/
.soon {
  width: 100%;
  background-color: #f7d6c2;
}
.soon-inner {
  width: 90%;
  background-color: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}
.soon-contents {
  margin-top: 4rem;
}
.soon-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
}
.soon-item + .soon-item {
  margin-top: 4rem;
  margin-left: auto;
}
.soon-item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.soon-item-img {
  width: 350px;
  border-radius: 1rem;
  aspect-ratio: 1/1;
  position: relative;
}
.soon-item-img::before {
  content: attr(data-en);
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
  transform: rotate(-10deg);
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  font-size: 4rem;
  color: #e94c43;
}
.soon-item-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.soon-item-textwrap {
  width: calc(100% - 400px);
}
.soon-item-textwrap h3 {
  font-size: 1.5rem;
}
.soon-item-textwrap h4 {
  font-size: 1.3rem;
  margin-top: 0.5rem;
  color: #d67096;
}
.soon-item-text {
  margin-top: 2rem;
}
.soon-item-text p + p {
  margin-top: 1rem;
}
/*about*/
.about-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 1;
  display: block;
}
.about {
  background-color: #f7d6c2;
}

.message-img {
  width: 80%;
  margin: 2rem auto 0;
  border-radius: 0.5em;
}
.message-img img {
  width: 100%;
  display: block;
  aspect-ratio: 1/1.2;
  object-fit: cover;
  border-radius: 0.5em;
}
.about-message-wrap {
  position: relative;
}
.about-message {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}
.message-profile-sub {
  margin-top: 1rem;
  text-align: center;
}
.message-profile h3 {
  margin-top: 0.5rem;
  font-size: 2rem;
  font-weight: 900;
}
.message-profile h3 span {
  font-size: 1.2rem;
  text-transform: capitalize;
  margin-left: 0.5rem;
}
.message-titlewrap {
  width: 450px;
  text-align: center;
}

.message-contents {
  width: calc(100% - 530px);
  font-weight: bold;
  margin-top: 3rem;
}
.message-contents p {
  line-height: 2;
}

.message-bg {
  width: 90%;
  display: block;
  object-fit: contain;
  position: absolute;
  z-index: 1;
  opacity: 0.6;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*insta*/
.insta{
	width:95%;
	max-width:1000px;
	margin: 0 auto;
}
/*footer*/
footer {
  background-color: #fcf7ee;
  border-top: 1px solid #c7c7c7;
  padding: 4rem 0;
}
.footer-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.footer-info {
  width: 50%;
}
.footer-map {
  width: 50%;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1.85/1;
}
.footer-logo img {
  width: 120px;
}
address {
  margin-top: 1rem;
}
.address-item {
  display: flex;
  align-items: center;
  font-style: normal;
}

small {
  text-align: center;
  margin-top: 3rem;
  display: block;
}
.footer-sns ul {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.footer-sns li {
  margin: 0.5rem;
}
.footer-sns a img {
  width: 50px;
}

/*under*/
.u-fv {
  height: 350px;
  position: relative;
}
.u-fv-title {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.75rem;
}
.u-fv-title::before {
  content: attr(data-en);
  font-size: 8rem;
  opacity: 0.2;
  color: #e94c43;
  font-family: "Satisfy", cursive;
  font-weight: 400;
  font-style: normal;
  text-transform: capitalize;
  position: absolute;
  left: 50%;
  bottom: -1rem;
  transform: translateX(-50%) rotate(-5deg);
  line-height: 1;
}

.u-main {
  background-color: #fcf7ee;
}

.u-business-item {
  width: 90%;
  background-color: #fff;
  border-radius: 0 1rem 1rem 0;
  padding: 6rem 3rem;
  position: relative;
  z-index: 2;
}
.u-business-item + .u-business-item {
  margin-top: 4rem;
}
.u-business-item:nth-of-type(even) {
  margin-left: auto;
  border-radius: 1rem 0 0 1rem;
}
.u-make-contents {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3rem;
}
.u-make-item {
  display: flex;
  justify-content: space-between;
  width: calc((100% - 4rem) / 2);
  margin: 1rem;
  background-color: #f7d6c2;
  border-radius: 0.5rem;
}
.u-make-item h3 {
  border-bottom: 1px solid #000;
}
.u-make-img {
  display: block;
  width: 200px;
  border-radius: 0.5rem 0 0 0.5rem;
}
.u-make-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem 0 0 0.5rem;
}
.u-make-item-textwrap {
  width: calc(100% - 200px);
  padding: 1rem;
  font-size: 0.95rem;
}

.u-make-item-text {
  margin-top: 1rem;
}
.u-make-item-price {
  margin-top: 1rem;
}

.u-make-item-note {
  font-size: 0.9rem;
  color: #e94c43;
  margin-top: 0.25rem;
}
.u-organic-contents {
  margin-top: 2rem;
}
.organic-top {
  text-align: center;
  font-size: 1.1rem;
}

.u-organic-lists {
  margin-top: 3rem;
  display: flex;
}
.u-organic-item {
  width: calc((100% - 4rem) / 4);
  margin: 0.5rem;
}
.u-organic-img {
  border-radius: 0.5rem;
}
.u-organic-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.5rem;
}
.u-organic-textwrap {
  margin-top: 1rem;
}
.u-organic-textwrap h3 {
  text-align: center;
}

.u-organic-textwrap p {
  margin-top: 1rem;
  font-size: 0.95rem;
}
.organic-morebtn {
  margin: 3rem auto 0;
  text-align: center;
}
.organic-morebtn a {
  display: block;
  width: fit-content;
  border: 1px solid #e94c43;
  border-radius: 999rem;
  color: #e94c43;
  padding: 0.5rem 2rem;
  font-weight: bold;
  text-transform: capitalize;
  margin: 0 auto;
  transition: 0.3s ease;
}
.organic-morebtn a:hover {
  color: #fff;
  background-color: #e94c43;
}
.rental-img {
  width: 90%;
  max-width: 600px;
  margin: 3rem auto 0;
  border-radius: 0.5rem;
}
.rental-img img {
  display: block;
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 0.5rem;
}

/*contact*/
.contact-contents {
  background-color: #fff;
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}
.contact-contents p {
  text-align: center;
  width: 100%;
  margin: 0 auto;
}
.contact-contents form {
  width: 90%;
  margin: 3rem auto 0;
}
input,
textarea {
  margin: 0;
  padding: 0;
  background: none;
  border: 1px solid #000;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0.25rem;
}
.contact-item p {
  display: flex;
  justify-content: space-between;
}
.contact-item + .contact-item {
  margin-top: 1rem;
}
.contact-item label {
  width: 250px;
  text-align: left;
}
.wpcf7-form-control-wrap {
  width: calc(100% - 250px);
  text-align: left;
}
.contact-item input[type="text"],
.contact-item input[type="email"],
.contact-item input[type="tel"],
.contact-item textarea {
  padding: 0.5rem;
  width: 100%;
}
label span.req {
  font-size: 0.9rem;
  background-color: #e94c43;
  color: #fff;
  border-radius: 0.25em;
  padding: 0 0.25rem;
  margin-right: 0.5rem;
}
.submit {
  background-color: #e94c43;
  color: #fff;
  padding: 1rem 4rem;
  border: none;
  margin: 4rem auto 0;
  font-size: 1.1rem;
  display: block;
  cursor: pointer;
  transition: 0.3s ease;
  border: 1px solid #e94c43;
}
.submit:hover {
  color: #e94c43;
  background-color: #fff;
}

/*==================================================
　5-2-1 3本線が×に
===================================*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn {
  /*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
  position: relative;
  background: #e94c43;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  z-index: 99;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #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;
}

/*activeクラスが付与されると線が回転して×に*/

.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%;
}

.sp-header-nav {
  display: none;
}

/*news*/
.news-contents {
  width: 95%;
  max-width: 1000px;
  margin: 3rem auto 0;
}
.news-item-title {
  font-size: 1rem;
}
.news-lists li {
  border-bottom: 1px solid #d3d3d3;
}
.news-lists a {
  padding: 0.5rem 0;
  display: block;
}

.u-news {
  padding: 4rem 0 5rem;
}
/*single*/
.u-single {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 0;
}
.single-title {
  font-size: 1.2rem;
  line-height: 1.4;
}
.single-text {
  margin-top: 2rem;
}
.pagenav {
  margin: 3rem auto 0;
  text-align: center;
}
.wp-pagenavi span.current {
  background-color: #000;
  color: #fff;
}

.single-date{
  margin-top: 0.25rem;
}
.single-contents{
  background-color: #fff;
  padding: 2rem;
  border-radius: 0.5rem;
}