@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  color: #333; /* RGB */
  font-family:'Zen Maru Gothic','sans-serif','Hiragino Sans', 'Hiragino Kaku Gothic ProN', Meiryo,'ゴシック体', YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 400;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}

/* a:hover {
  opacity: 0.5;
} */
*, *:before, *:after {
  box-sizing: border-box;
}
*{
  color:#483A0B;
}
a {
	text-decoration: none;
}
ul li {
	list-style: none;
}
.wrapper {
	max-width: 980px;
	margin:0 auto;
}

@media(max-width:980px){
  .wrapper {
    padding:0 24px;
  }
}

header {
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 40px;
  position: fixed;
}

header .nav {
  /* position: relative; */
  display: flex;
  /* align-items: center;
  height: 100%; */
}

.logo {
  position: absolute;
  text-align: left;
  color: #74A18D;
  font-size: 4rem;
  font-weight: 900;
  padding-top: 10px;
  z-index: 1000;
}


.nav {
  justify-content: flex-end;
}

@media(max-width:980px) {
  header {
    padding: 10px 10px;
  }

  .logo {
    font-size: 3rem;
  }
}

header .navi li a:hover {
  text-decoration: underline;
}

*/ #header.scroll {
  position: fixed;
  /* background: #EEE; */
  animation-name: anime;
  animation-duration: 0.3s;
}

@keyframes anime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}


a.header-english {
  display: inline-block;
  position: relative;
  font-size: 1.9rem;
  width: 80px;
  height: 80px;
  line-height: 75px;
  background-color: #E2F4EB;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  color: #D69438;
  font-weight: 400;
  border: 1px solid #fff;
}
a.japanese{
  font-size: 1.5rem;
  background-color: #E3DCEA;
}

a.header-english:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid #fff;
  border-radius: 50%;
}


.header-menu {
  display: inline-block;
  position: relative;
  font-size: 2.2rem;
  width: 80px;
  height: 80px;
  line-height: 72px;
  background-color: #FCFCE8;
  border-radius: 50%;
  text-align: center;
  cursor: pointer;
  color: #D69438;
  font-weight: 400;
  border: 1px solid #E2F4EB;
  margin-left: 20px;
  z-index: 3;
}

.header-menu:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid #E2F4EB;
  border-radius: 50%;
}

a.header-english:hover:before,
.header-menu:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

/*　ハンバーガーボタン */

.header-menu span {
  display: block;
  position: absolute;
  /* width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #555; */
  -webkit-transition: 0.5s all;
  -moz-transition: 0.5s all;
  transition: 0.5s all;
}

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

.header-menu span:nth-child(2) {
  top: 20px;
}

.header-menu span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */

.header-menu.active span:nth-child(1) {
  top: 37px;
  width: 30px;
  height: 2px;
  left: 24px;
  background: #fff;
  z-index: 1000;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  z-index: 1000;
}

.header-menu.active span:nth-child(2) {
  left: 60%;
  opacity: 0;
  -webkit-animation: active-btn17-bar02 .8s forwards;
  animation: active-hamburger-bar02 .8s forwards;
}

@-webkit-keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}

@keyframes active-hamburger-bar02 {
  100% {
    height: 0;
  }
}

.header-menu.active span:nth-child(3) {
  top: 37px;
  width: 30px;
  height: 2px;
  left: 24px;
  background: #fff;
  z-index: 1000;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
  z-index: 1000;
}


.header-menu::after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  width: 80px;
  height: 80px;
  margin: -40px 0 0 -40px;
  border-radius: 50%;
  border: 2px solid rgba(0, 0, 0, 0);
  transition: all .75s;
}

.header-menu.active::after {
  border: 2px solid #FCFCE8;
  background-color: #CECCE0;
}

nav.hamburger_menu {
  display: none;
  position: fixed;
  z-index: 2;
  top: 0;
  right: 0;
  color: #000;
  background: #fff;
  text-align: center;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  width: 30%;
}

.hamburger_menu__container {
  background: #B1AFC7;
  box-shadow: -22px -5px 28px -30px #777777;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 900px;
  text-align: left;
  text-indent: 3em;
  height: 100vh;
}

.hamburger_menu__container ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
}

.hamburger_menu__container ul li:last-child {
  padding-bottom: 0;
}

.hamburger_menu__container ul li a:hover {
  color: #fff;
}

.hamburger_menu__container ul li a {
  display: block;
  color: #000;
  padding: 1.5em 0;
  text-decoration: none;
}

/* このクラスを、jQueryで付与・削除する */
nav.hamburger_menu.active {
  display: block;
  opacity: 100;
}

.hamburger_menu__aplybtn {
  position: relative;
  top: 20px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 10px;
  width: auto;
  text-indent: 0;
  text-align: center;
  margin: 0 10px 0 40px;
}

.hamburger_menu__aplybtn-btn {
  font-size: 1.8rem;
  color: #D69438;
}

.hamburger_menu__aplybtn:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid #D69438;
  border-radius: 50px;
}

.hamburger_menu__aplybtn:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}

.hamburger_menu__contactbtn {
  position: relative;
  top: 40px;
  background: #fff;
  border-radius: 50px;
  padding: 10px 10px;
  width: auto;
  text-indent: 0;
  text-align: center;
  margin: 0 10px 0 40px;
}

.hamburger_menu__contactbtn-btn {
  font-size: 1.8rem;
  color: #74A18D;
}

.hamburger_menu__contactbtn:before {
  position: absolute;
  top: 5px;
  left: 5px;
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  content: '';
  -webkit-transition: all .3s;
  transition: all .3s;
  border: 3px solid #74A18D;
  border-radius: 50px;
}

.hamburger_menu__contactbtn:hover:before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
}


@media(max-width:980px) {
  nav.hamburger_menu {
    width: 60%;
  }

  nav.hamburger_menu.active {
    transform: translateX(0%);
  }

  nav.hamburger_menu ul {
    padding-top: 50px;
    text-indent: 0;
  }

  nav.hamburger_menu ul li {
    padding: 0 20px;
  }

  .section-contact__sns ul {
    padding-top: 0;
  }

  .header-menu,
  a.header-english {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
    line-height: 56px;
  }
  a.japanese{
    font-size: 1rem;
  }

  .header-menu::after {
    width: 60px;
    height: 60px;
    margin: -30px 0 0 -30px;
  }

  .hamburger_menu__aplybtn,
  .hamburger_menu__contactbtn {
    margin: 0 5px;
  }

  .hamburger_menu__aplybtn-btn,
  .hamburger_menu__contactbtn-btn {
    font-size: 1.6rem;
  }

  .header-menu.active span:nth-child(1),
  .header-menu.active span:nth-child(3) {
    top: 30px;
    left: 15px;
  }

  .sns-hamburger {
    width: 200px;
    margin: 0 auto;
  }
}
