@charset "utf-8";

/* common */

html {
  font-size: 62.5%;
}
img {
  max-width: 100%;
  height: auto; 
}

body {
    font-family: 
    'Zen Kaku Gothic New',Zen Old Mincho,
    Araial,sans-serif;
    font-style: normal;
    font-size: 1.4rem;
    letter-spacing: 2px; 
    color:var(--txt-green);
    line-height: 1.7;
}

:root {
  --primary-green: #BFD2BF;
  --primary-daekGreen: #076363;
  --txt-green:#456049;
}

.fadeIn {
  transform: translate(0, 50px);
  opacity: 0;
  transition: 0.8s;
}
.fadeIn.animated {
  transform: translate(0, 0);
  opacity: 1;
}

@media screen and (min-width:769px)  {
  body {
    color: #456049;
    font-family: "Zen Kaku Gothic New";
    font-size: 1.6rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.7;
    letter-spacing: 3.2px;
    
  }
}




/*==========
headre
============= */
header {
  z-index: 999;
  background-color:var(--primary-green) ;
  padding: 15px  7.5%;
  display: flex;
  position: fixed;
  justify-content: space-between;   
  width: 100%;
}
.header_logo {
  transition: all 0.4s;
  height: 30px;
}
.header_logo:hover {
  transform: scale(1.1);
}
#navi {
  position: fixed;
  top: 80px;
  left: -100%;
  width: 100vh;
  color: var(--txt-green);
  transition: all 1.5s;
  opacity: 0;
}
.nav__menu {
  color: var(--txt-green);
}
#navi li {
  padding: 0 7.5%;
  text-align: left;
  font-family: Lora;
  font-size: 1.8rem;
  letter-spacing: 2.4px;
  margin-bottom: 30px;
  text-decoration: none; 
  display: block;
}
.nav__item a {
  display: inline-block; /* これがないとリンク範囲が全幅になる */
  font-size: 1.8rem; /* 文字サイズ */
  position: relative; /* 相対位置指定 */
  text-decoration: none; /* デフォルトのテキストの下線を消す */
}
.nav__menu a::after {
  background-color: #fff;
  bottom: -2px;
  content: ""; 
  height: 1px;
  left: 4px; 
  position: absolute; 
  transform: scale(0, 1); 
  transform-origin: center top; 
  transition: transform .3s; 
  width:100%; 
}

.nav__menu a:hover::after {
  transform: scale(1, 1); /* 下線を横方向に1倍、縦方向に1倍に変形（表示） */
}
.nav__item:first-of-type {
  margin-top: 60px;
}
.nav__menu {
  top: 50px;
  z-index: 999;
  width: 150px;
  position: fixed;
  height: 100vh;
  width: 100%;
  background-color: var(--primary-green);
}

  /*
  ハンバーガーメニュー
  メニューが開いている時は、「left: 0;」「opacity: 1;」で
  画面左に表示する
  */
.open #navi {
  left: 0;
  opacity: 1;
}
.toggle_btn {
  width: 30px;
  height: 30px;
  position: relative;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 20;
}
  /*
  ハンバーガーメニューの線の設定（メニューが閉じている時）
  */
.toggle_btn span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: var(--txt-green);
  border-radius: 4px;
  transition: all 0.5s;
}

.toggle_btn span:nth-child(1) {
  top: 10px;
}

.toggle_btn span:nth-child(2) {
  bottom: 10px;
}

.open .toggle_btn span {
  background-color: #fff;
}


.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(4px) rotate(-45deg);
  transform: translateY(4px) rotate(-45deg);
}

.open .toggle_btn span:nth-child(2) {
  -webkit-transform: translateY(-4px) rotate(45deg);
  transform: translateY(-4px) rotate(45deg);
}
@media screen and (min-width:980px) {
  header {
    padding: 15px 2.5%;
   justify-content: space-between;
  }
  header  h1 {
    width: 100px;
  }
  .toggle_btn {
    display: none;
  }
  #navi {
    width: auto;
    position: static;
    opacity: 1;
  }
  #navi li {
    margin-bottom: 0;
    padding: 5px 0 0 0;
    padding-left : 35px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav__menu {
    left: 0;
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color:transparent;
  }
  .nav__item {
    margin-bottom: 0
  }
  .nav__item:first-of-type  {
    margin-top: 0;
  }

  .header_logo  {
    height: 35px;
  }
  
}

/* ========
mainvisual
=========== */
#mainvisual {
  background-color: var(--primary-green);
  padding-top:60px ;
  width: 100%;
  height: 620px;
}
.top_img {
  position: relative;
  background-image: url(../images/top-sp.jpg);
  background-size: cover;
  height: 407px;
  width: 81%;
  background-repeat: no-repeat;

  animation-name:fadeInAnime;
  animation-duration:5s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}
/* ja txt */
.mainvisual_ja-txt {
  z-index: 10;
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-family: 'Zen Old Mincho';
  font-style: normal;
  font-size: 1.8rem;
  color: #fff;
  z-index: 1;
  letter-spacing: 4px;
}

.mainvisual_ja-txt > span {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.mainvisual_ja-txt span em {
  font-style: normal;
  text-align: right;
}

.mainvisual_ja-txt {
  top: 262px;
}

.pc1,
.pc2,
.sp1,
.sp2,
.sp3 {
  margin-bottom: 10px;
  position: relative;
}
.pc1 em,.sp2 em, .sp3 em {
  margin: 0 10px;
}
.pc1 em,
.pc2 em,
.sp1 em,
.sp2 em,
.sp3 em {
  position: relative;
  z-index: 1;
}


@keyframes bg {
  0% {
    opacity: 0;
    transform: scaleX(0) translateX(-5%);
  }
  100% {
    transform: scaleX(1) translateX(0);
  }
  100% {
    opacity: 1;
  }
}

/* en txt */
.en-txt {
  top: 485px;
  padding-left: 15px;
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
}

.en-txt > h3 {
  color: #FFF;
  font-style: normal;
  font-family: Lora;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 8px;
}

.mainvisual_en-txt1 {
  opacity: 0;
  text-align: left;
  display: block;
  animation: moveInLeft 2s ease-out;
  animation-delay: 1s;
  animation-fill-mode: forwards;
}


.mainvisual_en-txt2 {
  opacity: 0;
  display: block;
  position: absolute;
  animation: moveInRight 2s ease-out;
  animation-delay: 1s; 
  animation-fill-mode: forwards;
}

@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  
  80% {
    transform: translateX(10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  80% {
    transform: translateX(-10px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@keyframes kf-animate-chars {
  0% {
    opacity: 0;
    transform: translateY(-50%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}


@media screen and (max-width:768px) {
  .sp1::before,
  .sp2::before,
  .sp3::before {
    animation: bg 1.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: linear-gradient(to right, #076363 0%,#076363 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.7em;
    transform-origin: left center;
  }
}

@media screen and (min-width:769px) {
  .top_img { 
    width: 65%;

  }
  .mainvisual_ja-txt {
    z-index: 10;
    position: absolute;
    right: 100px;
    font-size: 2rem;
  }
  .ja-txtg {
    display: flex;
  }
 
 .mainvisual_ja-txt {
    top: 230px;
 }

  .mainvisual_ja-txt > span {
    flex-direction: row;
  }

  .pc1::before,
  .pc2::before {
    animation: bg 2.6s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    background: linear-gradient(to right, #076363 0%,#076363 100%);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1.7em;
    transform-origin: left center;
  }
  .en-txt > h3 {
    font-size: 6rem;
  }

  .mainvisual_en-txt2 {
    top: 115%;
    display: block;
    position: absolute;
    left: 25%;
  }

  .sp_br {
    display: none;
  }
  .pc1 em {
    margin: 0 20px;
  }
  .sp2 em{
    margin: 0 0 0 20px;
  }
  .sp3 em {
    margin: 0 20px 0 0;
  }
  .en-txt {
    top: auto;
  }

}
@media screen and (min-width:980px) {
  header {
    padding: 15px 2.5%;
   justify-content: space-between;
  }
  header  h1 {
    width: 100px;
  }
  .toggle_btn {
    display: none;
  }
  #navi {
    width: auto;
    position: static;
    opacity: 1;
  }
  #navi li {
    margin-bottom: 0;
    padding: 5px 0 0 0;
    padding-left : 50px;
    display: flex;
    justify-content: center;
    flex-shrink: 0;
  }
  .nav__menu {
    left: 0;
    display: flex;
    position: static;
    width: auto;
    height: auto;
    background-color:transparent;
  }
  .nav__item {
    margin-bottom: 0
  }
  .nav__item:first-of-type  {
    margin-top: 0;
  }

  .header_logo  {
    height: 35px;
  }
 
  .top_img {
    margin-left: 2.4%;
    position: relative;
    background-image: url(../images/top-pc.jpg);
    background-size: cover;
    width: 78%;
    background-repeat: no-repeat;
    padding-top: 40%;
  }
  #mainvisual {
    height: 105vh;
    padding-top: 55px;
    width: 100%;
  }
  .mainvisual_ja-txt {
    z-index: 10;
    position: absolute;
    right: 100px;
    font-size: 2.5rem;
    right: 3%;
    top: 311px;
  }
  .en-txt > h3 {
    font-size: 8rem;
  }
  
  
  .mainvisual_en-txt2 {
    display: block;
    position: absolute;
    left: 24%;
  }
  .sp_br {
    display: none;
  }
  
}

/* =======
about
========= */

.about {
  padding: 60px 4% 0;
 background-color: var(--primary-green);
} 
.aboutg {
  margin: 0 auto;
  max-width: 600px;
}
.title {
  padding-bottom: 40px;
  text-align: center;
  color: #456049;
  font-family: Lora;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 6.4px;
}
.title span {
  color: #456049;
  text-align: center;
  font-family: "Zen Kaku Gothic New";
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1.4px;
}
.about_txt{
  text-align: center;
  padding-bottom: 40px;
}
.about_txt  h4 {
  font-family: "Zen Old Mincho";
  padding-bottom: 20px;
  font-size: 1.8rem;
}
.about_txt p {
  line-height: 3;
}
.about_sp {
  width: 600px;
}


@media screen and (min-width:769px) {
  .sp_br {
    display: none;
  }
  .about {
    padding-top: 130px;
  }

  .aboutg {
    justify-content:center;
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
  }
  .title {
    padding-bottom: 80px;
    font-family: Lora;
    font-size: 3.2rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 6.4px;
  }
  .title span {
    font-size: 1.4rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 1.4px;
  }
  .about_txt h4 {
    padding-bottom: 30px;
    font-size: 2.5rem;
  }
  .about_txt {
    width: 50%;
    text-align: left;
    padding-bottom: 0;
    margin: auto 0;
    margin-left: 80px;
  }
  .about_txt p {
   font-size: 1.6rem;
   line-height: 3;

  }
  .about-picture {
    max-height: 450px;
    width: 50%;
    display: block;
  }
  .about_pc {
    height: 100%;
    object-fit: cover;
  }
  .max_br, .about_br{
    display: none;
  }
  .aboutg {
    max-width:100%;
  }

} 
@media screen and (min-width:980px)  {
 #about {
    max-width: 1440px;
  }
  .aboutg {
    margin: 0 auto;
    max-width: 1440px;
  }
  .about_br {
    display: block;
  }
}
@media screen and (min-width:1285px){
  .max_br {
    display: block;
  }
}
 
/* =======
detail
==========*/
#detail{
  padding: 60px 4% 60px;
  background-color: var(--primary-green);
}

.detail_bc  {
  max-width: 600px;
  margin: 0 auto;
  padding-top: 80px;
  background-color: #fff;
}

.logo {
 text-align: center;
 padding-bottom: 20px;
}
.detail_logo {
  width: 42px;
  height: 31px;
}
.detail_txt {
  text-align: center;
}
.flexg {
  margin:  0 auto;
} 

.txt_img { 
  display: none;

}
.whitenning_grop {
  margin: 60px 20px 0px;
}
.whitenning_grop:last-of-type {
  padding-bottom: 60px;
}
.sub_title {
  color: #3E765F;
  font-family: "Zen Old Mincho";
  font-size: 1.8rem;
  line-height: 2.5;
  letter-spacing: 3.6px;
  border-bottom: 1px solid var(--primary-green);
}
.sub_title span {
  color: var(--primary-green);
}
.description {
  margin: 25px 0;
}

@media screen and (min-width:769px) {
  #detail {
    padding: 80px 4% 80px;
  }
  .detail_bc {
    margin: auto;
    max-width: 1440px;
  }
 .detailg {
   padding-bottom: 80px;
    display: flex;
    justify-content: center;
 }
 
  .flexg {
    padding-top: 30px;
    display: flex;
  }

  .whitenning_grop {
    margin: 60px 80px 0px;
  }
  .whitenning_grop:last-of-type {
    padding-bottom: 80px;
  }
  .sub_title {
    font-size: 2.5rem;
  }
  .txt_img {
    width: 130px;
    display: block;
  }
  .detail_txt {
    width: 530px;
    text-align: left;
    margin: auto 0;
    font-size: 2.5rem;
  }
  .description {
    width: 1500px;
    padding-right: 50px;
    margin: 0;
  }
  .wh_br {
    display: none;
  }
  
} 
@media screen and (min-width:980px)  {
  .wh_br {
    display: block;
  }
  .detail_txt {
    letter-spacing: 5px;
    width: auto;
  }
}



/* ======
other 
=======*/
#other {
  text-align: center;
  padding: 60px 4% 60px;
}
#other h4 {
  color: #3E765F;
  font-family: "Zen Old Mincho";
  font-size: 1.8rem;
  letter-spacing: 3.6px;
  line-height: 2.5;
  border-bottom: 1px solid var(--primary-green);
}
#other p {
  margin: 0 auto;
  padding: 25px 0;
}
.Facial_sp {
  max-width: 600px;
  margin: 0 auto;
}

.Facial_sub {
  z-index: 999;
  position: absolute;
  bottom: -111px;
}
.Facial_main {
  width: 100%;
}

.pc_br {
  display: none;
} 



@keyframes Facial_sub_img {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  
  100% {
    opacity: 1;
    transform: translate(0);
  }
}

@media screen and (min-width:769px) {
  #other{
    padding: 80px 4% 80px;
    margin: 0 auto;
    max-width: 1440px;
  }
  .pc_img {
    display: block;
  }
  .sp_img {
    display: none;
  }
  .Facial_grop {
    padding-top: 30px;
    margin: 0 auto;
    max-width: 1300px;
    justify-content:center;
    text-align: center;
    display: flex;
    flex-direction: row-reverse;
  }
  #other h4 {
    font-size: 2.5rem;
  }
  .Facial_sp {
    max-width: 1300px;
  }
  .Facialtxt_img {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    margin-left: 80px;
    width: 40%;
  }
  #other p {
    margin: 0;
    text-align: left;
    padding: 0 0 30px 0;
  }
  .Facial_sub {
    max-width: 415px;
    position: static;
  }

  .Facial_img {
    height: 460px;
    display: block;
    width: 50%;
  }
  .Facial_main {
    height: 100%;
    object-fit: cover;
  }
  .pc_br {
    display: block;
  }

} 
  
/*  =========
Access
============= */
.map {
  width: 100%;
  height: 300px;
}
.slick-slider {
  width: 100%;
  height: 100%;
  padding: 30px 7% 0;
  overflow: hidden;
}
.slider__item {
  justify-content: center;
}
#Access {
  text-align: center;
  padding: 120px 4% 60px;
}

.dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-class {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.dots-class li {
  width: 10px;
  height: 10px;
  background-color: #fff;
  border: 1px solid var(--primary-daekGreen);
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color .5s ease;
}
.dots-class li.slick-active {
  background-color: var(--primary-daekGreen);
}
.dots-class li:hover {
  background-color: var(--primary-green);
}
.dots-class li:last-child {
  margin-right: 0;
}
.logo_all {
  width: 50%;
  margin: 0 auto 10px;
}

address > P {
  line-height: 2;
  padding-bottom: 15px;
}
.link_txt {
  display:inline-block;
  transition: all 0.4s;
  border-bottom: 1px dashed var(--primary-daekGreen);
}
.link_txt:hover {
  transform: scale(1.1);
}
.Instagram_icon {
  transition: all 0.4s;
}
.Instagram_icon :hover {
  transform: scale(1.1);
}




footer {
  font-family: "lora";
  text-align: center;
  background-color: var(--primary-green);
  padding: 30px 4%;
}

.pc_access {
  display: none;
}
.Instagram_icon {
 margin-top: 20px;
  transition: all 0.4s;
}
.Instagram_icon:hover {
  transform: scale(1.1);
}




@media screen and (min-width:769px) {
  #Access {
    max-width: 1440px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 4% 80px;
  }

  .sp_access {
    display: none;
  }
  .pc_access {
    padding: 80px 0 0;
    display: flex;
  }
  .access_main {
    max-height: 510px;
    width: 50%;
    display: block;
  }
  .access_sub {
    margin-top: 30px;
    display: flex;
  }
  .access_sub  img {
    max-width: 25%;
    margin-right: 10px;
  }
  .map {
    width: 100%;
    height: 500px;
  }
  .address {
    margin-top: auto;
    width: 50%;
    padding-left: 50px;
    text-align: left;
  }
  .logo_all {
    margin: 0 auto 20px;
  }

  .address > P {
    line-height: 2;
    padding-bottom: 15px;
  }

  .Instagram_icon_pc {
    transform: translate3d(1px, -1px, 10px);
    width: 24px;
  }
  .access_mainimg {
    height: 100%;
    object-fit: cover;
  }
  .link_txt {
    padding-bottom: 5px;
  }
  footer {
    padding: 80px 4%;
  }

}