@charset "UTF-8";
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  transform: translateY(0%);
  transition: transform 0.2s ease-out, background-color 0.2s ease-out;
}

.logo {
  width: 200px;
  margin: 20px;
  position: absolute;
  top: 14px;
  left: 50px;
}
@media only screen and (max-width: 769px) {
  .logo {
    width: 120px;
    left: 3%;
    top: -1px;
  }
}

@media only screen and (max-width: 769px) {
  /*ハンバーガーアイコン*/
  .btn-burger {
    cursor: pointer;
    display: block;
    width: 56px;
    height: 60px;
    position: absolute;
    top: 5px;
    right: 10px;
    z-index: 1000;
  }
  /*ハンバーガーアイコンを作る三本線*/
  .icon, .icon:before, .icon:after {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 2px; /*線の太さ*/
    width: 35px; /*線の長さ*/
    background-color: #3E3A39;
    border-radius: 2px;
    display: block;
    content: "";
    cursor: pointer;
    margin: auto;
  }
  /*三本線の間隔*/
  .icon:before {
    top: 15px;
    margin: 0px;
  }
  .icon:after {
    top: -15px;
    margin: 0px;
  }
  #burger.active,
  #burger.active:before,
  #burger.active:after {
    background-color: #3E3A39;
  }
  /*チェックボックス非表示*/
  .nav-toggle {
    display: none;
  }
  /*アイコンをクリックしたら*/
  .nav-toggle:checked ~ .btn-burger .icon {
    background: transparent !important;
  }
  .nav-toggle:checked ~ .btn-burger .icon:before {
    transform: rotate(-45deg);
    top: 0;
    background-color: #3E3A39;
  }
  .nav-toggle:checked ~ .btn-burger .icon:after {
    transform: rotate(45deg);
    top: 0;
    background-color: #3E3A39;
  }
  .icon,
  .icon:before,
  .icon:after {
    transition: all 0.8s;
  }
}
.menu-inner-sm {
  display: none;
}
@media only screen and (max-width: 769px) {
  .menu-inner-sm {
    display: none;
    width: 80%;
    margin: 10px auto 50px;
    text-align: center;
    justify-content: flex-start;
    color: #3E3A39;
  }
  .menu-inner-sm.active {
    display: block;
  }
  .menu-inner-sm-inner {
    margin: 20px auto;
    text-align: center;
    font-size: 13px;
    display: block;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu-inner-sm-inner {
    font-size: 15px;
    margin: 30px auto;
  }
}

.sm-entry-waku {
  display: none;
}
@media only screen and (max-width: 769px) {
  .sm-entry-waku {
    display: block;
    text-align: center;
    margin: 20px auto;
  }
  .sm-entry-waku-bun {
    font-size: 15px;
    margin: 40px auto 10px;
    color: #14939C;
  }
  .sm-entry-waku-entoty-btn {
    width: 224px;
    line-height: 49px;
    color: white;
    background-color: #079aa4;
    position: relative;
    margin: 10px auto;
    display: block;
    letter-spacing: 4px;
  }
  .sm-entry-waku-entoty-btn::after {
    content: "";
    position: absolute;
    top: 22px;
    right: 20px;
    width: 20%;
    height: 1px;
    background: #fff;
    transition: all 0.3s;
    display: block;
  }
  .sm-entry-waku-entoty-btn::before {
    content: "";
    position: absolute;
    top: 17px;
    right: 20px;
    width: 15px;
    height: 1px;
    background: #fff;
    transform: rotate(35deg);
    transition: all 0.3s;
  }
  .sm-entry-waku-entoty-btn:hover {
    background-color: #fff;
    color: #ff8d03;
  }
  .sm-entry-waku-entoty-btn:hover::after {
    right: 10px;
    background: #ff8d03;
  }
  .sm-entry-waku-entoty-btn:hover::before {
    right: 10px;
    background: #ff8d03;
  }
}

.nav-items {
  padding: 0;
  list-style: none;
  position: absolute;
  margin: 20px;
  right: 300px;
  top: 19px;
}

.nav-entry {
  position: absolute;
  top: 0px;
  right: 50px;
  z-index: 99;
  width: 157px;
  height: 128px;
  background-color: #ff8d03;
}
.nav-entry::after {
  background-image: url(../img/header/Vector.svg);
  content: "";
  top: 72px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  position: absolute;
  width: 159px;
  height: 122px;
  background-size: contain;
  background-repeat: no-repeat;
  left: 80px;
}
.nav-entry::before {
  content: "";
  background-image: url(../img/header/yajirushi.svg);
  top: 49px;
  left: 49px;
  width: 27px;
  height: 122px;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
}
.nav-entry:hover {
  background-color: white;
}
.nav-entry:hover::after {
  background-image: url(../img/header/Vector_on.svg);
}
.nav-entry:hover::before {
  background-image: url(../img/header/yajirushi_on.svg);
  left: 60px;
  transition: all 0.3s;
}
.nav-entry .btn-green {
  width: 157px;
  height: 128px;
  background-color: #ff8d03;
  position: relative;
  display: block;
  color: white;
  padding-top: 86px;
  text-align: center;
  /*hoverした際の移動*/
}
.nav-entry .btn-green .maru {
  position: absolute;
  border: 1px solid white;
  top: 25px;
  left: 55px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}
.nav-entry .btn-green .yajirushi-back {
  top: 35px;
  left: 41px;
  height: 20px;
  width: 30px;
  background-color: #079aa4;
  position: absolute;
}
.nav-entry .btn-green .btn-yajirushi {
  position: absolute;
  top: 23px;
  left: 30px;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4 {
  position: relative;
  display: inline-block;
  padding: 0 20px;
  color: white;
  text-decoration: none;
  outline: none;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: white;
  transition: all 0.3s;
}
.nav-entry .btn-green .btn-yajirushi .btnarrow4::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: white;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.nav-entry .btn-green .btnarrow4:hover::before {
  left: 20%;
}
.nav-entry .btn-green .btnarrow4:hover::after {
  right: -5%;
}

.nav-entry-2 {
  position: absolute;
  top: 0px;
  right: 50px;
  z-index: 99;
  width: 157px;
  height: 128px;
  background-color: #ff8d03;
}
.nav-entry-2 .inner-font {
  text-align: center;
  color: white;
  margin: 33px auto;
  line-height: 31px;
}

.nav-item {
  display: inline-block;
  margin-right: 25px;
}

.nav-item:last-child {
  margin-right: 0;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active,
.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  display: block;
  position: relative;
  font-size: 14px;
  letter-spacing: 1px;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active {
  color: white;
  font-weight: bold;
}
.nav-link.active,
.nav-link:link.active,
.nav-link:visited.active,
.nav-link:active.active {
  color: #3E3A39;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 3px;
  background: #3E3A39;
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.nav-link:hover::before,
.nav-link:hover::before {
  opacity: 1;
  transform: translate(0, 5px);
}

.dropdown {
  position: relative;
  margin-right: 46px !important;
  cursor: pointer;
}
@media only screen and (max-width: 769px) {
  .dropdown {
    margin: auto !important;
  }
}
.dropdown::after {
  content: "";
  position: absolute;
  top: 8px;
  right: -20px;
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color: transparent transparent #3E3A39 #3E3A39;
  transform: rotate(-45deg);
}
@media only screen and (max-width: 769px) {
  .dropdown::after {
    top: 10px;
    right: 28%;
    border-color: transparent transparent #3E3A39 #3E3A39;
  }
}
@media only screen and (max-width: 769px) {
  .dropdown.active {
    opacity: 0.3;
  }
}
.dropdown.active::after {
  border-color: transparent transparent #3E3A39 #3E3A39;
}
@media only screen and (max-width: 769px) {
  .dropdown.active::after {
    border-color: transparent transparent #3E3A39 #3E3A39;
    width: 20px;
    height: 1px;
    top: 16px;
    right: 26%;
    border: 1px solid;
    transform: rotate(0deg);
    opacity: 0.3;
  }
}

.menu {
  list-style-type: none;
  display: flex;
  align-items: flex-start;
  margin-top: 50px;
  position: absolute;
  top: -5px;
  right: 205px;
}
@media only screen and (max-width: 769px) {
  .menu {
    display: none;
  }
}
.menu-inner {
  margin-left: 32px;
  font-size: 12px;
  position: relative;
  display: block;
  text-decoration: none;
  color: #3E3A39;
  transition: color 0.25s ease;
}
.menu-inner.active {
  color: #3E3A39 !important;
}
@media only screen and (max-width: 769px) {
  .menu-inner {
    font-size: 15px;
    color: #3E3A39;
  }
}
.menu-inner:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media only screen and (max-width: 769px) {
  .menu-inner:hover::before {
    transform: none;
  }
}
.menu-inner::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ff8d03;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
}
@media only screen and (max-width: 769px) {
  .menu-inner::before {
    display: none;
  }
}
@media only screen and (max-width: 769px) {
  .menu-inner {
    margin: 30px auto !important;
    text-align: center;
    display: block;
  }
}
@media only screen and (max-width: 769px) {
  .menu.active {
    display: block !important;
    width: 100%;
    height: 100vh;
    background-color: white;
    position: relative;
    z-index: 100;
    margin-top: 0px;
    padding: 20% 5% 10%;
    overflow-y: scroll;
    top: 0px;
    right: 0px;
    overflow-x: hidden;
    z-index: 100;
  }
  .menu.active .maru3 {
    position: absolute;
    width: 327px;
    height: 327px;
    top: -135px;
    left: -96px;
    background: radial-gradient(50% 50%, #948F63, rgba(196, 196, 217, 0));
    z-index: -1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru3 {
    width: 127px;
    height: 127px;
    top: 53%;
    left: 59%;
    transform: translateZ(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru4 {
    width: 127px;
    height: 127px;
    top: 40%;
    left: 74%;
    background: radial-gradient(50% 50%, #9CBAA2, rgba(196, 196, 217, 0));
    z-index: -1;
    position: absolute;
    transform: translateZ(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) {
  .menu.active .maru5 {
    position: absolute;
    width: 190px;
    height: 190px;
    top: 745px;
    left: -218px;
    background: radial-gradient(50% 50%, rgba(222, 181, 164, 0.6392156863), rgba(196, 196, 217, 0));
    z-index: -1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru5 {
    width: 127px;
    height: 127px;
    top: 90%;
    left: 10%;
    position: absolute;
    transform: translateZ(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru6 {
    width: 127px;
    height: 127px;
    top: 53%;
    left: 1%;
    background: radial-gradient(50% 50%, rgba(225, 163, 155, 0.5215686275), rgba(196, 196, 217, 0));
    z-index: -1;
    position: absolute;
    transform: translateZ(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru7 {
    width: 127px;
    height: 127px;
    top: 22%;
    left: 8%;
    background: radial-gradient(50% 50%, rgba(192, 186, 126, 0.568627451), rgba(196, 196, 217, 0));
    z-index: -1;
    transform: translateZ(0);
    position: absolute;
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru8 {
    width: 127px;
    height: 127px;
    top: 5%;
    left: 64%;
    background: radial-gradient(50% 50%, #8cd3d8, rgba(196, 196, 217, 0));
    z-index: -1;
    position: absolute;
    transform: translateZ(0);
    opacity: 1;
  }
}
@media only screen and (max-width: 769px) {
  .menu.active .maru9 {
    position: absolute;
    width: 330px;
    height: 330px;
    top: 451px;
    left: -243px;
    background: radial-gradient(50% 50%, #73c2c8, rgba(196, 196, 217, 0));
    z-index: -1;
  }
}
@media only screen and (max-width: 769px) and (max-width: 769px) {
  .menu.active .maru9 {
    width: 127px;
    height: 127px;
    top: 50%;
    left: 10%;
    transform: translateZ(0);
    opacity: 1;
  }
}

.nav-sub {
  display: none;
}
.nav-sub.active {
  display: block;
}

.sub-inner {
  display: none;
  position: absolute;
}
.sub-inner.active {
  display: block;
  margin-top: 73px;
  transform: translateX(-60px);
  width: 109%;
  z-index: 1;
  position: fixed;
  padding: 3px 0px 20px;
}
.sub-inner-inner {
  display: flex;
  justify-content: center;
}
.sub-inner-inner-sub {
  margin-right: 45px;
  font-size: 12px;
  display: block;
  position: relative;
  color: #3E3A39;
}
.sub-inner-inner-sub:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}
@media only screen and (max-width: 769px) {
  .sub-inner-inner-sub:hover::before {
    transform: none;
  }
}
.sub-inner-inner-sub::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #ff8d03;
  transform: scaleX(0);
  transform-origin: right;
  transition: all 0.25s ease;
  transition-property: transform;
  bottom: 0px;
}
@media only screen and (max-width: 769px) {
  .sub-inner-inner-sub::before {
    display: none;
  }
}

.submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100;
  width: 200px;
  margin-left: -100px;
  background: #fff;
  border-radius: 3px;
  line-height: 1.46667;
  margin-top: -5px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  opacity: 0;
  transform: translate(0, 0) scale(0.85);
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  pointer-events: none;
}
.submenu::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
  margin-left: -13px;
  border: 13px solid transparent;
  border-bottom-color: rgba(0, 0, 0, 0.1);
  filter: blur(1px);
}
.submenu::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  height: 0;
  border-bottom-color: #fff;
}

.submenu-items {
  list-style: none;
  padding: 10px 0;
}

.submenu-item {
  display: block;
  text-align: left;
}

.submenu-link,
.submenu-link:link,
.submenu-link:visited,
.submenu-link:active {
  color: #3498db;
  padding: 10px 20px;
}

.submenu-link:hover {
  text-decoration: underline;
}

.submenu-seperator {
  height: 0;
  margin: 12px 10px;
  border-top: 1px solid #eee;
}

.show-submenu .submenu {
  opacity: 1;
  transform: translate(0, 25px) scale(1);
  pointer-events: auto;
}

.js-header.active {
  background-color: rgba(255, 255, 255, 0.9);
  width: 100%;
  height: 105px;
}
@media only screen and (max-width: 769px) {
  .js-header.active {
    height: 65px;
  }
}

.drawer {
  position: relative;
}/*# sourceMappingURL=header.css.map */