@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
}

body {
  color: #444444;
}

body {
  padding-top: env(safe-area-inset-top, 0px);
}

html, body {
  overflow-x: hidden;
}

.is-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .is-pc {
    display: block;
  }
}

.is-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}

main {
  background: #fff;
}

html {
  scroll-padding-top: 100px; /* ← ヘッダー高さ分ずらす */
  scroll-behavior: smooth; /* ← スムーススクロール */
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 180px;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.28vw;
  }
}
@media (min-width: 1250px) {
  html {
    font-size: 16px;
  }
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  max-width: 22.1875rem;
  width: 100%;
  height: 3.75rem;
  position: fixed;
  top: 0.625rem;
  left: 0;
  right: 0;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
  z-index: 1000;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .header {
    max-width: initial;
    width: 97%;
    height: 5.3125rem;
    position: fixed;
    top: 1.25rem;
    background: #fff;
    border-radius: 5px;
    z-index: 999;
  }
}

.header-inner {
  width: 95%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header-inner {
    height: inherit;
    width: 98%;
    margin: 0 auto;
    display: flex;
    align-items: center;
  }
}

.header-logo {
  width: 10.625rem;
}
@media screen and (min-width: 768px) {
  .header-logo {
    width: 17.5rem;
    margin-right: 0.625rem;
  }
}
.header-logo img {
  width: 100%;
  height: auto;
}

.header-info {
  font-size: 0.75rem;
  text-align: center;
  font-weight: 500;
}

.header-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  background: #fff;
  transform: translateX(-20px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.header-nav.open {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .header-nav {
    opacity: 1;
    padding: 0 0.625rem;
    position: static;
    inset: auto;
    width: initial;
    height: initial;
    background: transparent;
    pointer-events: auto;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav {
    width: 40%;
  }
}

.header-nav-lists {
  display: flex;
  flex-direction: column;
  margin: 5rem auto 0;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .header-nav-lists {
    flex-direction: row;
    margin: initial;
    justify-content: end;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav-lists {
    width: 100%;
  }
}

.header-nav-list {
  font-size: 0.84375rem;
  font-weight: 500;
  width: 100%;
  height: 3.375rem;
  position: relative;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #EFEFEF;
}
.header-nav-list::after {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  background: url(../img/common/red-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 768px) {
  .header-nav-list {
    font-size: 0.9375rem;
    font-weight: 500;
    height: initial;
    border: none;
  }
  .header-nav-list::after {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-nav-list:not(:first-child) {
    margin-left: 0.9375rem;
  }
}
@media screen and (min-width: 1440px) {
  .header-nav-list {
    justify-content: center;
  }
}

.header-nav-link {
  white-space: nowrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .header-nav-link {
    width: initial;
  }
}

.header-cta-lists {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-20px);
  background: #EFEFEF;
  height: 4.125rem;
}
.header-cta-lists.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header-cta-lists {
    font-size: 0.875rem;
    display: flex;
    gap: 0.625rem;
    position: static;
    background: transparent;
    justify-content: initial;
    pointer-events: auto;
    opacity: 1;
  }
}

.header-cta-link {
  background: #E82728;
  display: inline-flex;
  align-items: center;
  width: 10.875rem;
  height: 2.875rem;
  border-radius: 5px;
  box-shadow: 0 2px 0 0 rgb(203, 31, 32);
  padding-left: 0.625rem;
  transition: all 0.3s;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .header-cta-link {
    width: 12.5rem;
    height: 2.875rem;
    padding-left: 0.4375rem;
    font-size: 0.875rem;
    justify-content: center;
  }
}
.header-cta-link::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .header-cta-link::after {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.3125rem;
  }
}
.header-cta-link:hover {
  transform: translateY(2px);
  box-shadow: none;
  opacity: 1;
}

.header-cta-link-line {
  background: #00B900;
  display: inline-flex;
  align-items: center;
  width: 10.875rem;
  height: 2.875rem;
  border-radius: 5px;
  box-shadow: 0 2px 0 0 rgb(0, 171, 0);
  transition: all 0.3s;
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .header-cta-link-line {
    background: #00B900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 10rem;
    height: 2.875rem;
    border-radius: 5px;
    box-shadow: 0 2px 0 0 rgb(0, 171, 0);
    transition: all 0.3s;
    font-size: 0.875rem;
    padding-left: initial;
  }
}
.header-cta-link-line::before {
  content: "";
  width: 1.5rem;
  height: 1.375rem;
  background: url(../img/top/line-icon-white.png) no-repeat center center/contain;
  margin-right: 0.3125rem;
}
.header-cta-link-line::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .header-cta-link-line::after {
    display: none;
  }
}
.header-cta-link-line:hover {
  transform: translateY(2px);
  box-shadow: none;
  opacity: 1;
}

.drawer-hamburger {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 768px) {
  .drawer-hamburger {
    display: none;
  }
}

.hamburger-icon {
  width: 2.125rem;
  height: 2.375rem;
  position: relative;
}
.hamburger-icon span {
  display: inline-block;
  width: 2rem;
  height: 0.125rem;
  background: #444444;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition-property: top, transform, opacity;
  transition-duration: 0.25s, 0.25s, 0.2s;
  transition-timing-function: ease, ease, ease;
  transition-delay: 0.2s, 0s, 0s;
}
.hamburger-icon span:nth-child(1) {
  top: 0;
}
.hamburger-icon span:nth-child(2) {
  top: 0.4375rem;
}
.hamburger-icon span:nth-child(3) {
  top: 0.875rem;
}
.hamburger-icon p {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #444444;
}
.hamburger-icon .menu-text {
  display: block;
}
.hamburger-icon .close-text {
  display: none;
}
.hamburger-icon.open span {
  transition-delay: 0s, 0.2s, 0s;
}
.hamburger-icon.open span:nth-child(1) {
  top: 0.4375rem;
  transform: translateX(-50%) rotate(20deg);
}
.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}
.hamburger-icon.open span:nth-child(3) {
  top: 0.4375rem;
  transform: translateX(-50%) rotate(-20deg);
}
.hamburger-icon.open .menu-text {
  display: none;
}
.hamburger-icon.open .close-text {
  display: block;
}

.footer {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .footer {
    padding-top: 5rem;
  }
}

.footer-nav {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .footer-nav {
    max-width: 43.75rem;
    width: 100%;
    flex-direction: column;
  }
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer-nav-list:not(:last-child) {
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-nav-list {
    flex-direction: row;
    justify-content: center;
    gap: 2.5rem;
  }
}

.footer-nav-item {
  font-size: 0.875rem;
  line-height: 1.42;
  font-weight: 500;
}

.footer-logo {
  max-width: 6.875rem;
  width: 100%;
  margin: 3.125rem auto 0;
}
.footer-logo img {
  width: 76.3%;
  margin: 0 auto;
  height: auto;
}
.footer-logo p {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.copyright {
  text-align: center;
  padding: 1.25rem 0 0.625rem;
  font-size: 0.75rem;
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 1.5625rem;
    padding-left: 1.5625rem;
  }
}

:root {
  --cta-h: 66px;
  --sab: calc(env(safe-area-inset-bottom, 0px) + var(--sab-extra, 0px));
}

.floating-cta-lists {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1100;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: calc(var(--cta-h) + max(var(--sab), 0px));
  box-sizing: border-box;
  padding: 12px 0 0;
  background: #EFEFEF;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  padding-bottom: max(env(safe-area-inset-bottom), 12px);
  will-change: transform; /* transformアニメを安定化 */
  backface-visibility: hidden; /* レイヤー分離のヒント */
  /* 保険：下方向に背景を延長（1〜2pxの線も隠す） */
  /* 初期は非表示状態（画面下に隠す＋透明） */
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none; /* クリック無効化 */
  transition: transform 0.45s ease, opacity 0.45s ease;
  /* iPhoneのホームバー対策 */
  padding-bottom: env(safe-area-inset-bottom, 0);
  box-sizing: content-box; /* padding分を高さに含めない */
}
.floating-cta-lists::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -40px;
  height: 40px;
  background: #EFEFEF;
  pointer-events: none;
}
.floating-cta-lists.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
@media screen and (min-width: 768px) {
  .floating-cta-lists {
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
  }
  .floating-cta-lists.active {
    display: none;
  }
}

/* コンテンツ被りを避けるため、CTAが出てる時だけ下余白を確保 */
body {
  /* 下は 0（常時は入れない） */
  padding-top: env(safe-area-inset-top, 0px);
}

body.has-floating-cta {
  /* --sab-extra を足さない（コンテンツリフローを起こしにくくする） */
  padding-bottom: calc(var(--cta-h) + max(env(safe-area-inset-bottom), 0px));
}
@media screen and (min-width: 768px) {
  body.has-floating-cta {
    padding-bottom: 0;
  }
}

/* Lancersアプリでさらにズレる場合の微調整 */
.ua-lancers .floating-cta-lists {
  bottom: -2px;
}

/* 背景の“色差”で線が見えるのを防ぐ */
html, body {
  background: #EFEFEF;
}

.floating-cta-link {
  background: #E82728;
  display: inline-flex;
  align-items: center;
  width: 10.875rem;
  height: 2.875rem;
  border-radius: 5px;
  box-shadow: 0 2px 0 0 rgb(203, 31, 32);
  padding-left: 0.625rem;
  transition: all 0.3s;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .floating-cta-link {
    width: 12.5rem;
    height: 2.875rem;
    padding-left: 0.4375rem;
    font-size: 1rem;
  }
}
.floating-cta-link::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .floating-cta-link::after {
    width: 1.25rem;
    height: 1.25rem;
    margin-left: 0.3125rem;
  }
}
.floating-cta-link:hover {
  transform: translateY(2px);
  box-shadow: none;
  opacity: 1;
}

.floating-cta-link-line {
  background: #00B900;
  display: inline-flex;
  align-items: center;
  width: 10.875rem;
  height: 2.875rem;
  border-radius: 5px;
  box-shadow: 0 2px 0 0 rgb(0, 171, 0);
  transition: all 0.3s;
  font-size: 0.8125rem;
  padding-left: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .floating-cta-link-line {
    background: #00B900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12.5rem;
    height: 2.875rem;
    border-radius: 5px;
    box-shadow: 0 2px 0 0 rgb(0, 171, 0);
    transition: all 0.3s;
    font-size: 1rem;
    padding-left: initial;
  }
}
.floating-cta-link-line::before {
  content: "";
  width: 1.5rem;
  height: 1.375rem;
  background: url(../img/top/line-icon-white.png) no-repeat center center/contain;
  margin-right: 0.3125rem;
}
.floating-cta-link-line::after {
  content: "";
  width: 0.8125rem;
  height: 0.8125rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .floating-cta-link-line::after {
    display: none;
  }
}
.floating-cta-link-line:hover {
  transform: translateY(2px);
  box-shadow: none;
  opacity: 1;
}

.top-bg {
  width: 100%;
}
.top-bg img {
  width: 100%;
  height: auto;
}

#page-support-about {
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  #page-support-about {
    padding-top: 7.5rem;
  }
}

.page-support-about-heading {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.page-support-about-title {
  color: #E82728;
  font-size: 1.5rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #E82728;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .page-support-about-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.page-support-about-title-study {
  letter-spacing: initial;
}
@media screen and (min-width: 768px) {
  .page-support-about-title-study {
    letter-spacing: 0.1em;
  }
}

.page-support-about-sub-title {
  font-size: 1.375rem;
  line-height: 1.75;
  font-weight: 700;
  color: #17499C;
  margin-top: 2.65625rem;
  position: relative;
  text-align: right;
}
.page-support-about-sub-title::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0rem;
  width: 2.5625rem;
  height: 2.75rem;
  background: url(../img/common/search-blue.png) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .page-support-about-sub-title {
    margin-top: 3.03125rem;
    text-align: center;
  }
  .page-support-about-sub-title::before {
    left: 1.875rem;
  }
}

.page-support-about-sub-title-study {
  margin-right: 0.9375rem;
}
.page-support-about-sub-title-study::before {
  left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-support-about-sub-title-study {
    margin-right: 0;
  }
  .page-support-about-sub-title-study:before {
    left: 4.375rem;
  }
}

.page-support-about-text {
  width: 90%;
  margin: 1.25rem auto 0;
  font-size: 1rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page-support-about-text {
    max-width: 68.75rem;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .study-abroad-about {
    max-width: 70rem;
    width: 100%;
  }
}

#page-support {
  padding: 3.875rem 0 0rem;
}
@media screen and (min-width: 768px) {
  #page-support {
    padding: 11.25rem 0 7.5rem;
  }
}

.page-support-heading {
  text-align: center;
}
.page-support-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.page-support-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .page-support-title {
    font-size: 2rem;
    line-height: 1.5;
  }
}

.page-support-container {
  width: 90%;
  margin: 0.8125rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-support-container {
    max-width: 62.5rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}

.page-support-top-title {
  font-size: 1.25rem;
  border-bottom: 1px solid #E82728;
  margin-bottom: 1.25rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .page-support-top-title {
    margin-bottom: 2.375rem;
  }
}
.page-support-top-title:nth-of-type(2) {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .page-support-top-title:nth-of-type(2) {
    margin-top: 2.875rem;
  }
}

.page-support-item {
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-support-item {
    margin-bottom: 1.25rem;
  }
}

.page-support-item-heading {
  display: flex;
  padding: 0.75rem 1.09375rem 0.75rem 0.625rem;
  border-left: 3px solid #E82728;
  background: #F2F2F2;
  position: relative;
}
.page-support-item-heading::after {
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  background: url(../img/common/upper-arrow.png) no-repeat center center/contain;
  position: absolute;
  right: 0.25rem;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.page-support-item-heading.open::after {
  transform: translateY(-50%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .page-support-item-heading {
    align-items: center;
    cursor: pointer;
  }
  .page-support-item-heading::after {
    right: 0.625rem;
  }
}

.page-support-item-body {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .page-support-item-body {
    flex-direction: row;
    align-items: center;
  }
}

.page-support-item-title {
  color: #E82728;
  font-size: 1.25rem;
  font-weight: bold;
}

.num {
  color: #E82728;
  font-size: 1.25rem;
  font-weight: bold;
  margin-right: 0.625rem;
}

.icon {
  display: inline-block;
  width: 2rem;
  height: 1.875rem;
}

.page-support-item-desc {
  color: #444444;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .page-support-item-desc {
    font-size: 0.9375rem;
    margin-left: 1.25rem;
    font-weight: 500;
  }
}

.page-support-item-desc_break {
  display: block;
  width: 100%;
  margin-left: 2.125rem;
  margin-top: 0.625rem;
}

.option-item-heading {
  border-left: initial;
  padding: 0.75rem 1.09375rem 0.75rem 0.625rem;
}
.option-item-heading::after {
  display: none;
}

.star {
  color: #E82728;
  font-size: 1.25rem;
}

.page-support-item-contents {
  padding: 1.25rem 0.9375rem;
}

.page-support-li {
  width: min(100%, 19.0625rem);
  padding-left: 2.125rem;
  margin-bottom: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-support-li {
    width: 100%;
  }
}

.page-support-item-list {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
}
.page-support-item-list::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/check-icon-red.png) no-repeat center center/contain;
  position: absolute;
  left: -1.875rem;
  top: 0.125rem;
}

.page-support-item-text {
  font-size: 0.9375rem;
  line-height: 1.6;
}
.page-support-item-text span {
  font-size: 0.8125rem;
}

.page-support-item-link {
  display: inline-block;
  position: relative;
  padding-right: 1.125rem;
  padding-left: 0.3125rem;
}
.page-support-item-link::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/link-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.page-support-item-link::before {
  content: "";
  width: 7.8125rem;
  height: 0.0625rem;
  background: #444444;
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
}

.page-support-item-app {
  align-items: start;
}

.page-support-item-app-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-support-item-app-content {
    flex-direction: row;
  }
}

.page-support-item-app-image {
  display: inline-block;
  max-width: 12.0625rem;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-support-item-app-image {
    max-width: 10.375rem;
    width: 100%;
  }
}

.page-support-app-name {
  display: flex;
}

.page-support-item-body-app {
  flex-direction: column;
  align-items: start;
}

.page-support-item-desc-app {
  margin-left: 0;
  margin-top: 0.625rem;
}

#page-support-review {
  padding: 3.75rem 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 0), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 25px 25px;
}
@media screen and (min-width: 768px) {
  #page-support-review {
    padding: 5rem 0;
  }
}

.page-support-review-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: #E82728;
}

.page-support-review-text {
  font-size: 1rem;
  line-height: 1.75;
  width: min(90%, 20.9375rem);
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-support-review-text {
    width: initial;
    margin: 2.5rem auto 0;
    text-align: center;
  }
}

.page-support-cta {
  margin-top: 1.25rem;
  text-align: center;
}
.page-support-cta a {
  color: #fff;
  display: inline-flex;
  font-size: 1rem;
  line-height: 1.7;
  background: #E82728;
  border-radius: 100px;
  width: 21rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 2px 0 #CB1F20;
  transition: all 0.3s;
}
.page-support-cta a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.03375rem;
}
.page-support-cta a:hover {
  transform: translateY(2px);
  box-shadow: none;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  .page-support-cta a {
    margin-top: 2.5rem;
  }
}

.page-support-cta2 {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .page-support-cta2 {
    margin-top: 2.5rem;
  }
}

#page-support-faq {
  padding: 3.75rem 0 5rem;
}
@media screen and (min-width: 768px) {
  #page-support-faq {
    padding: 5rem 0 4.625rem;
  }
}

.page-support-faq-heading {
  text-align: center;
}
.page-support-faq-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.page-support-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .page-support-faq-title {
    font-size: 2rem;
  }
}

.page-support-faq-text-top {
  font-size: 1rem;
  line-height: 1.75;
  width: min(90%, 21rem);
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-support-faq-text-top {
    text-align: center;
    width: initial;
    margin: 2.5rem auto 0;
  }
}

.page-support-faq-case {
  width: 90%;
  margin: 0.9375rem auto 0;
  background: rgba(232, 39, 40, 0.05);
  padding: 0.9375rem;
  border-radius: 5px;
  font-size: 1rem;
  line-height: 1.75;
}
.page-support-faq-case ul {
  margin-top: 0.25rem;
}
@media screen and (min-width: 768px) {
  .page-support-faq-case {
    max-width: 31rem;
    width: 100%;
    margin: 1.875rem auto 0;
  }
}

.page-support-faq-case-title {
  font-size: 1rem;
  font-weight: 500;
}

.page-support-faq-list {
  font-size: 0.9375rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.25rem;
}
.page-support-faq-list::before {
  content: "・";
  position: absolute;
  left: 0.1875rem;
}

.page-support-faq-text-bottom {
  font-size: 1rem;
  width: min(90%, 21rem);
  line-height: 1.75;
  margin: 0.9375rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-support-faq-text-bottom {
    margin: 1.875rem auto 0;
    text-align: center;
    width: initial;
  }
}

.pagination {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.page-numbers {
  font-size: 1.125rem;
  font-weight: 500;
  width: 2.6875rem;
  height: 2.8125rem;
  border: 1px solid #E82728;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
.page-numbers.current {
  background: #E82728;
  color: #fff;
}
.page-numbers.next {
  width: 4.25rem;
}
.page-numbers.prev {
  width: 4.25rem;
}

.mv {
  position: relative;
}
.mv-text-wrap {
  text-align: center;
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}

.mv-text {
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.08em;
  color: #17499c;
  position: relative;
}
.mv-text::before {
  content: "";
  max-width: 14.3125rem;
  width: 100%;
  height: 1px;
  background: #17499c;
  position: absolute;
  top: -5%;
  left: 50%;
  transform: translateX(-50%);
}
.mv-text::after {
  content: "";
  max-width: 14.3125rem;
  width: 100%;
  height: 1px;
  background: #17499c;
  position: absolute;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .mv-text {
    font-size: 2rem;
  }
  .mv-text::before {
    max-width: 26.125rem;
    top: 0%;
  }
  .mv-text::after {
    max-width: 26.125rem;
  }
}

.mv-sub-title {
  font-size: 1.75rem;
  font-weight: bold;
  text-shadow: 0 0 6px #fff;
  line-height: 1;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .mv-sub-title {
    font-size: 3.125rem;
    text-shadow: 0 0 10px #fff;
    margin-top: 1.3125rem;
  }
}

.mv-title {
  font-size: 2.25rem;
  font-weight: 900;
  color: #E82728;
  text-shadow: 0 0 4px #fff;
  line-height: 1;
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .mv-title {
    font-size: 5.625rem;
    text-shadow: 0 0 10px #fff;
    margin-top: 1.875rem;
  }
}

.mv-badge-wrap {
  display: flex;
  gap: 1.875rem;
  position: absolute;
  bottom: -4.0625rem;
  left: 50%;
  transform: translateX(-50%);
  max-width: 17.6875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mv-badge-wrap {
    gap: 3.25rem;
    max-width: initial;
    width: initial;
    bottom: -6.25rem;
  }
}

.mv-badge-image {
  max-width: 7.875rem;
  width: 100%;
}
.mv-badge-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .mv-badge-image {
    max-width: 13.9375rem;
  }
}

.swiper1 {
  width: 90%;
  margin: 5rem auto 0;
}
@media screen and (min-width: 768px) {
  .swiper1 {
    max-width: 69.375rem;
    width: 100%;
    margin: 10.125rem auto 0;
    overflow: hidden;
  }
}

@media screen and (min-width: 768px) {
  .banner-slide {
    width: 100%;
  }
}

.bannar-container {
  position: relative;
}

.swiper1-pagination {
  bottom: -15px !important;
}

.swiper1-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #999999 !important;
}

#support {
  padding: 1.25rem 0 2.1875rem;
}
@media screen and (min-width: 768px) {
  #support {
    padding: 6.25rem 0;
  }
}

.section-heading {
  text-align: center;
}

.support-sub-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #17499c;
  position: relative;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.support-sub-title:after {
  content: "";
  width: 12.25rem;
  height: 1px;
  background: #17499c;
  position: absolute;
  bottom: 1px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .support-sub-title {
    font-size: 1.875rem;
  }
  .support-sub-title::after {
    width: 18.375rem;
  }
}

.support-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #E82728;
  letter-spacing: 0.1em;
}
.support-title span {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .support-title {
    font-size: 2.5rem;
  }
  .support-title span {
    font-size: 2rem;
  }
}

.support-container {
  max-width: 58.75rem;
  width: 90%;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.875rem;
}
@media screen and (min-width: 768px) {
  .support-container {
    flex-direction: row;
    width: 100%;
    gap: initial;
  }
}

.support-item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .support-item {
    width: 45.7%;
  }
}

.support-item-image {
  width: 100%;
}
.support-item-image img {
  width: 100%;
  height: auto;
}

.support-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #E82728;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 0.9375rem;
  line-height: 1.7;
}
@media screen and (min-width: 768px) {
  .support-item-title {
    font-size: 1.75rem;
  }
}

.support-item-text {
  line-height: 1.7;
  margin-top: 0.625rem;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .support-item-text {
    font-size: 1rem;
  }
}

.support-item-strengths-list {
  border: 2px solid #f5a8a9;
  border-radius: 5px;
  padding: 0.875rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support-item-strengths-list {
    padding: 1.25rem;
  }
}

.support-item-strengths {
  position: relative;
  letter-spacing: 0.03em;
  font-weight: 500;
  padding-left: 1.4375rem;
  font-size: 0.875rem;
}
.support-item-strengths::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/check-icon-red.png) no-repeat center center/contain;
}
.support-item-strengths:not(:last-child) {
  margin-bottom: 1rem;
}
.support-item-strengths:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background-image: repeating-linear-gradient(to right, #cccccc 0 2px, transparent 2px 4px);
}
@media screen and (min-width: 768px) {
  .support-item-strengths {
    font-size: 1rem;
  }
  .support-item-strengths:not(:last-child) {
    margin-bottom: 1.875rem;
  }
  .support-item-strengths:not(:last-child)::after {
    bottom: -15px;
  }
}

.support-item-link {
  margin-top: 1.875rem;
  display: flex;
  justify-content: center;
}
.support-item-link a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 20.9375rem;
  height: 3.25rem;
  background: #E82728;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 0 #CB1F20;
  padding-left: 2.5rem;
  transition: all 0.3s;
}
.support-item-link a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}
.support-item-link a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .support-item-link {
    margin-top: 2.5rem;
  }
}

#reason {
  background: rgba(232, 39, 40, 0.05);
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  #reason {
    padding: 7.5rem 0;
  }
}

.reason-heading {
  text-align: center;
}
.reason-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.reason-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .reason-title {
    font-size: 2rem;
  }
}

.reason-sub-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .reason-sub-title {
    font-size: 2rem;
  }
}

.reason-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 3.9375rem auto 0;
  gap: 2.6875rem;
}
@media screen and (min-width: 768px) {
  .reason-container {
    flex-direction: row;
    max-width: 73.375rem;
    padding: 0 1.25rem;
    width: 100%;
    margin: 5.1875rem auto 0;
    gap: initial;
  }
}

.reason-item {
  width: 100%;
  padding: 1.875rem 0.9375rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  position: relative;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .reason-item {
    width: 32.2%;
    padding: 2.5rem 1.875rem;
  }
}

.reason-num {
  font-family: "Poppins", sans-serif;
  font-size: 3.125rem;
  font-weight: 600;
  color: #E82728;
  line-height: 1.7;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -7.5%;
}
@media screen and (min-width: 768px) {
  .reason-num {
    top: -7%;
  }
}

.reason-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.05em;
  text-align: center;
  color: #17499C;
}

.reason-item-image1 {
  max-width: 13.75rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
.reason-item-image1 img {
  width: 100%;
  height: auto;
}

.reason-item-image2 {
  max-width: 19.375rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
.reason-item-image2 img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.reason-item-image3 {
  max-width: 10.8125rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
.reason-item-image3 img {
  height: auto;
}

.reason-item-merit {
  max-width: 18.5625rem;
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 2.0625rem auto 0;
}

.reason-item-merit-content {
  width: 48.8%;
  position: relative;
  background: rgba(23, 73, 156, 0.1);
  border-radius: 5px;
  font-size: 0.9375rem;
  text-align: center;
  padding: 0.625rem 0;
  font-weight: 500;
  line-height: 1.4;
}
.reason-item-merit-content span {
  color: #E82728;
}
.reason-item-merit-content::before {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/top/check-icon-blue.png) no-repeat center center/contain;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -0.8125rem;
}

.reason-item-text {
  margin-top: 1.25rem;
  line-height: 1.7;
}

#supporter {
  padding: 4.3125rem 0 3.0625rem;
}
@media screen and (min-width: 768px) {
  #supporter {
    padding: 7.5rem 0 6.25rem;
  }
}

.supporter-heading {
  text-align: center;
}
.supporter-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.supporter-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
.supporter-title span {
  color: #444444;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .supporter-title {
    font-size: 2rem;
  }
  .supporter-title span {
    font-size: 2rem;
  }
}

.supporter-container {
  width: 90%;
  margin: 1.25rem auto 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .supporter-container {
    max-width: 55rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}

.supporter-item {
  width: 100%;
  margin-bottom: 0.9375rem;
  padding: 1.25rem;
  border: 1px solid #E82728;
  border-radius: 5px;
}
@media screen and (min-width: 768px) {
  .supporter-item {
    width: calc(50% - 20px);
    margin-right: 40px;
    margin-bottom: 1.25rem;
  }
  .supporter-item:nth-child(2n) {
    margin-right: 0;
  }
}

.supporter-image {
  width: 100%;
}
.supporter-image img {
  width: 100%;
  height: auto;
}

.supporter-cat {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 1.25rem;
}

.supporter-tag {
  font-size: 0.875rem;
  line-height: 1.4;
  background: #E9ECEF;
  border: 1px solid rgba(68, 68, 68, 0.3);
  border-radius: 100px;
  padding: 0 0.375rem;
}

.tag-red {
  background: rgba(232, 39, 40, 0.1);
  border: 1px solid rgba(232, 39, 40, 0.3);
}

.supporter-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 0.625rem;
}
.supporter-name span {
  font-size: 0.9375rem;
}

.supporter-text {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .supporter-text {
    font-size: 1rem;
  }
}

#type {
  padding: 3.0625rem 0 3.125rem;
  background: rgba(90, 152, 255, 0.1);
}
@media screen and (min-width: 768px) {
  #type {
    padding: 7.5rem 0 6.25rem;
  }
}

.type-heading {
  text-align: center;
}
.type-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.type-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
.type-title span {
  color: #444444;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .type-title {
    font-size: 2rem;
  }
  .type-title span {
    font-size: 2rem;
  }
}

.type-container {
  width: 90%;
  margin: 1.625rem auto 0;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .type-container {
    max-width: 39.0625rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}

.type-item {
  background: #fff;
  width: calc(50% - 4px);
  margin-right: 8px;
  margin-bottom: 0.5rem;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
}
.type-item:nth-child(2n) {
  margin-right: 0;
}
@media screen and (min-width: 768px) {
  .type-item {
    width: calc(50% - 12.5px);
    margin-right: 25px;
    margin-bottom: 1.5625rem;
  }
}

.type-image {
  width: 100%;
}
.type-image img {
  width: 100%;
  height: auto;
}

.type-item-title {
  background: #E82728;
  color: #fff;
  height: 1.9375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .type-item-title {
    height: 3.1875rem;
  }
}

#features {
  padding: 3.125rem 0;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 0), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 25px 25px;
}
@media screen and (min-width: 768px) {
  #features {
    padding: 7.5rem 0;
    background-size: 20px 20px;
  }
}

.features-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
.features-title span {
  color: #444444;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .features-title {
    font-size: 2rem;
  }
  .features-title span {
    font-size: 2rem;
  }
}

.features-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .features-container {
    flex-direction: row;
    max-width: 60.4375rem;
    width: 100%;
  }
}

.features-wrapper {
  width: 100%;
  margin-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .features-wrapper {
    width: calc(50% - 30px);
    margin-right: 60px;
  }
  .features-wrapper:nth-child(2n) {
    margin-right: 0;
  }
}

.region-choice-title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7;
  position: relative;
  padding-left: 2.125rem;
  border-bottom: 1px solid #E82728;
}
.region-choice-title::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/top/region-icon.png) no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .region-choice-title {
    font-size: 1.25rem;
  }
}

.features-choice-title {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.7;
  position: relative;
  padding-left: 2.125rem;
  border-bottom: 1px solid #E82728;
}
.features-choice-title::before {
  content: "";
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/top/feature-icon.png) no-repeat center center/contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .features-choice-title {
    font-size: 1.25rem;
  }
}

.features-choice-lists {
  display: flex;
  flex-wrap: wrap;
  margin-top: 0.625rem;
}

.features-choice-item {
  width: calc(50% - 6.5px);
  margin-right: 13px;
  margin-bottom: 0.8125rem;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.15);
  transition: all 0.3s;
}
.features-choice-item:nth-child(2n) {
  margin-right: 0;
}
.features-choice-item:hover {
  transform: translateY(1px);
  opacity: 1;
  box-shadow: none;
}

.features-choice-image {
  width: 100%;
  border-radius: 5px 5px 0 0;
}
.features-choice-image img {
  width: 100%;
  height: auto;
  border-radius: 5px 5px 0 0;
}

.features-choice-item-title {
  background: #fff;
  height: 2.0625rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 700;
  border-radius: 0 0 5px 5px;
}
@media screen and (min-width: 768px) {
  .features-choice-item-title {
    height: 2.1875rem;
    font-size: 1.125rem;
  }
}

#search {
  background: #FCE9E9;
  position: relative;
  padding-bottom: 2.5rem;
}
#search::before {
  content: "";
  width: 10.125rem;
  height: 3.75rem;
  background: url(../img/top/search-circle.png) no-repeat center center/cover;
  position: absolute;
  top: -3.75rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  #search {
    padding-bottom: 5rem;
  }
  #search::before {
    width: 21.875rem;
    height: 7.5625rem;
    top: -7.5625rem;
  }
}

.search-icon {
  width: 2.75rem;
  height: 3rem;
  position: absolute;
  top: -1.25rem;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .search-icon {
    width: 5rem;
    height: 5.5rem;
    top: -2.5rem;
  }
}
.search-icon img {
  width: 100%;
  height: auto;
}

.search-section-heading {
  padding-top: 3.125rem;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .search-section-heading {
    padding-top: 5rem;
  }
}

.search-sub-title {
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E82728;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
  padding-bottom: 0.5625rem;
}
.search-sub-title span {
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .search-sub-title {
    font-size: 2rem;
  }
}

.search-title {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #E82728;
  margin-top: 1rem;
  line-height: 1;
  padding-bottom: 0.5625rem;
}
@media screen and (min-width: 768px) {
  .search-title {
    font-size: 2rem;
  }
}

.search-info {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1.25rem;
  text-align: center;
}

.search-item {
  width: 90%;
  margin: 1.25rem auto;
}
@media screen and (min-width: 768px) {
  .search-item {
    max-width: 25rem;
    width: 100%;
  }
}

.search-image {
  width: 100%;
}
.search-image img {
  width: 100%;
  height: auto;
}

.search-link {
  text-align: center;
  margin-top: 1.25rem;
}
.search-link a {
  display: inline-flex;
  width: 20.9375rem;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  background: #E82728;
  color: #fff;
  position: relative;
  border-radius: 100px;
  box-shadow: 0 2px 0 #CB1F20;
  transition: all 0.3s;
}
.search-link a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  right: 1.5rem;
}
.search-link a:hover {
  opacity: 1;
  transform: translateY(2px);
  box-shadow: none;
}

#experience {
  padding: 3.75rem 0 3.3125rem;
  background: linear-gradient(-160deg, #FF565B 0%, #E31E24 100%);
  position: relative;
}
@media screen and (min-width: 768px) {
  #experience {
    padding: 6.25rem 0 8.75rem;
  }
}

.experience-heading {
  text-align: center;
}

.experience-title {
  color: #fff;
  font-size: 1.75rem;
  font-weight: bold;
  line-height: 1.5;
}
.experience-title span {
  color: #E82728;
  background: #fff;
  margin: 0 0.5625rem;
  padding-right: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .experience-title {
    font-size: 2rem;
  }
}

.experience-slider {
  width: 80%;
  margin: 2.5rem auto 0;
  position: relative;
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  .experience-slider {
    max-width: 60.625rem;
    width: 100%;
  }
}

.swiper2 {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .swiper2 {
    max-width: 60.625rem !important;
    width: 100%;
  }
}

.experience-item {
  background: #fff;
}

.experience-item-image {
  width: 100%;
  height: 13rem;
}
.experience-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.experience-item-content {
  padding: 1.25rem;
}

.experience-item-tag {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.4;
  border-radius: 100px;
  background: rgba(232, 39, 40, 0.1);
  border: 1px solid rgba(232, 39, 40, 0.3);
  padding: 0 0.375rem;
}

.experience-item-name {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.28;
  margin-top: 0.3125rem;
}

.experience-item-school {
  line-height: 1.7;
  margin-top: 0.9375rem;
}

.experience-item-title {
  font-weight: 700;
  line-height: 1.7;
  margin-top: 0.3125rem;
}

.swiper2-button-prev,
.swiper2-button-next {
  height: 50px;
  width: 20px;
}

.swiper2-button-prev {
  left: -10% !important;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .swiper2-button-prev {
    left: -5% !important;
  }
}

.swiper2-button-next {
  right: -8% !important;
  color: transparent;
}
@media screen and (min-width: 768px) {
  .swiper2-button-next {
    right: -5% !important;
  }
}

/* 前への矢印カスタマイズ */
.swiper2-button-prev::after {
  background: url(../img/top/prev-arrow.png);
}

/* 次への矢印カスタマイズ */
.swiper2-button-next::after {
  background: url(../img/top/next-arrow.png);
}

/* 前へ次への矢印カスタマイズ */
.swiper2-button-prev::after,
.swiper2-button-next::after {
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 50px;
  margin: auto;
  width: 50px;
}

.swiper2-pagination {
  bottom: 0px !important;
}

.swiper2-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff !important;
}

.experience-bg-dot {
  max-width: 7.4375rem;
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .experience-bg-dot {
    max-width: 18.25rem;
    width: 100%;
  }
}
.experience-bg-dot img {
  width: 100%;
  height: auto;
}

.experience-bg-wave {
  max-width: 3.5rem;
  width: 100%;
  position: absolute;
  bottom: 1.0625rem;
  left: 0;
}
@media screen and (min-width: 768px) {
  .experience-bg-wave {
    max-width: 8.1875rem;
    width: 100%;
    bottom: 0;
  }
}
.experience-bg-wave img {
  width: 100%;
  height: auto;
}

#cta {
  position: relative;
}

.cta-container {
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .cta-container {
    flex-direction: row;
    max-width: 73.75rem;
    width: 100%;
    gap: initial;
  }
}

.cta-item {
  width: 100%;
  padding: 0.9375rem;
  background: #fff;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .cta-item {
    width: 32.2%;
    padding: 1.875rem 1.25rem;
  }
}

.cta-heading {
  display: flex;
}

.cta-icon {
  width: 17%;
}
.cta-icon img {
  width: 100%;
  height: auto;
}

.cta-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .cta-title {
    font-size: 1.25rem;
  }
}

.cta-text-box {
  margin: 0.5625rem auto 0;
  line-height: 1.7;
  flex-grow: 1;
  width: 95%;
  font-size: 0.875rem;
}
.cta-text-box.small {
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .cta-text-box {
    font-size: 1rem;
    margin: 1.25rem auto 0;
  }
}

.cta-text span {
  color: #E82728;
}

.cta-button {
  text-align: center;
  margin-top: 0.5rem;
}
.cta-button a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  max-width: 18.75rem;
  width: 100%;
  height: 3.25rem;
  border-radius: 100px;
  transition: all 0.3s;
}

.cta-button-line a {
  background: #00B900;
  box-shadow: 0 2px 0 rgb(0, 171, 0);
  position: relative;
}
.cta-button-line a::before {
  content: "";
  width: 1.8125rem;
  height: 1.6875rem;
  background: url(../img/top/line-icon-white.png) no-repeat center center/contain;
  margin-right: 0.5rem;
}
.cta-button-line a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}

.cta-button-conslutation a {
  background: #E82728;
  box-shadow: 0 2px 0 rgb(203, 31, 32);
  position: relative;
}
.cta-button-conslutation a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 0.625rem;
}
.cta-button-conslutation a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}

.cta-button-materials a {
  background: #E82728;
  box-shadow: 0 2px 0 rgb(203, 31, 32);
  position: relative;
}
.cta-button-materials a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 52%;
  transform: translateY(-50%);
  right: 1.25rem;
}
.cta-button-materials a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}

#faq {
  padding: 3.125rem 0 3.0625rem;
}
@media screen and (min-width: 768px) {
  #faq {
    padding: 7.5rem 0 9.8125rem;
  }
}

.faq-heading {
  text-align: center;
}
.faq-heading span {
  font-family: "Poppins", sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #6c757d;
  letter-spacing: 0.03em;
}

.faq-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
.faq-title span {
  color: #444444;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .faq-title {
    font-size: 2rem;
  }
  .faq-title span {
    font-size: 2rem;
  }
}

.faq-container {
  width: 90%;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .faq-container {
    max-width: 50rem;
    width: 100%;
  }
}

.faq-item {
  border-bottom: 1px solid #cacaca;
}
.faq-item:first-child {
  border-top: 1px solid #cacaca;
}

.faq-q {
  display: flex;
  align-items: center;
  padding: 1.7875rem 0;
  position: relative;
  z-index: 2;
}
.faq-q-icon {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: "Poppins", sans-serif;
  background: #E82728;
  color: #fff;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.625rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .faq-q-icon {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
  }
}

.faq-q-title {
  display: flex;
  align-items: center;
}

.faq-icon {
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  margin-left: auto;
  margin-right: 0.75rem;
}
.faq-icon span {
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  background: #cacaca;
  transition: all 0.3s;
}
.faq-icon span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.faq-icon span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: -0.0625rem;
  transform: rotate(90deg) translateY(-50%);
}

.faq-icon.open span:nth-child(2) {
  transform: rotate(0deg) translateY(-50%);
}

.faq-a {
  display: none;
  position: relative;
  z-index: 1;
  padding: 1.7875rem 0;
}

.faq-a-icon {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #E82728;
  border: 1px solid #E82728;
  flex-shrink: 0;
  height: 1.875rem;
  width: 1.875rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .faq-a-icon {
    font-size: 1.5rem;
    flex: 0 0 2rem;
    height: 2rem;
  }
}

.faq-a-text {
  display: flex;
}

.faq-more-link {
  margin-top: 0.625rem;
  line-height: 1.7;
  position: relative;
  text-align: right;
  margin-right: 1.5rem;
}
.faq-more-link::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/top/more-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.faq-cta-link {
  text-align: center;
  margin-top: 1.875rem;
}
.faq-cta-link a {
  display: inline-flex;
  max-width: 18.75rem;
  width: 100%;
  height: 3.25rem;
  align-items: center;
  justify-content: center;
  background: #00c300;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 0 #00AB00;
  transition: all 0.3s;
}
.faq-cta-link a:before {
  content: "";
  width: 1.8125rem;
  height: 1.6875rem;
  background: url(../img/top/line-icon-white.png) no-repeat center center/contain;
  margin-right: 0.6875rem;
}
.faq-cta-link a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}

#news {
  background: #F6F6F6;
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  #news {
    padding: 7.5rem 0;
  }
}

.news-title {
  text-align: center;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
.news-title span {
  color: #444444;
  font-size: 1.75rem;
}
@media screen and (min-width: 768px) {
  .news-title {
    font-size: 2rem;
  }
  .news-title span {
    font-size: 2rem;
  }
}

.news-item-container {
  width: 90%;
  margin: 1.25rem auto 0;
}
.news-item-container:not(:last-child) {
  border-bottom: 1px solid #CACACA;
  padding-bottom: 2.5rem;
  margin-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .news-item-container {
    max-width: 50rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
  .news-item-container:not(:last-child) {
    padding-bottom: 5rem;
    margin-bottom: 5rem;
  }
}

.news-item {
  display: flex;
  justify-content: space-between;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-item {
    padding-bottom: 1.875rem;
  }
}
.news-item + .news-item {
  padding-top: 0.625rem;
  border-top: 1px solid #CACACA;
}
@media screen and (min-width: 768px) {
  .news-item + .news-item {
    padding-top: 1.875rem;
  }
}

.news-item-image {
  width: 32.8%;
  height: 6.875rem;
}
.news-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .news-item-image {
    width: 25%;
    height: 12.5rem;
  }
}

.news-item-contents {
  width: 65%;
}
@media screen and (min-width: 768px) {
  .news-item-contents {
    width: 67.5%;
  }
}

.news-item-date {
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #9F9F9F;
  letter-spacing: 0.05em;
}

.news-item-title {
  font-size: 0.875rem;
  line-height: 1.7;
  letter-spacing: 0.02em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .news-item-title {
    font-size: 1rem;
  }
}

.news-item-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.028em;
  margin-top: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .news-item-text {
    font-size: 0.9375rem;
    margin-top: 0.625rem;
  }
}

.news-item-category {
  margin-top: 0.625rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .news-item-category {
    margin-top: 1.25rem;
  }
}

.new-item-tag {
  font-size: 0.625rem;
  font-weight: 500;
  color: #17499C;
  background: #D0DAEB;
  border-radius: 100px;
  padding: 0 0.375rem;
}
@media screen and (min-width: 768px) {
  .new-item-tag {
    font-size: 0.8125rem;
  }
}

.news-item-link {
  margin-top: 1.25rem;
  text-align: center;
}
.news-item-link a {
  display: inline-flex;
  max-width: 20.9375rem;
  width: 100%;
  height: 2.9375rem;
  align-items: center;
  justify-content: center;
  background: #E82728;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 3px 0 #CB1F20;
  transition: all 0.3s;
}
.news-item-link a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  margin-left: 0.625rem;
}
.news-item-link a:hover {
  transform: translateY(3px);
  opacity: 1;
  box-shadow: none;
}
@media screen and (min-width: 768px) {
  .news-item-link {
    margin-top: 2.5rem;
  }
}

#support-achievements {
  padding: 2.5rem 0 1.875rem;
  background: rgba(90, 152, 255, 0.05);
}
@media screen and (min-width: 768px) {
  #support-achievements {
    padding: 6.25rem 0 2rem;
  }
}

.support-achievements-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #17499C;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support-achievements-title {
    font-size: 2rem;
  }
}

.support-achievements-inner {
  width: 90%;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .support-achievements-inner {
    max-width: 68.75rem;
    width: 100%;
  }
}

.support-achievements-text {
  font-size: 1rem;
  line-height: 1.75;
}

.support-achievements-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support-achievements-container {
    flex-direction: row;
  }
}

.support-achievements-item {
  width: 100%;
  background: #fff;
  padding: 1rem 0.625rem;
  border-radius: 15px;
  margin-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .support-achievements-item {
    width: calc(50% - 20px);
    margin-right: 40px;
    padding: 2.5rem 1.875rem;
    margin-bottom: 1.25rem;
  }
  .support-achievements-item:nth-child(2n) {
    margin-right: 0;
  }
}

.support-achievements-item-title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.support-achievements-subtitle {
  font-size: 1.125rem;
  line-height: 1.5;
}

.support-achievements-link {
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
  margin-top: 1.0625rem;
}
.support-achievements-link::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/link-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.4375rem;
}
.support-achievements-link::before {
  content: "";
  width: 8.4375rem;
  height: 0.0625rem;
  background: #444444;
  position: absolute;
  bottom: -0.1875rem;
  left: 0;
}

#page-support-flow {
  padding-top: 3.0625rem;
}
@media screen and (min-width: 768px) {
  #page-support-flow {
    padding-top: 7.5rem;
  }
}

.page-support-flow-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #E82728;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-support-flow-title {
    font-size: 2rem;
  }
}

.page-support-flow-image {
  max-width: 16.9375rem;
  width: 100%;
  margin: 1.25rem auto 0;
}
.page-support-flow-image img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .page-support-flow-image {
    max-width: 63.3125rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}

.page-support-flow-info {
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 1.25rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}

.page-support-flow-text {
  font-size: 0.875rem;
  line-height: 1.75;
}
@media screen and (min-width: 768px) {
  .page-support-flow-text {
    margin-top: 1.25rem;
  }
}

#page-support-price {
  padding: 3.75rem 0;
}
@media screen and (min-width: 768px) {
  #page-support-price {
    padding: 7.5rem 0;
  }
}

.page-support-price-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  color: #E82728;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-support-price-title {
    font-size: 2rem;
  }
}

.page-support-price-wrapper {
  width: 90%;
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-support-price-wrapper {
    max-width: 50.0625rem;
    width: 100%;
  }
}

.support-price-heading {
  font-size: 1.25rem;
  font-weight: 500;
  border-bottom: 1px solid #E82728;
}

.support-price-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-top: 1rem;
  margin-bottom: 0.625rem;
}

.page-support-price-item:nth-child(1) .support-price-title {
  margin-top: 1.25rem;
}
.page-support-price-item:nth-child(2) .support-price-title {
  font-size: 1rem;
}
.page-support-price-item:not(:last-child) {
  margin-bottom: 2.5rem;
}

.support-price-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.support-price-table tr {
  height: 2.75rem;
}
.support-price-table th {
  background: #FEF4F4;
  border: 1px solid #DDDDDD;
  font-weight: 500;
  width: 54%;
}
@media screen and (min-width: 768px) {
  .support-price-table th {
    width: 50%;
    padding: 0.3125rem 0.625rem;
  }
}
.support-price-table td {
  border: 1px solid #DDDDDD;
  width: 45.6%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .support-price-table td {
    text-align: right;
    padding-right: 0.625rem;
    width: 50%;
  }
}

.support-price-lists {
  margin-top: 0.3125rem;
}

.support-price-list {
  font-size: 1rem;
  line-height: 1.75;
  padding-left: 1.25rem;
  position: relative;
}
.support-price-list::before {
  content: "・";
  position: absolute;
  left: 0.1875rem;
}

.support-price-info {
  font-size: 0.875rem;
  line-height: 1.5;
  margin-top: 0.3125rem;
}

.support-price-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 1rem;
}

.support-price-text-link {
  display: inline-block;
  position: relative;
  padding-right: 1.125rem;
  padding-left: 0.1875rem;
}
.support-price-text-link::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/link-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.support-price-text-link::before {
  content: "";
  width: 8.4375rem;
  height: 0.0625rem;
  background: #444444;
  position: absolute;
  bottom: -0.0625rem;
  left: 0;
}

#type-reason {
  padding: 2.5rem 0 3.5625rem;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.03) 1px, transparent 0), linear-gradient(to bottom, rgba(0, 0, 0, 0.03) 1px, transparent 0);
  background-size: 25px 25px;
}
@media screen and (min-width: 768px) {
  #type-reason {
    padding: 7.5rem 0;
    background-size: 20px 20px;
  }
}

.type-reason-heading {
  text-align: center;
}

.type-reason-title {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #17499C;
  border-bottom: 1px solid #17499C;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .type-reason-title {
    font-size: 1.75rem;
    border-bottom: none;
  }
}

.type-reason-subtitle {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .type-reason-subtitle {
    font-size: 2rem;
  }
}

.type-reason-container {
  width: min(100%, 20.9375rem);
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .type-reason-container {
    max-width: 68.75rem;
    width: 100%;
    flex-direction: row;
  }
}

.type-reason-item {
  width: 100%;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 768px) {
  .type-reason-item {
    width: 30.4%;
    margin-bottom: 0;
  }
}

.type-reason-item-image {
  width: 100%;
  height: 11.1875rem;
}
.type-reason-item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.type-reason-item-heading {
  line-height: 1.75;
  font-weight: 700;
  color: #17499C;
  text-align: center;
  margin-top: 0.625rem;
}

.type-reason-item-title {
  font-size: 1.5rem;
}

.type-reason-item-text {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 0.625rem;
  text-align: left;
}

#type-faq {
  padding: 3.125rem 0 2.5625rem;
}
@media screen and (min-width: 768px) {
  #type-faq {
    padding: 7.5rem 0;
  }
}

.type-faq-heading {
  text-align: center;
}

.type-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}
.type-faq-title span {
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .type-faq-title {
    font-size: 2rem;
  }
}

.type-faq-q {
  padding: 1.75rem 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .type-faq-q {
    padding: 1.575625rem 0 1.611875rem;
  }
}

.type-faq-q-title {
  align-items: start;
}
@media screen and (min-width: 768px) {
  .type-faq-q-title {
    align-items: center;
  }
}

.type-faq-q-icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .type-faq-q-icon {
    width: 2rem;
    height: 2rem;
  }
}

.type-faq-a-icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media screen and (min-width: 768px) {
  .type-faq-a-icon {
    width: 2rem;
    height: 2rem;
  }
}

.type-faq-a {
  padding: 0 0 1.75rem;
}
@media screen and (min-width: 768px) {
  .type-faq-a {
    padding: 0.9375rem 0;
  }
}

.type-faq-a-text {
  padding-right: 3.125rem;
}
@media screen and (min-width: 768px) {
  .type-faq-a-text {
    align-items: center;
  }
}

#type-school {
  padding: 2.25rem 0 3.75rem;
  background: rgba(232, 39, 40, 0.05);
}
@media screen and (min-width: 768px) {
  #type-school {
    padding: 7.5rem 0;
  }
}

.type-school-heading {
  text-align: center;
}

.type-school-title {
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.5;
}
.type-school-title span {
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .type-school-title {
    font-size: 2rem;
  }
}

.type-school-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: min(90%, 21rem);
  margin: 2.5rem auto 0;
}
@media screen and (min-width: 768px) {
  .type-school-container {
    flex-direction: row;
    max-width: 73.125rem;
    width: 100%;
  }
}

.type-school-item {
  width: 100%;
}
.type-school-item:not(:last-child) {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #444444;
}
.type-school-item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .type-school-item {
    width: 33.3%;
    margin-bottom: 1.875rem;
    border-right: 1px solid #444444;
  }
  .type-school-item:nth-child(3n+1) {
    padding-right: 1.875rem;
  }
  .type-school-item:nth-child(3n+2) {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .type-school-item:nth-child(3n+3) {
    padding-left: 1.875rem;
    border-right: none;
  }
  .type-school-item:not(:last-child) {
    padding-bottom: initial;
    border-bottom: none;
  }
  .type-school-item:not(:first-child) {
    margin-top: 0;
  }
}

.type-school-item-heading {
  color: #17499C;
}

.type-school-item-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
}

.type-school-item-text {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 0.625rem;
}

.type-shool-item-image {
  width: 100%;
  height: 11.75rem;
  margin-top: 0.625rem;
}
.type-shool-item-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 11.75rem;
}

.type-school-item-data {
  margin-top: 0.9375rem;
}

.type-item-school-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.type-school-meta {
  font-size: 0.875rem;
  padding-left: 1.375rem;
}
.type-school-meta::before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.type-school-meta:not(:first-of-type) {
  margin-top: 0.625rem;
}

.type-school-item-place {
  position: relative;
}
.type-school-item-place::before {
  background: url(../img/common/map-icon.png) no-repeat center center/contain;
  position: absolute;
}

.type-school-item-japanese {
  position: relative;
}
.type-school-item-japanese::before {
  background: url(../img/common/human-icon.png) no-repeat center center/contain;
  position: absolute;
}

.type-school-item-scale {
  position: relative;
}
.type-school-item-scale::before {
  background: url(../img/common/school-icon.png) no-repeat center center/contain;
  position: absolute;
}

.type-school-item-cost {
  position: relative;
}
.type-school-item-cost::before {
  background: url(../img/common/yen-icon.png) no-repeat center center/contain;
  position: absolute;
}

.type-school-item-categories {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.type-school-item-category {
  font-size: 0.875rem;
  line-height: 1.4;
  border: 1px solid rgba(232, 39, 40, 0.3);
  background: rgba(232, 39, 40, 0.1);
  padding: 0 0.375rem;
  border-radius: 100px;
}

.type-school-item-link {
  margin-top: 1.3125rem;
  text-align: right;
  margin-right: 1.5rem;
}
.type-school-item-link a {
  display: inline-block;
  font-size: 1rem;
  position: relative;
  line-height: 1.7;
}
.type-school-item-link a::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/solid-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.5rem;
}

.type-school-link {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.type-school-link a {
  font-size: 1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  height: 3.25rem;
  background: #E82728;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 0 #CB1F20;
  transition: all 0.3s;
}
.type-school-link a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}
.type-school-link a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .type-school-link {
    margin-top: 2.5rem;
  }
}

#school-detail {
  padding: 5.625rem 0 3.75rem;
}
@media screen and (min-width: 768px) {
  #school-detail {
    padding: 12.8125rem 0 11.25rem;
  }
}

.school-detail-content {
  width: min(90%, 20.9375rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .school-detail-content {
    max-width: 50rem;
    width: 100%;
  }
}

.school-detail-image {
  width: 100%;
  height: 11.75rem;
}
.school-detail-image img {
  width: 100%;
  height: 11.75rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 1.7819148936;
}
@media screen and (min-width: 768px) {
  .school-detail-image {
    height: 28.0625rem;
  }
  .school-detail-image img {
    height: 28.0625rem;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 1.7817371938;
  }
}

.school-detail-data {
  margin-top: 0.9375rem;
}

.school-detail-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  line-height: 1.5;
}

.school-detail-meta {
  font-size: 0.875rem;
  padding-left: 1.375rem;
}
.school-detail-meta::before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.school-detail-meta:not(:first-of-type) {
  margin-top: 0.625rem;
}

.school-detail-recommend-lv {
  position: relative;
}
.school-detail-recommend-lv::before {
  background: url(../img/common/star-icon-gray.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-place {
  position: relative;
}
.school-detail-place::before {
  background: url(../img/common/map-icon.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-japanese {
  position: relative;
}
.school-detail-japanese::before {
  background: url(../img/common/human-icon.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-scale {
  position: relative;
}
.school-detail-scale::before {
  background: url(../img/common/school-icon.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-cost {
  position: relative;
}
.school-detail-cost::before {
  background: url(../img/common/yen-icon.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-monthlycost {
  position: relative;
}
.school-detail-monthlycost::before {
  background: url(../img/common/bag-yen-icon.png) no-repeat center center/contain;
  position: absolute;
}

.school-detail-categories {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.school-detail-category {
  font-size: 0.875rem;
  line-height: 1.4;
  border: 1px solid rgba(232, 39, 40, 0.3);
  background: rgba(232, 39, 40, 0.1);
  padding: 0 0.375rem;
  border-radius: 100px;
}

.school-detail-link {
  margin-top: 1.25rem;
  display: flex;
  justify-content: center;
}
.school-detail-link a {
  font-size: 1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 21rem;
  height: 3.25rem;
  background: #E82728;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 0 #cb1f20;
  transition: all 0.3s;
}
.school-detail-link a:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}
.school-detail-link a::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .school-detail-link {
    margin-top: 2.5rem;
  }
}

/* 1つのSVG星をマスクにして横に5個並べる方式（画像不要） */
.rating {
  --size: 18px; /* 星の大きさ */
  --bg: #e0e0e0; /* 未選択の色 */
  --fg: #ffb300; /* 塗りつぶしの色 */
  --percent: 0%; /* PHP で 0〜100% を入れる */
  --mask: url("data:image/svg+xml;utf8,  <svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'>  <path d='M12 17.27 18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z'/>  </svg>");
  position: relative;
  display: inline-block;
  width: calc(var(--size) * 5); /* 好きな幅でもOK */
  height: var(--size);
  vertical-align: middle;
}

/* グレーの土台（★×5） */
.rating::before,
.rating::after {
  content: "";
  position: absolute;
  inset: 0;
  -webkit-mask: var(--mask) left/var(--size) var(--size) repeat-x;
  mask: var(--mask) left/var(--size) var(--size) repeat-x;
}

/* 土台 */
.rating::before {
  background: var(--bg);
}

/* 塗りつぶし（幅を%でコントロール） */
.rating::after {
  background: var(--fg);
  width: var(--percent);
  overflow: hidden; /* ここで%分だけ塗る */
}

/* アクセシビリティ用テキストを非表示に */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
}

#school-tab {
  padding-bottom: 1.875rem;
}
@media screen and (min-width: 768px) {
  #school-tab {
    padding-bottom: 7.5rem;
  }
}

.shool-tab-container {
  width: min(90%, 20.8125rem);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .shool-tab-container {
    max-width: 62.5rem;
    width: 100%;
  }
}

.school-tab-titles {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  height: 5.625rem;
}
@media screen and (min-width: 768px) {
  .school-tab-titles {
    height: 2.875rem;
  }
}

.school-tab-title {
  width: 33.3%;
  height: 2.8125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #ececec;
}
@media screen and (min-width: 768px) {
  .school-tab-title {
    width: 20%;
    height: inherit;
  }
}
.school-tab-title.active {
  border-bottom: 2px solid #E82728;
}

.school-tab-content {
  width: 100%;
  display: none;
}
.school-tab-content.active {
  display: block;
}

.school-detail-content-title {
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid #E82728;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .school-detail-content-title {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.school-detail-tab-link {
  text-align: right;
  margin-right: 1.5rem;
}
.school-detail-tab-link a {
  font-size: 0.9375rem;
  line-height: 1.7;
  position: relative;
}
.school-detail-tab-link a::after {
  position: absolute;
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/solid-arrow.png) no-repeat center center/contain;
  top: 50%;
  transform: translateY(-50%);
  right: -1.5rem;
}

.school-detail-news-subtitle {
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 1.25rem;
}

.shool-detail-news-container {
  margin-top: 0.625rem;
}

.school-detail-news-item {
  display: block;
}
.school-detail-news-item:not(:last-child) {
  border-bottom: 1px solid #cacaca;
  padding-bottom: 0.625rem;
  padding-top: 0.625rem;
}

.school-detail-news-item-date {
  font-size: 0.8125rem;
  line-height: 1.5384615385;
  letter-spacing: 0.05em;
  color: #9f9f9f;
}

.school-detail-news-item-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.042em;
}

.school-tab-content2 {
  width: 100%;
}

.school-detail-course-container {
  width: 100%;
}

.shool-detail-course-item {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .shool-detail-course-item {
    margin-top: 2.5rem;
  }
}

.school-detail-course-title {
  font-size: 1.125rem;
  font-weight: 500;
  position: relative;
  padding-left: 1.5rem;
}
.school-detail-course-title::before {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/triangle-arrow-red.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  left: 0rem;
  transition: all 0.3s;
}
.school-detail-course-title.open::before {
  transform: translateY(-50%) rotate(0deg);
}
@media screen and (min-width: 768px) {
  .school-detail-course-title {
    font-size: 1.25rem;
  }
}

.school-detail-course-contents {
  margin-top: 0.625rem;
  display: none;
}

.school-detail-course-content:not(:first-child) {
  margin-top: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .school-detail-course-content:not(:first-child) {
    margin-top: 1.25rem;
  }
}

.school-detail-course-sub-title {
  font-size: 1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .school-detail-course-sub-title {
    font-size: 1.125rem;
  }
}

.school-detail-course-text {
  font-size: 0.9375rem;
  line-height: 1.5;
  margin-top: 0.375rem;
}
@media screen and (min-width: 768px) {
  .school-detail-course-text {
    font-size: 1rem;
    margin-top: 0.625rem;
  }
}

/* ベース */
.school-detail-table-wrap {
  overflow-x: auto; /* スマホで横スクロール */
  -webkit-overflow-scrolling: touch;
  margin-top: 0.625rem;
}

.school-detail-price-table {
  width: 100%;
  min-width: 35.75rem; /* 列が詰まりすぎないように */
  border-collapse: collapse;
  table-layout: fixed; /* 列幅を均等に */
  font-size: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .school-detail-price-table {
    min-width: 62.4375rem;
  }
}

/* 列幅：左の見出し列をやや広めに */
.school-detail-price-table .col-room {
  width: 5.75rem;
}
@media screen and (min-width: 768px) {
  .school-detail-price-table .col-room {
    width: 9.9375rem;
  }
}

/* ヘッダー行（上部の期間帯） */
.school-detail-price-table thead th {
  position: sticky; /* スクロールしても見出しを上に固定（横スクロール時に便利） */
  top: 0;
  z-index: 2;
  background: #fef4f4; /* 淡いピンク */
  color: #E82728; /* 赤みのある文字色 */
  text-align: center;
  font-weight: 400;
  height: 2.5rem;
}

/* 左上の空白セル */
.school-detail-price-table thead .corner {
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 3;
}

/* 本文セル */
.school-detail-price-table td,
.price-table th.row-head {
  border-bottom: 1px solid #efefef;
  height: 2.5rem;
}

/* 行見出し（左の部屋タイプ） */
.school-detail-price-table th.row-head {
  text-align: center;
  font-weight: 500;
  background: #fff;
  position: sticky; /* 横スクロール時、左に固定 */
  left: 0;
  z-index: 1;
  border-bottom: 1px solid #efefef;
}

/* 金額セルの見た目（画像に近い淡色・細ボーダー） */
.school-detail-price-table td {
  text-align: center; /* 画像に近い中央揃え */
  color: #666;
}

/* 視覚的には非表示だがスクリーンリーダー向けに残す */
.visually-hidden {
  position: absolute !important;
  clip: rect(1px, 1px, 1px, 1px);
  width: 1px;
  height: 1px;
  overflow: hidden;
  white-space: nowrap;
}

.school-detail-picture-container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3125rem;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .school-detail-picture-container {
    margin: 2.5rem auto 0;
  }
}

.school-detail-picture-item {
  flex: 0 0 calc((100% - 5px) / 2);
  height: 9.8125rem;
}
.school-detail-picture-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 164/157;
}
@media screen and (min-width: 768px) {
  .school-detail-picture-item {
    flex: 0 0 calc((100% - 10px) / 3);
    height: 11.0625rem;
  }
  .school-detail-picture-item img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 330/177;
  }
}

.lb[hidden] {
  display: none;
}

.lb {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
}

.lb__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.lb__panel {
  position: relative;
  margin: 0;
  max-width: min(92vw, 1000px);
  max-height: min(92vh, 800px);
  display: grid;
  grid-template-rows: 1fr auto;
  gap: 12px;
  padding: 16px;
  background: #111;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(6px) scale(0.98);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.lb.is-open .lb__overlay {
  opacity: 1;
}

.lb.is-open .lb__panel {
  opacity: 1;
  transform: none;
}

.lb__img {
  max-width: 100%;
  max-height: 70vh;
  margin: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 8px;
  background: #000;
}

.lb__cap {
  color: #ddd;
  font-size: 14px;
  text-align: center;
}

.lb__btn {
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 22px;
  cursor: pointer;
}

.lb__btn--close {
  right: 8px;
}

.lb__btn--prev,
.lb__btn--next {
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  padding: 8px 12px;
}

.lb__btn--prev {
  left: 8px;
  right: auto;
}

.lb__btn--next {
  right: 8px;
}

.body-lock {
  overflow: hidden;
}

.uni-h2 {
  font-size: 1.125rem;
  font-weight: 500;
  border-bottom: 1px solid #E82728;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .uni-h2 {
    font-size: 1.25rem;
    margin-top: 2.5rem;
  }
}

.school-detail-materials-category {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .school-detail-materials-category {
    margin-top: 2.5rem;
  }
}

#tab4 h3 {
  font-size: 1.25rem;
  position: relative;
  padding-left: 1.25rem;
  margin-top: 0.625rem;
}
#tab4 h3::before {
  content: "";
  width: 0.625rem;
  height: 1.25rem;
  background: #E82728;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

#tab4 h4 {
  font-size: 1.125rem;
  color: #E82728;
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-top: 0.3125rem;
}

.school-detail-materials-image {
  width: 90%;
  margin: 1.25rem auto;
}
@media screen and (min-width: 768px) {
  .school-detail-materials-image {
    max-width: 33.75rem;
    width: 100%;
    margin: 2.5rem auto;
  }
}

#tab4 {
  width: 90%;
  margin: 1.25rem auto;
}
#tab4 img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #tab4 {
    max-width: 37.5rem;
    width: 100%;
    margin: 2.5rem auto;
  }
}

#tab4 iframe {
  width: 90%;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  #tab4 iframe {
    margin-top: 2.5rem;
  }
}
#tab4 iframe iframe {
  width: 100%;
}

.pdfjs-view {
  max-width: 100%;
}

.pdfjs-frame {
  width: 100%;
  height: 680px;
  border: 0;
}

.pdfjs-toolbar {
  margin: 8px 0;
  display: flex;
  gap: 12px;
}

.school-detail-experience-container {
  margin-top: 2.5rem;
}

.school-detail-experience-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.school-detail-experience-image {
  width: 32.8%;
}
.school-detail-experience-image img {
  width: 100%;
  height: 6.875rem;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 110/110;
}
@media screen and (min-width: 768px) {
  .school-detail-experience-image {
    width: 16%;
  }
  .school-detail-experience-image img {
    width: 100%;
    height: 10rem;
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 160/160;
  }
}

.school-detail-experience-title {
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.042em;
}

.school-detail-experience-meta {
  font-size: 0.8125rem;
  position: relative;
  padding-left: 1.375rem;
}
.school-detail-experience-meta::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../img/common/human-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.school-detail-experience-period {
  font-size: 0.8125rem;
  position: relative;
  padding-left: 1.375rem;
}
.school-detail-experience-period::before {
  content: "";
  width: 1rem;
  height: 1rem;
  background: url(../img/common/calender-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

#filter-section {
  padding: 5.625rem 0 2.4375rem;
}
@media screen and (min-width: 768px) {
  #filter-section {
    padding: 9.0625rem 0 6.25rem;
  }
}

.filter-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.75;
  text-align: center;
  color: #E82728;
}
@media screen and (min-width: 768px) {
  .filter-section-title {
    font-size: 2rem;
  }
}

.filter-section-wrapper {
  width: min(90%, 20.9375rem);
  margin: 1.5625rem auto 0;
  padding: 1.5rem 1.125rem;
  border-radius: 15px;
  background: rgba(232, 39, 40, 0.05);
}
@media screen and (min-width: 768px) {
  .filter-section-wrapper {
    max-width: 50rem;
    width: 100%;
    padding: 2.5rem 0;
    margin: 2.5rem auto 0;
  }
}

.filter-section-sub-title {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .filter-section-sub-title {
    font-size: 1.375rem;
  }
}

.school-filter {
  max-width: 37.5625rem;
  width: 100%;
  margin: 1.625rem auto 0;
}
@media screen and (min-width: 768px) {
  .school-filter {
    margin: 2.5rem auto 0;
  }
}

.checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 1.1875rem;
  border: none;
  margin-bottom: 1.25rem;
}

.checkbox legend {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

.checkbox label {
  display: flex;
  align-items: center;
  gap: 0.5625rem;
  position: relative;
  cursor: pointer;
  font-size: 0.9375rem;
  letter-spacing: 0.05em;
}

.checkbox label::before {
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 4px;
  border: 1px solid #808080;
  background: rgba(250, 250, 250, 0.9);
  content: "";
}

.checkbox label::after {
  position: absolute;
  top: 3px;
  left: 7px;
  transform: rotate(45deg);
  width: 0.5rem;
  height: 0.9375rem;
  border: solid #d6dde3;
  border-width: 0 3px 3px 0;
  content: "";
  transition: border-color 0.2s, border-width 0.2s;
}

.checkbox label:has(:checked)::after {
  border-color: #e82728;
}

.search-more-btn {
  list-style: none;
  width: 100%;
  height: 2.125rem;
  background: #17499C;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-top: 1.875rem;
}
.search-more-btn::after {
  content: "";
  width: 1.125rem;
  height: 1.125rem;
  background: url(../img/common/upper-arrow-white.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(180deg);
  right: 1.25rem;
  transition: all 0.3s;
}
.search-more-btn.open::after {
  transform: translateY(-50%) rotate(0deg);
}

.search-more-contents {
  margin-top: 1.25rem;
  display: none;
}

.keyword {
  margin-top: 1.875rem;
  display: flex;
  flex-direction: column;
}
.keyword label {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

input[type=search] {
  width: 100%;
  height: 2.25rem;
  background: #fff url(../img/common/search-icon-mini.png) no-repeat 8px center;
  background-size: 1.125rem 1.125rem;
  border: 1px solid #7A7A7A;
  position: relative;
  border-radius: 3px;
  margin-top: 0.5rem;
  padding-left: 2.25rem;
  padding-right: 0.625rem;
}

.filter-submit {
  text-align: center;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .filter-submit {
    margin-top: 2.5rem;
  }
}

.btn {
  display: flex;
  justify-content: center;
  font-size: 1rem;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18.75rem;
  height: 3.25rem;
  background: #E82728;
  color: #fff;
  border-radius: 100px;
  box-shadow: 0 2px 0 #CB1F20;
  transition: all 0.3s;
}
.btn:hover {
  transform: translateY(2px);
  opacity: 1;
  box-shadow: none;
}
.btn::after {
  content: "";
  width: 1.25rem;
  height: 1.25rem;
  background: url(../img/common/white-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1.0625rem;
}

#result-section {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  #result-section {
    padding-bottom: 7.1875rem;
  }
}

.result-section-title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.result-section-title small {
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: initial;
  margin-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .result-section-title {
    font-size: 1.5rem;
  }
}

.result-section-text {
  font-size: 0.8125rem;
  line-height: 1.5;
  margin: 1.25rem auto 0;
  width: min(90%, 20.9375rem);
}
@media screen and (min-width: 768px) {
  .result-section-text {
    width: initial;
    text-align: center;
    margin: 3.125rem auto 0;
  }
}

.sort {
  text-align: center;
  margin-top: 1.25rem;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .sort {
    margin-top: 1.875rem;
  }
}

.selectbox {
  position: relative;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .selectbox {
    font-size: 0.9375rem;
  }
}
.selectbox option {
  background: #656662;
  color: #fff;
}

.selectbox::before,
.selectbox::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.selectbox::before {
  right: 0;
  display: inline-block;
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 0 3px 3px 0;
  background-color: #3b3b3b;
  content: "";
}

.selectbox::after {
  position: absolute;
  top: 50%;
  right: 0.9375rem;
  transform: translate(50%, -50%) rotate(45deg);
  width: 0.625rem;
  height: 0.625rem;
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
}

.selectbox select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  min-width: 11.125rem;
  height: 1.875rem;
  padding-left: 0.625rem;
  border: 2px solid #3b3b3b;
  border-radius: 3px;
  color: #444444;
  font-size: 0.75rem;
  margin-left: 0.375rem;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .selectbox select {
    font-size: 0.875rem;
    height: 1.875rem;
  }
}

.selectbox select:focus {
  outline: 1px solid #3b3b3b;
}

.result-section-container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: min(90%, 21rem);
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .result-section-container {
    flex-direction: row;
    max-width: 73.125rem;
    width: 100%;
    margin: 2.5rem auto 0;
  }
}

.result-section-item {
  width: 100%;
}
.result-section-item:not(:last-child) {
  padding-bottom: 1.875rem;
  border-bottom: 1px solid #444444;
}
.result-section-item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .result-section-item {
    width: 33.3%;
    margin-bottom: 1.875rem;
    border-right: 1px solid #444444;
  }
  .result-section-item:nth-child(3n+1) {
    padding-right: 1.875rem;
  }
  .result-section-item:nth-child(3n+2) {
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
  .result-section-item:nth-child(3n+3) {
    padding-left: 1.875rem;
    border-right: none;
  }
  .result-section-item:not(:last-child) {
    padding-bottom: initial;
    border-bottom: none;
  }
  .result-section-item:not(:first-child) {
    margin-top: 0;
  }
}

.result-section-item-image {
  width: 100%;
  height: 11.75rem;
  margin-top: 0.625rem;
}
.result-section-item-image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 11.75rem;
}

.result-section-item-data {
  margin-top: 0.9375rem;
}

.result-section-school-name {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.result-section-meta {
  font-size: 0.875rem;
  padding-left: 1.375rem;
}
.result-section-meta::before {
  content: "";
  width: 1rem;
  height: 1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.result-section-meta:not(:first-of-type) {
  margin-top: 0.625rem;
}

.result-section-item-place {
  position: relative;
}
.result-section-item-place::before {
  background: url(../img/common/map-icon.png) no-repeat center center/contain;
  position: absolute;
}

.result-section-item-japanese {
  position: relative;
}
.result-section-item-japanese::before {
  background: url(../img/common/human-icon.png) no-repeat center center/contain;
  position: absolute;
}

.result-section-item-scale {
  position: relative;
}
.result-section-item-scale::before {
  background: url(../img/common/school-icon.png) no-repeat center center/contain;
  position: absolute;
}

.result-section-item-cost {
  position: relative;
}
.result-section-item-cost::before {
  background: url(../img/common/yen-icon.png) no-repeat center center/contain;
  position: absolute;
}

.result-section-item-categories {
  display: flex;
  gap: 0.25rem;
  flex-wrap: wrap;
  margin-top: 0.75rem;
}

.result-section-item-category {
  font-size: 0.875rem;
  line-height: 1.4;
  border: 1px solid rgba(232, 39, 40, 0.3);
  background: rgba(232, 39, 40, 0.1);
  padding: 0 0.375rem;
  border-radius: 100px;
}

.result-section-item-link {
  margin-top: 1.3125rem;
  text-align: right;
  margin-right: 1.5rem;
}
.result-section-item-link a {
  display: inline-block;
  font-size: 1rem;
  position: relative;
  line-height: 1.7;
}
.result-section-item-link a::after {
  content: "";
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/common/solid-arrow.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -1.5rem;
}

.not-read {
  margin: 0 auto;
}

#page-faq-nav {
  padding: 5.625rem 0 2.5rem;
}
@media screen and (min-width: 768px) {
  #page-faq-nav {
    padding: 12.8125rem 0 5.75rem;
  }
}

.page-faq-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  color: #E82728;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .page-faq-title {
    font-size: 2rem;
  }
}

.page-faq-nav-wrap {
  width: 90%;
  margin: 1.25rem auto 0;
  border: 5px solid #F2F2F2;
  padding: 1.1875rem;
  border-radius: 10px;
}
@media screen and (min-width: 768px) {
  .page-faq-nav-wrap {
    max-width: 50rem;
    width: 100%;
    margin: 2.5rem auto 0;
    padding: 2.5rem;
  }
}

.page-faq-nav-container {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-left: 0.25rem;
  width: min(100%, 18.4375rem);
}
@media screen and (min-width: 768px) {
  .page-faq-nav-container {
    flex-direction: row;
    gap: 2rem;
    width: initial;
    justify-content: center;
  }
}

.page-faq-nav-title {
  font-size: 1.125rem;
  font-weight: 700;
  position: relative;
}

.page-faq-nav-lists {
  margin-top: 0.625rem;
}

.page-faq-nav-list a {
  font-size: 0.9375rem;
  line-height: 1.5;
  color: #2162A1;
  display: inline-block;
}
.page-faq-nav-list:not(:first-child) {
  margin-top: 0.25rem;
}

.page-faq-university {
  padding-left: 2.5rem;
}
.page-faq-university::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/common/university-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page-faq-further-education {
  padding-left: 2.5rem;
}
.page-faq-further-education::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/common/school-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

#page-faq {
  padding-bottom: 8.75rem;
}
@media screen and (min-width: 768px) {
  #page-faq {
    padding-bottom: 8.75rem;
  }
}

.page-faq-type {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .page-faq-type {
    max-width: 50rem;
    width: 100%;
  }
}

.page-faq-type-heading {
  font-size: 1.5rem;
  font-weight: 700;
  padding-left: 3.125rem;
  position: relative;
  border-bottom: 1px solid #E82728;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-faq-type-heading {
    margin-bottom: 1.875rem;
  }
}

.type-heading-university::before {
  content: "";
  width: 1.875rem;
  height: 1.5rem;
  background: url(../img/common/university-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.625rem;
}

.type-heading-further-education {
  margin-top: 5rem;
}
.type-heading-further-education::before {
  content: "";
  width: 1.875rem;
  height: 1.875rem;
  background: url(../img/common/school-icon.png) no-repeat center center/contain;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.625rem;
}

.page-faq-type .page-faq-category {
  margin-top: 3.75rem;
}
.page-faq-type .page-faq-category:nth-of-type(1) {
  margin-top: 0;
}

.page-faq-category-title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  padding-left: 1.25rem;
  position: relative;
}
.page-faq-category-title::before {
  content: "";
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: #E82728;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.page-faq-container {
  width: 100%;
  margin: 0.6875rem auto 0;
}

.page-faq-item {
  border-bottom: 1px solid #cacaca;
}
.page-faq-item:first-child {
  border-top: 1px solid #cacaca;
}

.page-faq-q {
  display: flex;
  align-items: center;
  padding: 1.7875rem 0;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  .page-faq-q {
    padding: 1.75rem 0;
  }
}

.page-faq-q-icon {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: "Poppins", sans-serif;
  background: #E82728;
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.625rem;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .page-faq-q-icon {
    font-size: 1.5rem;
    width: 2rem;
    height: 2rem;
  }
}

.page-faq-q-title {
  display: flex;
  align-items: center;
}

.page-faq-icon {
  width: 1.125rem;
  height: 1.125rem;
  position: relative;
  margin-left: auto;
  margin-right: 0.75rem;
}
.page-faq-icon span {
  display: inline-block;
  width: 1.125rem;
  height: 0.125rem;
  background: #cacaca;
  transition: all 0.3s;
}
.page-faq-icon span:nth-child(1) {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.page-faq-icon span:nth-child(2) {
  position: absolute;
  top: 50%;
  left: -0.0625rem;
  transform: rotate(90deg) translateY(-50%);
}

.page-faq-icon.open span:nth-child(2) {
  transform: rotate(0deg) translateY(-50%);
}

.page-faq-a {
  display: none;
  position: relative;
  z-index: 1;
  padding: 1.75rem 0;
}
@media screen and (min-width: 768px) {
  .page-faq-a {
    padding: 1.7875rem 0;
  }
}

.page-faq-a-icon {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.01em;
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #E82728;
  border: 1px solid #E82728;
  flex-shrink: 0;
  height: 1.5rem;
  width: 1.5rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-faq-a-icon {
    font-size: 1.5rem;
    flex: 0 0 2rem;
    height: 2rem;
  }
}

.page-faq-a-text {
  display: flex;
}

.offer-contents {
  padding-top: 6.75rem;
  padding-bottom: 3.125rem;
}
@media screen and (min-width: 768px) {
  .offer-contents {
    padding-top: 13rem;
    padding-bottom: 3.125rem;
  }
}
.offer-contents form {
  max-width: 37.5rem;
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .offer-contents form {
    width: 100%;
  }
}
.offer-contents h2 {
  font-size: 1.4375rem;
  font-weight: 700;
  padding-bottom: 0.3125rem;
  border-bottom: 2px solid #E82728;
  margin: 1.875rem 0;
}
.offer-contents p {
  margin-bottom: 1.1875rem;
}
.offer-contents label .required-badge {
  font-size: 0.7rem;
  background: #E82728;
  color: #fff;
  border-radius: 4px;
  display: inline-block;
  margin-right: 0.34375rem;
  padding: 0.1375rem 0.34375rem;
}
.offer-contents input {
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.offer-contents .cf-policy-note {
  font-size: 0.875rem;
  margin-top: 0.4375rem;
  line-height: 1.6;
  color: #555;
}
.offer-contents .wpcf7-form-control.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.offer-contents .cf-field {
  width: 100%;
  padding: 0.75rem;
  margin-top: 0.5rem;
  background: #f9f9f9;
  border: 1px solid #ccc;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.offer-contents .wpcf7-form input[type=checkbox],
.offer-contents .wpcf7-form input[type=radio] {
  display: inline-block;
  -moz-appearance: auto;
       appearance: auto;
  -webkit-appearance: auto;
}
.offer-contents .wpcf7-form-control.wpcf7-checkbox label {
  display: flex;
  align-items: center;
  gap: 0.40625rem;
}
.offer-contents .optional-badge {
  display: inline-block;
  background: #f0f0f0;
  font-size: 0.75rem;
  padding: 0.125rem 0.375rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  background-repeat: 0.25rem;
}
.offer-contents .wpcf7-list-item label {
  display: block;
}
.offer-contents .cf-policy-note a {
  color: #17499C;
  text-decoration: underline;
}
.offer-contents input[type=submit] {
  width: 100%;
  background: #17499C;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  border: 1px solid #17499C;
  border-radius: 6px;
  cursor: pointer;
  display: inline-block;
  margin-top: 1rem;
  transition: all 0.3s;
}
@media screen and (min-width: 768px) {
  .offer-contents input[type=submit] {
    width: initial;
    padding: 0.8rem 2rem;
  }
}
.offer-contents input[type=submit]:hover {
  color: #17499C;
  background: #fff;
  opacity: 1;
}
.offer-contents .wpcf7-form-control.wpcf7-radio {
  display: flex;
  flex-direction: column;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}