@charset "UTF-8";
/****************************************
mypage
*****************************************/
/* ========================================================
Base
======================================================== */
html {
  font-family: "Noto Sans JP", sans-serif;
}
body {
  min-width: 100%;
  &.is-active {
    height: 100%;
    overflow: hidden;
  }
}
a:hover {
  text-decoration: none;
}
.pc-only {
  display: none;
  @media (width >= 768px) {
    display: block;
  }
}
.sp-only {
  display: block;
  @media (width >= 768px) {
    display: none;
  }
}
@media print {
  * {
    print-color-adjust: exact;
  }
}

/* ========================================================
Reset
======================================================== */
#wrapper {
  @media (width >= 768px) {
    min-width: 100%;
  }
}

#wrapper.overflowInit {
  overflow-x: visible;
}

#headerInner{
  position: relative;
  top: 0;
  left: 0;
  transform: translate(0, 0);
  width: 100%;
  min-width: 100%;
  height: 62px;
  z-index: 10;
  text-align: center;
  background-color: transparent;
  @media (width >= 768px) {
    height: 70px;
  }
}

#footerArea {
  color: #333;
  .phoneBt span,
  .phoneBt a,
  .phoneBtCaption {
    color: #333;
  }
}

/* ========================================================
ボタンのマウスオーバーの共通クラス
======================================================== */
.btOverUp {
  position: relative;
  top: 0;
  transition: all .2s;
  @media (hover: hover) {
    &:hover {
      top: -4px;
      box-shadow: 0px 0.3em 1em -0.4em rgba(0, 0, 0, 0.6);
    }
  }
}

/* ========================================================
utilsクラス
======================================================== */
.utilsColorGreen {
  color: #57AB64;
  font-weight: bold;
}
.utilsColorRed {
  color: #BB0303;
  font-weight: bold;
}
/* ========================================================
.headerArea
======================================================== */
.headerArea {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 62px;
  padding: 0 15px;
  background-color: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  box-shadow: 0px 0px 6px #00000029;
  z-index: 200;
  @media (width >= 768px) {
    height: 70px;
    padding: 0 30px;
  }
}
.headerInner {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  transition: all .6s;
}
.headerLogo {
  > a > img {
    width: auto;
    height: 36px;
    @media (width >= 768px) {
      height: 50px;
    }
  }
}
.menuBt {  
  .menuTrigger {
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    background-color: #0C0B0B;
    z-index: 300;
    @media (width >= 768px) {
      right: 30px;
    }
    > span {
      position: absolute;
      top: 50%;
      left: 15px;
      width: 20px;
      height: 3px;
      background-color: #fff;
      transition: all .6s;
      &:nth-of-type(1) {
        transform: translateY(calc(-50% - 10px));
      }
      &:nth-of-type(2) {
        transform: translateY(-50%);
      }
      &:nth-of-type(3) {
        transform: translateY(calc(-50% + 10px));
      }
    }
    &.is-active {
      background-color: transparent;
      > span {
        &:nth-of-type(1) {
          transform: translateY(-50%) rotate(-45deg);
        }
        &:nth-of-type(2) {
          display: none;
        }
        &:nth-of-type(3) {
          transform: translateY(-50%) rotate(45deg);
        }
      }
    }
  }
}

/* ========================================================
.gnaviArea
======================================================== */
.gnaviArea {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background-color: #333;
  overflow-y: auto;
  transition: all .6s;
  z-index: 200;
  @media (width >= 768px) {
    width: 370px;
    min-height: 100%;
  }
  &.is-active {
    right: 0;
  }

  .gnaviInner {
    width: 100%;
    padding: 40px 0;
    @media (width >= 768px) {
      width: 300px;
      padding: 85px 0;
    }
  }

  .gnaviUser {
    display: flex;
    align-items: center;
    gap: 15px;
    margin: 0 25px 25px;
    @media (width >= 768px) {
      margin: 0 10px 25px 40px;
    }

    img {
      width: 46px;
      height: auto;
    }
  }

  .gnaviUserName {
    color: #FFD800;
    font-size: 16px;
    font-weight: 500;
  }

  .gnaviItem {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
    box-sizing: border-box;
    @media (width >= 768px) {
      width: 300px;
    }
    &:first-child {
      border-top: 1px solid #DEDEDE;
    }
    a {
      width: 100%;
      height: 100%;
      padding: 15px 10px 15px 25px;
      font-size: 14px;
      font-weight: 500;
      color: #fff;
      text-align: left;
      transition: all .6s;
      @media (width >= 768px) {
        padding: 20px 10px 20px 40px;
        font-size: 16px;
      }
      &:hover {
        @media (hover: hover) {
          background-color: #FFD800;
          color: #333;
        }
      }
      &.linkBlink {
        position: relative;
        &::after {
          position: absolute;
          top: 50%;
          right: 10px;
          content: '';
          display: block;
          width: 15px;
          height: 15px;
          background-image: url(../image/option/ic_link_white.svg);
          background-size: cover;
          transform: translateY(-50%);
        }
        &:hover::after {
          @media (hover: hover) {
            background-image: url(../image/option/ic_link_black.svg);
          }
        }
        & figure {
          display: flex;
          align-items: center;
          gap: 10px;
          > img {
            width: auto;
            height: 30px;
          }
        }
      }
    }
    &.current {
      a {
        background-color: #FFD800;
        color: #333;
      }
    }
  }

  .gnaviLogout {
    margin-top: 30px;
  }
  .gnaviLogoutBt {
    width: 220px;
    height: 50px;
    border: none;
    border-radius: 999px;
    background-color: #fff;
    font-size: 16px;
    font-weight: 500;
    outline: none;
    cursor: pointer;
    appearance: none;
    transition: all .2s;
    &:hover {
      @media (hover: hover) {
        background-color: #FFD800;
      }
    }
  }
}

/* ========================================================
.titleArea
======================================================== */
.titleArea {
  position: relative;
  margin-top: 62px;
  background: repeating-linear-gradient(#0C0B0B, #0C0B0B 14.28%, #FFD800 14.28%, #FFD800 28.57%, #0C0B0B 28.57%, #0C0B0B 42.85%, #FFD800 42.85%, #FFD800 57.14%, #0C0B0B 57.14%, #0C0B0B 71.42%, #FFD800 71.42%, #FFD800 85.71%, #0C0B0B 85.71%, #0C0B0B 100%);
  overflow: hidden;
  @media (width >= 768px) {
    margin-top: 70px;
  }

  &::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 330px;
    height: 330px;
    border: 3px solid #fff;
    border-radius: 999px;
    background-color: rgba(0, 0, 0, .8);
    z-index: 1;
    @media (width >= 768px) {
      width: 550px;
      height: 550px;
    }
  }

  &::after {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: calc(50% - 187px);
    width: 77px;
    height: 73px;
    background-image: url(../image/option/mascot_megaphone_r_shadow.png);
    background-size: cover;
    background-position: top center;
    z-index: 3;
    @media (width >= 768px) {
      bottom: -5px;
      left: calc(50% - 348px);
      width: 130px;
      height: 130px;
    }
  }

  .title {
    position: relative;
    display: grid;
    align-items: center;
    max-width: 440px;
    min-height: 100px;
    margin-inline: auto;
    padding: 15px 0;
    color: #fff;
    z-index: 2;
    box-sizing: border-box;
    @media (width >= 768px) {
      min-height: 150px;
      padding: 20px 0;
    }

    &::after {
      content: '';
      display: none;
      position: absolute;
      background-image: url(../image/option/logo.png);
      background-size: contain;
      background-position: center;
      background-repeat: no-repeat;
      bottom: 14.28%;
      right: -200px;
      width: 120px;
      height: 14.28%;
      z-index: 3;
      @media (width >= 768px) {
        display: block;
      }
    }
  }
  .titleMain {
    display: grid;
    justify-items: center;
    gap: 10px;
    font-size: clamp(1.75rem, 1.6307rem + 0.5089vw, 1.875rem);
    line-height: 1.5;
    @media (width >= 768px) {
      font-size: 30px;
      line-height: 1.444;
    }

    &::after {
      content: '';
      display: block;
      width: 80px;
      height: 4px;
      background-color: #FFD800;
    }
  }
  .titleSub {
    display: block;
    margin-top: 16px;
    font-size: clamp(1rem, 0.8807rem + 0.5089vw, 1.125rem);
    font-weight: 500;
    line-height: 2;
  }
}

/* ========================================================
.login
======================================================== */
.login {
  margin-inline: auto;
  padding-inline: 4vw;

  @media (width >= 768px) {
    max-width: 1120px;
    padding-inline: 20px;
  }

  .loginLogo {
    display: none;
    margin-top: 50px;
    text-align: center;
    @media (width >= 768px) {
      display: block;
    }
    img {
      width: 320px;
    }
  }
  .loginDescription {
    margin-top: 35px;
    font-size: 14px;
    line-height: 1.56;
    text-align: left;
    @media (width >= 768px) {
      margin-top: 60px;
      font-size: 16px;
      text-align: center;
    }
  }
}

/* ========================================================
.formArea
======================================================== */
.formArea {
  margin-top: 30px;
  @media (width >= 768px) {
    margin-top: 40px;
  }

  .formAreaBackground {
    padding: 30px 4vw 100px;
    border-radius: 10px;
    background-image: url(../image/option/bg_photo_sp.jpg);
    background-position: center bottom;
    background-color: rgba(255,255,255,0.5);
    background-blend-mode: lighten;
    @media (width >= 768px) {
      padding: 36px 0 72px;
      background-image: url(../image/option/bg_photo_pc.jpg);
    }
  }
  .formAreaInput {
    margin-inline: auto;
    text-align: left;
    @media (width >= 768px) {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 600px;
      padding: 0;
    }
    + * {
      margin-top: 40px;
    }
    & input {
      width: 100%;
      height: 50px;
      margin-top: 10px;
      padding: 10px 12px;
      border: 1px solid #9E9E9E;
      border-radius: 10px;
      box-sizing: border-box;
      @media (width >= 768px) {
        width: 450px;
        height: 60px;
        margin-top: 0;
        padding: 20px 12px;
      }
    }
  }
  .formAreaTitle {
    color: #3B4043;
    font-size: 16px;
    font-weight: bold;
    @media (width >= 768px) {
      font-size: 18px;
    }
  }
  .formAreaNote {
    margin-top: 30px;
    font-size: 14px;
    text-decoration: underline;
    @media (width >= 768px) {
      margin-top: 25px;

    }
    & a {
      display: flex;
      align-items: center;
      gap: 1em;
      @media (width >= 768px) {
        justify-content: center;
      }
      &::after {
        content: '';
        display: block;
        width: 15px;
        height: 15px;
        background-image: url(../image/option/ic_link_black.svg);
      }
    }
  }
  .formAreaSubmit {
    position: relative;
    top: 0;
    display: inline-block;
    width: 300px;
    height: 50px;
    margin-top: 20px;
    border-radius: 999px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all .2s;
    @media (width >= 768px) {
      width: 300px;
      height: 60px;
      margin-top: 30px;
      font-size: 18px;
    }
    &:hover {
      @media (hover: hover) {
        top: -4px;
        box-shadow: 0px 0.3em 1em -0.4em rgba(0, 0, 0, 0.6);
      }
    }
  }
}

/* ========================================================
.course
======================================================== */
.course {
    margin: 50px 4vw 60px;
    @media (width >= 768px) {
      max-width: 1120px;
      margin: 60px auto 130px;
      padding-inline: 20px;
    }

  .courseInner {
    padding: 0 4vw 30px;
    border-radius: 16px;
    background-color: #fff;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.16));
    @media (width >= 768px) {
      padding: 0 4vw 40px;
    }
  }

  .courseTitle {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    height: 71px;
    padding-top: 5px;
    font-size: 18px;
    @media (width >= 768px) {
      height: 105px;
      font-size: 24px;
      transform: translateX(calc((100 + 30) / 2 * -1px));
    }
    
    &::before {
      content: '';
      position: absolute;
      bottom: 0;
      left: -15px;
      display: block;
      width: 67px;
      height: 71px;
      background-image: url(../image/option/mascot_suit.png);
      background-size: cover;
      @media (width >= 768px) {
        position: relative;
        width: 100px;
        height: 105px;
        left: auto;
      }
    }
  }
  .courseList {
    padding-top: 30px;
    border-top: 3px solid #FFD800;
    text-align: left;
    @media (width >= 768px) {
      padding-top: 40px;
    }
    li:not(:first-child) {
      margin-top: 30px;
    }
    h3 {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 16px;
      @media (width >= 768px) {
        gap: 25px;
        font-size: 20px;
      }
      &::before {
        content: '';
        display: inline-block;
        width: 15px;
        height: 15px;
        border-radius: 999px;
        background-color: #FEE667;
      }
    }
    p {
      margin: 5px 0 0 20px;
      font-size: 14px;
      @media (width >= 768px) {
        margin: 12px 0 0 40px;
        font-size: 16px;
      }
    }
  }
}

/* ========================================================
.footerBottom
======================================================== */
.footerBottom {
  padding: 9.3vw;
  @media (width >= 768px) {
    padding: 0;
  }
  .footerBanner {
    display: block;
    text-align: left;
    @media (width >= 768px) {
      display: none;
    }
    li {
      margin-bottom:  6.6vw;
      img {
        height: 12vw;
        width: auto;
      }
    }
  }
  .footerCopy {
    color: #fff;
    font-family: "Roboto", sans-serif;
    font-size: 2.6vw;
    font-weight: bold;
    text-align: left;
    @media (width >= 768px) {
      padding: 15px;
      font-size: 12px;
      text-align: center;
    }
  }
}

/* ========================================================
.userInfo
======================================================== */
.userInfo {
  display: grid;
  min-height: auto;
  padding: 30px 4vw;
  background-image: url(../image/option/bg_photo_sp.jpg);
  background-position: center bottom;
  background-size: cover;
  box-sizing: border-box;
  @media (width >= 768px) {
    padding: 30px 20px;
    background-image: url(../image/option/bg_photo_pc.jpg);
  }

  .userInfoList {
    display: grid;
    gap: 25px;
    width: 100%;
    min-width: auto;
    margin-inline: auto;
    padding: 30px 10px;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
    @media (width >= 768px) {
      gap: 20px;
      max-width: 960px;
      padding: 20px;
    }
  }
  .userInfoItem {
    display: flex;
    align-items: center;
    flex-direction: column;
    @media (width >= 768px) {
      flex-direction: row;
    }
  }
  .userInfoTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 300px;
    height: 35px;
    border-radius: 24.5px;
    background-color: #FFD800;
    font-size: 16px;
    font-weight: bold;
    @media (width >= 768px) {
      flex-direction: row;
      width: 240px;
      height: 50px;
      font-size: 18px;
    }
  }
  .userInfoContent {
    margin-top: 10px;
    font-size: 16px;
    @media (width >= 768px) {
      margin-top: 0;
      margin-left: 60px;
      font-size: 18px;
    }
  }
  .userInfoState {
    margin-top: 20px;
    padding: 10px 40px;
    border: 2px solid #9E9E9E;
    border-radius: 10px;
    font-size: 14px;
    font-weight: bold;
    @media (width >= 768px) {
      margin-top: 0;
      margin-left: 90px;
    }
  }
  .userInfoDate {
    width: 100%;
    margin: 18.5px auto 0;
    padding: 30px 10px;
    border-radius: 20px;
    background-color: #fff;
    box-sizing: border-box;
    @media (width >= 768px) {
      display: grid;
      grid-template-columns: auto 1fr;
      column-gap: 40px;
      min-width: 325px;
      max-width: 960px;
      padding: 20px;
    }
  }
  .userInfoDateTitle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 35px;
    margin-inline: auto;
    border-radius: 20px;
    background-color: #57AB64;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    @media (width >= 768px) {
      flex-direction: row;
      width: 240px;
      height: auto;
      font-size: 18px;
    }
  }
  .userInfoDateList {
    display: grid;
    gap: 30px;
    margin-top: 20px;
    @media (width >= 768px) {
      gap: 20px;
      margin-top: 0;
    }
  }
  .userInfoDateItem {
    display: grid;
    gap: 15px;
    @media (width >= 768px) {
      grid-auto-flow: column;
      align-items: center;
      justify-content: start;
      gap: 45px;
    }
    > span:nth-of-type(1) {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 280px;
      height: 35px;
      margin-inline: auto;
      background-color: #DEDEDE;
      font-size: 16px;
      font-weight: 500;
      @media (width >= 768px) {
        width: 190px;
        height: 50px;
      }
    }
    > span:nth-of-type(2) {
      font-size: 16px;
      @media (width >= 768px) {
        font-size: 18px;
      }
    }
  }
}

/* ========================================================
.service
======================================================== */
.service {
  max-width: 960px;
  margin: 40px auto 0;
  padding-inline: 4vw;
  @media (width >= 768px) {
    margin: 50px auto 0;
    padding-inline: 20px;
  }

  .serviceList {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    @media (500px < width < 768px) {
      grid-template-columns: repeat(2, 1fr);
    }
    @media (width >= 768px) {
      grid-template-columns: repeat(4, 1fr);
      column-gap: 20px;
      row-gap: 20px;
    }
  }
  .serviceItem {
    position: relative;
    padding: 10px;
    border: 2px solid #D9D9D9;
    border-radius: 16px;
    transition: all .2s;
    @media (width >= 768px) {
      padding: 20px;
      border: 4px solid #D9D9D9;
    }
    &:hover {
      @media (hover: hover) {
        border: 4px solid #FFD800;
        box-shadow: 0px 0.3em 1em -0.4em rgba(0, 0, 0, 0.6);
      }
    }

    & a {
      display: grid;
      grid-auto-flow: column;
      justify-content: start;
      align-items: center;
      gap: 20px;
      width: 100%;
      height: 100%;
      @media (width >= 768px) {
        display: inline-block;
      }
    }
    & img {
      width: 60px;
      height: auto;
      @media (width >= 768px) {
        width: 100px;
      }
    }
    & h2 {
      font-size: 14px;
      text-align: left;
      @media (width >= 768px) {
        margin-top: 10px;
        font-size: 16px;
        text-align: center;
      }
    }
    &.inProcess {
      pointer-events: none;
      &:hover {
        @media (hover: hover) {
          border: 4px solid #D9D9D9;
          box-shadow: none;
        }
      }
      &::after {
        content: '手続き中';
        display: flex;
        align-items: center;
        justify-content: center;
        border: none;
        border-radius: 12px;
        position: absolute;
        inset: 0;
        color: #fff;
        background-color: rgba(0, 0, 0, 0.6);
        font-size: 14px;
        font-weight: 700;
        z-index: 10;
        @media (width >= 768px) {
          font-size: 16px;
        }
      }
    }
  }
}

/* ========================================================
.serviceOther
======================================================== */
.serviceOther {
  max-width: 960px;
  margin: 60px auto 0;
  padding-inline: 4vw;
  @media (width >= 768px) {
    padding-inline: 20px;
  }

  .serviceOtherTitle {
    padding: 15px 4vw;
    background-color: #FFF4B8;
    font-size: 18px;
    text-align: center;
    @media (width >= 768px) {
      padding: 20px 40px;
      font-size: 20px;
    }
  }
  .serviceOtherList {
    display: grid;
    gap: 20px;
    margin-top: 30px;
    @media (width >= 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
      margin-top: 40px;
      padding-inline: 0;
    }
  }
  .serviceOtherItem {
    padding: 20px 4vw 25px;
    border: 2px solid #EBEBEB;
    border-radius: 16px;
    @media (width >= 768px) {
      padding: 30px 40px;
    }

    & h3 {
      font-size: 16px;
      @media (width >= 768px) {
        font-size: 18px;
      }
    }
    & img {
      width: auto;
      height: 105px;
      margin-top: 15px;
    }
    & p {
      margin-top: 25px;
      font-size: 14px;
    }
    .serviceOtherLink {
      position: relative;
      top: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 315px;
      height: 50px;
      margin: 20px auto 0;
      border-radius: 999px;
      background-color: #333;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      transition: all .2s;
      @media (width >= 768px) {
        max-width: 300px;
        height: 60px;
        font-size: 16px;
      }
      &:hover {
        @media (hover: hover) {
          top: -4px;
          box-shadow: 0px 0.3em 1em -0.4em rgba(0, 0, 0, 0.6);
        }
      }
      &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 28px;
        display: inline-block;
        background-image: url(../image/option/ic_arrow_white.svg);
        background-size: cover;
        width: 8px;
        height: 15px;
        transform: translateY(-50%);
      }
    }
  }
}

/* ========================================================
.lineAccount
======================================================== */
.lineAccount {
  padding-inline: 4vw;
  margin: 120px auto 0;
  @media (width >= 768px) {
    padding-inline: 20px;
  }
  
  .lineAccountInner {
    position: relative;
    max-width: 960px;
    margin-inline: auto;
    border: 6px solid #06C755;
    border-radius: 10px;
    &::before {
      content: '';
      position: absolute;
      top: -70px;
      left: 50%;
      display: inline-block;
      width: 240px;
      height: 80px;
      background-image: url(../image/option/mascot_line_add.png);
      background-repeat: no-repeat;
      background-size: cover;
      transform: translateX(-50%);
      z-index: 3;
      @media (width >= 768px) {
        top: -80px;
        left: 0;
        transform: translateX(0);
        width: 305px;
        height: 100px;
      }
    }
  }

  .lineAccountTitle {
    margin-bottom: 20px;
    overflow: hidden;
    @media (width >= 768px) {
      margin-bottom: 0;
    }
    img {
      width: 100%;
      height: auto;
    }
  }

  .lineAccountBottom {
    padding: 15px 10px 20px;
    background-color: #06C755;
    color: #fff;
    @media (768px <= width <= 1200px) {
      min-height: 180px;
      padding: 10px 10px 20px;
    }
    @media (width >= 1201px) {
      display: flex;
      gap: 60px;
      min-height: auto;
      padding: 20px 40px;
    }
  }
  .lineAccountText {
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
    @media (width >= 768px) {
      font-size: 16px;
      text-align: left;
    }
  }
  .lineAccountLink {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    height: 50px;
    margin: 20px auto 0;
    border-radius: 999px;
    background-color: #fff;
    color: #06C755;
    font-size: 14px;
    font-weight: 500;
    @media (768px <= width <= 1200px) {
      margin: 20px 0 0;
      font-size: 16px;
    }
    @media (width >= 1201px) {
      height: 60px;
      margin: 0;
    }
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 20px;
      display: inline-block;
      background-image: url(../image/option/ic_arrow_green.svg);
      background-size: cover;
      width: 8px;
      height: 15px;
      transform: translateY(-50%);
    }
  }
  .lineAccountQR {
    position: absolute;
    top: 50%;
    right: 40px;
    display: none;
    padding: 15px;
    background-color: #fff;
    transform: translateY(-50%);
    @media (768px <= width <= 1200px) {
      display: block;
      top: 69%;
    }
    @media (width >= 1201px) {
      display: block;
      top: 50%;
    }
  }
}

/* ========================================================
.userNews
======================================================== */
.userNews {
  max-width: 960px;
  margin: 50px auto 0;
  padding-inline: 20px;
  @media (width >= 1201px) {
    margin: 70px auto 0;
  }
  .userNewsText {
    font-size: 14px;
    text-align: left;
    line-height: 1.78;
    @media (width >= 768px) {
      font-size: 16px;
      text-align: center;
      line-height: 1.75;
    }
  }
  .userNewsBox {
    margin-top: 30px;
    padding: 35px 15px 25px;
    border: 2px solid #EBEBEB;
    border-radius: 18px;
    @media (width >= 768px) {
      display: grid;
      grid-template-columns: minmax(auto, 480px) 1fr;
      grid-auto-flow: column;
      align-items: center;
      justify-items: center;
      gap: 20px;
      margin-top: 40px;
      padding: 60px 40px;
    }
  }
  .userNewsBoxTextArea {
    margin-inline: auto;
    text-align: left;
  }
  .userNewsBoxTitle {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    @media (width >= 768px) {
      font-size: 18px;
      text-align: left;
    }
  }
  .userNewsBoxText {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      margin-top: 15px;
      font-size: 16px;
      line-height: 1.5;
    }
  }
  .userNewsBoxLink {
    justify-self: end;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 50px;
    margin: 20px auto 0;
    padding-inline: 20px;
    border-radius: 999px;
    background-color: #333;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    white-space: nowrap;
    @media (width >= 768px) {
      width: 100%;
      max-width: 360px;
      height: 60px;
      margin-top: 0;
      padding: 20px;
      font-size: 16px;
    }
  }
}
/* ========================================================
.linkMyPage
======================================================== */
.linkMyPage {
  margin: 60px auto 60px;
  @media (width >= 768px) {
    margin: 100px auto 120px;
  }
  .linkMyPageBt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin-inline: auto;
    border: 3px solid #DEDEDE;
    border-radius: 999px;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    @media (width >= 768px) {
      width: 360px;
      height: 60px;
      font-size: 16px;
    }
  }
}
/* ========================================================
.infoContents
======================================================== */
.infoContents {
  width: 100%;
  max-width: 1080px;
  margin-inline: auto;
  padding-inline: 4vw;
  box-sizing: border-box;
  @media (width >= 768px) {
    max-width: 960px;
    padding-inline: 20px;
  }
  .infoContentsInner {
    width: 100%;
    margin-top: 50px;
    @media (width >= 768px) {
      margin-top: 80px;
    }
  }
  .infoContentsBox {
    margin-top: 40px;
  }
  .infoContentsTitle {
    padding-bottom: 10px;
    border-bottom: 4px solid #FEE667;
    font-size: 16px;
    text-align: left;
    @media (width >= 768px) {
      font-size: 18px;
    }
  }
  .infoContentsSubTitle {
    margin: 25px 0 0;
    padding: 0.5em 1em;
    border-left: 10px solid #333333;
    font-size: 16px;
    text-align: left;
    @media (width >= 768px) {
      margin: 40px 40px 0;
    }
  }
  .infoContentsDl {
    margin: 40px 0 0;
    @media (width >= 768px) {
      display: grid;
      grid-template-columns: 240px 1fr;
      align-items: center;
      gap: 20px 30px;
      margin: 40px 40px 0;
    }
  }
  .infoContentsDt {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
    border-radius: 6px;
    background-color: #FFF2B0;
    font-size: 14px;
    font-weight: bold;
    @media (width >= 768px) {
      height: 50px;
      font-size: 16px;
    }
    &:not(:first-child) {
      margin-top: 20px;
      @media (width >= 768px) {
        margin-top: 0;
      }
    }
    &.statusTitle {
      background-color: #CBFFC8;
      color: #00640F;
      font-size: 15px;
      @media (width >= 768px) {
        font-size: 16px;
      }
    }
  }
  .infoContentsDd {
    margin: 20px auto 0;
    font-size: 14px;
    text-align: center;
    @media (width >= 768px) {
      margin: 0;
      font-size: 16px;
      text-align: left;
    }
    &.utilAddress {
      @media (width < 768px) {
        display: flex;
        justify-content: center;
        text-align: left;
      }
    }
  }
  .infoContentsBottom {
    display: grid;
  }
  .infoContentsBt {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 260px;
    height: 50px;
    margin: 30px auto 0;
    border-radius: 999px;
    background-color: #FFD800;
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    @media (width >= 768px) {
      font-size: 16px;
    }
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 30px;
      display: inline-block;
      background-image: url(../image/option/ic_arrow_black.svg);
      background-size: cover;
      width: 8px;
      height: 15px;
      transform: translateY(-50%);
    }
  }
  .infoContentsNote {
    margin: 40px 0 0;
    font-size: 14px;
    text-align: left;
    @media (width >= 768px) {
      margin: 40px 40px 0;
    }
  }
  .infoContentsText {
    margin: 30px 0 0;
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      margin: 40px 40px 0;
      font-size: 16px;
      line-height: 1.5;
    }
  }
  .infoContentsStateArea {
    margin: 30px 0 0;
    padding: 30px 15px;
    border-radius: 18px;
    background-color: #F4F4F4;
    @media (width >= 768px) {
      margin: 40px 40px 0;
      padding: 30px 40px;
    }
  }
  .infoContentsStateTitle {
    font-size: 16px;
    text-align: center;
    @media (width >= 768px) {
      font-size: 18px;
      text-align: left;
    }
    & + .infoContentsStateText {
      margin-top: 20px;
      @media (width >= 768px) {
        margin-top: 25px;
      }
    }
  }
  .infoContentsStateText {
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      font-size: 16px;
      line-height: 1.5;
    }
    & + .infoContentsStateForm {
      @media (width >= 768px) {
        margin-top: 30px;
      }
    }
  }
  .infoContentsStateList {
    margin-top: 30px;
    font-size: 14px;
    @media (width >= 768px) {
      font-size: 16px;
    }
    > li {
      padding-left: 2em;
      text-align: left;
      text-indent: -2em;
      > span:nth-of-type(1) {
        font-weight: bold;
      }
      > span:not(:first-of-type) {
        margin-top: 5px;
      }
      &:not(:first-of-type) {
        margin-top: 30px;
      }
    }
  }
  .infoContentsStateForm {
    margin: 25px auto 0;
    padding: 30px 15px 20px;
    background-color: #fff;
    @media (width >= 768px) {
      margin: 20px auto 30px;
      padding: 30px 20px;
    }
    .infoContentsStateFormTitle {
      display: inline-block;
      width: 160px;
      padding-bottom: 5px;
      border-bottom: 2px solid #FEE667;
      font-size: 14px;
      font-weight: bold;
      @media (width >= 768px) {
        font-size: 18px;
      }
    }
    .infoContentsStateFormArea {
      margin-top: 20px;
      @media (width >= 768px) {
        margin-top: 30px;
      }
    }
    .infoContentsStateFormInput {
      display: grid;
      align-items: center;
      justify-content: center;
      row-gap: 10px;
      max-width: 405px;
      margin-inline: auto;
      @media (width >= 768px) {
        grid-template-columns: 1fr 280px;
      }
      > label {
        font-size: 14px;
        text-align: left;
        cursor: pointer;
        @media (width >= 768px) {
          font-size: 16px;
        }
        &:not(:first-of-type) {
          margin-top: 10px;
          @media (width >= 768px) {
            margin-top: 0;
          }
        }
      }
      > input {
        width: 285px;
        height: 35px;
        padding-inline: 12px;
        border: 1px solid #9E9E9E;
        border-radius: 5px;
        cursor: pointer;
        box-sizing: border-box;
        @media (width >= 768px) {
          width: 280px;
        }
      }
    }
    .infoContentsStateFormSubmit {
      position: relative;
      width: 180px;
      height: 50px;
      margin: 40px auto 0;
      border-radius: 999px;
      &::after {
        content: '';
        position: absolute;
        top: 50%;
        right: 30px;
        display: inline-block;
        background-image: url(../image/option/ic_arrow_white.svg);
        background-size: cover;
        width: 8px;
        height: 15px;
        transform: translateY(-50%);
      }
      > input {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border: none;
        border-radius: 999px;
        background-color: #3B4043;
        color: #fff;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
      }
    }
  }
  .infoContentsTextLink {
    text-decoration: underline;
  }
}
/* ========================================================
.formSelect
======================================================== */
.formSelect {
  width: 100%;
  margin: 70px auto 0;
  padding-inline: 4vw;
  box-sizing: border-box;
  @media (width >= 768px) {
    max-width: 960px;
    padding-inline: 20px;
  }
  .formSelectInner {
    border-bottom: 4px solid #FEE667;
  }
  .formSelectText {
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      font-size: 16px;
      line-height: 1.5625;
      text-align: center;
    }
  }
  .formSelectArea {
    display: grid;
    align-items: center;
    gap: 30px;
    padding: 30px 0 45px;
    @media (width >= 768px) {
      display: grid;
      grid-template-columns: 1fr 260px;
      align-items: center;
      justify-content: space-between;
      grid-auto-flow: column;
      gap: 40px;
      max-width: 960px;
      margin-inline: auto;
      padding: 80px 20px 60px;
    }
  }
  .formSelectWrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 560px;
    height: 65px;
    margin-inline: auto;
    box-sizing: border-box;
    @media (width >= 768px) {
      margin-inline: 0;
    }
    > select {
      width: 100%;
      height: 65px;
      padding: 10px 17.5px;
      background-color: transparent;
      border: 1px solid #9E9E9E;
      border-radius: 3px;
      outline: none;
      font-size: 16px;
      cursor: pointer;
      -webkit-appearance: none;
      appearance: none;
      box-sizing: border-box;
      z-index: 3;
    }
    &::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 10px;
      right: 10px;
      width: 45px;
      height: 45px;
      background-color: #333;
      border-radius: 2px;
      z-index: -1;
    }
    &::after {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      right: 22px;
      width: 20px;
      height: 12px;
      background-image: url(../image/option/ic_arrow_down_while.svg);
      background-size: cover;
      transform: translateY(-50%);
      z-index: -1;
    }
  }
  .formSelectSubmitWrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 300px;
    height: 50px;
    margin-inline: auto;
    border-radius: 999px;
    transition: all .2s;
    @media (width >= 768px) {
      width: 260px;
      height: 60px;
      margin-inline: auto;
    }
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 18.5px;
      display: inline-block;
      background-image: url(../image/option/ic_arrow_down_while.svg);
      background-size: cover;
      width: 15px;
      height: 8px;
      transform: translateY(-50%);
      @media (width >= 768px) {
        right: 27.5px;
      }
    }

  }
  .formSelectSubmit {
    display: inline-block;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 999px;
    color: #fff;
    background-color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
  }
}

/* ========================================================
.chargeDetail
======================================================== */
.chargeDetail {
  width: 100%;
  max-width: 960px;
  margin: 60px auto 0;
  padding-inline: 4vw;
  box-sizing: border-box;
  @media (width >= 768px) {
    padding-inline: 20px;
  }
  .chargeDetailTitle {
    font-size: 20px;
    @media (width >= 768px) {
      font-size: 24px;
    }
  }
  .chargeDetailInfo {
    margin-top: 20px;
    font-size: 14px;
    text-align: right;
    > li:nth-of-type(1) {
      font-size: 14px;
      @media (width >= 768px) {
        font-size: 16px;
      }
    }
    > li:nth-of-type(2) {
      margin-top: 5px;
      @media (width >= 768px) {
        margin-top: 10px;
      }
    }
    > li:nth-of-type(3) {
      margin-top: 5px;
    }
  }
  .chargeDetailPrice {
    display: grid;
    grid-template-columns: repeat(2, auto);
    align-items: center;
    justify-content: start;
    grid-auto-flow: column;
    width: fit-content;
    min-width: 260px;
    margin-top: 30px;
    border: 3px solid #FFD800;
    font-weight: bold;
    box-sizing: border-box;
    @media (width >= 768px) {
      min-width: 400px;
      margin-top: 20px;
    }
    > p:nth-of-type(1) {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 85px;
      height: 50px;
      background-color: #FFD800;
      font-size: 14px;
      white-space: nowrap;
      @media (width >= 768px) {
        width: 140px;
        height: 60px;
        font-size: 18px;
      }
    }
  }
  .chargeDetailPriceTotal {
    display: grid;
    align-items: baseline;
    justify-content: space-between;
    grid-auto-flow: column;
    gap: 25px;
    padding: 0 10px 0 20px;
    > span:nth-of-type(1) {
      font-size: 20px;
      font-weight: bold;
      @media (width >= 768px) {
        font-size: 24px;
      }
    }
    > span:nth-of-type(2) {
      font-size: 12px;
      @media (width >= 768px) {
        font-size: 16px;
      }
    }
  }
  .chargeDetailTable {
    width: 100%;
    margin-top: 60px;
    > caption {
      font-size: 16px;
      font-weight: bold;
      text-align: left;
      @media (width >= 768px) {
        font-size: 18px;
      }
    }
    th, td {
      padding: 10px;
      @media (width >= 768px) {
        padding: 16px;
      }
    }
    th {
      background-color: #FFD800;
      font-size: 14px;
      font-weight: 500;
      @media (width >= 768px) {
        font-size: 18px;
      }
      &:nth-of-type(1) {
        width: 35%;
        @media (width >= 768px) {
          width: 42%;
        }
      }
      &:nth-of-type(2) {
        width: 25%;
        @media (width >= 768px) {
          width: 19%;
        }
      }
      &:nth-of-type(3) {
        width: 15%;
        @media (width >= 768px) {
          width: 19%;
        }
      }
      &:nth-of-type(4) {
        width: 25%;
        @media (width >= 768px) {
          width: 20%;
        }
      }
      &:not(:first-of-type) {
        border-left: 2px solid #fff;
      }
    }
    td {
      font-size: 14px;
      text-align: right;
      @media (width >= 768px) {
        font-size: 18px;
      }
      &:first-of-type {
        text-align: left;
      }
    }
    .tableData {
      td:first-child {
        border-left: 3px solid #FFD800;
      }
      td:last-child {
        border-right: 3px solid #FFD800;
      }
      &:nth-of-type(even) {
        background-color: #FEF9EB;
      }
      &:not(:first-of-type) td {
        border-top: 1px solid #9E9E9E;
      }
      td:not(:first-of-type) {
        border-left: 2px solid #FFD800;
      }
    }
    .subtotal,
    .tax,
    .total {
      > td:nth-of-type(2) {
        text-align: left;
      }
      &:not(:last-of-type) td:not(:first-of-type) {
        border-bottom: 1px solid #FFD800;
      }
      td:last-of-type {
        border-left: 2px solid #FFD800;
      }
      td:nth-of-type(2) {
        border-left: 3px solid #FFD800;
      }
      td:last-of-type {
        border-right: 3px solid #FFD800;
      }
    }
    .subtotal td {
      border-top: 3px solid #FFD800;
    }
    .total td:not(:first-child) {
      border-bottom: 3px solid #FFD800;
    }
    .total td {
      font-weight: bold;
    }
  }
  .chargeDetailBt {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 300px;
    height: 50px;
    margin: 40px auto 0;
    border-radius: 999px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    @media (width >= 768px) {
      max-width: 300px;
      height: 60px;
      margin-right: 0;
      font-size: 16px;
    }
  }
}

/* ========================================================
.attention
======================================================== */
.attention {
  max-width: 1080px;
  margin: 60px auto 0;
  padding-inline: 4vw;
  box-sizing: border-box;
  @media (width >= 768px) {
    margin: 65px auto 0;
    padding-inline: 20px;
  }
  .attentionInner {
    width: 100%;
    margin-inline: auto;
    padding: 30px 15px;
    border: 2px solid #EBEBEB;
    border-radius: 16px;
    box-sizing: border-box;
    @media (width >= 768px) {
      max-width: 960px;
      padding: 40px;
    }
  }
  .attentionTitle {
    padding-bottom: 5px;
    border-bottom: 3px solid #BB0303;
    font-size: 20px;
    @media (width >= 768px) {
      font-size: 24px;
    }
  }
  .attentionList {
    display: grid;
    gap: 20px;
    margin-top: 20px;
    text-align: left;
    @media (width >= 768px) {
      gap: 30px;
      margin-top: 40px;
    }
  }
  .attentionItem {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    line-height: 1.5;
    @media (width >= 768px) {
      padding-left: 30px;
      font-size: 16px;
    }
    &::before {
      position: absolute;
      top: 6px;
      left: 0;
      content: '';
      display: inline-block;
      width: 12px;
      height: 12px;
      border-radius: 999px;
      background-color: #3B4043;
    }
  }
  .attentionLink {
    position: relative;
    display: grid;
    place-content: center;
    width: 300px;
    height: 50px;
    margin: 30px auto 0;
    border-radius: 999px;
    background-color: #FFE140;
    font-size: 16px;
    font-weight: 500;
    @media (width >= 768px) {
      margin: 40px auto 0;
    }
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 30px;
      display: inline-block;
      background-image: url(../image/option/ic_arrow_black.svg);
      background-size: cover;
      width: 8px;
      height: 15px;
      transform: translateY(-50%);
    }
  }
  .attentionTextArea {
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      margin: 20px 0;
      font-size: 16px;
      line-height: 1.5;
    }
    > * + * {
      margin-top: 1em;
    }
  }
  .attentionTextNote {
    > ul,
    > .note {
      margin-left: 1em;
    }
  }
}

/* ========================================================
.changeCourse
======================================================== */
.changeCourse {
  margin: 80px auto 0;
  .changeCourseInner {
    max-width: 1040px;
    margin-inline: auto;
  }
  .changeCourseTitle {
    padding: 15px 4vw;
    background-color: #FFF4B8;
    font-size: 16px;
    text-align: left;
    @media (width >= 768px) {
      padding: 20px 40px;
      font-size: 18px;
    }
  }
  .changeCourseFormArea {
    width: fit-content;
    margin: 30px auto 0;
    padding-inline: 4vw;
    font-size: 16px;
    @media (width >= 768px) {
      margin: 40px auto 0;
      padding-inline: 0;
    }
  }
  .changeCourseText {
    width: fit-content;
    font-size: 14px;
    line-height: 1.78;
    text-align: left;
    @media (width >= 768px) {
      font-size: 16px;
    }
  }
  .changeCourseRadioArea {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    row-gap: 30px;
    margin-top: 25px;
    @media (width >= 768px) {
      margin-top: 40px;
      margin-left: -29px;
    }
    > input[type="radio"] {
      display: inline-block;
      transform: scale(2);
      cursor: pointer;
    }
    > label {
      font-size: 14px;
      text-align: left;
      cursor: pointer;
      @media (width >= 768px) {
        font-size: 16px;
      }
    }
  }
  .changeCourseSubmit {
    position: relative;
    width: 180px;
    height: 50px;
    margin: 40px auto 0;
    border-radius: 999px;
    @media (width >= 768px) {
      margin: 60px auto 0;
    }
    &::after {
      content: '';
      position: absolute;
      top: 50%;
      right: 30px;
      display: inline-block;
      background-image: url(../image/option/ic_arrow_white.svg);
      background-size: cover;
      width: 8px;
      height: 15px;
      transform: translateY(-50%);
    }
    > input {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 999px;
      color: #fff;
      background-color: #333333;
      font-size: 16px;
      font-weight: 500;
      cursor: pointer;
    }
  }
}

/* ========================================================
インクルードファイルの上書き
======================================================== */
#bottomTopicsArea,
#bottomReportArea {
  @media (width >= 768px) {
    padding-inline: 20px;
  }
}
#bottomTopicsArea h3,
#bottomReportArea h3 {
  font-size: 18px;
  @media (width >= 768px) {
    width: auto;
    max-width: 1000px;
    font-size: 20px;
  }
}
.topicsList,
.reportList {
  @media (width >= 768px) {
    width: auto;
    max-width: 920px;
    padding-inline: 20px;
  }
}
.contactInfoContent {
  @media (width >= 768px) {
    padding-inline: 20px;
  }
}

.contactInfoBox {
  @media (width >= 768px) {
    width: calc(50% - 20px);
  }
}
.colorBt.bigBt a {
  @media (width >= 768px) {
    padding: 1.2em 60px;
  }
}

