/* ヘッダー */
html {
  --height-min: 52px;
  --height-max: 79px;
  --height-related-width: 0;

  --link-color: #fc9db8;
  --light-pink: #fc9db8;
  --light-red: #ff6969;
  --light-yellow: #ffff69;
  --light-blue: #4fc8ff;
  --background-default: rgb(250 250 250);
  --bold-pink: #fc9db8;
  --text-color: #353f46;
  --background-color: #535454;
}

@media (min-width: 0px) {
  html {
      --height-related-width: var(--height-min);
  }
}

@media (min-width: 720px) {
  html {
      --height-related-width: calc(72vw * 0.1);
  }
}

@media (min-width: 1100px) {
  html {
      --height-related-width: var(--height-max);
  }
}


.nav-section-title {
  background: var(--text-color);
  color: white;
  padding: 3px 24px;
  margin-top: 8px;
}

input[type="checkbox"] {
  display: none;
}

#header-search-form {
  margin-top: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

#search-input-go {
  display: none;
}

#search-input {
  width: 200px;
  font-size: 12.5px;
  box-sizing: border-box;
  vertical-align: 10.75px;
  padding: 8px;
  transition: 0.3s;
  border: 1px solid #f5f5f6;
  background-color: #f5f5f6;
  border-radius: 4px;
  outline: none;
}

#search-input:focus {
  background-color: white;
}

#search-button-svg {
  margin-bottom: 3px;
  margin-left: 4px;
}

/*drawer*/
#nav-drawer {
  position: fixed;
  right: calc(var(--height-related-width) * 0.5 + 12px);
  top: calc(var(--height-related-width) * 0.5 - 9.5px);
}

#nav-open {
  width: 20px;
  display: inline-block;
  height: 22px;
  vertical-align: middle;
  cursor: pointer;
}

#nav-hamburger,
#nav-hamburger:before,
#nav-hamburger:after {
  position: absolute;
  height: 1.9px;
  width: 20px;
  border-radius: 3px;
  background: var(--text-color);
  display: block;
  content: "";
  cursor: pointer;
}

#nav-hamburger:before {
  bottom: -7px;
}

#nav-hamburger:after {
  bottom: -14px;
}

#nav-close {
  display: none;
  position: fixed;
  z-index: 99;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: black;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

#nav-content {
  overflow: auto;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 9999;
  /*最前面に*/
  width: 90%;
  /*右側に隙間を作る*/
  max-width: 280px;
  /*最大幅*/
  height: 100%;
  background: #fff;
  /*背景色*/
  transition: 0.3s ease-in-out;
  /*滑らかに表示*/
  transform: translateX(100%);
  /*左に隠しておく*/
}

#nav-content-profile {
  padding: 22px 24px 4px;
  font-weight: 500;
  background: var(--background-color);
}

#nav-profile-img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 4px;
  background: #fff;
  margin-bottom: 5px;
  text-align: center;
}

.nav-profile-link {
  color: #fff;
}

#nav-profile-img {
  width: 30px;
  margin-top: 10px;
  height: 30px;
}

#nav-profile-name-wrap {
  display: flex;
  justify-content: space-between;
  color: var(--text-color);
  align-items: center;
  padding: 15px 0 10px;
}

#nav-profile-name-link {
  text-decoration: none;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

#nav-profile-arrow {
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: white white transparent transparent;
  transform: rotate(45deg);
  display: inline-block;
}

.nav-content-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-content-element-link {
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 24px;
  font-size: 13px;
  line-height: 48px;
  letter-spacing: 0.4px;
  color: var(--text-color);
  font-weight: 300;
}

.nav-content-element-arrow {
  width: 7px;
  height: 7px;
  border: 1px solid;
  border-color: var(--text-color) var(--text-color) transparent transparent;
  transform: rotate(45deg);
  display: inline-block;
}

#nav-input:checked~#nav-close {
  display: block;
  opacity: 0.5;
}

#nav-input:checked~#nav-content {
  transform: translateX(0%);
  /*中身を表示*/
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
}

/*drwer fini*/

#header-right-in {
  margin-top: 2px;
  margin-right: 30px;
}

#header {
  z-index: 10000;
  background-color: white;
  width: 100%;
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.05);
  top: 0;
  height: var(--height-related-width);
  min-height: var(--height-min);
  max-height: var(--height-max);
  padding: 0;
  display: flex;
  justify-content: space-between;
}

#header-left {
  display: inline-block;
  margin-left: calc(var(--height-related-width) * 0.5 - 12px);
}

#header-left-in {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: var(--height-related-width);
}

#header-logo-link {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

#header-logo-img {
  width: auto;
  height: var(--height-related-width);
}

#header-logo-text {
  width: 114px;
  position: relative;
  left: 8px;
  top: 2px;
}

#header-right {
  display: inline-block;
  margin-right: calc(var(--height-related-width) * 0.5 - 12px);
}

@media (min-width: 0px) {
  #search-button-caller:checked~#header-search-form {
      display: flex;
      align-items: flex-end;
      justify-content: center;
  }

  #header-mypage-wrap {
      padding-left: 0px;
      border: solid 1px black;
      padding: 4px 14px;
      display: flex;
      border-radius: 22px;
      text-decoration: none;
      color: black;
  }

  .header-right-content a {
      padding: 1px;
  }

  .header-right-content {
      padding: calc(var(--height-related-width) * 0.5 - 21px) 0px 0px 0px;
  }
}

@media (min-width: 450px) {
  .header-right-content a {
      padding: 3px;
  }
}

@media (min-width: 720px) {
  .header-right-content {
      padding: calc(var(--height-related-width) * 0.5 - 24px) 0px 0px 0px;
  }
}

@media (min-width: 1150px) {
  #header-mypage-wrap {
      padding-left: 18px;
  }
}

/* ここから追加しておく */
#header {
 height: 97px;
 position: absolute;
}






#header_top {
  
    width: 1080px;
    height: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
  
  }
  
.nav-1 {
  max-width: 820px;
    width: 100%;
    height: 100%;
  display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    margin: 0;
    text-decoration: none;
    list-style: none;
    font-size: 18px;
   
}

.logo {
  width: 231px;
  height: auto;
}

  
/* ここから追加 */

.btn-skill {
  color:#383838;
  font-weight: bold;
  padding: 0 30px;
 
}




.btn-lemon {
  color:#383838;
  font-weight: bold;
  padding: 0 30px;
 
}

.btn-lemon-strong {
  color:#383838;
  font-weight: bold;
  padding: 0 30px;
 
}

.btn-katsudo {
  color:#383838;
  font-weight: bold;
  padding: 0 30px;
 
}
.btn_inq {
  color:#383838;
  border: 1px solid #FFE200;
  border-radius: 2em;
  padding: 11px 30px;
  font-weight: bold;

  
}

.btn_inq:hover {
  color: #FFFFFF;
  background-color: #FFE200;
}

.btn-skill-child {
  margin: 15px auto 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  display: none;
  padding: 0;
  
}

.nav-inner:hover .btn-skill-child {
  display: block;
  text-align: left;
}

.nav-inner:hover {
  background: #FFE200;
  margin-top: 127px;
    /* padding: 25px 13px; */
    text-align: center;
    border-radius: 20px;
    width: 169px;
    height: 170px;
    padding-left: 17px;
    padding-top: 22px;
}
/* 
.tameshi {
  width: 186px;
  text-align: center;
} */










.data {
  padding-bottom: 10px;
  
}
.skill-hover:hover .nav-inner-inner{
  transition: all .3s;
}

.nav-1 {
  position: relative;
}

.nav-inner-inner:hover .nav-inner-inner {
  background: #FFE200;
  margin-top: 155px;
    padding: 14px 3px;
    text-align: center;
    border-radius: 20px;
    display: block;
    transition: all .3s;
}


.btn-skill-child:hover .btn-skill-child-child {
  display: block;
}

.btn-skill-child-child {
  margin: 15px auto 0;
  font-weight: 500;
  font-size: 13px;
  line-height: 17px;
  text-align: center;
  color: #fff;
  display: none;
  padding: 0;
  
}

.nav-inner {
  position: relative;
  /* transition: all .3s; */
}
.skill-hover:hover .btn-skill-child-child {
  display: block;
  text-align: left;
  padding-left: 10px;
}

.nav-inner-inner {
  margin: 0;
  /* padding: 0 10px; */
  position: absolute;
  top: 133px;
  left: 100%;
  width: 169px;
  background: #FFE200;
  border-radius: 20px;
  transition: all;
}

.ai {
  margin-bottom: 15px;
}

.nav-inner-inner:hover .btn-skill-skill-child {
  display: block;
}


 .nav-inner:hover  .btn-skill {
  color: #fff;
  padding: 0 0 0 0;
}


.tameshi3 {
  text-align: left;
}

.nav-inner:hover  .tameshi3 {

  padding-left: 13px;

}







@media screen and (max-width:769px) {
  
  .logo {
    width: 138px;
    height: auto;
  }


.nav-1 {
  display: none;
}



.btn_inq {
  display: none;
}


.btn_skill {
  display: none;
}
 #header_top {
   margin: 0;
   padding: 0px 20px;
    justify-content: space-between;
 }


 .btn_menu {
  width: 30px;
  height: 30px;
  background-color: #FFFFFF;
  position: relative;
 }

 .btn_menu {
  display: block;
  
}
 .btn_menu span {
  display: block;
  width: 27px;
  height: 1px;
  position: absolute;
  left: -11px;
  background-color: #FFE200;
  -webkit-transition: .5s;
  transition: .5s;
}
 .btn_menu span:nth-child(1) {
  top: 6px;
}

.btn_menu span:nth-child(2) {
  top: 14px;
}
.btn_menu span:nth-child(3) {
  top: 22px;
}
.btn_menu.clicked span:nth-child(1) {
  top: 50%;
  -webkit-transform: rotate(
45deg) translateY(-50%);
  transform: rotate(
45deg) translateY(-50%);
}
.btn_menu.clicked span {
  width: 38px;
  left: -11px;
}

.btn_menu.clicked span:nth-child(2) {
  display: none;
}

.btn_menu.clicked span:nth-child(3) {
  top: 50%;
  -webkit-transform: rotate(
-45deg) translateY(-50%);
  transform: rotate(
-45deg) translateY(-50%);
}

.nav {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  
  padding-top: 80px;
  /* opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s; */
  z-index: 100;
  background-color: #FFFFFF;
}

.nav.clicked {
  /* opacity: 1;
  visibility: visible; */
  display: block;
}

.nav_menu {
  overflow: scroll;
  height: 100%;
}

.maruyaji {
    width: 26px;
    height: 26px;
    background: transparent;
    color: #FFE200;
    border: 1px solid #FFE200;
    border-radius: 2em;
    text-align: center;
    line-height: 26px;
}

.menuset {
  display: flex;
  justify-content: space-between;
  padding: 10px 7px;
  border-bottom: 1px solid #9D9D9D;
  margin: 25px 15px 20px;
}

.last {
  margin-bottom: 90px;
}

.menuset-skill {
  margin: 0px 15px ;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 15px;
  margin-left: 20px;
  border-bottom: none;
}

.menuset-skill-mini {
  margin-left: 30px;
}

.data-yaji {
  display: none;
}
.moji {
  color: #1F1F1F;
  font-size: 20px;

font-weight: 500;
line-height: 30px;

}

.kotei.clicked {
  overflow: hidden;
}




#header {
  height: 60px;
}










  
}








@media screen and (min-width:769px) {
  
   .btn_menu {
    display: none;
  }

  .nav {
    display: none;
  }