@charset "utf-8";
header {
  width: 8.47%;
  height: 100%;
  /* padding: 111px 15px 20px;
  overflow-y: scroll; */
  position: relative;
}
.headerWrap {
  height: 100%;
  padding: 111px 15px 20px;
  overflow-y: scroll;
}
.headerWrap::-webkit-scrollbar {
  display: none; /*Google Chrome、Safari、Microsoft Edge対応のスクロールバー非表示コード*/
}

.inner-nav {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.header__wrapper .inner-1260 {
  position: relative;
  height: 100%;
}

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

.header__nav {
  width: 100%;
}

.header__nav-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.header__nav-listItem {
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-listItem--type01 {
  margin-bottom: 21px;
}

.header__nav-listItem:last-child {
  margin-bottom: 0;
}

.vertical-text {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.header__nav-listItem .top--icon {
  width: 28px;
  height: 26px;
  position: relative;
  transition: opacity 0.3s ease;
}
.top--icon .current,
.top--icon .default {
  position: absolute;
  transition: opacity 0.3s ease;
}

.top--icon .current {
  opacity: 0;
}

.top--icon:hover .default {
  opacity: 0;
}

.top--icon:hover .current {
  opacity: 1;
}

.header__nav-listItem .bg--width {
  font-size: clamp(13px, 1.18vw, 15px);
  text-align: center;
  padding: 6px 3px;
  background-color: #8dd2d9;
  border-radius: 3px;
}

.header__nav-listItem a {
  font-size: 16px;
  display: block;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}
.header__nav-listItem a:hover {
  color: #d0a5cb;
}
.header__nav-listItem.current a {
  color: #d0a5cb;
  cursor: default;
  pointer-events: none;
}

.ham {
  width: 83px;
  height: 83px;
  background-color: #ed848c;
  border-radius: 50%;
  position: absolute;
  right: 103px;
  bottom: 113px;
  cursor: pointer;
  z-index: 10;
  display: block;
}

.ham__lineWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.ham__lineWrapper span {
  display: block;
  width: 28px;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  transition: 0.3s;
  border-radius: 50px;
}

.ham__lineWrapper span:nth-child(1) {
  transform: translateX(-50%);
  top: 28px;
}

.ham__lineWrapper span:nth-child(2) {
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
}

.ham__lineWrapper span:nth-child(3) {
  transform: translateX(-50%);
  bottom: 28px;
}

.ham.open {
  background-color: #fff;
}
.ham.open .ham__lineWrapper span {
  background-color: #ccaccf;
}
.ham.open .ham__lineWrapper span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(18deg);
  top: 50%;
}

.ham.open .ham__lineWrapper span:nth-child(2) {
  opacity: 0;
}

.ham.open .ham__lineWrapper span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-18deg);
  top: 50%;
}

.nav__menu {
  /*background-color: #fff;*/
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
  padding-top: 10%;
  display: none;
  overflow-y: scroll;
}

.nav__listWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 55px;
}

.nav__list {
  width: 100%;
}

.nav__listItem {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.nav__listLink {
  color: #1f2b5b;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  display: inline;
  line-height: 1.75;
}

/*丸の拡大*/
.circle-bg {
  position: fixed;
  z-index: 3;
  /*丸の形*/
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: #ccaccf;
  /*丸のスタート位置と形状*/
  transform: scale(0); /*scaleをはじめは0に*/
  right: -50px;
  bottom: -50px;
  transition: all 0.6s; /*0.6秒かけてアニメーション*/
}
.circle-bg.circleactive {
  transform: scale(50); /*クラスが付与されたらscaleを拡大*/
}
#totop {
  width: 83px;
  position: absolute;
  right: 103px;
  bottom: 20px;
  z-index: 2;
}
@media screen and (min-width: 1600px) {
  .ham {
    bottom: 50px;
  }
  #totop {
    position: fixed;
    right: 20px;
  }
}

@media screen and (min-width: 1441px) {
  header {
    flex: 1;
  }
  .header_in {
    width: 100%;
  }
}

@media screen and (max-width: 1100px) {
  /* メインコンテンツの幅が768pxになる */
  header {
    width: auto;
  }
  header .headerWrap {
    display: none;
  }

  .ham {
    position: fixed;
    right: 2%;
  }
  #totop {
    position: fixed;
    right: 2%;
    bottom: 2%;
  }
}

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

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

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

@media screen and (max-width: 768px) {
  .nav__listLink {
    font-size: clamp(14px, 2.3vw, 18px);
  }

  .ham {
    transform: scale(0.8);
    bottom: 90px;
  }
  #totop {
    transform: scale(0.8);
  }
}

@media screen and (max-width: 560px) {
  .nav__listItem {
    margin-bottom: 15px;
  }
}

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

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