@charset "utf-8";

/*
 * Base
 */

html { 
  -webkit-text-size-adjust: none;
  scroll-behavior: smooth;
}

dl, ul, ol, p, h1, h2, h3, h4, h5, h6, form, fieldset, legend, input, textarea, button, select { 
  list-style: none; 
  padding: 0;
  margin: 0;
}

img { 
  display: block;
  width: 100%;
  border: 0; 
  vertical-align: middle; 
}

main {
  overflow-x: hidden !important;
}

body {
  font-family: "Noto Sans JP", sans-serif, "ヒラギノ角ゴ Pro", Osaka, "MS P Gothic", sans-serif;
  font-weight: 400;
  overflow-x: hidden;
  color: var(--color-text);
  margin: 0;
  *font-size: 75%;
  line-height: 1.8;
  position: relative;
}

section {
  margin-bottom: 120px;
}

a {
  color: var(--color-text);
  text-decoration: none;
}

@media screen and (max-width: 767px) {

  section {
    margin-bottom: 80px;
  }

}

/*
 * Font
 */

@font-face {
  font-family: "Noto Sans JP";
  src: url(../font/NotoSansJP-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Montertrat";
  src: url(../font/Montserrat-VariableFont_wght.ttf);
}

@font-face {
  font-family: "Montertrat";
  font-weight: 400;
  src: url(../font/Montserrat-Regular.ttf);
}

@font-face {
  font-family: "Montertrat";
  font-weight: 700;
  src: url(../font/Montserrat-Bold.ttf);
}

/*
 * Color
 */

:root {
  --color-accent01: #ABBAA9;
  --color-accent02: #789274;
  --color-accent03: #5e735e;
  --color-base: #F6FAF5;
  --color-text: #2C2319;
}

/*
 * Layout
 */

.content {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
}

.content__inner {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {

  .content {
    max-width: calc(100% - 40px);
  }
  
  .content__inner {
    width: 100%;
  }

}

/*
 * Subtitle
 */

.subtitle {
  display: inline-block;
  font-size: 24px;
  margin-bottom: 40px;
  position: relative;
}

.subtitle::after {
  width: 100vw;
  height: 3px;
  content: "";
  background: var(--color-accent02);
  position: absolute;
  top: 50%;
  left: calc(100% + 20px);
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .subtitle {
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  .subtitle::after {
    left: calc(100% + 10px);
  }

}

/*
 * ContentBox
 */

.content__box {
  display: flex;
  justify-content: space-between;
}

.img__box {
  width: 40%;
  position: relative;
  border-radius: 10px;
  z-index: 1;
}

.img__box img {
  border-radius: 10px;
}

.img__box::before {
  width: 100%;
  height: 100%;
  content: "";
  background: #d6e0d5;
  border-radius: 10px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: -1;
}

@media screen and (max-width: 767px) {

  .content__box {
    flex-direction: column;
    gap: 30px;
    font-size: 14px;
  }
  
  .img__box {
    width: 100%;
  }
  
  .img__box::before {
    top: 7px;
    left: 7px;
  }
  
}

/*
 * Button
 */

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.5s;
  border-radius: 15px;
  position: relative;
  margin-top: 30px;
}

.btn a {
  transition: all 0.5s;
  position: relative;
}

.showmore__btn {
  height: 50px;
  font-weight: 700;
  margin-top: 30px;
}

.showmore__btn a {
  padding: 10px 60px 10px 40px;
  border: 3px solid var(--color-accent02);
  background-color: var(--color-base);
  border-radius: 15px;
}

.showmore__btn a:hover {
  color: var(--color-base);
  background-color: var(--color-accent02);
}
.showmore__btn a::after {
  width: 20px;
  height: 20px;
  content: "»";
  position: absolute;
  top: 38%;
  right: 20px;
  transform: translateY(-50%);
}

.youtube__btn {
  display: flex;
  justify-content: flex-end;
}

.youtube__btn a {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: underline;
}

.youtube__btn img {
  width: auto;
  height: 30px;
}

@media screen and (max-width: 767px) {

  .btn {
    margin-top: 25px;
  }
  
  .showmore__btn {
    margin-top: 25px;
  }
  
  .showmore__btn a {
    font-size: 14px;
    border: 2px solid var(--color-accent02);
  }
  
  .youtube__btn a {
    font-size: 16px;
    gap: 10px;
  }
  
  .youtube__btn img {
    height: 25px;
  }

}

/*
 * title
 */

.page-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 60px;
  margin-top: 160px;
  padding-left: 30px;
  position: relative;
}

.page-title::before {
  width: 6px;
  height: 100%;
  content: "";
  background: var(--color-accent02);
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

@media screen and (max-width: 767px) {

  .page-title {
    font-size: 24px;
    margin-bottom: 50px;
    margin-top: 120px;
  }
  
  .page-title::before {
    width: 4px;
  }

}

/*
 * Other
 */

.en {
  font-family: "Montertrat";
}

.green {
  color: var(--color-accent02);
}

/*
 * Header
 */

header {
  width: 100vw;
  position: fixed;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  background: #FFFFFF;
  top: 0;
  z-index: 1000;
}

header .content {
  height: 90px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  width: 250px;
}

header .menu__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .menu__item {
  text-align: center;
  line-height: 1.4;
  border-left: 1px solid #E5E5E5;
  transition: all 0.3s;
}

header .menu__item:hover {
  background: #F5F5F5;
}

header .menu__item a {
  display: block;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  padding: 0 30px;
}

header .menu__item a span {
  font-family: "Montertrat";
  color: var(--color-accent02);
  font-size: 12px;
  line-height: 0;
}

@media screen and (max-width: 1200px) {
  
  header .content {
    height: 70px;
  }
  
  header .logo {
    width: 140px;
  }
  
  header .menu__list {
    display: none;
  }

}

/* ハンバーガー */

.hamburger {
  display: none !important;
}

.hamburger {
  display: block;
  width: 200px;
  height: 100vh;
  position: fixed;
  background: #FFFFFF;
  z-index: 1000;
  top: 70px;
  right: -200px;
  transition: all 0.5s;
  opacity: 1;
}

.hamburger::before {
  width: 100vw;
  height: 100vh;
  content: "";
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: -100vw;
  z-index: -10;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.5s;
}

.hamburger.open::before {
  opacity: 1;
  visibility: visible;
  z-index: 10;
}


.hamburger.open {
  right: 0;
  opacity: 1;
}

.hamburger ul {
  display: flex;
  flex-direction: column;
}

.hamburger li {
  font-size: 16px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-accent01);
  line-height: 1.0;
  padding: 10px 0px;
}

.hamburger li span {
  font-size: 12px;
  font-weight: 400;
  color: var(--color-accent03);
  display: block;
  margin-top: 5px;
}

.hamburger a {
  display: block;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 1.02px;
}

.hamburger p {
  font-size: 14px;
  line-height: 1.2145;
}

.hamburger nav .inner {
  height: 100vh;
  padding: 24px 20px;
}

.toggle-btn {
  display: block;
  position: fixed;
  top: 0px;
  right: 0px;
  width: 70px;
  height: 70px;
  z-index: 1000;
  cursor: pointer;
}

.toggle-btn span {
  position: absolute;
  display: block;
  left: 20px;
  width: 30px;
  height: 3px;
  background: var(--color-accent02);
  transition: all 0.5s;
  border-radius: 4px;
}

.hamburger.open .toggle-btn span {
  background: var(--color-accent02);
}

.toggle-btn span:nth-child(1) {
  top: 24px;
}

.toggle-btn span:nth-child(2) {
  top: 34px;
}

.toggle-btn span:nth-child(3) {
  top: 44px;
}

.open .toggle-btn span:nth-child(1) {
  transform: translateY(10px) rotate(-315deg);
}

.open .toggle-btn span:nth-child(2) {
  opacity: 0;
}

.open .toggle-btn span:nth-child(3) {
  transform: translateY(-10px) rotate(315deg);
}

@media screen and (max-width: 1200px) {

  .hamburger {
    display: block !important;
  }
  
}

/*
 * Footer
 */

footer {
  background: var(--color-text);
  color: var(--color-base);
  padding: 80px 0 40px 0;
}

footer .logo {
  width: 250px;
}

footer a {
  color: var(--color-base);
}

.footer__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}

.link__box {
  display: flex;
  gap: 100px;
}

.footer__top .menu__list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}

.footer__top .sns__list {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__top .sns__title {
  margin-bottom: 20px;
}

.footer__top .sns__item {
  width: 30px;
}

.footer__top .sns__item:first-child {
  width: 25px;
}

.footer__top .sns__item:nth-child(3) {
  width: 28px;
}

.credit {
  text-align: center;
  font-size: 12px;
}

@media screen and (max-width: 767px) {

  footer {
    padding: 60px 0 20px 0;
  }
  
  footer .logo {
    width: 140px;
    margin-bottom: 30px;
  }
  
  .footer__top {
    flex-direction: column;
    margin-bottom: 40px;
  }
  
  .footer__top .menu__list {
    padding-left: 10px;
    font-size: 14px;
  }
  
  .footer__top .sns__list {
    gap: 15px;
  }
  
  .footer__top .sns__title {
    font-size: 14px;
  }
  
  .credit {
    font-size: 10px;
  }

}

/*
 * other
 */

 .pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media screen and (max-width: 767px) {

  .pc-only {
    display: none !important;
  }

  .sp-only {
    display: block !important;
  }

}

/* 
 * BACK TO TOP
 */

.scroll-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: all 0.5s;
}

/*
 * アニメーション
 */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}

.fadein-auto {
  animation: fadeIn 0.5s ease-in forwards;
  opacity: 0;
}

.fadein {
  opacity: 0;
}

.fadein.show {
  animation: fadeIn 0.5s ease-in forwards;
}

.delay-300ms {
  animation-delay: 300ms;
}