.myPage_section {
  width: 100%;
  height: auto;
  display: flex;
  align-items: stretch;
  position: relative;
  max-width: 1300px;
  margin: 0 auto;
  /*padding: 0 16px;*/
}
@media screen and (min-width: 920px) {
  .myPage_section {
    padding: 0 20px;
  }
}
.myPage_section_side {
  width: 280px;
  height: calc(100vh - 55px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #ffffff;
  border-right: 1px solid #dfe5e0;
  padding: 40px 15px 40px 0;
  position: fixed;
  transform: translateX(-300px);
  transition: transform 0.4s; /*アニメーションの設定*/
  z-index: 1;
}
@media screen and (min-width: 920px) {
  .myPage_section_side {
    flex: 0 0 25%;
    width: 25%;
    height: auto;
    padding: 40px 20px 40px 0;
    position: relative;
    transform: translateX(0);
  }
}
@media screen and (min-width: 1200px) {
  .myPage_section_side {
    /*padding: 40px 30px 40px 33px;*/
  }
}

.myPage_section_side.active {
  transform: translateX(0);
}

.myPage_section_side_nav {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 50px;
}
.myPage_section_main_root {
  width: 100%;
}
@media screen and (min-width: 920px) {
  .myPage_section_main_root {
    flex: 0 0 75%;
    width: 75%;
  }
}
@media screen and (min-width: 1200px) {
  .myPage_section_side {
    /*padding: 40px 30px 40px 33px;*/
  }
}
.myPage_link {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  padding: 0 10px;
  transition: background-color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1), color 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
}
@media screen and (min-width: 920px) {
  .myPage_link {
    width: 100%;
    height: 48px;
    gap: 8px;
    border-radius: 8px;
    padding: 0 16px;
  }
}
.myPage_link:hover {
  background-color: #cffff7;
  color: black;
}
.myPage_link:hover .myPage_link_icon::before {
  background-color: black;
}

.myPage_link_icon {
  width: 20px;
  height: 20px;
  flex: 0 1 20px;
  position: relative;
  /*transition: all 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);*/
}
.myPage_link_icon::before {
  content: '';
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  display: block;
  width: 20px;
  height: 20px;
  background: #021530;
  transition: background-color 0.3s ease-out;
}
@media screen and (min-width: 920px) {
  .myPage_link_icon {
    width: 26px;
    height: 26px;
    flex: 0 1 26px;
  }
  .myPage_link_icon::before {
    width: 26px;
    height: 26px;
  }
}
.myPage_link_home .myPage_link_icon::before {
  -webkit-mask-image: url(../img/mypage/icon_home.svg);
  mask-image: url(../img/mypage/icon_home.svg);
}
.myPage_link_info .myPage_link_icon::before {
  -webkit-mask-image: url(../img/mypage/icon_info.svg);
  mask-image: url(../img/mypage/icon_info.svg);
}
.myPage_link_delivery .myPage_link_icon::before {
  -webkit-mask-image: url(../img/mypage/icon_delivery.svg);
  mask-image: url(../img/mypage/icon_delivery.svg);
}
.myPage_link_estimate .myPage_link_icon::before {
  -webkit-mask-image: url(../img/mypage/icon_estimate.svg);
  mask-image: url(../img/mypage/icon_estimate.svg);
}
.myPage_link_order .myPage_link_icon::before {
  -webkit-mask-image: url(../img/mypage/icon_order.svg);
  mask-image: url(../img/mypage/icon_order.svg);
}

.myPage_link_text {
  font-size: 14px;
  flex: 1 1 0;
  white-space: nowrap;
}
@media screen and (min-width: 920px) {
  .myPage_link_text {
    font-size: 18px;
  }
}

.myPage_link_active,
.myPage_link.router-link-active {
  background-color: #1cc1cf;
  color: #ffffff;
}
.myPage_link_active .myPage_link_icon::before,
.myPage_link.router-link-active .myPage_link_icon::before {
  background: #ffffff;
}

.logout_link {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  /* border: 1px solid #b4b4b4; */
  border-radius: 4px;
  padding: 0 10px;
  transition: opacity 0.3s cubic-bezier(0.18, 0.06, 0.23, 1);
  cursor: pointer;
}
@media screen and (min-width: 920px) {
  .logout_link {
    height: 56px;
    padding: 0 16px;
  }
}
.logout_link_inner {
  width: fit-content;
  height: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}

.logout_link_icon {
  width: 20px;
  height: 20px;
  flex: 0 1 20px;
  position: relative;
}
.logout_link_icon::before {
  content: '';
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  aspect-ratio: 1;
  -webkit-mask-image: url(../img/mypage/icon_logout.svg);
  mask-image: url(../img/mypage/icon_logout.svg);
  display: block;
  width: 20px;
  height: 20px;
  background: #021530;
  transition: all 0.2s ease-out;
}
@media screen and (min-width: 920px) {
  .logout_link_icon {
    width: 24px;
    height: 24px;
    flex: 0 1 24px;
  }
  .logout_link_icon::before {
    width: 24px;
    height: 24px;
  }
}
.logout_link_text {
  font-size: 14px;
  flex: 1 1 0;
}
@media screen and (min-width: 920px) {
  .logout_link_text {
    font-size: 16px;
  }
}
.logout_link:hover {
  opacity: 0.7;
}

.myPage_section_main {
  width: 100%;
  padding: 0 20px 80px;
}
@media screen and (min-width: 920px) {
  .myPage_section_main {
    padding: 0 0 80px 50px;
  }
}

.myPage_section_main .breadcrumb {
  padding: 0;
  margin: 20px 0 40px;
}
@media screen and (min-width: 920px) {
  .myPage_section_main .breadcrumb {
    margin: 20px 0 51px;
  }

  .myPage_section_main.estimate_detail_wrap .breadcrumb {
    margin-bottom: 20px;
  }
}

.myPage_section_container {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 31px;
}

.user_text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (min-width: 920px) {
  .user_text {
    font-size: 24px;
  }
}
.myPage_section_menu {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  border-radius: 4px;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu {
    max-width: 640px;
    border-radius: 8px;
  }
}
.myPage_section_menu_head {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 0 20px;
  border-bottom: 1px solid #dfe2e5;
}

.myPage_section_menu_head_icon {
  width: 24px;
  height: 24px;
  flex: 0 1 24px;
}
.myPage_section_menu_head_icon img {
  width: 100%;
  height: 100%;
}

.myPage_section_menu_head_text {
  flex: 1 1 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu_head_text {
    font-size: 18px;
  }
}

.myPage_section_menu_list {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 0;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu_list {
    gap: 20px;
    padding: 24px 0;
  }
}

.myPage_section_menu_list_item {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu_list_item {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 20px;
  }
}

.myPage_section_menu_list_item_title {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu_list_item_title {
    font-size: 16px;
    display: block;
    width: 112px;
    flex: 0 1 112px;
    text-align: right;
  }
}

.myPage_section_menu_list_item_text {
  flex: 1 1 0;
}

.myPage_section_menu_list_item_text span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 920px) {
  .myPage_section_menu_list_item_text span {
    font-size: 16px;
  }
}

.footer_myPage {
  margin-top: 0;
}

.open_btn {
  position: fixed;
  bottom: 80px;
  left: 0;
  z-index: 1;
  width: fit-content;
  height: auto;
  background-color: #1cc1cf;
  border-radius: 0 100px 100px 0;
  padding: 10px 10px 10px 16px;
  transition: all 0.4s; /*アニメーションの設定*/
}
@media screen and (min-width: 920px) {
  .open_btn {
    display: none;
  }
}

.open_btn_inner {
  display: flex;
  width: 25px;
  height: 15px;
  position: relative;
}
.open_btn_inner span {
  width: 100%;
  height: 2px;
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  background: #ffffff;
  position: absolute;
}

.open_btn_inner span:nth-child(1) {
  top: 0;
}
.open_btn_inner span:nth-child(2) {
  top: 50%;
}
.open_btn_inner span:nth-child(3) {
  top: 100%;
}

.open_btn.active {
  transform: translateX(280px);
}

.open_btn.active .open_btn_inner span:nth-child(1) {
  transform: translateY(7px) rotate(-20deg);
}
.open_btn.active .open_btn_inner span:nth-child(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.open_btn.active .open_btn_inner span:nth-child(3) {
  transform: translateY(-9px) rotate(20deg);
}
