@charset "UTF-8";
* {
  box-sizing: border-box;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
}

/*------------header-----------*/
header {
  width: 100vw;
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-inline: 2%;
  padding-block: 1%;
}

.logo {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-menu {
  display: flex;
}
.top-menu a {
  color: #4E4637;
  font-size: clamp(8px, 1.1vw, 16px);
}
.top-menu li {
  margin-right: clamp(8px, 1.1vw, 24px);
}
.top-menu li:hover {
  transform: scale(1.1, 1.1);
  font-weight: bold;
}
.top-menu li:last-child {
  margin-right: 0;
}
.top-menu li:last-child > a {
  background-color: #7FB6AE;
  padding: clamp(15px, 2.2vw, 20px);
  border-radius: 10px;
  color: #fff;
  font-weight: bold;
  transition: all 0.5s;
}

.toggle-btn {
  display: none;
  width: 15%;
  height: 80px;
  cursor: pointer;
  position: fixed;
  z-index: 100;
  background-color: #fff;
  padding-inline: 3%;
  padding-block: 0%;
}
.toggle-btn span {
  display: inline-block;
  right: 10px;
  width: 40px;
  height: 3px;
  background-color: #4E4637;
  border-radius: 4px;
  transition: all 0.5s;
  position: absolute;
}
.toggle-btn span:nth-child(1) {
  top: 30px;
}
.toggle-btn span:nth-child(2) {
  top: 40px;
}
.toggle-btn span:nth-child(3) {
  top: 50px;
}

.open .toggle-btn span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}
.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}

.menu-sp {
  position: fixed;
  visibility: hidden;
  top: 0;
  left: -400px;
  width: 400px;
  height: 100vh;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: left 0.8s ease, opacity 0.5s ease, visibility 0s linear 0.8s;
  z-index: 90;
}
.menu-sp p {
  font-size: 32px;
  color: #4E4637;
  font-weight: bold;
  margin-block: 64px;
}

.open .menu-sp {
  visibility: visible;
  left: 0;
  opacity: 1;
  pointer-events: auto;
}

.mask {
  visibility: hidden;
  background-color: #FAF6EF;
  opacity: 0;
  z-index: 70;
  transition: opacity 0.8s ease, visibility 0s linear 0.8s;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
}

.open .mask {
  visibility: visible;
  pointer-events: auto;
  opacity: 0.9;
  transition: opacity 0.8s ease, visibility 0s;
}

/*--------main-visual--------*/
.main-visual {
  position: relative;
  margin: 0 auto;
  align-items: center;
}

.main-img {
  width: 100%;
  height: 90vh;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: bottom;
}

h1 {
  font-size: clamp(24px, 4.7vw, 48px);
  font-weight: bold;
  color: #4E4637;
  white-space: nowrap;
}

.title-text {
  position: absolute;
  top: 60%;
  left: 8%;
}
.title-text p {
  font-size: clamp(20px, 2.9vw, 32px);
  color: #6B6B5F;
  font-weight: bold;
  position: relative;
  padding-left: 30px;
}
.title-text p::before, .title-text p::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 3px;
  background-color: #6B6B5F;
  top: 50%;
}
.title-text p::before {
  left: -5px;
}

/*----------main-wrapper--------------*/
.main-wrapper {
  display: flex;
  width: 100%;
}

/*-----------menu------------*/
.menu {
  position: sticky;
  top: 0;
  width: 400px;
  height: 100vh;
  background-color: #FAF6EF;
  text-align: center;
  z-index: 30;
}
.menu p {
  font-size: 32px;
  color: #4E4637;
  font-weight: bold;
  margin-block: 64px;
}

nav ul {
  position: relative;
}
nav li {
  margin-bottom: 64px;
}
nav li::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 30px;
  background-color: #007664;
  left: 22%;
}
nav li:last-child::before {
  display: none;
}
nav li:last-child > a {
  background-color: #7FB6AE;
  padding: 20px;
  color: #fff;
  border-radius: 10px;
  transition: all 0.5s;
}
nav li:hover {
  transform: scale(1.1, 1.1);
}
nav a {
  font-size: 20px;
  color: #6B6B6B;
  font-weight: bold;
}

/*------------main-contents共通-------------*/
.main-contents {
  width: 100%;
}

.container {
  max-width: 990px;
  padding-inline: 4%;
  align-items: center;
  text-align: center;
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 120px;
}

.section-title {
  font-size: clamp(32px, 4.7vw, 36px);
  color: #4E4637;
  font-weight: bold;
  position: relative;
  margin-bottom: 40px;
}
.section-title::after {
  position: absolute;
  content: "";
  width: 230px;
  height: 2px;
  background-color: #6B6B5F;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.read-more {
  padding: 10px 25px;
  border: 2px solid #7FB6AE;
  border-radius: 15px;
  color: #5E9E95;
  font-size: 24px;
  transition: all 0.5s;
}
.read-more:hover {
  color: #fff;
  background-color: #5E9E95;
  transform: scale(1.1, 1.1);
}

/*-------------about--------------*/
.about {
  background-color: #FFF6E8;
}

.about-contents {
  display: flex;
}
.about-contents img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.about-content {
  width: 50%;
  margin-left: 30px;
}

.about-text {
  color: #3F3F3F;
  font-size: 20px;
  margin-bottom: 64px;
  text-align: left;
}

/*--------------service---------------*/
.service {
  background-color: #FFF6E8;
}

.service-contents {
  display: flex;
  justify-content: space-around;
  margin-bottom: 64px;
}

.service-content img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 40px;
}
.service-content p {
  font-size: 24px;
  color: #4E4637;
  font-weight: 500;
}

/*---------------voice---------------*/
.voice {
  background-color: #CBFFF4;
}

.voice-text p {
  width: 100%;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 40px;
  font-size: clamp(14px, 2vw, 18px);
  color: #3f3f3f;
  padding: 20px 10px;
}

.voice-img {
  width: 20%;
}
.voice-img img {
  width: 80px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #A4C6BC;
  border-radius: 50%;
}
.voice-img p {
  font-size: clamp(14px, 2vw, 16px);
  color: #4E4637;
}

.voice-left,
.voice-right {
  width: 100%;
  display: flex;
  margin-bottom: 40px;
  opacity: 0;
}

.voice-left {
  justify-content: flex-start;
}

.slide-left {
  animation: slide-left 0.5s ease-out 0s 1 forwards;
}

@keyframes slide-left {
  0% {
    transform: translateX(-50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.voice-right {
  justify-content: flex-end;
}

.slide-right {
  animation: slide-right 0.5s ease-out 0s 1 forwards;
}

@keyframes slide-right {
  0% {
    transform: translateX(50%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*---------------staff---------------*/
.staff {
  background-color: #F3EBDD;
}

.staff-contents {
  display: flex;
  gap: 50px;
}

.staff-content {
  background-color: #fff;
  width: 100%;
  padding: 4%;
  border-radius: 40px;
  margin-bottom: 64px;
}

.staff-img {
  display: flex;
  gap: clamp(10px, 1.4vw, 30px);
  margin-bottom: 40px;
}
.staff-img img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.staff-name {
  width: 50%;
  font-weight: bold;
  font-size: 18px;
  line-height: 2;
  color: #4E4637;
  margin-top: 20px;
}

.staff-text {
  text-align: left;
  color: #3F3F3F;
}

/*-------------flow---------------*/
.flow {
  background-color: #FAF6EF;
}

.flow-contents {
  width: 100%;
  padding-inline: 4%;
  align-items: center;
  text-align: center;
}

.flow-content {
  display: flex;
  justify-content: space-around;
  border: 1px solid #DBFFF4;
  background-color: #fff;
  border-radius: 40px;
  padding: 20px 40px;
  align-items: center;
  margin-bottom: 64px;
  position: relative;
  opacity: 0;
}
.flow-content img {
  width: clamp(60px, 8.8vw, 90px);
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #7FB6AE;
  background-color: #F2FBF8;
  border-radius: 50%;
}
.flow-content::after {
  position: absolute;
  content: "";
  bottom: -40%;
  left: 50%;
  width: 30px;
  height: 30px;
  border-bottom: 5px solid #B8DAD3;
  border-right: 5px solid #B8DAD3;
  transform: translate(-50%, -50%) rotate(45deg);
}
.flow-content:last-child::after {
  display: none;
}

.step {
  width: 30%;
  font-size: clamp(20px, 2.9vw, 32px);
  color: #7FB6AE;
}

.flow-text {
  width: 40%;
}
.flow-text p {
  font-size: clamp(16px, 2.3vw, 20px);
}
.flow-text p:first-child {
  font-weight: 600;
  color: #4E4637;
  margin-bottom: 10px;
}
.flow-text p:last-child {
  color: #6B6B6B;
  font-size: clamp(12px, 1.7vw, 20px);
}

.balloon {
  animation: balloon 0.6s ease-out 0s 1 forwards;
}

@keyframes balloon {
  0% {
    transform: scale(0.1);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/*-------------faq-----------------*/
.faq {
  background-color: #F6FAEB;
}

.faq-contents {
  width: 100%;
}

.faq-content {
  text-align: left;
  border-bottom: 1px solid #E2D6C9;
  position: relative;
}
.faq-content:last-child {
  border-bottom: none;
}

.faq-q,
.faq-a {
  display: flex;
  padding-left: 12%;
}

.faq-q {
  margin-bottom: 16px;
}
.faq-q dt {
  width: 10%;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #7FB6AE;
}
.faq-q dd {
  width: 90%;
  padding-top: 16px;
  color: #4A4A4A;
  font-size: clamp(14px, 2vw, 24px);
  font-weight: 500;
}

.faq-a {
  margin-left: 5%;
  padding-bottom: 24px;
}
.faq-a dt {
  width: 10%;
  font-size: clamp(18px, 2.6vw, 32px);
  color: #6A6A6A;
}
.faq-a dd {
  width: 90%;
  padding-top: 8px;
  color: #6A6A6A;
  font-size: clamp(10px, 1.4vw, 16px);
}
.faq-a dd span {
  font-weight: bold;
}

/*------------footer--------*/
footer {
  width: 100%;
  background-color: #4E4637;
  color: #fff;
  text-align: center;
}

.footer-wrapper {
  display: flex;
  text-align: left;
}

.footer-info {
  width: 50%;
  padding: 40px 100px;
}
.footer-info h3 {
  font-size: clamp(20px, 2.9vw, 24px);
  margin-bottom: 40px;
  white-space: nowrap;
}
.footer-info p {
  font-size: clamp(18px, 2.6vw, 20px);
  margin-bottom: 24px;
  white-space: nowrap;
}

.footer-nav {
  width: 50%;
}
.footer-nav ul {
  padding-top: 64px;
  padding-left: 180px;
}
.footer-nav li {
  margin-bottom: 24px;
  position: relative;
}
.footer-nav li::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background-color: #fff;
  border-radius: 50%;
  top: 38%;
  left: -5%;
  transition: all 0.5s;
}
.footer-nav li:hover {
  font-weight: bold;
  transform: scale(1.1, 1.1);
}
.footer-nav a {
  color: #fff;
  font-size: 20px;
}

small {
  font-size: 12px;
  margin-bottom: 16px;
}

/*------------共通-----------*/
.wrapper {
  background-color: #FAF6EF;
  padding-inline: 3%;
  text-align: center;
  align-items: center;
  padding-top: 80px;
  margin: 0 auto;
}

.title {
  font-size: clamp(32px, 4.7vw, 64px);
  color: #4E4637;
  font-weight: bold;
  position: relative;
  margin-bottom: clamp(64px, 9.4vw, 80px);
}
.title::after {
  position: absolute;
  content: "";
  width: clamp(180px, 26vw, 370px);
  height: 2px;
  background-color: #B8DAD3;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}

/*----------------------私たちについて--------------------*/
.about--wrapper {
  padding-bottom: 120px;
}

.contents {
  display: flex;
  align-items: center;
}
.contents img {
  width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.text {
  font-size: clamp(16px, 2.3vw, 30px);
  width: 100%;
  text-align: left;
  padding-left: 10%;
}
.text span {
  font-weight: bold;
}

.staff-wrapper {
  display: flex;
  gap: 100px;
  text-align: left;
  padding-bottom: clamp(80px, 11.7vw, 120px);
}
.staff-wrapper img {
  width: 50%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.staff-inner {
  width: 50%;
}
.staff-inner-name {
  font-size: clamp(20px, 2.9vw, 40px);
  margin-bottom: clamp(16px, 2.3vw, 40px);
  font-weight: bold;
  color: #3E3E3E;
}
.staff-inner-text {
  font-size: clamp(16px, 2.3vw, 32px);
  color: #6A6254;
  line-height: 1.5;
}

h4 {
  font-size: clamp(32px, 4.7vw, 48px);
  color: #4E4637;
  font-weight: bold;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.history-wrapper {
  padding-bottom: clamp(80px, 11.7vw, 120px);
}

table {
  width: 100%;
  text-align: center;
  align-items: center;
  font-size: clamp(12px, 1.7vw, 36px);
  color: #3E3E3E;
}
table tr,
table td {
  border-bottom: 1px solid #c2d2cb;
  padding-block: clamp(16px, 2.3vw, 24px);
}
table tr:first-child,
table td:first-child {
  border-right: 1px solid #c2d2cb;
}
table tr:last-child td,
table td:last-child td {
  border-bottom: none;
}

/*-----------access-----------*/
.access-title {
  font-size: clamp(32px, 4.7vw, 48px);
  color: #4E4637;
  font-weight: bold;
  margin-bottom: clamp(24px, 3.5vw, 40px);
}

.access {
  padding-bottom: clamp(80px, 11.7vw, 120px);
}
.access div {
  display: inline-block;
  background-color: #D9D9D9;
  width: 80%;
  height: clamp(160px, 26.4vw, 330px);
  border-radius: 40px;
}

/*----------------------staff紹介-----------------------*/
.top-wrapper h4 {
  text-align: left;
}

.staff-wrapper {
  align-items: center;
}

.staff--name {
  font-size: 24px;
  line-height: 40px;
  margin-bottom: 16px;
  font-weight: bold;
  color: #3F3F3F;
}

.staff--text {
  line-height: 35px;
  font-size: 24px;
  color: #3F3F3F;
}

/*-------------service内容-----------------*/
.service .wrapper {
  background-color: #fff;
  max-width: 1000px;
}

.heading {
  display: flex;
}
.heading img {
  width: 60%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 40px;
}

.lead-title {
  width: 100%;
}
.lead-title h4 {
  text-align: left;
}
.lead-title p {
  font-size: clamp(20px, 2.9vw, 30px);
  color: #6A6254;
  text-align: left;
}

.visiting-menu {
  padding-top: 64px;
  padding-bottom: clamp(64px, 9.4vw, 120px);
}

.menu-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(20px, 2.9vw, 40px);
  padding-block: 64px;
}

.menu-inner {
  margin: 0 auto;
  display: flex;
  width: 280px;
  height: 180px;
}
.menu-inner img {
  width: 50%;
  background-color: #F2FBF8;
}

.menu-img {
  width: 30%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  padding-top: 40px;
}

.inner-text {
  padding-top: 40px;
  width: 50%;
  background-color: #F7F3EA;
  color: #3F3F3F;
}

.detail-title {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 8px;
}

.detail {
  font-size: 12px;
  font-weight: normal;
}

h5 {
  font-size: clamp(32px, 4.7vw, 40px);
  text-align: left;
  font-weight: 500;
  color: #4E4637;
  margin-bottom: clamp(16px, 2.3vw, 40px);
}

.service--text {
  display: flex;
  gap: clamp(16px, 2.3vw, 30px);
  text-align: left;
  padding-left: 30px;
}
.service--text dt {
  width: clamp(40px, 5.8vw, 60px);
  height: auto;
  text-align: center;
  color: #6A6A6A;
  border: 1px solid #8c5716;
  border-radius: 50% 50% 0 50%;
  font-size: clamp(20px, 2.9vw, 30px);
}
.service--text dd {
  width: 100%;
  font-size: clamp(18px, 2.6vw, 28px);
  margin-bottom: clamp(8px, 1.1vw, 16px);
  padding-left: 50px;
  color: #3F3F3F;
}

.text-left {
  width: 40%;
}

.text-right {
  width: 60%;
}

/*------------------レスポンシブ-------------------*/
@media (max-width: 680px) {
  /*---------header---------*/
  .top-menu {
    display: none;
  }
  .toggle-btn {
    display: block;
    right: 10px;
  }
  .menu-sp {
    position: fixed;
    top: 0;
    left: -100%;
    opacity: 0;
    pointer-events: none;
    transition: left 0.5s ease;
    z-index: 80;
  }
  .open .menu {
    left: 0;
    opacity: 1;
    pointer-events: auto;
  }
  /*------------main----------*/
  .main-wrapper {
    flex-direction: column;
  }
  .menu {
    display: none;
  }
  .title-text {
    left: 4%;
  }
  /*--------main-wrapper共通-----------*/
  .container {
    padding-top: 64px;
    padding-bottom: 80px;
  }
  /*----------about--------*/
  .about-contents {
    flex-direction: column;
  }
  .about-contents img {
    width: 100%;
    margin-bottom: 24px;
  }
  .about-content {
    width: 100%;
    margin-left: 0;
  }
  /*-------service-------*/
  .service-contents {
    flex-direction: column;
    margin-bottom: 0;
  }
  .service-content {
    margin-bottom: 64px;
  }
  .service-content img {
    margin-bottom: 24px;
  }
  /*---------voice--------*/
  .voice-left {
    flex-direction: column-reverse;
  }
  .voice-right {
    flex-direction: column;
  }
  .voice-img {
    width: 100%;
  }
  .voice-text p {
    margin-bottom: 16px;
  }
  /*-----------staff-------------*/
  .staff-contents {
    flex-direction: column;
    gap: 0;
  }
  .staff-content {
    margin-bottom: 40px;
  }
  .staff-content:last-child {
    margin-bottom: 64px;
  }
  /*--------------flow-------------*/
  .flow-contents {
    padding-inline: 2%;
  }
  .flow-content {
    padding: 10px 8px;
    margin-bottom: 40px;
  }
  .flow-content:last-child {
    margin-bottom: 0;
  }
  .flow-content::after {
    bottom: -50%;
  }
  /*---------faq-------*/
  .faq-q,
  .faq-a {
    padding-left: 0%;
  }
  .faq-a {
    margin-left: 2%;
  }
  /*----------footer--------*/
  .footer-wrapper {
    flex-direction: column;
  }
  .footer-info {
    width: 100%;
    padding: 40px 10px;
  }
  .footer-nav {
    display: none;
  }
  /*--------------共通---------------*/
  .wrapper {
    padding-top: 64px;
  }
  /*-----------私たちについて-------------*/
  .about--wrapper {
    padding-bottom: 80px;
  }
  .contents {
    flex-direction: column-reverse;
  }
  .contents img {
    width: 100%;
  }
  .staff-wrapper {
    flex-direction: column;
    gap: 0;
  }
  .staff-wrapper img {
    width: 100%;
  }
  .staff-inner {
    width: 100%;
    padding-inline: 3%;
    padding-top: 40px;
  }
  .access div {
    width: 100%;
  }
  /*---------service内容-----------*/
  .heading {
    flex-direction: column-reverse;
  }
  .heading img {
    width: 100%;
    margin-bottom: 40px;
  }
  .visiting-menu {
    padding-top: 0;
  }
  .service--text {
    flex-direction: column;
  }
  .text-left {
    width: 100%;
  }
  .text-right {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */