@charset "utf-8";

.header {
  position: fixed;
  width: 28%;
  min-width: 220px;
  max-width: 280px;
  height: 100vh;
  z-index: 100;
  background: var(--white);
  box-shadow: 1px 1px 3px rgb(0 0 0 / 0.2);
  padding: 50px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;

  .site_logo {
    margin-bottom: 20%;
    img{
      width: 150px;
    }
  }
  .site_logo_SP {
    display: none;
  }

  .g_nav {
    text-align: center;
  }

  .g_nav_item {
    margin-bottom: 15px;
  }
}
.sp-nav_btn {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -3px;
  right: 10px;
  display: none;
  z-index: 10000;
  cursor: pointer;

  span {
    width: 35px;
    height: 2px;
    display: block;
    background: var(--text-color);
    position: absolute;
    top: 35%;
    left: 50%;
    translate: -50% -50%;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out,
      top 0.3s ease-in-out;

    &:nth-child(2) {
      top: 50%;
    }

    &:nth-child(3) {
      top: 65%;
    }
  }
}
.sp-nav_btn.active {
  span {
    top: 50%;
    transform: translate(0, -50%) rotate(45deg);

    &:nth-child(2) {
      opacity: 0;
    }

    &:nth-child(3) {
      top: 50%;
      transform: translate(0, -50%) rotate(-45deg);
    }
  }
}
.g_nav_SP {
  display: none;
}

.g_nav_SP.show {
  opacity: 1;
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 767px) {
  .header {
    width: 100%;
    max-width: none;
    min-width: none;
    height: 70px;
    padding: 10px;
    align-items: start;
    top: 0;
    .site_logo {
      display: none;
    }
    .site_logo_SP {
      display: block;
      width: 40%;
    }

    .g_nav {
      display: none;
    }
  }
  .g_nav_SP {
    display: block;
    width: 100%;
    height: 100vh;
    background: var(--white);
    position: fixed;
    top: 70px;
    right: 0;
    z-index: 100000000;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
    .g_nav_item_SP {
      height: 70px;
      line-height: 70px;
      border-bottom: 1px solid var(--bg-color);
      position: relative;
      a {
        display: block;
        width: 100%;
        height: 100%;
        padding-left: 2em;
      }
      &::before {
        position: absolute;
        display: block;
        content: "";
        width: 40px;
        height: 40px;
        border-radius: 50%;
        border: 1px solid var(--text-color);
        top: 50%;
        right: 20px;
        translate: 0 -50%;
        pointer-events: none;
      }
      &::after {
        content: ">";
        position: absolute;
        top: 50%;
        right: 33px;
        translate: 0 -50%;
        font-size: var(--fs18);
        pointer-events: none;
      }
    }
  }
  .sp-nav_btn {
    display: block;
  }
}

.main {
  margin-left: 28%;
  width: calc((100vw - 28%) - 15px);
  overflow-x: hidden;

  .contact_icon_list {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 100000000;
    display: flex;

    .contact_icon_item {
      position: relative;

      &.insta {
        width: 130px;
        height: 75px;
        border-radius: 0 0 0 30px;
        background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4);
        left: 30px;
        transition: 1s;

        &::before {
          content: "";
          background: url(../images/Instagram_Glyph_White.svg) no-repeat;
          width: 35px;
          height: 35px;
          display: block;
          position: absolute;
          top: 50%;
          left: 40%;
          translate: -50% -50%;
        }

        a {
          color: transparent;
          line-height: 0;
          font-size: 0;
          display: block;
          width: 100%;
          height: 100%;
        }

        &:hover {
          background: linear-gradient(
            45deg,
            #ff8a3d,
            #e1306c,
            #9b35db,
            #5b6df0
          );
          transition: 0.4s;
        }
      }

      &.line {
        width: 190px;
        height: 75px;
        border-radius: 0 0 0 30px;
        background: #00b900;
        font-family: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans",
          Meiryo, sans-serif;
        font-weight: bold;
        font-size: var(--fs14);
        text-align: center;
        line-height: 1.6;
        transition: 1s;

        &::before {
          content: "";
          background: url(../images/line_132.png) center/ cover;
          width: 44px;
          height: 44px;
          display: block;
          position: absolute;
          top: 50%;
          left: 10%;
          translate: 0 -50%;
          pointer-events: none;
        }

        a {
          color: var(--white);
          display: block;
          width: 100%;
          height: 100%;
          padding-top: 15px;
          padding-left: 35px;
        }

        &:hover {
          background: #048b3b;
          transition: 0.4s;
        }
      }
    }
  }
}
@media (min-width: 1030px) {
  .main {
    margin-left: 280px;
    width: calc((100vw - 280px) - 15px);
  }
}
@media (max-width: 767px) {
  .main {
    margin-left: 0;
    width: 100%;

    .contact_icon_list {
      bottom: 0;
      top: auto;
      right: auto;
      width: 100%;

      .contact_icon_item {
        &.insta {
          width: 50%;
          height: 60px;
          border-radius: 0;
          left: 0;

          &::before {
            left: 50%;
          }
        }

        &.line {
          width: 50%;
          height: 60px;
          border-radius: 0;

          a {
            padding-top: 10px;
          }
        }
      }
    }
  }
}
.mv {
  position: relative;
  background: var(--bg-color);

  .slide_mv {
    aspect-ratio: 16 / 9;
    img {
      width: 100%;
      height: 100%;
      border-radius: 0 0 0 100px;
    }
  }
  .slide_mv_sp {
    display: none;
  }

  .main_catch {
    font-family: "Hannari", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
      "Noto Sans", Meiryo, sans-serif;
    position: absolute;
    bottom: 5%;
    right: 10px;
    color: var(--white);
    text-align: right;
    text-shadow: 2px 2px 4px rgb(0 0 0 / 0.8);

    .main_title {
      font-size: var(--fs48);
    }
    .main_p {
      margin-right: 30px;
    }
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .mv {
    .main_catch {
      right: -10px;
      bottom: 60px;
      .main_title {
        font-size: var(--fs36);
      }
    }
  }
}
@media (max-width: 767px) {
  .mv {
    .slide_mv {
      display: none;
    }
    .slide_mv_sp {
      display: block;
    }
    .main_catch {
      right: 0;
      .main_title {
        font-size: var(--fs28);
      }
      .main_p{
        margin-right: 10px;
      }
    }
  }
}

.about_content {
  background: var(--bg-color);
  padding: 80px 0;

  &:nth-child(3) {
    padding: 0 0 80px;
    border-radius: 0 0 0 100px;
  }

  .about_text {
    margin-right: 30px;
  }

  .content_title {
    padding: 100px 0 40px 100px;
    border-left: none;
  }

  .content_left {
    width: 70%;
    margin: 0 0 80px 80px;
    line-height: 2.3;
  }

  .about_img {
    min-width: 320px;
    width: 30%;
    margin-right: 80px;
  }

  .content_right {
    width: 50%;
    margin: 0 80px 150px 0;
    line-height: 2.3;
  }

  .about_img2 {
    min-width: 350px;
    width: 35%;
    margin-right: 80px;
  }

  .recommendation_list {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    padding: 0 20px;
    margin: 0 auto;

    .recommendation_item {
      width: calc((100% / 3) - 20px);
      position: relative;
      margin-top: 120px;
      background: var(--white);
      border-radius: 20px;
      padding: 70px 20px 30px 70px;

      &::before {
        content: "";
        background: url(../images/icon_image01.png) no-repeat center / contain;
        width: 130px;
        height: 150px;
        display: block;
        position: absolute;
        top: -90px;
        left: 50%;
        translate: -50%;
      }

      &:nth-child(2) {
        &::before {
          background: url(../images/icon_image02.png) no-repeat center / contain;
          width: 110px;
        }
      }

      &:nth-child(3) {
        &::before {
          background: url(../images/icon_image03.png) no-repeat center / contain;
        }
      }

      &:nth-child(4) {
        &::before {
          background: url(../images/icon_image04.png) no-repeat center / contain;
        }
      }

      &:nth-child(5) {
        &::before {
          background: url(../images/icon_image05.png) no-repeat center / contain;
        }
      }

      &::after {
        content: "";
        width: 37px;
        height: 20px;
        border-left: 5px solid var(--main-color1);
        border-bottom: 5px solid var(--main-color1);
        transform: rotate(-45deg);
        display: block;
        position: absolute;
        top: 50%;
        left: 20px;
      }
    }
  }
  .content_sub_title {
    font-size: var(--fs28);
  }
  .about_image {
    width: 100%;
    height: 300px;
    margin-bottom: 50px;

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .about_content {
    .content_title {
      padding: 50px 0 40px 40px;
      font-size: var(--fs32);
    }
    .content_left {
      width: auto;
      margin: 0 40px 30px;
    }

    .about_img {
      display: none;
    }

    .content_right {
      width: auto;
      margin: 0 40px 30px;
    }

    .about_img2 {
      min-width: 350px;
      width: auto;
      margin: 0 auto 40px;
    }

    .recommendation_list {
      .recommendation_item {
        width: calc((100% / 2) - 20px);
      }
    }
  }
}
@media (max-width: 767px) {
  .about_content {
    padding: 30px 0;
    &:nth-child(3) {
      padding: 30px 0 80px;
      border-radius: 0 0 0 50px;
    }
    .about_text {
      margin-right: 0;
    }
    .content_title {
      padding: 50px 20px;
    }

    .content_left {
      width: auto;
      margin: 0 20px 30px;
    }

    .about_img {
      display: none;
    }

    .content_right {
      width: auto;
      margin: 30px 20px 30px;
    }

    .about_img2 {
      min-width: 350px;
      margin-right: auto;
      margin-left: auto;
    }

    .recommendation_list {
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      padding: 0 20px;
      margin-bottom: 50px;

      .recommendation_item {
        width: 100%;
      }
    }
    .content_sub_title {
      font-size: var(--fs18);
    }
    .about_image {
      height: 250px;
    }
  }
}
.features_content {
  padding: 80px 100px;

  .features_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    counter-reset: number 0;
    margin: 100px 0;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;

    .features_item {
      width: calc((100% / 2) - 20px);
      background: var(--bg-color);
      margin-bottom: 50px;
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      box-shadow: 1px 1px 4px rgb(0 0 0 /0.3);
      position: relative;

      &::before {
        counter-increment: number 1;
        content: "0" counter(number);
        position: absolute;
        left: 20px;
        top: -50px;
        font-size: var(--fs52);
        color: var(--main-color1);
      }

      h4 {
        text-align: center;
        padding: 40px 20px;
      }
    }
  }

  .content_sub_title {
    text-align: left;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .features_content {
    padding: 80px 20px;
  }
}
@media (max-width: 767px) {
  .features_content {
    padding: 80px 20px;
    .features_list {
      flex-direction: column;
      margin: 70px 0 50px;
      .features_item {
        width: 100%;
        h4 {
          text-align: center;
          padding: 40px 20px;
        }
        &::before {
          top: -30px;
          font-size: var(--fs36);
        }
      }
    }
  }
}
.courses_container {
  background: var(--bg-color);
  padding: 80px 10%;
  position: relative;
  border-radius: 0 0 0 100px;
  &:first-of-type {
    .courses_list {
      max-width: 1000px;
      margin-right: auto;
      margin-left: auto;
      .courses_item {
        background: var(--white);

        &::before {
          content: "まずは\Aトライアル";
          white-space: pre;
          width: 100px;
          height: 100px;
          position: absolute;
          left: -20px;
          top: -75px;
          display: block;
          border-radius: 50%;
          background: var(--main-color1);
          color: var(--white);
          padding-top: 22px;
          text-align: center;
          z-index: 100;
        }

        &:nth-child(2) {
          &::before {
            content: "その後\Aオススメ";
          }
        }
      }
    }
  }
  &:nth-of-type(2) {
    .courses_list {
      max-width: 1000px;
      margin: 100px auto 0;
    }
  }
  &:nth-of-type(3) {
    background: var(--white);
    .app_list {
      display: flex;
      flex-direction: column;
      counter-reset: number 0;
      margin: 100px 0;
      max-width: 1000px;
      margin-right: auto;
      margin-left: auto;
    }
    .app_item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 30px;
      border: 1px solid var(--main-color1);
      margin-bottom: 80px;
      padding: 0 0 0 50px;
      position: relative;
      .app_image {
        width: 100px;
        margin: 10px 0;
        img {
          width: 80%;
        }
      }
      &::before {
        content: "0" counter(number);
        counter-increment: number 1;
        padding: 0 .2em 0 .3em;
        background: var(--white);
        font-size: var(--fs42);
        color: var(--main-color1);
        position: absolute;
        left: 20px;
        top: -36px;
      }
      &::after {
        content: "";
        display: block;
        width: 0;
        height: 0;
        border-style: solid;
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        border-top: 20px solid var(--main-color1);
        border-bottom: 0;
        position: absolute;
        left: 50%;
        bottom: -55px;
        translate: -50% 0;
      }
      &:last-child{
        &::after{
          content: none;
        }
      }
    }
    .app_container {
      width: 80%;
      .app_title {
        font-family: "Hannari", Arial, "Hiragino Kaku Gothic ProN",
          "Hiragino Sans", "Noto Sans", Meiryo, sans-serif;
        margin-bottom: 20px;
        color: var(--white);
        background: var(--main-color1);
        padding: 2px 20px 4px;
      }
      .app_p {
        padding-right: 30px;
        margin-bottom: 30px;
      }
    }
  }
  &:nth-of-type(4) {
    background: var(--bg-color);
    .courses_description {
      background: var(--white);
      max-width: 1000px;
      margin: 0 auto 80px;
      padding: 30px;
      dt {
        font-size: var(--fs20);
        border-bottom: 2px solid var(--main-color2);
        margin-bottom: 30px;
        line-height: 3;
      }
      dd {
        padding: 0 30px;
        margin-bottom: 20px;
      }
    }
  }
  &:nth-child(2) {
    background: var(--bg-color2);
  }
  .content_sub_title {
    text-align: left;
    width: 90%;
    margin-right: auto;
    margin-left: auto;
  }
  .courses_list {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-top: 150px;

    .courses_item {
      border-radius: 30px;
      border: 1px solid var(--text-color);
      position: relative;
      margin-bottom: 100px;
      background: var(--white);
      z-index:  3;
      overflow: visible;

      &::after {
        width: 100%;
        height: 100%;
        display: block;
        content: "";
        border-radius: 30px;
        border: 1px solid var(--text-color);
        position: absolute;
        z-index: 1;
        top: 5px;
        left: 5px;
      }
    }

    .course_container {
      border-bottom: 1px solid var(--text-color);
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 20px 50px;
      position: relative;
      z-index: 3;

      .courses_title {
        font-size: var(--fs20);
        text-align: center;

        span {
          line-height: 1.6;
          margin: 0 30px;
          display: inline-block;
          background: var(--text-color);
          padding: 0px 10px;
          border-radius: 30px;
          color: var(--white);
          font-size: var(--fs18);
        }
      }
      .price_content {
        text-align: center;
      }

      .courses_price {
        font-size: var(--fs20);
        margin-bottom: 0;
        line-height: 1;
        position: relative;
        z-index: 3;
        min-width: 360px;

        strong {
          font-size: var(--fs42);
        }
      }

      .sub_courses_price {
        text-align: center;
        margin-bottom: 0;
      }
    }

    .courses_p {
      padding: 40px 100px;
      position: relative;
      z-index: 3;
    }
  }
}
@media (min-width: 768px) and (max-width: 1259px) {
  .courses_container {
    &:nth-of-type(4) {
      .courses_description {
        dd {
          padding: 0;
        }
      }
    }
    .courses_list {
      .course_container {
        flex-direction: column;
      }
      .courses_p {
        padding: 40px;
      }
    }
  }
}

@media (max-width: 767px) {
  .courses_container {
    padding: 80px 20px;
    border-radius: 0;
    &:first-of-type {
      .courses_list {
        margin-top: 100px;
        .courses_item {
          &::before {
            width: 100px;
            height: 100px;
            top: -55px;
            padding-top: 25px;
          }
        }
      }
    }

    &:nth-of-type(2) {
      .courses_list {
        margin-top: 70px;
      }
      .content_sub_title {
        text-align: left;
      }
    }
    &:nth-of-type(3) {
      .app_item {
        flex-direction: column;
        padding: 20px;
        .app_image{
          text-align: center;
        }
      }
      .app_container {
        width: 100%;
        .app_title {
          text-align: center;
        }
        .app_p {
          padding-right: 0;
          margin-bottom: 0;
        }
      }
    }
    &:nth-of-type(4) {
      .courses_description {
        margin-bottom: 50px;
        dt {
          font-size: var(--fs18);
          line-height: 1.5;
          padding-bottom: 0.7em;
        }
        dd {
          padding: 0;
          margin-bottom: 20px;
        }
      }
    }

    .content_sub_title {
      margin-top: 30px;
      width: 100%;
    }

    .courses_list {
      display: flex;
      justify-content: space-between;
      flex-direction: column;
      margin-top: 150px;

      .course_container {
        flex-direction: column;
        padding: 40px 20px;

        .courses_title {
          font-size: var(--fs18);

          span {
            margin: 10px 0;
            font-size: var(--fs14);
          }
        }
        .courses_price {
          font-size: var(--fs18);
          margin: auto;

          strong {
            font-size: var(--fs36);
          }
        }
      }

      .courses_p {
        padding: 20px;
        margin: auto;
      }
    }
  }
}

.traning_area_content {
  padding: 80px 100px;
  background: var(--bg-color2);
  border-radius: 0 0 0 100px;
  .content_title {
    text-align: right;
    margin-bottom: 30px;
  }
  .training_area_map {
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
  .area_caution {
    border-radius: 30px;
    border: 1px solid var(--text-color);
    position: relative;
    max-width: 1000px;
    margin: 50px auto 100px;
    background: var(--white);
    &::after {
      width: 100%;
      height: 100%;
      display: block;
      content: "";
      border-radius: 30px;
      border: 1px solid var(--text-color);
      position: absolute;
      z-index: -1;
      top: 5px;
      left: 5px;
    }
    dt {
      border-bottom: 1px solid var(--text-color);
      display: flex;
      padding: 20px 50px;
      font-size: var(--fs20);
    }
    dd {
      padding: 0 50px;
      margin: 20px 0;
    }
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .traning_area_content {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .traning_area_content {
    padding: 50px 20px;
    .area_caution {
      dt {
        padding: 20px 30px;
        font-size: var(--fs18);
      }
      dd {
        padding: 0 30px;
      }
    }
  }
}
.customer_content {
  padding: 80px 100px;
  display: flex;
  justify-content: space-between;
  .content_title {
    writing-mode: vertical-lr;
    margin-right: 50px;
    letter-spacing: 0.3em;
    border-left: none;
    &::before {
      content: none;
    }
    &::after {
      content: none;
    }
  }
  .customer_list {
    max-width: 1000px;
    margin: 80px auto 0;
    .customer_item {
      padding: 30px 0;
      border-top: 1px solid var(--bg-color);
      display: flex;
      justify-content: space-between;
      align-items: center;
      &:last-child {
        border-bottom: 1px solid var(--bg-color);
      }
    }
    figure {
      text-align: center;
      max-width: 200px;
      min-width: 200px;
      background: var(--bg-color);
      border-radius: 20px;
      margin-right: 30px;
      img {
        padding: 20px 40px 0 40px;
      }
      figcaption {
        font-size: var(--fs14);
      }
    }
    .customer_p {
      width: 70%;
    }
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .customer_content {
    padding: 50px 20px;
    .customer_list {
      figure {
        max-width: 150px;
        min-width: 150px;
      }
    }
  }
}
@media (max-width: 767px) {
  .customer_content {
    padding: 50px 20px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    .content_title {
      writing-mode: horizontal-tb;
      letter-spacing: 0.05em;
      border-left: 5px solid var(--main-color2);
      &::before {
        content: "";
      }
      &::after {
        content: "";
      }
    }
    .customer_list {
      margin-top: 40px;
      .customer_item {
        flex-direction: column;
      }
      figure {
        margin-right: 0;
        margin-bottom: 30px;
      }
      .customer_p {
        width: 90%;
      }
    }
  }
}

.faq_content {
  padding: 80px 100px;
  background: var(--bg-color);
  border-radius: 0 0 0 100px;
  .faq_list {
    margin: 0 auto 80px;
    max-width: 1000px;
    .faq_item {
      background: var(--white);
      cursor: pointer;
      margin-bottom: 30px;
      padding: 20px;
    }

    .faq_title {
      display: flex;
      justify-content: space-between;
      position: relative;
      margin-left: 2em;

      &::before {
        content: "Q.";
        top: -5px;
        left: -30px;
        position: absolute;
        color: var(--main-color1);
        font-weight: bold;
        font-size: var(--fs20);
      }
      .more {
        position: relative;
        width: 30px;
        height: 30px;

        span {
          width: 20px;
          height: 2px;
          display: block;
          background: var(--main-color1);
          position: absolute;
          top: 50%;
          left: 50%;
          translate: -50% -50%;
          transition: opacity 0.3s ease, transform 0.3s ease;

          &:nth-child(2) {
            rotate: 90deg;
          }
        }

        &.active span:nth-child(2) {
          opacity: 0;
        }
      }
    }
    .hidden {
      position: relative;
      text-indent: 2em;
      display: none;
      margin-top: 30px;

      &::before {
        content: "A.";
        font-size: var(--fs20);
        top: -5px;
        left: -30px;
        position: absolute;
        color: var(--sub-color1);
      }
    }
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .faq_content {
    padding: 50px 20px 80px;
  }
}
@media (max-width: 767px) {
  .faq_content {
    padding: 80px 20px;
    border-radius: 0 0 0 50px;
    .faq_list {
      margin: 40px 0;
    }
    h4 {
      width: 85%;
    }
  }
}
.news_content {
  padding: 80px 100px;
  .content_title {
    text-align: center;
  }
  .dammy {
    display: flex;
    /* gap: 20px; */
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
    li {
      width: calc((100% / 4) - 10px);
      height: 200px;
      background: var(--bg-color);
      margin-bottom: 30px;
    }
  }
}
@media (max-width: 767px) {
  .news_content {
    padding: 30px 20px;
    .content_title {
      margin-bottom: 30px;
    }
    .dammy {
      li {
        width: calc((100% / 2) - 10px);
        height: 150px;
      }
    }
  }
}
.footer {
  background: #b4e2d6;
  padding: 100px 50px 30px;
  .footer_logo_container {
    display: flex;
    justify-content: space-between;
  }
  .f_logo {
    width: 30%;
    img {
      margin-bottom: 30px;
    }
  }
  .f_nav {
    width: 60%;
    margin-bottom: 30px;
    .sns_list {
      display: flex;
      justify-content: end;
      margin-bottom: 50px;
      .sns_item {
        a {
          font-size: 0;
          line-height: 0;
          color: transparent;
          width: 40px;
          height: 40px;
          background: url(../images/Instagram_Glyph_Gradient.png) no-repeat
            center / cover;
          display: block;
        }
        &:nth-child(2) {
          margin-left: 20px;
          a {
            background: url(../images/LINE_Brand_icon.png) no-repeat center /
              cover;
          }
        }
      }
    }
    .f_nav_list {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      .f_nav_item {
        width: calc((100% / 3) - 30px);
        margin-bottom: 20px;
      }
    }
  }
  .copy {
    text-align: center;
  }
}
@media (min-width: 768px) and (max-width: 1098px) {
  .footer {
    .footer_logo_container {
      flex-direction: column;
    }
    .f_logo {
      width: 100%;
    }
    .f_nav {
      width: 100%;
    }
  }
}
@media (max-width: 767px) {
  .footer {
    padding: 50px 20px 70px;
    .footer_logo_container {
      flex-direction: column;
    }
    .f_logo {
      width: 100%;
      margin-bottom: 30px;
    }
    .f_nav {
      width: 100%;
      margin-bottom: 20px;
      .sns_list {
        margin-bottom: 20px;
      }
      .f_nav_list {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        .f_nav_item {
          width: calc((100% / 2) - 20px);
        }
      }
    }
  }
}
