@charset "utf-8";
/*--parts--------------------*/
.text_st01 {
  font-weight: 700;
  color: var(--primary);
}
.link {
  display: block;
}
.btn a {
  margin-inline: auto;
}
.btn01, .btn02, .btn_pdf {
  display: block grid;
  grid-template: ". icon" / 1fr max-content;
  align-items: center;
  width: fit-content;
  position: relative;
  span {
    grid-area: icon;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
    svg {
      width: 10px;
      margin: auto;
      position: absolute;
      top: 0;
      bottom: 0;
    }
  }
}
.btn01 {
  gap: 15px;
  &:hover {
    color: var(--primary);
  }
  span {
    width: 32px;
    height: 18px;
    background-color: var(--primary);
    margin-block-end: -3px;
    svg {
      color: #fff;
      right: 11px;
    }
  }
  &:hover svg {
    animation: 0.6s ease forwards arrowRight;
  }
}
.btn02, .btn_pdf {
  gap: 20px;
  font-size: 1.6rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  padding: 12px 27px 12px 30px;
}
.btn02 {
  background-color: #fff;
  border: 1px solid var(--text2);
  &:hover {
    color: var(--primary);
    border-color: var(--primary);
  }
  span {
    width: 32px;
    height: 18px;
    border: 1px solid;
    svg {
      right: 10px;
    }
  }
  &:hover svg {
    animation: 0.6s ease forwards arrowRight;
  }
}
@keyframes arrowRight {
  0% {
    right: 0;
  }
  50% {
    right: -50%;
  }
  51% {
    opacity: 0;
    right: 50%;
  }
  to {
    right: 10px;
  }
}
.btn_pdf {
  color: #fff;
  background-color: var(--primary);
  &:hover {
    color: #fff;
    background-color: #57504f;
  }
  span {
    width: 40px;
    height: 20px;
    border: 1px solid var(--colorBg2);
    svg {
      color: #fff;
      right: 14px;
    }
  }
  &:hover svg {
    animation: 0.6s ease forwards arrowRight2;
  }
}
@keyframes arrowRight2 {
  0% {
    right: 0;
  }
  50% {
    right: -50%;
  }
  51% {
    opacity: 0;
    right: 50%;
  }
  to {
    right: 14px;
  }
}
.ul01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 5px;
  > li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 1.8rem;
    position: relative;
    &::before {
      content: "";
      display: block;
      width: .6rem;
      aspect-ratio: 1;
      background-color: var(--primary);
      border-radius: 50%;
      position: absolute;
      top: 1.5rem;
      left: 0;
    }
  }
}
.ol01 {
  counter-reset: num 0;
  > li {
    position: relative;
    &::before {
      counter-increment: num 1;
      content: counter(num)'.';
      width: fit-content;
      font-weight: 700;
      color: var(--primary);
    }
  }
  > li + li {
    margin-top: 8px;
  }
}
.ul_notice > li, .p_notice {
  color: var(--text2);
  padding-left: 20px;
  position: relative;
}
.ul_notice > li::before, .p_notice::before {
  content: "※";
  margin-left: -20px;
  position: absolute;
}
.p_notice {
  display: block;
}
.dl01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  > dt {
    font-weight: 500;
    border-right: 1px solid var(--border1);
    padding-right: 20px;
  }
  > dd {
    padding-left: 20px;
  }
  > dd + dt, > dd + dt + dd {
    margin-top: 15px;
  }
}
.table01 {
  width: 100%;
  border-top: 1px solid var(--border1);
  border-left: 1px solid var(--border1);
  th, td {
    vertical-align: middle;
    border-bottom: 1px solid var(--border1);
    border-right: 1px solid var(--border1);
    padding: 12px 15px;
  }
  th {
    font-weight: 500;
    text-align: center;
    background-color: var(--colorBg2);
  }
}
.price tbody th {
  text-align: left;
}
.price tbody td {
  text-align: right;
}
.border {
  border-top: 1px dotted var(--text2);
}
.border > li {
  border-bottom: 1px dotted var(--text2);
  padding-block: 20px;
}
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}
.topics {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  border: 2px solid var(--border1);
  border-radius: 5px;
  padding: 20px 40px 30px;
  .headline {
    font-weight: 700;
    line-height: 1.5;
    padding-bottom: 8px;
    position: relative;
    overflow: hidden;
    &::before, &::after {
      content: "";
      width: 100%;
      position: absolute;
      bottom: 0;
    }
    &::before {
      border-bottom: 2px solid var(--primary);
    }
    &::after {
      border-bottom: 2px solid var(--border1);
    }
  }
}
.details {
  border-top: 1px solid var(--border1);
  details {
    border-bottom: 1px solid var(--border1);
    summary {
      display: block grid;
      grid-template: ". icon" / 1fr max-content;
      align-items: center;
      font-weight: 500;
      padding-block: 20px;
      position: relative;
      cursor: pointer;
      transition: .3s;
    }
    summary .ico {
      display: block;
      grid-area: icon;
      width: 15px;
      height: 9px;
      background-color: var(--primary);
      clip-path: polygon(100% 13%, 50% 100%, 0 13%, 8% 0, 50% 73%, 92% 0);
      margin: auto;
      position: absolute;
      top: 0;
      right: 20px;
      bottom: 0;
      transition: .3s;
    }
    &[open] summary .ico {
      transform: rotate(180deg);
    }
    .d_con {
      position: relative;
      overflow: hidden;
    }
    .d_inner {
      background-color: var(--maincolorBg);
      padding: 30px;
    }
  }
}
input[type='text'], input[type='tel'], input[type='email'], textarea, input[type='password'] {
  height: 2.4em;
  width: 100%;
  padding: 0 16px;
  border-radius: 3px;
  border: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: transform .3s;
}
input[type='text']:focus, input[type='tel']:focus, input[type='email']:focus, textarea:focus, input[type='password']:focus {
  outline: 0;
}
textarea[name='comment'] {
  height: auto;
}
form input.btn, form button {
  padding: 10px;
  width: 200px;
  border-radius: 3px;
  transition: all 0.5s;
  border: none;
  cursor: pointer;
}
form input[name='search'], form input.btn_st01 {
  color: #fff;
}
form input[name='sub_kakunin'] {
  color: #fff;
}
form input[name='sub_reset'] {
  background: #fff;
  color: var(--sub1);
}
.required {
  border-radius: 3px;
  padding: 5px;
  color: #fff;
  font-size: 1.2rem;
  margin: 0 10px;
}

/*---header--------------------*/
.header {
  display: block;
  width: 100%;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 100;
  a {
    text-decoration: none;
  }
}
.header .header_inner, .header .header_nav, .header .header_nav .nav_list, .header .header_nav .subnav_list, .header .header_nav .subnav_list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header .header_inner {
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 20px 20px 20px 10px;
  position: relative;
  transition: .3s ease-in-out;
  &.active {
    border-color: var(--border1);
    padding-block: 10px;
  }
  &::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    border-color: var(--maincolorBg);
    background: rgb(255 244 243 / .8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-radius: 10px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
    transition: .2s ease-in-out;
  }
}
.header.active .header_inner.active {
  border-color: transparent;
}
.header .header_title {
  width: auto;
  z-index: 101;
}
.header .header_nav {
  gap: 25px;
  align-items: center;
  line-height: 1;
  z-index: 100;
  .nav_list {
    gap: 20px;
    font-size: 2.1rem;
    margin: auto;
  }
  .subnav {
    z-index: 100;
  }
  .subnav_list {
    gap: 20px;
    a {
      gap: 7px;
      font-weight: 700;
      color: var(--primary);
      &:hover {
        opacity: .6;
      }
    }
    span {
      margin: 5px 0 auto;
    }
    span:first-child {
      display: block grid;
      place-items: center;
      width: 28px;
      aspect-ratio: 1;
      background-color: var(--primary);
      border-radius: 100px;
      margin: 2px 0 auto;
    }
    span svg {
      width: 15px;
      height: auto;
    }
    .tel span + span {
      font-size: 2.0rem;
      font-weight: 600;
      font-family: var(--ff2);
      margin-block-start: 7px;
    }
    .mail span + span {
      font-size: 1.8rem;
    }
  }
  .sp_list, .sp_adress, .sp_tel, .hamburger {
    display: none;
  }
}

/*---footer--------------------*/
.footer, .footer .footer_inner {
  position: relative;
}
.footer .footer_inner {
  padding: 40px 70px;
  > * {
    text-align: center;
  }
  .footer_title, .tel {
    margin-bottom: 30px;
  }
  .footer_title {
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--primary);
    span {
      display: block;
      font-size: 1.8rem;
      font-family: var(--ff2);
    }
  }
  .adress {
    margin-bottom: 0;
  }
  .tel a {
    font-weight: 400;
    font-family: var(--ff2);
    color: var(--primary);
    margin-left: 25px;
    svg {
      width: 11px;
      color: var(--text2);
      margin-left: 5px;
    }
  }
  .copy {
    font-size: 1.6rem;
  }
}
.fixed_btn {
  position: fixed;
  right: 2.5vw;
  bottom: 2.5vw;
  z-index: 1000;
  .btn_inner {
    width: 155px;
    border-radius: 155px;
    overflow: hidden;
  }
  a {
    display: block grid;
    place-items: center;
    width: 100%;
    aspect-ratio: 1;
    text-decoration: none;
    background-image: radial-gradient(farthest-side at 85% -15%, #ffb676, #ff5b5b 70%);
  }
  p {
    font-weight: 700;
    line-height: 1.5;
    color: #fff;
  }
  span {
    display: block;
    text-align: center;
    color: var(--primary);
    background-color: #fff;
    border-radius: 100px;
    padding-block-end: 2px;
    margin-block-start: 2px;
  }
}

/*---contents--------------------*/
main {
  padding: 0 10px;
  margin-bottom: 50px;
  position: relative;
}
.hero, .hero .breadcrumb, .hero .sidebar .sidebar_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.hero {
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  padding: 10px 50px 100px;
  margin: auto;
  position: relative;
  .breadcrumb {
    width: 100%;
    font-size: 1.4rem;
    color: var(--text2);
    margin-block-end: 80px;
    li + li {
      padding-left: 50px;
      position: relative;
      &::before {
        content: "";
        width: 20px;
        height: 1px;
        background-color: var(--text2);
        position: absolute;
        left: 16px;
        top: 12px;
      }
    }
    li a {
      font-weight: 400;
      color: var(--text2);
      &:hover {
        color: var(--primary);
      }
    }
  }
  h1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    gap: 20px;
    font-size: 4.0rem;
    font-weight: 500;
    line-height: 1;
    margin-inline-end: 40px;
    span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      font-size: 1.5rem;
      font-family: var(--ff2);
      text-transform: uppercase;
      color: var(--primary);
      position: relative;
      padding-left: 1.6rem;
      &::before {
        content: "";
        display: block;
        flex-shrink: 0;
        width: .8rem;
        height: .8rem;
        border-radius: 50%;
        background-color: var(--colorBg1);
        position: absolute;
        top: .4rem;
        left: 0;
      }
    }
  }
  .bg {
    font-size: 9.0rem;
    font-family: var(--ff2);
    text-transform: uppercase;
    line-height: 1;
    color: #fff;
    position: absolute;
    bottom: -18px;
    right: 35px;
    z-index: -1;
    clip-path: inset(0 100% 0 0);
    transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
    transition-property: clip-path;
    &.is-animated {
      clip-path: inset(0);
    }
  }
  .sidebar {
    margin-block-start: 40px;
    .sidebar_list {
      gap: 20px 30px;
      flex-flow: wrap;
      line-height: 1;
      li a {
        display: block grid;
        grid-template: ". icon" / 1fr max-content;
        align-items: baseline;
        gap: 15px;
        width: fit-content;
        text-decoration: none;
        position: relative;
        &:hover {
          color: var(--primary);
        }
        span {
          grid-area: icon;
          width: 28px;
          height: 16px;
          background-color: #fff;
          border: 1px solid var(--text2);
          border-radius: 15px;
          position: relative;
          overflow: hidden;
          svg {
            width: 8px;
            color: var(--text1);
            margin: auto;
            transform: rotate(90deg);
            position: absolute;
            bottom: 3px;
            right: 9px;
          }
        }
        &:hover svg {
          -webkit-animation: 0.6s ease forwards arrowBottom;
          animation: 0.6s ease forwards arrowBottom;
        }
      }
    }
  }
}
@keyframes arrowBottom {
  0% {
    bottom: 0;
  }
  50% {
    bottom: -50%;
  }
  51% {
    opacity: 0;
    bottom: 50%;
  }
  to {
    bottom: 3px;
  }
}
.contents {
  width: 100%;
  background-color: #fff;
  border-radius: 40px;
  padding: 60px 0 100px;
}
section, .inner, .div_h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
section {
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto 100px;
  position: relative;
  &:last-child {
    margin-bottom: 0;
  }
}
h2 {
  font-size: 3.0rem;
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 15px;
  position: relative;
  overflow: hidden;
  &::before, &::after {
    content: "";
    width: 100%;
    position: absolute;
    bottom: 0;
  }
  &::before {
    border-bottom: 2px solid var(--primary);
  }
  &::after {
    border-bottom: 2px solid var(--border1);
  }
}
.inner {
  gap: 30px;
  position: relative;
}
.div_h3 {
  gap: 20px;
}
h3 {
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary);
  background-color: var(--maincolorBg);
  border-radius: 5px;
  padding: 2px 20px;
  margin-block-start: 20px;
  position: relative;
  &::before {
    content: "";
    width: 4px;
    height: 25px;
    background-color: var(--primary);
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.div_h3:first-child h3 {
  margin-block-start: 0;
}
h4 {
  font-size: 1.75rem;
  font-weight: 700;
  margin: 5px 0;
}

@media screen and (max-width: 1024px) {
  /*---header--------------------*/
  body.no-scroll {
    overflow: hidden;
  }
  .header {
    padding: 5px;
    &.active {
      background-color: var(--maincolorBg);
    }
  }
  .header .header_inner {
    padding: 15px;
    &.active {
      padding: 5px 5px 5px 10px;
    }
  }
  .header .header_title {
    max-width: 250px;
  }
 .header .header_nav {
    gap: 2px;
    line-height: revert;
    .nav {
      width: 100%;
      height: calc(100svh - 75px);
      background-color: var(--maincolorBg);
      padding: 40px 30px 50px;
      position: fixed;
      top: 75px;
      left: 0;
      transition: .3s ease;
      overflow-y: scroll;
      opacity: 0;
      visibility: hidden;
      .nav_list {
        display: block;
        margin-bottom: 40px;
        li + li {
          margin-top: 30px;
          margin-left: 0;
        }
        li a {
          font-size: 2.0rem;
        }
      }
    }
    .nav > * {
      max-width: 700px;
      width: 100%;
      margin-inline: auto;
    }
    .subnav_list {
      gap: 2px;
      li a {
        display: block;
        position: relative;
        span:first-child {
          width: 62px;
          aspect-ratio: 1.1 / 1;
          border-radius: 5px;
          margin-top: 0;
        }
        span svg {
          width: 18px;
          margin-top: -8px;
        }
        span + span {
          height: 0;
          margin: 0;
          overflow: hidden;
          position: absolute;
        }
      }
      a::after {
        width: 100%;
        font-weight: 700;
        text-align: center;
        color: #fff;
        position: absolute;
        margin: auto;
      }
      .tel a::after {
        content: "TEL";
        font-size: 1.4rem;
        font-family: var(--ff2);
        bottom: 3px;
      }
      .mail a::after {
        content: "お問合せ";
        font-size: 1.3rem;
        bottom: 5px;
      }
    }
    .sp_list, .sp_adress, .sp_tel, .hamburger {
      display: block;
    }
  }
  .header.active .header_nav .nav {
    opacity: 1;
    visibility: visible;
  }
  .header.active .header_inner:not(.active) .nav {
    height: calc(100svh - 90px);
    top: 90px;
  }
  .header .header_nav .sp_list {
    border-top: 1px solid var(--border1);
    li {
      border-bottom: 1px solid var(--border1);
      padding: 25px 0;
      .btn01 {
        text-decoration: underline;
      }
      .hours, .tel {
        margin: 30px 0 20px;
      }
      .hours dt {
        clear: both;
        float: left;
        font-size: 1.2rem;
        font-weight: 700;
        color: #fff;
        background-color: var(--primary);
        border-radius: 5px;
        padding: 0 5px;
      }
      .hours dd {
        display: flow-root;
        font-size: 2.6rem;
        font-weight: 600;
        font-family: var(--ff3);
        line-height: 1;
        color: var(--primary);
        padding-left: 15px;
        position: relative;
        top: -2px;
      }
      .hours > dd + dt, .hours > dd + dt + dd {
        margin-top: 12px;
      }
      .p_notice {
        font-size: 1.4rem;
      }
      .tel {
        font-size: 3.2rem;
        font-weight: 600;
        font-family: var(--ff2);
        line-height: 1;
        color: var(--primary);
        margin-top: 15px;
        span {
          font-size: 1.5rem;
          font-weight: 700;
          font-family: var(--ff1);
          line-height: 2;
        }
      }
    }
    &.reserve .p_notice {
      font-family: var(--ff3);
    }
  }
  .header .header_nav .sp_adress, .header .header_nav .sp_tel {
    font-size: 1.4rem;
  }
  .header .header_nav .sp_adress {
    margin-top: 20px;
    margin-bottom: 0;
  }
  .header .header_nav .sp_tel {
    a {
      font-weight: 400;
      font-family: var(--ff2);
      text-decoration: underline;
      color: var(--primary);
      margin-bottom: 5px;
      svg {
        width: 12px;
        color: var(--text2);
        margin-left: 5px;
      }
    }
    span {
      display: block;
    }
  }
  .header .header_nav .hamburger {
    width: 56px;
    height: 56px;
    background-color: var(--primary);
    border-radius: 5px;
    position: relative;
    z-index: 100;
    button {
      width: 100%;
      height: 100%;
      background-color: transparent;
      border: none;
      cursor: pointer;
      position: relative;
      z-index: 100;
    }
    button > span {
      display: block;
      width: 30px;
      height: 2px;
      background-color: #fff;
      position: absolute;
      top: 43%;
      left: 50%;
      transform: translateX(-50%);
    }
    button > span:first-child {
      transform: translate(-50%, calc(-50% - 0.6rem));
      transition: transform 0.3s ease;
    }
    button > span:nth-child(2) {
      transform: translate(-50%, -50%);
      transition: opacity 0.3s ease;
    }
    button > span:last-child {
      transform: translate(-50%, calc(-50% + 0.6rem));
      transition: transform 0.3s ease;
    }
    p {
      font-size: 1.3rem;
      font-weight: 700;
      line-height: 1;
      text-align: center;
      color: #fff;
      font-family: var(--ff2);
      margin-bottom: 0;
      position: absolute;
      bottom: 9px;
      left: 0;
      right: 0;
    }
    .close {
      display: none;
      opacity: 0;
      visibility: hidden;
    }
  }
  .header.active .header_nav .hamburger {
    button > span:first-child {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
    button > span:nth-child(2) {
      opacity: 0;
    }
    button > span:last-child {
      transform: translate(-50%, -50%) rotate(45deg);
    }
    button + .menu {
      display: none;
      opacity: 0;
      visibility: hidden;
    }
    button + .menu + .close {
      display: block;
      opacity: 1;
      visibility: visible;
    }
  }
  
  /*---footer--------------------*/
  .fixed_btn {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  /*--parts--------------------*/
  .btn02, .btn_pdf {
    font-size: 1.4rem;
    line-height: 1.5;
    padding-inline-start: 25px;
  }
  .ul01 > li {
    padding-left: 1.5rem;
    &::before {
      width: .5rem;
      top: 1.2rem;
    }
  }
  .dl01 > dd + dt, .dl01 > dd + dt + dd {
    margin-top: 12px;
  }
  .table01 {
    th, td {
      padding: 8px 10px;
    }
  }
  .flex {
    flex-direction: column;
  }
  .topics {
    padding: 20px;
    .headline::before {
      font-size: 2.0rem;
    }
  }
  .details details .d_inner {
    padding: 15px 20px;
  }

  /*---header--------------------*/
  .header .header_inner {
    padding: 8px 5px;
    &.active {
      padding: 4px 5px;
    }
    .header_title {
      max-width: 220px;
      padding-right: 10px;
    }
    .header_nav {
      .nav {
        height: calc(100svh - 60px);
        top: 60px;
      }
      .subnav_list li a span:first-child {
        width: 50px;
      }
      .subnav_list .tel a::after {
        font-size: .9rem;
        bottom: 2px;
      }
      .subnav_list .mail a::after {
        font-size: .8rem;
        bottom: 3px;
      }
      .sp_list li .p_notice {
        line-height: 1.5;
      }
      .hamburger {
        width: 45px;
        height: 45px;
      }
      .hamburger p {
        font-size: .8rem;
        bottom: 6px;
      }
      button > span {
        width: 23px;
        top: 40%;
      }
      button > span:first-child {
        transform: translate(-50%, calc(-50% - 0.4rem));
      }
      button > span:last-child {
        transform: translate(-50%, calc(-50% + 0.4rem));
      }
    }
  }
  .header.active .header_inner:not(.active) .nav {
    height: calc(100svh - 75px);
    top: 75px;
  }

  /*---footer--------------------*/
  .footer .footer_inner {
    padding: 40px 20px;
    > *, .footer_title span {
      font-size: 1.5rem;
    }
    .footer_title {
      font-size: 2.2rem;
      padding: 0 40px;
    }
    .tel {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      flex-flow: wrap;
      span {
        width: 100%;
        order: 2;
      }
      a {
        margin: 0 auto;
        order: 1;
      }
    }
    .copy {
      font-size: 1.4rem;
    }
  }

  /*---contents--------------------*/
  main {
    margin-block-end: 0;
  }
  .hero {
    padding-inline: 10px;
    padding-block-end: 70px;
    .breadcrumb {
      font-size: 1.3rem;
      margin-block-end: 60px;
    }
    h1 {
      gap: 15px;
      width: 100%;
      font-size: 3.5rem;
      margin-inline-end: 0;
      span {
        font-size: 1.4rem;
        &::before {
          top: .3rem;
        }
      }
    }
    .bg {
      font-size: 4.2rem;
      font-weight: 400;
      letter-spacing: -1px;
      text-align: right;
      bottom: -8px;
      right: 10px;
    }
    .sidebar {
      width: 100%;
      .sidebar_list {
        gap: 20px 15px;
      }
      .sidebar_list li a {
        gap: 8px;
      }
      .sidebar_list li a span {
        top: 2px;
      }
    }
  }
  .contents {
    border-radius: 20px;
    padding: 40px 20px 60px;
  }
  section {
    gap: 10px;
    margin-block-end: 60px;
    padding-inline: 0;
    scroll-margin-top: 80px;
  }
  h2 {
    font-size: 2.5rem;
  }
  .inner {
    gap: 20px;
  }
  h3 {
    font-size: 1.8rem;
    line-height: 1.5;
    padding: 5px 15px;
  }
  h4 {
    font-size: 1.5rem;
  }
}