/*
Theme Name: studycoach
*/

@charset "UTF-8";

:root {
  --fixed-height: 0px;
}

html {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 62.5%;
  font-weight: 400;
  letter-spacing: 0.05em;
}

*,
*:before,
*:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

img,
video {
  width: 100%;
  vertical-align: bottom;
  height: auto;
}

a {
  display: inline-block;
  text-decoration: none;
}

li {
  list-style: none;
}

.header_banner {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 9999;
}
@media (max-width: 1440px) and (min-width: 769px) {
  .header_banner {
    height: clamp(51px, 6vw, 96px);
  }
}

.header {
  position: relative;
}

.header--with-banner {
  margin-top: 12vh;
}
.header--with-atsugi-banner {
  margin-top: 12vh;
}

.header__ttl {
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  font-size: calc(20 / 1440 * 100vw);
  font-weight: bold;
  background: linear-gradient(
    236.45deg,
    #0050ff 15.13%,
    #00beff 73.36%,
    #00be8c 119.04%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-mt {
  margin-top: var(--fixed-height);
}

.success {
  background: linear-gradient(
    223.1deg,
    rgba(0, 80, 255, 0.2) 10.17%,
    rgba(0, 190, 255, 0.2) 51.24%,
    rgba(0, 190, 140, 0.2) 93.91%
  );
  padding: 33px 0 84px;
}

.success__ttl {
  width: 255px;
  display: block;
  margin: 0 auto 42px;
}

.success__slick__img {
  padding: 0;
  transform: scale(0.8) translateX(125%);
  transform-origin: center;
  transition: 0.3s;
}

.success__slick__img.slick-slide.slick-current {
  transform: scale(1) translateX(100%);
  transform-origin: center;
}

.success__slick__dots {
  position: relative;
  padding: 4px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  width: 36%;
  margin: 32px auto 0;
  height: 8px;
}

.success__slick__dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: calc(100% - 2.5px);
  border-radius: 100px;
  background-color: rgba(0, 80, 255, 1);
  transition: left 0.3s;
}

.cta-wrap {
  position: relative;
}

.cta-ab {
  position: absolute;
  top: 0;
  width: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
}

.support__item {
  position: relative;
  padding: 20px 25px;
  background-color: #fff; /* 必要なら背景指定 */
  border-radius: 10px;
  z-index: 0;
  overflow: hidden;
}

.support__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    220.27deg,
    rgba(0, 80, 255, 0.5) 13.82%,
    rgba(0, 190, 255, 0.5) 65.11%,
    rgba(0, 190, 140, 0.5) 84.01%
  );
  border-radius: 12px; /* padding分 + border分 */
  z-index: -2;
}

.support__item::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  right: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 10px; /* padding分 + border分 */
  z-index: -1;
}

.faq__wrap {
  width: 90%;
  max-width: 958px;
  margin: auto;
}

.faq__content {
  border-radius: 10px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 30px;
  background: #fff;
  overflow: hidden;
}

.faq__content:last-child {
  margin-bottom: 0;
}

.faq__large {
  position: relative;
  font-size: 22px;
  letter-spacing: 0.03em;
  padding: 16px 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: linear-gradient(40deg, #00beff 0%, #0050ff 50%);
  font-weight: 600;
  color: #fff;
}
.faq__detail {
  display: none;
  padding: 20px 33px;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 2em;
  display: flex;
  align-items: flex-start;
  font-weight: 600;
  display: none;
}

.faq__batch {
  width: 54.04px;
  height: 54.04px;
  margin-right: 35px;
}

.faq__large::before {
  content: "";
  width: 25px;
  height: 2px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
}

.faq__large::after {
  content: "";
  width: 25px;
  height: 2px;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transform-origin: center;
  background: #fff;
  transition: 0.3s;
}

.faq__answer {
  margin-top: 6px;
}

.faq__large.open::after {
  transform: translateY(-50%) rotate(90deg);
}

.cta {
  padding: 60px 0;
}

.cta__wrap {
  width: 90%;
  max-width: 1060px;
  margin: auto;
  position: relative;
}

.cta__link {
  position: absolute;
  width: 64.5%;
  left: 14%;
  bottom: 10px;
}

.support {
  padding: 66px 0;
  background-image: url(./assets/img/support-back.png);
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
}

.support__item {
  margin: 0 15px;
  border-radius: 10px;
  background: #fff;
}

.support__item__top {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin: 20px 0 13px;
}

.support__item__top--staff {
  justify-content: center;
}

.support__img {
  border-radius: 5px;
  border: 2px solid #4dc9f3;
}

.support__slick {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto 36px;
}

.support__label {
  font-size: 24px;
  font-weight: 700;
  margin-right: 6px;
}

.support__coach {
  font-size: 16px;
  font-weight: 700;
}

.support__item__yomi {
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.05em;
  background: linear-gradient(
    235.39deg,
    rgba(0, 80, 255, 0.8) 8.26%,
    rgba(0, 190, 255, 0.8) 77.13%,
    rgba(0, 190, 140, 0.8) 102.49%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.support__item__list {
  margin-top: 20px;
}

.support__item__list__item {
  margin-bottom: 12px;
  color: #000000;
  font-size: 15px;
  padding-left: 1em;
  position: relative;
}

.support__item__list__item::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 100px;
  background-color: #00beff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.support__item__list__text {
  font-size: 15px;
}

.support__txt {
  width: 90%;
  max-width: 681px;
  display: block;
  margin: auto;
}

.support__slick__dots {
  position: relative;
  padding: 4px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  width: 36%;
  margin: 36px auto;
  height: 8px;
  border: 1px solid #00beff;
}

.support__slick__dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: calc(100% - 2.5px);
  border-radius: 100px;
  background-color: rgba(0, 80, 255, 1);
  transition: left 0.3s;
}

.voice {
  position: relative;
  padding: 55px 0 0;
  background: linear-gradient(
    223.1deg,
    rgba(0, 80, 255, 0.2) 10.17%,
    rgba(0, 190, 255, 0.2) 51.24%,
    rgba(0, 190, 140, 0.2) 93.91%
  );
}

.voice__wrap {
  width: 625.5px;
  max-width: 100%;
  margin: 0 auto;
}

.voice__slick {
  padding-bottom: 273px;
  margin-bottom: 0 !important;
}

.voice__slick--single {
  padding-bottom: 200px;
}

.voice__slick__img {
  /* transform: translateX(19.5%); */
}

.cta-under {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 30%);
  padding: 0;
}

.line {
  position: relative;
}

.line__link {
  position: absolute;
  width: 47%;
  bottom: 7.42%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.media {
  padding: 82px 0 67px;
  background: linear-gradient(
    to right top,
    #4dd1c4 0,
    #00beff 60.7%,
    #4d84ff 100%
  );
}

.media__text {
  display: block;
  margin: auto;
  width: 37.7%;
}

.media__list {
  width: 90%;
  max-width: 1061px;
  margin: 61px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.media__item--first {
  margin-bottom: 56px;
}

.media__item--forth {
  margin-bottom: 43px;
}

.media__item {
  width: 100%;
  position: relative;
}

.media__item--half {
  width: calc(50% - 13px);
}

.media__link {
  position: absolute;
  width: 222px;
  max-width: 100%;
  bottom: 23px;
  right: 80px;
}

.footer {
  padding: 23px 0;
  text-align: center;
  background-color: #0050ff;
  color: #fff;
  font-size: 13px;
}

.reason {
  background: linear-gradient(
    223.1deg,
    rgba(0, 80, 255, 0.2) 10.17%,
    rgba(0, 190, 255, 0.2) 51.24%,
    rgba(0, 190, 140, 0.2) 93.91%
  );
  padding: 67px 0 331px;
}

.reason__wrap {
  max-width: 1060px;
  width: 90%;
  margin: 0 auto;
}

.reason__ttl {
  margin: 0 auto 50px;
  text-align: center;
}

.reason__ttl__sp {
  display: block;
  margin: auto;
  max-width: 393px;
}

.reason__ttl__inner {
  font-size: 35px;
  line-height: 58px;
  font-weight: bold;
  color: #0050ff;
  letter-spacing: 0.05em;
}

.reason__item {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 60px;
}

.reason__item--first {
  margin-bottom: 20px;
}

.reason__item:nth-last-child(1) {
  margin-bottom: 0;
}

.reason__break {
  margin-bottom: 72px;
}

.reason__left {
  width: 50%;
  padding-left: 60px;
  order: 2;
}

.reason__label {
  font-size: 18px;
  color: #0050ff;
  border-radius: 5px;
  border: 1px solid #0050ff;
  padding: 4px 12px;
  display: inline-block;
  margin-bottom: 16px;
  line-height: 1em;
  background: linear-gradient(
    226.08deg,
    #0050ff 13.97%,
    #00beff 91.84%,
    #00be8c 120.53%
  );
  font-weight: 700;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
}

.reason__label::before {
  content: "";
  width: 1px;
  height: 11.25px;
  position: absolute;
  right: 40px;
  bottom: -7px;
  background-color: #0050ff;
  display: inline-block;
  transform: rotate(-137.55deg);
}

.reason__num {
  font-size: 24px;
}

.reason__large {
  font-size: 32px;
  line-height: 1.3em;
  color: #0050ff;
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 18px;
}

.reason__large::before {
  content: "";
  width: 100%;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform: translateY(-50%);
  background: linear-gradient(
    90deg,
    #0050ff -6.62%,
    #00beff 91.17%,
    #00be8c 127.19%
  );
}

.reason__detail {
  font-size: 15px;
  line-height: 2em;
}

.reason__right {
  width: 50%;
  order: 1;
}

.reason__item:nth-of-type(2n-1) .reason__left {
  order: 1;
  padding: 0 57px 0 0;
}

.reason__item:nth-of-type(2n-1) .reason__right {
  order: 2;
}

.classroom__text {
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 2em;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.classroom {
  padding: 81px 0 112px;
  background: linear-gradient(
    224.45deg,
    #0050ff 10.27%,
    #00beff 60.7%,
    #00be8c 113.12%
  );
}

.classroom__top {
  width: 371px;
  margin: auto;
}

.classroom__left {
  padding: 3px;
  border-radius: 13px;
  margin-right: 80px;
  background: linear-gradient(
    224.45deg,
    #0050ff 10.27%,
    #00beff 60.7%,
    #00be8c 113.12%
  );
  width: 50%;
  overflow: hidden;
}

.classroom__message {
  width: 90%;
  max-width: 1082px;
  margin: 67px auto 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.classroom__message:has(.classroom__left) .classroom__right {
  width: 50%;
}

.classroom__right {
  width: 100%;
}

.classroom__text {
  font-size: 15px;
  line-height: 2em;
  color: #fff;
}

.classroom__career {
  font-size: 17px;
  margin-bottom: 2px;
  color: #fff;
  text-align: right;
}

.classroom__name {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: right;
}

.classroom__left__img {
  width: 100%;
  border-radius: 10px;
}

.staff__top {
  width: 371px;
  margin: 86px auto 58px;
}

.classroom__slick {
  width: 90%;
  max-width: 1170px;
  margin: 0 auto 36px;
}

.classroom__slick__dots {
  position: relative;
  padding: 4px;
  border-radius: 100px;
  background-color: #fff;
  overflow: hidden;
  width: 36%;
  margin: 32px auto 0;
  height: 8px;
}

.classroom__slick__dot {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  height: calc(100% - 2.5px);
  border-radius: 100px;
  background-color: rgba(0, 80, 255, 1);
  transition: left 0.3s;
}

.information {
  background-image: url(./assets/img/support-back.png);
  background-position: center;
  background-size: contain;
  background-repeat: repeat;
  padding: 86px 0 120px;
}

.information__img {
  width: 267px;
  display: block;
  margin: 0 auto 42px;
}

.information__ttl {
  width: 267px;
  display: block;
  margin: 0 auto 42px;
}

.information__wrap {
  padding: 35px 60px 65px;
  width: 957px;
  max-width: 90%;
  margin: 0 auto;
  background: linear-gradient(
    220.27deg,
    rgba(0, 80, 255, 0.5) 13.82%,
    rgba(0, 190, 255, 0.5) 65.11%,
    rgba(0, 190, 140, 0.5) 84.01%
  );
  position: relative;
  border-radius: 13px;
}

.information__wrap::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  background-color: #fff;
  z-index: 0;
  border-radius: 10px;
}

.information__label {
  width: 274px;
  font-size: 20px;
  font-weight: 700;
  color: #0050ff;
  padding-left: 50px;
}

.information__item {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  padding: 25px 0;
  border-bottom: 1px solid #c8c8c8;
}

.information__text {
  font-size: 18px;
  font-weight: 600;
}

.faq {
  padding: 91px 0;
  background-color: #f5f5f0;
}

.faq__ttl {
  width: 267.37px;
  margin: 0 auto 28px;
  display: block;
}

.result {
  position: relative;
}

.result__box {
  position: relative;
}

.result__prev,
.result__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  cursor: pointer;
}

.result__prev {
  left: 6px;
}

.result__next {
  right: 6px;
}

.support__item__list__num {
  font-family: Noto Sans JP;
  font-weight: 600;
  font-style: SemiBold;
  display: inline-block;
  font-size: 12px;
  leading-trim: NONE;
  line-height: 15px;
  letter-spacing: 5%;
  text-align: right;
  vertical-align: middle;
  background: linear-gradient(
    236.48deg,
    rgba(0, 80, 255, 0.8) 7.85%,
    rgba(0, 190, 255, 0.8) 119.7%,
    rgba(0, 190, 140, 0.8) 160.9%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.voice__slick .slick-dots {
  position: relative;
  bottom: 0;
}

.slick-dots li button:before {
  content: "";
  width: 11.23px;
  height: 11.23px;
  border-radius: 100px;
  border: 1px solid #0050ff;
}
.slick-dots li.slick-active button:before {
  background-color: #0050ff;
  opacity: 1;
}

.information__link {
  display: block;
  text-align: right;
  margin-top: 8px;
}

.information__link__text {
  font-size: 18px;
  font-weight: 600;
  color: #0050ff;
  line-height: 1em;
}

.information__link__img {
  width: 10px;
  margin-left: 7px;
}

.success__slick__wrap {
  position: relative;
}

.success__slick__prev {
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
}

.success__slick__next {
  position: absolute;
  right: 0%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .header--with-banner {
    margin-top: 9vh;
  }
  .header--with-atsugi-banner {
    margin-top: 9vh;
  }
}

@media screen and (max-width: 768px) {
  :root {
    --base-size: 390;
  }
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }

  .header--with-banner {
    margin-top: 13vh;
  }
  .header--with-atsugi-banner {
    margin-top: 20vh;
  }
  .header_banner {
    height: clamp(0px, 22.5vw, 173px);
  }

  .cta {
    padding: 9px 0 14px;
  }
  .cta__link {
    position: absolute;
    width: 95%;
    left: 2.5%;
    bottom: 0px;
  }

  .success__slick__img,
  .success__slick__img.slick-slide.slick-current {
    transform: scale(1);
  }

  .success__ttl {
    width: 135px;
    margin-bottom: 16px;
  }
  .success__slick__dots {
    width: 90%;
    margin-top: 10px;
  }

  .result {
    padding: 25px 0 82px;
    background: url(./assets/img/support-back.png) repeat center;
    background-size: contain;
  }

  .result__ttl {
    width: 63%;
    display: block;
    margin: 0 auto 21px;
  }

  .result__slick__item {
    padding: 0 10px;
  }

  .support__slick__dots {
    width: 90%;
    margin: 15px auto 24px;
  }
  .support__item {
    width: 100%;
    margin: auto;
  }

  .voice__wrap {
    width: 304.5px;
  }

  .voice__slick {
    padding-bottom: 148px;
  }

  .faq {
    padding: 30px 0;
  }

  .faq__large {
    font-size: 16px;
    padding: 9px 11px;
  }

  .faq__detail {
    font-size: 15px;
    position: relative;
    padding: 16px 11px;
  }

  .faq__large::before {
    width: 15px;
    height: 2px;
    right: 15px;
  }

  .faq__large::after {
    width: 15px;
    height: 2px;
    right: 15px;
  }

  .faq__batch {
    width: 32px;
    height: 32px;
    margin-right: 9px;
  }

  .voice__slick {
    padding-bottom: 117px;
  }
  .voice__slick__img {
    transform: translateX(0%);
  }

  .cta-under {
    transform: translate(-50%, 50%);
  }
  .media {
    padding: 28px 0 30px;
  }
  .line__link {
    width: 98%;
    bottom: 1%;
  }
  .media__text {
    width: 90%;
  }

  .media__item--half {
    width: 100%;
  }
  .media__item--first {
    margin-bottom: 25px;
  }
  .media__item--second {
    margin-bottom: 20px;
  }
  .media__item--third {
    margin-bottom: 0px;
  }
  .media__item--forth {
    margin-bottom: 30px;
  }
  .media__link--second {
    right: 0;
  }
  .media__link--third {
    left: 0;
  }
  .media__link {
    bottom: 3px;
  }
  .media__link--forth {
    bottom: 0px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .media__list {
    margin-top: 31px;
  }
  .reason {
    padding-top: 26px;
    padding-bottom: 126px;
  }
  .reason__item {
    flex-wrap: wrap;
    margin-bottom: 25px;
  }
  .reason__right {
    width: 100%;
    padding: 0;
    order: 1;
  }
  .reason__left {
    width: 100%;
    padding: 0 !important;
    order: 0;
    margin-bottom: 20px;
  }
  .reason__large {
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 16px;
  }

  .classroom__message {
    flex-wrap: wrap;
    margin-top: 25px;
  }

  .classroom__left {
    width: 100%;
    padding: 0;
    margin: 0 0 19px;
  }

  .classroom__right {
    padding: 0;
    margin: 0;
    width: 100% !important;
  }

  .classroom__top {
    width: 176px;
  }

  .staff__top {
    width: 176px;
    margin: 50px auto 28px;
  }
  .classroom__slick__dots {
    width: 90%;
  }

  .classroom {
    padding: 33px 0 62px;
  }

  .support__slick,
  .classroom__slick {
    width: 100%;
  }

  .support__item {
    margin: 0 5vw;
  }
  .information__label {
    width: 100%;
    padding: 0;
  }
  .information__wrap {
    padding: 24px 13px 32px;
    width: 95%;
  }
  .information__item {
    flex-wrap: wrap;
    padding: 12px 8px;
  }
  .information__label {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .information__text {
    font-size: 16px;
  }
  .information {
    padding: 60px 0 53px;
  }
  .information__img {
    width: 264px;
    margin: 0 auto 25px;
    display: block;
  }

  .support,
  .information,
  .result {
    background-image: url(./assets/img/support-back-sp.png);
  }

  .reason__ttl {
    margin: 0 auto 23px;
  }
  .classroom__career {
    text-align: right;
    font-size: 17px;
  }
  .classroom__name {
    text-align: right;
    font-size: 24px;
  }

  .classroom__text {
    margin-bottom: 0;
  }

  .header__ttl {
    font-size: calc(15 / 375 * 100vw);
  }

  .support__txt {
    width: calc(249 / 375 * 100vw);
  }

  .cta-under {
  }

  .support {
    padding: 53px 0 36px;
  }
  .reason__ttl__inner {
    font-size: 25px;
    line-height: 41px;
    letter-spacing: 0.05em;
  }
  .reason__ttl__sp {
    max-width: 225px;
  }

  .information__link {
    margin-top: 0;
  }

  .header__link {
    padding: min(15px, calc(15 / var(--base-size) * 100vw))
      min(20px, calc(20 / var(--base-size) * 100vw));
    border: min(2px, calc(2 / var(--base-size) * 100vw)) solid #fff;
    border-radius: min(50px, calc(50 / var(--base-size) * 100vw));
    background-color: #0050ff;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: min(12px, calc(12 / var(--base-size) * 100vw));
    gap: min(28px, calc(28 / var(--base-size) * 100vw));
    box-shadow: min(0px, calc(0 / var(--base-size) * 100vw))
      min(4px, calc(4 / var(--base-size) * 100vw))
      min(8px, calc(8 / var(--base-size) * 100vw))
      min(0px, calc(0 / var(--base-size) * 100vw)) #00000029;
  }

  .header__link--try {
    background: linear-gradient(
      272.21deg,
      #e67300 5.95%,
      #ed9b00 97.48%,
      #f6cb00 106.06%,
      #ffff00 128.22%
    );

    margin-left: min(12px, calc(12 / var(--base-size) * 100vw));
    margin-right: min(30px, calc(30 / var(--base-size) * 100vw));
  }

  .header-arrow {
    width: min(12px, calc(12 / var(--base-size) * 100vw));
  }

  .fv-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 11;
    padding: calc(15 / var(--base-size) * 100vw) 0;
    gap: calc(14 / var(--base-size) * 100vw);
  }

  .fv-bottom .header__link {
    display: flex;
    margin: 0;
    box-sizing: border-box;
    font-size: calc(12 / var(--base-size) * 100vw);
    gap: 0;
    justify-content: space-between;

    width: calc(164 / var(--base-size) * 100vw);
    padding: calc(15 / var(--base-size) * 100vw)
      calc(12 / var(--base-size) * 100vw) calc(15 / var(--base-size) * 100vw)
      calc(30 / var(--base-size) * 100vw);
  }

  .fv-bottom .header__link--try {
    padding: calc(15 / var(--base-size) * 100vw)
      calc(12 / var(--base-size) * 100vw) calc(15 / var(--base-size) * 100vw)
      calc(18 / var(--base-size) * 100vw);
  }
  .success__slick__prev {
    display: none;
  }

  .success__slick__next {
    display: none;
  }
}

#contact iframe {
  width: 100%;
}

@media (min-width: 768px) {
}

@media screen and (max-width: 450px) {
  .header--with-banner {
    margin-top: 6vh;
  }
  .header--with-atsugi-banner {
    margin-top: 13vh;
  }
}
