.simSection .only--pc {
  display: block !important;
}
.simSection .only--sp {
  display: none !important;
}

.simSection br.only--sp {
  display: none;
}

.simSection .sim_title_area {
  white-space: nowrap; 
}

.simSection {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 64px 0px;
  gap: 40px;
  width: 100%;
  background: #E1F0F8;
}

.simSection .contents_titles {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.simSection .contents_subtitle {
  font-family: 'Hiragino Kaku Gothic ProN';
  font-weight: 600;
  font-size: 24px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.04em;
  font-feature-settings: 'kern' off, 'liga' off;
  color: #222222;
}

.simSection .contents_title {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 600;
  font-size: 32px;
  line-height: 140%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #222222;
}

.simSection .contents_title .textcolor_primary {
  color: #20AEE5;
}

.simSection .sim_container {
  display: flex;
  align-items: center;
  padding-left: 44px;
  background: radial-gradient(100.45% 522.26% at 100.45% 50%, #99DCF6 0%, #36AAD6 100%);
  border-radius: 16px;
  width: 100%;
  max-width: 1020px;
  min-height: 240px;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.simSection .sim_container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(100.45% 522.26% at 100.45% 50%, #BFEAFB 0%, #4BB7E1 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.5s ease; 
}

.simSection .sim_container:hover::before {
  opacity: 1;
}

.sim_link_container {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
/* aタグに透明なカバーを被せる */
.sim_link_container::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100; 
    background: rgba(0,0,0,0); 
    cursor: pointer;
}

.simSection .sim_image {
  position: absolute;
  width: 75%; 
  height: auto;
  right: -23%;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.5s ease;
}

.simSection .sim_container:hover .sim_image {
  transform: translateY(-50%) scale(1.08);
}

.simSection .sim_text_wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.simSection .sim_text_body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
}

.simSection .sim_title_area {
  display: flex;
  align-items: center;
  gap: 5px;
  width: fit-content;
  white-space: nowrap;
}

.simSection .sim_title {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 600;
  font-size: 30px;
  line-height: 140%;
  letter-spacing: 0.04em;
  color: #FFFFFF;
}

.simSection .sim_icon {
  width: 22px;
  height: auto;
}

.simSection .sim_description {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 300;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.04em;
  font-feature-settings: 'kern' off, 'liga' off;
  color: #FFFFFF;
}

.simSection .sim_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 24px;
  gap: 4px;

  width: fit-content;
  min-width: 214px;
  max-width: 360px;
  box-sizing: border-box;

  background: #FFFFFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
  border-radius: 36px;

  transition: opacity 0.5s ease;
}

.simSection .sim_container:hover .sim_button {
  opacity: 0.8;
}

.simSection .sim_button_text {
  font-family: 'Hiragino Kaku Gothic Pro';
  font-weight: 300;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  letter-spacing: 0.04em;
  color: #20AEE5;
}

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

  .simSection {
    padding: 40px 0px;
  }

  .simSection .contents_subtitle {
    font-size: 20px;
  }
  
  .simSection .contents_title {
    font-family: 'Hiragino Kaku Gothic ProN';
    font-size: 24px;
  }

  .simSection .sim_container {
    max-width: 800px;
    min-height: 240px;
  }

  /*.simSection .sim_image {
    width: 100%; 
    right: -60%;
    max-width: 460px;
 }*/
 .simSection .sim_image {
    right: auto; 
    left: 50%;
    margin-left: 100px; 
    width: 93%; 
  }
}

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

  .simSection {
    padding: 40px 16px;
  }

  .simSection .only--pc {
    display: none !important;
  }

  .simSection .only--sp {
    display: block !important;
  }

  .simSection .contents_titles {
    align-items: center;
    padding: 0px;
  }
  
  .simSection .contents_title {
    font-feature-settings: 'kern' off, 'liga' off;
  }

  .simSection .sim_container {
    padding: 20px 0px;
    gap: 20px;
    background: radial-gradient(546.04% 70% at 50.15% 70%, #ADE0F4 0%, #3AB4E3 100%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    box-sizing: border-box;
  }

  .sim_link_container {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 24px;
    position: static;
  }

  .simSection .sim_text_wrapper {
    display: contents;
  }

  .simSection .sim_image {
    order: 2;
    position: static;
    transform: none;
    width: 152%;
    margin: 0;
    height: auto;
  }

  .simSection .sim_title_area {
    display: block;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    white-space: normal;
  }
  
  .simSection .sim_title {
    display: inline;
    font-size: 30px;
    line-height: 1.4;
  }

  .simSection .sim_icon {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    margin-left: 2px;
    margin-bottom: 4px;
    width: 22px;
    height: 22px;
  }

  .simSection .sim_text_body {
    order: 1;
    width: 100%;
    padding: 0 16px;
    gap: 12px;
    align-items: center;
    text-align: center;
  }

  .simSection .sim_description {
    text-align: center;
  }

  .simSection .sim_button {
    order: 3;
    width: calc(100% - 32px);
    max-width: 400px;
    height: 48px;
    background: #FFFFFF;
    transition: opacity 0.1s;
  }

  .simSection .sim_container:hover::before {
    opacity: 0;
  }

  .simSection .sim_container:hover .sim_image {
    transform: none;
  }

  .simSection .sim_container:hover .sim_button {
    opacity: 1;
  }

  .simSection .sim_container .sim_button:hover,
  .simSection .sim_container .sim_button:active {
    opacity: 0.8;
  }
}

.sim-test + div.page .aboutSection .description_part .explanation_button_div {
  height: unset;
}


.sim-test + div.page .aboutSection .description_part .explanation_button {
  width: unset;
  height: unset;
  padding: 16px 24px;
}

.sim-test + div.page .section.functionSection {
  background-color: #fff;
}

.sim-test + div.page .functionSection .details .detail_part {
  border: 1px solid #eee;
}

.sim-test + div.page .footerFixedBar,
.sim-test + .footerFixedBar {
  display: none;
}

.sim-test + div.page .header__box {
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    padding-top: 15px;
    padding-bottom: 15px;
    gap: 12px;
}

.sim-test + div.page .header__box--navi {
    margin-left: unset;
}

@media screen and (max-width: 960px) {
    .sim-test + div.page .header__nav__list {
        flex-direction: column;
        justify-content: start;
        align-items: start;
        height: 100%;
        border-top: 1px solid #EEEEEE;
    }

    .sim-test + div.page .header__nav__item {
      background: #FFF;
      width: 100%;
      border: none;
      border-bottom: 1px solid #EEEEEE;
      border-left: none;
      border-right: none;
  }
}

.sim-test + div.page .header__nav__link {
    font-size: 14px;
    text-decoration: none;
    padding: 8px 16px;
    width: 100%;
}

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

    .sim-test + div.page .header__nav__link:link,
    .sim-test + div.page .header__nav__link:active,
    .sim-test + div.page .header__nav__link:visited {
        color: #222222;
        padding: 12px 16px;
    }

  .sim-test + div.page .header__nav__link:hover {
      color: #222222;
      padding: 12px 16px;
  }
}

.sim-test + div.page .header__button__unit {
    flex: 0 0 auto;
    display: flex;
    margin-left: 20px;
}

.sim-test + div.page .header__button__unit>:not(:last-child) {
    margin-right: 10px;
}

.sim-test + div.page .header__button {
    padding: 12px 16px;
    font-size: 14px;
    width: 158px;
    height: 38px;
    min-width: 116px;
    border-radius: 36px;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    white-space: nowrap;  
}

.sim-test + div.page .header__button--cv {
    margin-left: unset;
}

@media screen and (min-width: 961px) and (max-width: 1120px) {
  .sim-test + div.page .header__content {
    height: 126px;
  }
  .sim-test + div.page #hamburger_overlay {
      position: absolute;
      bottom: 16px;
      right: calc(50% - 162px);
      left: auto;
  }
  .sim-test + div.page .header__box {
    align-items: flex-start;
    padding-top: 16px;
  }
  .sim-test + div.page .header__logo__image {
    height: 29px;
    margin-top: 4.5px;
  }
}

@media screen and (max-width: 960px) {
  
    .sim-test + div.page .header__button__unit {
        margin-left: 0;
    }
    .sim-test + div.page .header__spMenuButton {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: relative;
        width: var(--header-height-sp);
        height: var(--header-height-sp);
        cursor: pointer;
        background-color: unset;
        margin-left: 0px;
    }

    .sim-test + div.page .hamburger {
        width: 36px;
        height: 20px;
        position: relative;
    }

    .sim-test + div.page .hamburger__line {
        display: block;
        position: absolute;
        width: 22px;
        height: 2px;
        background-color: #666666;
        border-radius: 2px;
        transform: translateX(-50%);
        left: 50%;
    }
    .sim-test + div.page .hamburger__line--top {
      top: 1px;
    }
    .sim-test + div.page .hamburger__line--middle {
      top: 9px;
    }
    .sim-test + div.page .hamburger__line--bottom {
      top: 17px;
    }
    .sim-test + div.page .hamburger__line.is__open {
      background-color: transparent;
    }

    .sim-test + div.page .header__closeButton__line {
        display: block;
        position: absolute;
        width: 24px;
        height: 2px;
        background-color: #666666  ;
        border-radius: 3px;
        transform: translateX(-50%);
        right: calc((100% - 24px) / 2);
        top: 50%;
    }
    .sim-test + div.page .header__closeButton__line--right {
        margin: auto;
        transform: rotate(-45deg);
    }
    .sim-test + div.page .header__closeButton__line--left {
        margin: auto;
        transform: rotate(45deg);
    }
}

.sim-test + div.page .account_and_inquiry .header__button {
    padding: 12px 16px;
    width: 158px;
    height: 38px;
    min-width: 116px;
    border-radius: 36px;
    text-align: center;
    vertical-align: middle;
    line-height: 1;
    font-size: 14px;
}

@media screen and (min-width: 960px) {
  .sim-test + div.page header.header .cvPanel__tel__area {
      flex-direction: column;
      justify-content: center;
      align-items: flex-center;
      margin-left: 10px;
  }

  .sim-test + div.page header.header .tel__text__reception {
      font-family: 'Hiragino Kaku Gothic Pro';
      font-style: normal;
      font-weight: 300;
      font-size: 11px;
      line-height: 140%;
      text-align: center;
      letter-spacing: 0.04em;
      font-feature-settings: 'kern' off;
      width: 100%;
      color: #666666;
  }

  .sim-test + div.page header.header .tel__contact__num {
      font-family: 'Avenir Next';
      font-style: normal;
      font-weight: 600;
      font-size: 16px;
      line-height: 140%;
      text-align: center;
      letter-spacing: 0.04em;
      font-feature-settings: 'kern' off, 'liga' off;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #20AEE5;
      gap: 4px;
  }

  .sim-test + div.page header.header .tel__contact__num .vector_icon {
      margin-bottom: -2px;
      width: 16px;
      height: 16px;
  }
}

@media screen and (max-width: 960px) {
    .sim-test + div.page .header__box--right .header__button.only--sp {
        height: 30px; 
        padding: 8px 12px;
        font-size: 14px;
        width: auto;
        min-width: auto;
    }
}

.floatingBanner {
    position: fixed;
    right: 16px;
    bottom: 16px;
    width: 240px;
    height: auto;
    z-index: 99;
}

.floatingBanner .floatingBanner__close {
    position: absolute;
    top: -9px;
    right: -9px;
    width: 24px;
    height: 24px;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 101;
    padding: 14px;

    display: flex;
    justify-content: center;
    align-items: center;
}

.floatingBanner .floatingBanner__close img {
    width: 9.62px;
    height: 9.62px;
    object-fit: contain;
    pointer-events: none; 
}

.floatingBanner .sim_link_container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-decoration: none;
    gap: 16px;

    background: radial-gradient(545.62% 70% at 50.15% 70%, #ADE0F4 0%, #3AB4E3 100%);
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
    border-radius: 16px;
    
    padding: 16px; 
    box-sizing: border-box;
    overflow: hidden;
}

.floatingBanner .sim_title {
    display: block;
    width: 100%; 
    font-family: 'Hiragino Kaku Gothic Pro';
    font-weight: 600;
    font-size: 20px;
    line-height: 1.4;
    text-align: center;
    color: #FFFFFF;
}

.floatingBanner .sim_icon {
    width: 18px;
    height: auto;
    vertical-align: middle;
    margin-left: 4px;
    margin-bottom: 4px;
}

.floatingBanner .sim_image {
    display: block;
    width: 240%;
    height: auto;
    object-fit: contain;
}

.floatingBanner .sim_button {
    display: flex;
    justify-content: center;
    align-items: center;
    
    width: 208px;
    max-width: 400px;
    height: 30px;
    padding: 8px 16px;
    gap: 4px;
    
    background: #FFFFFF;
    border-radius: 36px;
}

.floatingBanner .sim_button_text {
    font-family: 'Hiragino Kaku Gothic Pro';
    font-weight: 300;
    font-size: 14px;
    line-height: 100%;
    text-align: center;
    color: #20AEE5;
    white-space: nowrap;
}

.floatingBanner .sim_link_container:hover {
    background: radial-gradient(545.62% 70% at 50.15% 70%, #BFEAFB 0%, #4BB7E1 100%);
}

.floatingBanner .sim_link_container:hover .sim_button {
    opacity: 0.8;
}

.floatingBanner .floatingBanner__close:hover {
    background-color: #F0FAFF;
}

.floatingBanner.display_sp {
  display: none;
  max-width: 400px;
  padding-left: 32px;
  width: 100%;
}

.floatingBanner_left {
  width: 100%;
}

@media screen and (max-width: 640px) {
  .floatingBanner.display_pc_tab {
    display: none;
  }
  .floatingBanner.display_sp {
    display: block;
  }
  .floatingBanner .sim_image {
    width: 142px;
  }
  .floatingBanner .sim_link_container {
    flex-direction: row;
    background: radial-gradient(110% 13219.62% at 100% 49.4%, #ADE0F4 0%, #3AB4E3 100%);
    padding: 12px 16px;
  }
  .floatingBanner .sim_title {
    font-size: 18px;
    line-height: 1;
    text-align: left;
    padding-bottom: 10px;
  }
  .floatingBanner .sim_icon {
    margin-top: -4px;
  }
  .floatingBanner .sim_button {
    width: 100%;
    height: 24px;
    max-width: 210px;
  }
  .floatingBanner .sim_button_text {
    font-size: 12px;
  }
}

.banner_fade_up {
  transform: translateY(0%);
  transition: transform 0.4s;
}

.banner_fade_up.closed {
  transform: translateY(130%);
}

.banner_fade_up.is_inview {
  transform: translateY(130%);
}